Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.216.67
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/it_sanctum.tar
error.php000060400000001666150752727240006426 0ustar00<?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);
js/prettify/lang-go.js000060400000004474150752727240010730 0ustar00/**
 * @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']);
js/prettify/lang-rust.js000060400000007236150752727240011317 0ustar00/**
 * @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']);
js/prettify/lang-pascal.js000060400000004217150752727240011561 0ustar00/**
 * @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']);
js/prettify/lang-xq.js000060400000061562150752727240010754 0ustar00/**
 * @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']);
js/prettify/prettify.css000060400000004211150752727240011413 0ustar00/**
 * @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 }
js/prettify/lang-tcl.js000060400000005101150752727240011071 0ustar00/**
 * @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']);
js/prettify/lang-proto.js000060400000002437150752727240011463 0ustar00/**
 * @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']);
js/prettify/lang-lua.js000060400000004633150752727240011101 0ustar00/**
 * @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']);
js/prettify/lang-swift.js000060400000006601150752727240011451 0ustar00/**
 * @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']); 
js/prettify/lang-tex.js000060400000003565150752727240011123 0ustar00/**
 * @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']);
js/prettify/lang-logtalk.js000060400000004161150752727240011751 0ustar00/**
 * @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']);
js/prettify/lang-dart.js000060400000006007150752727240011247 0ustar00/**
 * @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']);
js/prettify/lang-r.js000060400000004550150752727240010557 0ustar00/**
 * @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']);
js/prettify/lang-vb.js000060400000007542150752727240010731 0ustar00/**
 * @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']);
js/prettify/lang-sql.js000060400000006767150752727240011131 0ustar00/**
 * @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']);
js/prettify/lang-hs.js000060400000011071150752727240010724 0ustar00/**
 * @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']);
js/prettify/lang-erlang.js000060400000006676150752727240011601 0ustar00/**
 * @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']);
js/prettify/lang-mumps.js000060400000012325150752727240011456 0ustar00/**
 * @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']);
})();
js/prettify/lang-vhdl.js000060400000005436150752727240011257 0ustar00/**
 * @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']);
js/prettify/lang-css.js000060400000014067150752727240011112 0ustar00/**
 * @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']);
js/prettify/lang-n.js000060400000006066150752727240010557 0ustar00/**
 * @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']);
})();
js/prettify/lang-matlab.js000060400000062107150752727240011560 0ustar00/**
 * @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']);
js/prettify/lang-yaml.js000060400000002674150752727240011265 0ustar00/**
 * @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']);
js/prettify/lang-apollo.js000060400000005113150752727240011600 0ustar00/**
 * @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']);
js/prettify/lang-ml.js000060400000005660150752727240010731 0ustar00/**
 * @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']);
js/prettify/lang-scala.js000060400000005025150752727240011377 0ustar00/**
 * @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']);
js/prettify/run_prettify.js000060400000237232150752727240012136 0ustar00/**
 * @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();

}());
js/prettify/lang-lasso.js000060400000010162150752727240011433 0ustar00/**
 * @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']);
js/prettify/lang-rd.js000060400000003360150752727240010721 0ustar00/**
 * @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']);
js/prettify/lang-lisp.js000060400000007076150752727240011273 0ustar00/**
 * @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']);
js/prettify/lang-llvm.js000060400000004364150752727240011273 0ustar00/**
 * @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']);
js/prettify/lang-clj.js000060400000005370150752727240011067 0ustar00/**
 * @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']);
js/prettify/lang-basic.js000060400000003721150752727240011376 0ustar00/**
 * @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']);
js/prettify/lang-wiki.js000060400000003610150752727240011255 0ustar00/**
 * @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']);
js/prettify/prettify.js000060400000177065150752727240011261 0ustar00/**
 * @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;
    });
  }
})();
js/template.js000060400000000317150752727240007341 0ustar00(function($) {
	// Move the Offcanvas Toggle button in the Header
	$(document).ready(function() {
		$("div.g-offcanvas-toggle:not(.offcanvas-toggle-particle)").prependTo($("#g-navigation"));
	});
})(jQuery);js/scrollReveal.min.js000060400000020564150752727240010753 0ustar00!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});install/outlines.yaml000060400000000054150752727240010746 0ustar00default:
  title: Default
  preset: default
install/templates/style.html.twig000060400000124204150752727240013221 0ustar00<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>install/templates/update.html.twig000060400000000743150752727240013344 0ustar00{% 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>install/templates/install.html.twig000060400000001341150752727240013523 0ustar00{% 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>language/en-GB/en-GB.tpl_it_sanctum.ini000060400000001315150752727240013643 0ustar00IT_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: "language/en-GB/en-GB.tpl_it_sanctum.sys.ini000060400000000171150752727240014457 0ustar00IT_SANCTUM="Sanctum"
TPL_IT_SANCTUM_DESC="Sanctum template for Gantry 5 Framework"

GANTRY5_THEME_HOME_STYLE="%s - Home"
index.php000060400000001364150752727240006377 0ustar00<?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);particles/contacts.html.twig000060400000011200150752727240012210 0ustar00{% 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 %}particles/modal-search.yaml000060400000002217150752727240011766 0ustar00name: 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 2particles/image-features.yaml000060400000007262150752727240012332 0ustar00name: 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']particles/offcanvas-toggle.yaml000060400000001454150752727240012656 0ustar00name: 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'
particles/accordion.html.twig000060400000004724150752727240012350 0ustar00{% 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 %}particles/accordion.yaml000060400000004613150752727240011372 0ustar00name: 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']particles/totop.html.twig000060400000002073150752727240011547 0ustar00{% 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 %}
particles/contacts.yaml000060400000004633150752727240011251 0ustar00name: 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']particles/template-js.yaml000060400000000666150752727240011662 0ustar00name: 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.'particles/paypal-donate.yaml000060400000003755150752727240012175 0ustar00name: 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']particles/cta-button.yaml000060400000003441150752727240011507 0ustar00name: 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']particles/media-box.yaml000060400000014724150752727240011302 0ustar00name: 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']particles/social.yaml000060400000004101150752727240010673 0ustar00name: 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']
particles/icon-fonts.html.twig000060400000002634150752727240012464 0ustar00{% 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 %}


particles/social.html.twig000060400000003310150752727240011647 0ustar00{% 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 %}
particles/main-feature.yaml000060400000007726150752727240012016 0ustar00name: 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']
particles/onepage-menu.html.twig000060400000014000150752727240012753 0ustar00{% 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 %}particles/offcanvas-toggle.html.twig000060400000001141150752727240013622 0ustar00{% 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 %}particles/our-team.yaml000060400000014366150752727240011170 0ustar00name: 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']particles/content-pro-joomla.yaml000060400000031523150752727240013160 0ustar00name: 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...'particles/totop.yaml000060400000002510150752727240010570 0ustar00name: 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: 
particles/slideshow.yaml000060400000020444150752727240011432 0ustar00name: 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 Classparticles/googlemap.yaml000060400000010372150752727240011402 0ustar00name: 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']particles/content-pro.html.twig000060400000027243150752727240012660 0ustar00{% 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 %}particles/page-title.html.twig000060400000002514150752727240012435 0ustar00{% 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 %}particles/modal-search.html.twig000060400000003043150752727240012737 0ustar00{% 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 %}particles/main-feature.html.twig000060400000007777150752727240012777 0ustar00{% 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 %}particles/onepage-menu.yaml000060400000011411150752727240012003 0ustar00name: 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']particles/image-features.html.twig000060400000010067150752727240013302 0ustar00{% 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 %}particles/slideshow.html.twig000060400000032555150752727240012413 0ustar00{% 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 %}particles/content-pro.yaml000060400000014307150752727240011702 0ustar00name: 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']particles/uikit.yaml000060400000002254150752727240010555 0ustar00name: 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: Headparticles/paypal-donate.html.twig000060400000003472150752727240013144 0ustar00{% 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 %}particles/media-box.html.twig000060400000014452150752727240012253 0ustar00{% 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 %}particles/logo.html.twig000060400000001065150752727240011342 0ustar00{% 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 %}
particles/logo.yaml000060400000001352150752727240010366 0ustar00name: 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.
particles/features.html.twig000060400000017677150752727240012240 0ustar00{% 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 %}particles/template-js.html.twig000060400000000467150752727240012634 0ustar00{% 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 %}particles/cta-button.html.twig000060400000003335150752727240012464 0ustar00{% 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 %}particles/features.yaml000060400000006677150752727240011263 0ustar00name: 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']particles/content-pro-joomla.html.twig000060400000043230150752727240014131 0ustar00{% 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 %}particles/portfolio.html.twig000060400000035752150752727240012431 0ustar00{% 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 %}
particles/our-team.html.twig000060400000042661150752727240012142 0ustar00{% 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 %}particles/uikit.html.twig000060400000001210150752727240011517 0ustar00{% 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 %}particles/portfolio.yaml000060400000016442150752727240011451 0ustar00name: 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']particles/scrollreveal-js.html.twig000060400000000604150752727240013507 0ustar00{% 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 %}particles/page-title.yaml000060400000002054150752727240011461 0ustar00name: 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']particles/scrollreveal-js.yaml000060400000001441150752727240012534 0ustar00name: 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": Disabledparticles/icon-fonts.yaml000060400000003131150752727240011502 0ustar00name: 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: 0particles/googlemap.html.twig000060400000010566150752727240012362 0ustar00{% 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 %}install.php000060400000005755150752727240006746 0ustar00<?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();
    }
}
template_preview.png000060400000353500150752727240010643 0ustar00�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`�uikit/css/uikit.min.css000060400000336163150752727240011125 0ustar00/*! 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;
}uikit/js/uikit.min.js000060400000355741150752727240010600 0ustar00/*! 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});
offline.php000060400000001551150752727240006710 0ustar00<?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);
blueprints/page.yaml000060400000000400150752727240010534 0ustar00name: 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
blueprints/styles/feature.yaml000060400000002053150752727240012604 0ustar00name: 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"blueprints/styles/menu.yaml000060400000001267150752727240012123 0ustar00name: 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
blueprints/styles/base.yaml000060400000002352150752727240012065 0ustar00name: 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"
blueprints/styles/sidebar.yaml000060400000002053150752727240012562 0ustar00name: 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"blueprints/styles/breadcrumb.yaml000060400000002111150752727240013252 0ustar00name: 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"blueprints/styles/utility.yaml000060400000002053150752727240012654 0ustar00name: 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"blueprints/styles/extension.yaml000060400000002057150752727240013171 0ustar00name: 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"blueprints/styles/bottom.yaml000060400000002051150752727240012453 0ustar00name: 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"blueprints/styles/accent.yaml000060400000000442150752727240012406 0ustar00name: 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"
blueprints/styles/intro.yaml000060400000002047150752727240012307 0ustar00name: 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"blueprints/styles/header.yaml000060400000002051150752727240012377 0ustar00name: 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"blueprints/styles/fullwidth.yaml000060400000002057150752727240013157 0ustar00name: 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"blueprints/styles/showcase.yaml000060400000002052150752727240012764 0ustar00name: 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"blueprints/styles/fontsizes.yaml000060400000001023150752727240013171 0ustar00name: 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)'blueprints/styles/breakpoints.yaml000060400000002511150752727240013471 0ustar00name: 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)'
blueprints/styles/offcanvas.yaml000060400000001752150752727240013124 0ustar00name: 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)"
blueprints/styles/aside.yaml000060400000002047150752727240012241 0ustar00name: 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"blueprints/styles/additional.yaml000060400000002061150752727240013260 0ustar00name: 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"blueprints/styles/drawer.yaml000060400000002051150752727240012433 0ustar00name: 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"blueprints/styles/prebottom.yaml000060400000002057150752727240013170 0ustar00name: 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"blueprints/styles/afterbottom.yaml000060400000002063150752727240013500 0ustar00name: 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"blueprints/styles/maintop.yaml000060400000002053150752727240012620 0ustar00name: 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"blueprints/styles/mainbody.yaml000060400000002055150752727240012755 0ustar00name: 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"blueprints/styles/mainbottom.yaml000060400000002061150752727240013321 0ustar00name: 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"blueprints/styles/systemmessages.yaml000060400000002073150752727240014227 0ustar00name: 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"blueprints/styles/footer.yaml000060400000002103150752727240012443 0ustar00name: 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"blueprints/styles/navigation.yaml000060400000002061150752727240013307 0ustar00name: 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"blueprints/styles/copyright.yaml000060400000002057150752727240013165 0ustar00name: 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"blueprints/styles/fonts.yaml000060400000000615150752727240012304 0ustar00name: 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'blueprints/styles/last.yaml000060400000002075150752727240012120 0ustar00name: 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"blueprints/styles/top.yaml000060400000002043150752727240011752 0ustar00name: 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"blueprints/styles/subfeature.yaml000060400000002061150752727240013315 0ustar00name: 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"custom/language/en-GB/en-GB.tpl_it_sanctum_positions.ini000060400000007506150752727240017274 0ustar00TPL_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"
custom/css-compiled/sanctum.css000060400000730613150752727240012645 0ustar00/* 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 */custom/css-compiled/sanctum__body_only.css.map000060400000131463150752727240015634 0ustar00{"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"}custom/css-compiled/custom_9.css000060400000000517150752727240012726 0ustar00/* 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
 */

custom/css-compiled/sanctum-joomla__body_only.css.map000060400000036101150752727240017104 0ustar00{"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"}custom/css-compiled/sanctum__offline.css000060400000730624150752727240014510 0ustar00/* 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 */custom/css-compiled/sanctum-joomla.css.map000060400000036101150752727240014667 0ustar00{"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"}custom/css-compiled/sanctum-joomla__body_only.css000060400000217053150752727240016337 0ustar00/* 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 */custom/css-compiled/sanctum__body_only.css000060400000730626150752727240015066 0ustar00/* 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 */custom/css-compiled/sanctum__error.css000060400000437630150752727240014220 0ustar00/* 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 */custom/css-compiled/custom__error.css000060400000000517150752727240014046 0ustar00/* 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
 */

custom/css-compiled/sanctum__offline.css.map000060400000131463150752727240015260 0ustar00{"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"}custom/css-compiled/sanctum_9.css000060400000437623150752727240013102 0ustar00/* 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 */custom/css-compiled/sanctum-joomla_9.css.map000064400000021605150752727240015126 0ustar00{"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"}custom/css-compiled/custom__body_only.css000060400000000544150752727250014714 0ustar00/* 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" */custom/css-compiled/sanctum-joomla__offline.css000060400000217051150752727250015762 0ustar00/* 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 */custom/css-compiled/sanctum-joomla__error.css000060400000111324150752727250015465 0ustar00/* 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 */custom/css-compiled/custom.css000060400000000544150752727250012477 0ustar00/* 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" */custom/css-compiled/sanctum-joomla.css000060400000217040150752727250014117 0ustar00/* 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 */custom/css-compiled/sanctum_9.css.map000064400000071317150752727250013655 0ustar00{"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"}custom/css-compiled/sanctum-joomla__error.css.map000064400000021605150752727250016247 0ustar00{"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"}custom/css-compiled/sanctum-joomla_9.css000060400000111317150752727250014347 0ustar00/* 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 */custom/css-compiled/sanctum__error.css.map000064400000071317150752727250014775 0ustar00{"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"}custom/css-compiled/sanctum.css.map000060400000131463150752727250013420 0ustar00{"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"}custom/css-compiled/sanctum-joomla__offline.css.map000060400000036101150752727250016531 0ustar00{"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"}custom/css-compiled/custom__offline.css000060400000000544150752727250014340 0ustar00/* 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" */custom/config/_body_only/layout.yaml000060400000000377150752727250013700 0ustar00version: 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: ''
custom/config/_body_only/index.yaml000060400000000507150752727250013465 0ustar00name: _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: {  }
custom/config/9/styles.yaml000060400000000122150752727250011705 0ustar00preset: preset2
accent:
  color-1: '#4f953b'
showcase:
  heading-color: '#006142'
custom/config/9/layout.yaml000060400000010436150752727250011710 0ustar00version: 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
custom/config/9/index.yaml000060400000025037150752727250011505 0ustar00name: '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
custom/config/_error/layout.yaml000060400000010305150752727250013023 0ustar00version: 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
custom/config/_error/index.yaml000060400000024606150752727250012626 0ustar00name: _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
custom/config/_error/page/assets.yaml000060400000000602150752727250013723 0ustar00javascript:
  -
    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'
custom/config/_error/styles.yaml000060400000000020150752727250013022 0ustar00preset: preset1
custom/config/_offline/layout.yaml000060400000001705150752727250013320 0ustar00version: 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
custom/config/_offline/index.yaml000060400000001345150752727250013112 0ustar00name: _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: {  }
custom/config/default/page/head.yaml000060400000001715150752727250013464 0ustar00meta: {  }
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'
custom/config/default/page/body.yaml000060400000000145150752727250013514 0ustar00attribs:
  id: ''
  class: gantry
  extra: {  }
layout:
  sections: '0'
body_top: ''
body_bottom: ''
custom/config/default/page/assets.yaml000060400000000065150752727250014062 0ustar00favicon: ''
touchicon: ''
css: {  }
javascript: {  }
custom/config/default/index.yaml000060400000013370150752727250012756 0ustar00name: 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: {  }
custom/config/default/layout.yaml000060400000024357150752727250013173 0ustar00version: 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
custom/config/default/particles/spacer.yaml000060400000000015150752727250015102 0ustar00enabled: '1'
custom/config/default/particles/social.yaml000060400000000140150752727250015076 0ustar00enabled: '1'
title: ''
target: _blank
tooltippos: auto
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/onepage-menu.yaml000060400000000172150752727250016211 0ustar00enabled: '1'
stickyoffset: '130'
smoothscrolloffset: '120'
boundary: '#g-footer'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/page-title.yaml000060400000000115150752727250015661 0ustar00enabled: '1'
title: ''
description: ''
icon: ''
css:
  class: ''
extra: {  }
custom/config/default/particles/our-team.yaml000060400000000326150752727250015363 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/content-pro.yaml000060400000000414150752727250016100 0ustar00enabled: '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: {  }
custom/config/default/particles/contentarray.yaml000060400000000701150752727250016340 0ustar00enabled: '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: {  }
custom/config/default/particles/googlemap.yaml000060400000000412150752727250015600 0ustar00enabled: '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: {  }
custom/config/default/particles/slideshow.yaml000060400000000376150752727250015640 0ustar00enabled: '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: {  }
custom/config/default/particles/image-features.yaml000060400000000141150752727250016523 0ustar00enabled: '1'
mainheading: ''
introtext: ''
columns: '2'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/logo.yaml000060400000000122150752727250014564 0ustar00enabled: '1'
url: ''
image: 'gantry-media://logo.png'
text: Sanctum
class: g-logo
custom/config/default/particles/mobile-menu.yaml000060400000000015150752727250016036 0ustar00enabled: '1'
custom/config/default/particles/paypal-donate.yaml000060400000000254150752727250016370 0ustar00enabled: '1'
mainheading: ''
introtext: ''
email: ''
itemname: ''
itemnumber: ''
currencycode: ''
buttontext: ''
buttonicon: ''
target: _blank
css:
  class: ''
extra: {  }
custom/config/default/particles/module.yaml000060400000000030150752727250015107 0ustar00enabled: '1'
chrome: ''
custom/config/default/particles/accordion.yaml000060400000000167150752727250015576 0ustar00enabled: '1'
mainheading: ''
introtext: ''
collapse: 'true'
showfirst: 'true'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/content-pro-joomla.yaml000060400000001463150752727250017364 0ustar00enabled: '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
custom/config/default/particles/contacts.yaml000060400000000140150752727250015442 0ustar00enabled: '1'
style: style1
layout: vertical
equal: '0'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/media-box.yaml000060400000000161150752727250015474 0ustar00enabled: '1'
mainheading: ''
introtext: ''
tooltippos: top
columns: '1'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/messages.yaml000060400000000015150752727250015434 0ustar00enabled: '1'
custom/config/default/particles/totop.yaml000060400000000117150752727250014775 0ustar00enabled: '1'
style: style1
icon: ''
offset: ''
css:
  class: totop
content: ''
custom/config/default/particles/tabs.yaml000060400000000240150752727250014556 0ustar00enabled: '1'
mainheading: ''
introtext: ''
layout: top
tabswidth: '2'
justify: 'no'
justifynumber: '1'
animation: none
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/menu.yaml000060400000000203150752727250014570 0ustar00enabled: '1'
menu: ''
base: /
startLevel: '1'
maxLevels: '3'
renderTitles: '0'
hoverExpand: '1'
mobileTarget: '0'
forceTarget: '0'
custom/config/default/particles/modal-search.yaml000060400000000033150752727250016164 0ustar00enabled: '1'
style: style1
custom/config/default/particles/copyright.yaml000060400000000065150752727250015642 0ustar00enabled: '1'
date:
  start: now
  end: now
owner: ''
custom/config/default/particles/companies.yaml000060400000000326150752727250015610 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/feedback.yaml000060400000000304150752727250015352 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
autoplay: disable
navigation: dots
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/offcanvas-toggle.yaml000060400000000040150752727250017050 0ustar00enabled: '1'
icon: 'fa fa-bars'
custom/config/default/particles/date.yaml000060400000000075150752727250014550 0ustar00enabled: '1'
css:
  class: date
date:
  formats: 'l, F d, Y'
custom/config/default/particles/pricing.yaml000060400000000162150752727250015263 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
gutter: enabled
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/portfolio.yaml000060400000000355150752727250015651 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
gutter: enabled
lightbox: enable
filters: disabled
filterall: All
filter1: ''
filter2: ''
filter3: ''
filter4: ''
filter5: ''
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/features.yaml000060400000000157150752727250015452 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
css:
  class: ''
extra: {  }
items: {  }
custom/config/default/particles/content.yaml000060400000000015150752727250015277 0ustar00enabled: '1'
custom/config/default/particles/custom.yaml000060400000000054150752727250015142 0ustar00enabled: '1'
html: ''
twig: '0'
filter: '0'
custom/config/default/particles/cta-button.yaml000060400000000211150752727250015703 0ustar00enabled: '1'
style: style1
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
extra: {  }
custom/config/default/particles/main-feature.yaml000060400000000464150752727250016212 0ustar00enabled: '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: {  }
custom/config/default/particles/position.yaml000060400000000030150752727250015466 0ustar00enabled: '1'
chrome: ''
custom/config/default/particles/branding.yaml000060400000000236150752727250015416 0ustar00enabled: '1'
content: 'Powered by <a href="http://www.gantry.org/" title="Gantry Framework" class="g-powered-by">Gantry Framework</a>'
css:
  class: branding
custom/config/default/styles.yaml000060400000013334150752727250013172 0ustar00preset: 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
custom/images/info.jpg000064400000151577150752727250011014 0ustar00���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��custom/images/info50.jpg000064400000012420150752727250011140 0ustar00���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��custom/images/zou.jpg000064400000013307150752727250010662 0ustar00���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��> (��(��(��(��(��(��(��(��(��(��(��(��(��(��(����fields/warning.php000060400000001143150752727250010177 0ustar00<?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');
		}
    }
}
includes/gantry.php000060400000003474150752727250010407 0ustar00<?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();
}
includes/theme.php000060400000001402150752727250010172 0ustar00<?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']);
};
gantry/presets.yaml000060400000117464150752727250010446 0ustar00preset1:
  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)'gantry/theme.yaml000060400000004532150752727250010052 0ustar00details:
  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:
      - breakpointsadmin/images/preset6.png000060400000055423150752727250011220 0ustar00�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`�admin/images/preset1.png000060400000060261150752727250011207 0ustar00�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`�admin/images/preset2.png000060400000061503150752727250011210 0ustar00�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`�admin/images/preset5.png000060400000056405150752727250011220 0ustar00�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`�admin/images/preset4.png000060400000056441150752727250011217 0ustar00�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`�admin/images/preset3.png000060400000056630150752727250011216 0ustar00�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`�admin/templates/pages/about/about.html.twig000060400000004712150752727250015030 0ustar00{% 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 %}
template_thumbnail.png000060400000071261150752727250011147 0ustar00�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`�images/doves.png000060400000645631150752727250007666 0ustar00�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`�images/iphone.png000060400000000562150752727250010014 0ustar00�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`�images/bread.png000060400002216452150752727250007620 0ustar00�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`�images/footer.jpg000060400000172632150752727250010034 0ustar00���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?��images/ipad.png000060400000000655150752727250007452 0ustar00�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`�images/logo.png000060400000220447150752727250007500 0ustar00�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`�images/macbook.png000060400000001064150752727250010143 0ustar00�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`�images/listclosed.png000060400000000337150752727250010677 0ustar00�PNG


IHDR(-StEXtSoftwareAdobe ImageReadyq�e<PLTE����������������������������ïz
tRNS�����������,�AIDATx�b�D�
0��33�H=;;T3A\�
���� iQ��h���1�w)�0�.>�[WIEND�B`�images/listopen.png000060400000000250150752727250010361 0ustar00�PNG


IHDR(-StEXtSoftwareAdobe ImageReadyq�e<PLTE���������^��tRNS���@*��"IDATx�b`F�`��#�����ڻ �e��@�۽IEND�B`�layouts/_offline.yaml000060400000001705150752727250010724 0ustar00version: 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
layouts/default.yaml000060400000024357150752727250010577 0ustar00version: 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
layouts/_body_only.yaml000060400000000207150752727250011274 0ustar00version: 2

preset:
  image: gantry-admin://images/layouts/body-only.png

layout:
  /main/:
    - system-messages
    - system-content
layouts/_error.yaml000060400000024354150752727250010440 0ustar00version: 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
templateDetails.xml000060400000011477150752727250010431 0ustar00<?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>
config/_error/layout.yaml000060400000010305150752727250011511 0ustar00version: 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
config/_error/index.yaml000060400000024606150752727250011314 0ustar00name: _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
config/_error/page/body.yaml000060400000000016150752727250012043 0ustar00doctype: html
config/_error/page/assets.yaml000060400000000602150752727250012411 0ustar00javascript:
  -
    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'
config/_error/styles.yaml000060400000000020150752727250011510 0ustar00preset: preset1
config/default/index.yaml000060400000013370150752727250011444 0ustar00name: 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: {  }
config/default/layout.yaml000060400000024357150752727250011661 0ustar00version: 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
config/default/styles.yaml000060400000013334150752727250011660 0ustar00preset: 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
config/default/page/body.yaml000060400000000145150752727250012202 0ustar00attribs:
  id: ''
  class: gantry
  extra: {  }
layout:
  sections: '0'
body_top: ''
body_bottom: ''
config/default/page/assets.yaml000060400000000065150752727250012550 0ustar00favicon: ''
touchicon: ''
css: {  }
javascript: {  }
config/default/page/head.yaml000060400000001210150752727250012140 0ustar00meta: {  }
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'
config/default/particles/copyright.yaml000060400000000065150752727250014330 0ustar00enabled: '1'
date:
  start: now
  end: now
owner: ''
config/default/particles/companies.yaml000060400000000326150752727250014276 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/pricing.yaml000060400000000162150752727250013751 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
gutter: enabled
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/system-messages.yaml000060400000000015150752727250015444 0ustar00enabled: '1'
config/default/particles/position.yaml000060400000000030150752727250014154 0ustar00enabled: '1'
chrome: ''
config/default/particles/content.yaml000060400000000015150752727250013765 0ustar00enabled: '1'
config/default/particles/main-feature.yaml000060400000000350150752727250014672 0ustar00enabled: '1'
layout: right
image: ''
alt: ''
imagebottom: 'yes'
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
  left: ''
  right: ''
extra: {  }
extra_left: {  }
extra_right: {  }
config/default/particles/branding.yaml000060400000000236150752727250014104 0ustar00enabled: '1'
content: 'Powered by <a href="http://www.gantry.org/" title="Gantry Framework" class="g-powered-by">Gantry Framework</a>'
css:
  class: branding
config/default/particles/assets.yaml000060400000000050150752727250013614 0ustar00enabled: '1'
css: {  }
javascript: {  }
config/default/particles/spacer.yaml000060400000000015150752727250013570 0ustar00enabled: '1'
config/default/particles/social.yaml000060400000000140150752727250013564 0ustar00enabled: '1'
title: ''
target: _blank
tooltippos: auto
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/portfolio.yaml000060400000000355150752727250014337 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
gutter: enabled
lightbox: enable
filters: disabled
filterall: All
filter1: ''
filter2: ''
filter3: ''
filter4: ''
filter5: ''
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/sample.yaml000060400000000130150752727250013572 0ustar00enabled: '1'
image: ''
headline: ''
description: ''
link: ''
linktext: ''
samples: {  }
config/default/particles/features.yaml000060400000000157150752727250014140 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
columns: '3'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/paypal-donate.yaml000060400000000254150752727250015056 0ustar00enabled: '1'
mainheading: ''
introtext: ''
email: ''
itemname: ''
itemnumber: ''
currencycode: ''
buttontext: ''
buttonicon: ''
target: _blank
css:
  class: ''
extra: {  }
config/default/particles/tabs.yaml000060400000000240150752727250013244 0ustar00enabled: '1'
mainheading: ''
introtext: ''
layout: top
tabswidth: '2'
justify: 'no'
justifynumber: '1'
animation: none
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/modal-search.yaml000060400000000033150752727250014652 0ustar00enabled: '1'
style: style1
config/default/particles/totop.yaml000060400000000117150752727250013463 0ustar00enabled: '1'
style: style1
icon: ''
offset: ''
css:
  class: totop
content: ''
config/default/particles/page-title.yaml000060400000000115150752727250014347 0ustar00enabled: '1'
title: ''
description: ''
icon: ''
css:
  class: ''
extra: {  }
config/default/particles/analytics.yaml000060400000000102150752727250014277 0ustar00enabled: '1'
ua:
  code: ''
  anonym: '0'
  ssl: '0'
  debug: '0'
config/default/particles/content-pro-joomla.yaml000060400000001436150752727250016052 0ustar00enabled: '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: ''
config/default/particles/feedback.yaml000060400000000304150752727250014040 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
autoplay: disable
navigation: dots
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/module.yaml000060400000000030150752727250013575 0ustar00enabled: '1'
chrome: ''
config/default/particles/offcanvas-toggle.yaml000060400000000040150752727250015536 0ustar00enabled: '1'
icon: 'fa fa-bars'
config/default/particles/logo.yaml000060400000000122150752727250013252 0ustar00enabled: '1'
url: ''
image: 'gantry-media://logo.png'
text: Sanctum
class: g-logo
config/default/particles/messages.yaml000060400000000015150752727250014122 0ustar00enabled: '1'
config/default/particles/contacts.yaml000060400000000066150752727250014137 0ustar00enabled: '1'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/date.yaml000060400000000075150752727250013236 0ustar00enabled: '1'
css:
  class: date
date:
  formats: 'l, F d, Y'
config/default/particles/content-pro.yaml000060400000000414150752727250014566 0ustar00enabled: '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: {  }
config/default/particles/cta-button.yaml000060400000000211150752727250014371 0ustar00enabled: '1'
style: style1
title: ''
description: ''
link: ''
buttontext: ''
buttonicon: ''
target: _parent
css:
  class: ''
extra: {  }
config/default/particles/googlemap.yaml000060400000000370150752727250014271 0ustar00enabled: '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: {  }
config/default/particles/pagecontent.yaml000060400000000015150752727250014622 0ustar00enabled: '1'
config/default/particles/menu.yaml000060400000000162150752727250013262 0ustar00enabled: '1'
menu: ''
base: /
startLevel: '1'
maxLevels: '0'
renderTitles: '0'
hoverExpand: '1'
mobileTarget: '0'
config/default/particles/slideshow.yaml000060400000000340150752727250014315 0ustar00enabled: '1'
height: auto
autoplay: 'true'
autoplayInterval: '7000'
navigation: arrows
animation: fade
animationDuration: '500'
kenburns: 'false'
pauseOnHover: 'true'
fullscreen: '0'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/accordion.yaml000060400000000167150752727250014264 0ustar00enabled: '1'
mainheading: ''
introtext: ''
collapse: 'true'
showfirst: 'true'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/onepage-menu.yaml000060400000000172150752727250014677 0ustar00enabled: '1'
stickyoffset: '130'
smoothscrolloffset: '120'
boundary: '#g-footer'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/contentarray.yaml000060400000001134150752727250015027 0ustar00enabled: '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: {  }
config/default/particles/image-features.yaml000060400000000141150752727250015211 0ustar00enabled: '1'
mainheading: ''
introtext: ''
columns: '2'
css:
  class: ''
extra: {  }
items: {  }
config/default/particles/custom.yaml000060400000000054150752727250013630 0ustar00enabled: '1'
html: ''
twig: '0'
filter: '0'
config/default/particles/mobile-menu.yaml000060400000000015150752727250014524 0ustar00enabled: '1'
config/default/particles/media-box.yaml000060400000000161150752727250014162 0ustar00enabled: '1'
mainheading: ''
introtext: ''
tooltippos: top
columns: '1'
items: {  }
css:
  class: ''
extra: {  }
config/default/particles/our-team.yaml000060400000000326150752727250014051 0ustar00enabled: '1'
mainheading: ''
introtext: ''
style: style1
behaviour: static
columns: '3'
gutter: enabled
autoplay: disable
navigation: arrows
animation: fade
duration: '200'
css:
  class: ''
extra: {  }
items: {  }
fonts/ionicons/fonts/ionicons.svg000060400001214012150752727250013222 0ustar00<?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>
fonts/ionicons/fonts/ionicons.eot000060400000353624150752727250013226 0ustar00�����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�fonts/ionicons/fonts/ionicons.woff000060400000204500150752727250013364 0ustar00wOFF	@
��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��fonts/ionicons/fonts/ionicons.ttf000060400000560134150752727250013230 0ustar00�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������Dfonts/ionicons/css/ionicons.min.css000060400000144124150752727250013441 0ustar00@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"}
fonts/webfont-medical-icons/css/wfmi-style.css000060400000021746150752727250015472 0ustar00@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";
}
fonts/webfont-medical-icons/fonts/webfont-medical-icons.svg000060400001045317150752727250020114 0ustar00<?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>fonts/webfont-medical-icons/fonts/webfont-medical-icons.eot000060400000262720150752727250020102 0ustar00�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 IcoMoonfonts/webfont-medical-icons/fonts/webfont-medical-icons.woff000060400000262500150752727250020250 0ustar00wOFFe@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 IcoMoonfonts/webfont-medical-icons/fonts/webfont-medical-icons.ttf000060400000262364150752727250020114 0ustar00�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 IcoMoonfonts/roboto_medium_macroman/Roboto-Medium-webfont.svg000060400000214130150752727250017274 0ustar00<?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> fonts/roboto_medium_macroman/Roboto-Medium-webfont.eot000060400000051564150752727250017276 0ustar00tS~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(fonts/roboto_medium_macroman/Roboto-Medium-webfont.woff2000060400000174454150752727250017536 0ustar00wOF2�,~������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�ֶpofonts/roboto_medium_macroman/Roboto-Medium-webfont.woff000060400000060730150752727250017443 0ustar00wOFFa���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{�qfonts/roboto_medium_macroman/Roboto-Medium-webfont.ttf000060400000130370150752727250017275 0ustar000FFTM_�[�<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{�qfonts/typicons/typicons.eot000060400000303554150752727250012150 0ustar00l�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������Dfonts/typicons/typicons.svg000060400000554152150752727250012162 0ustar00<?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>
fonts/typicons/typicons.ttf000060400000303120150752727250012143 0ustar00�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������Dfonts/typicons/typicons.woff000060400000164740150752727250012324 0ustar00wOFF����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������Dfonts/typicons/typicons.min.css000060400000035211150752727250012723 0ustar00@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'}fonts/roboto_regular_macroman/Roboto-Regular-webfont.ttf000060400000130500150752727250017632 0ustar000FFTMg'
<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{��fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff000060400000060674150752727250020014 0ustar00wOFFa��@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{��fonts/roboto_regular_macroman/Roboto-Regular-webfont.woff2000060400000173664150752727250020102 0ustar00wOF2�����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+��Yfonts/roboto_regular_macroman/Roboto-Regular-webfont.svg000060400000216742150752727250017651 0ustar00<?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> fonts/roboto_regular_macroman/Roboto-Regular-webfont.eot000060400000051510150752727250017627 0ustar00HSnR�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��fonts/roboto_bold_macroman/Roboto-Bold-webfont.ttf000060400000127720150752727250016402 0ustar000FFTM_�[<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{��fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff2000060400000173530150752727250016630 0ustar00wOF2�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�fonts/roboto_bold_macroman/Roboto-Bold-webfont.woff000060400000060350150752727250016541 0ustar00wOFF`���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{��fonts/roboto_bold_macroman/Roboto-Bold-webfont.eot000060400000050746150752727250016377 0ustar00�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��fonts/roboto_bold_macroman/Roboto-Bold-webfont.svg000060400000213203150752727250016374 0ustar00<?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> fonts/themify-icons/fonts/themify.woff000060400000155454150752727250014162 0ustar00wOFFOTTO�,
��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 IcoMoonfonts/themify-icons/fonts/themify.ttf000060400000231370150752727250014006 0ustar00�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 IcoMoonfonts/themify-icons/fonts/themify.svg000060400000711435150752727250014015 0ustar00<?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>fonts/themify-icons/fonts/themify.eot000060400000231634150752727260014004 0ustar00�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 IcoMoonfonts/themify-icons/themify-icons.css000060400000040063150752727260013757 0ustar00@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";
}
fonts/pe-icon-7-stroke/css/helper.css000060400000007234150752727260013500 0ustar00
/* 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;
}fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css000060400000023016150752727260015220 0ustar00@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";
}
fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.ttf000060400000162160150752727260015532 0ustar00�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.fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.woff000060400000162274150752727260015704 0ustar00wOFF��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.fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.svg000060400000500264150752727260015535 0ustar00<?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>fonts/pe-icon-7-stroke/fonts/Pe-icon-7-stroke.eot000060400000162470150752727260015530 0ustar008�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.fonts/octicons/octicons.svg000060400000203021150752727260012067 0ustar00<?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>
fonts/octicons/octicons.eot000060400000074200150752727260012064 0ustar00�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-desktopfonts/octicons/octicons.css000060400000025230150752727260012064 0ustar00@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'} /* ⚡ */
fonts/octicons/octicons.ttf000060400000073730150752727260012101 0ustar00
� 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-desktopfonts/octicons/octicons-local.ttf000060400000146500150752727260013165 0ustar00
� 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-desktopfonts/octicons/octicons.woff000060400000041234150752727260012237 0ustar00wOFFB�
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(�html/modules.php000060400000002463150752727260007707 0ustar00<?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;
}
html/layouts/joomla/system/message.php000060400000002074150752727260014166 0ustar00<?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; ?>
html/layouts/joomla/content/tags.php000060400000002110150752727260013615 0ustar00<?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; ?>
html/layouts/joomla/content/info_block/author.php000060400000001664150752727260016303 0ustar00<?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>html/layouts/joomla/content/info_block/publish_date.php000060400000001162150752727260017435 0ustar00<?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>html/layouts/joomla/content/info_block/parent_category.php000060400000001553150752727260020164 0ustar00<?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>html/layouts/joomla/content/info_block/hits.php000060400000001106150752727260015737 0ustar00<?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>html/layouts/joomla/content/info_block/modify_date.php000060400000001154150752727260017257 0ustar00<?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>html/layouts/joomla/content/info_block/create_date.php000060400000001146150752727260017234 0ustar00<?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>html/layouts/joomla/content/info_block/category.php000060400000001720150752727260016607 0ustar00<?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>html/mod_news_show_sp2/default.php000060400000042221150752727260013316 0ustar00<?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>html/com_content/article/default.php000060400000017406150752727260013621 0ustar00<?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>
html/com_content/featured/default.php000060400000005464150752727260013776 0ustar00<?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>
html/com_content/featured/default_item.php000060400000010715150752727260015007 0ustar00<?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; ?>
html/com_content/category/blog_item.php000060400000006722150752727260014327 0ustar00<?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; ?>
html/com_content/category/blog.php000060400000011314150752727260013302 0ustar00<?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>
html/mod_login/default.php000060400000011763150752727260011635 0ustar00<?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>
html/mod_search/default.php000060400000004066150752727260011770 0ustar00<?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>
html/com_search/search/default_form.php000060400000005322150752727260014253 0ustar00<?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>
html/com_search/search/default_results.php000060400000003165150752727260015014 0ustar00<?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>
html/pagination.php000060400000002611150752727260010363 0ustar00<?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>";
}
scss/_dependencies.scss000060400000000574150752727260011220 0ustar00// 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";
scss/sanctum-joomla/_forms.scss000060400000002613150752727260012645 0ustar00legend {
	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;
    }
}

scss/sanctum-joomla/_revolution.scss000060400000002057150752727260013727 0ustar00.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;
    }
}scss/sanctum-joomla/_search.scss000060400000004032150752727260012761 0ustar00.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;
					}
				}
			}
		}
	}
}scss/sanctum-joomla/_blog.scss000060400000005377150752727260012454 0ustar00.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;
			}
		}
	}
}scss/sanctum-joomla/_typography.scss000060400000002027150752727260013724 0ustar00// 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;
}
scss/sanctum-joomla/_utilities.scss000060400000005124150752727260013532 0ustar00
// 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;
}scss/sanctum-joomla/_contacts.scss000060400000001505150752727260013334 0ustar00.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;
		}
	}
}scss/sanctum-joomla/_uikit.scss000060400000001422150752727260012641 0ustar00.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;
}scss/sanctum-joomla/_breadcrumb.scss000060400000001150150752727260013620 0ustar00ul.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;
				}
			}
		}
	}
}scss/sanctum-joomla/_core.scss000060400000006046150752727260012453 0ustar00.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;
			}
		}
	}
}scss/sanctum-joomla/_nssp2.scss000060400000007607150752727260012574 0ustar00.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;
				}
			}
		}
	}
}scss/sanctum-joomla/_tabs.scss000060400000000577150752727260012457 0ustar00.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;
}
scss/sanctum.scss000060400000005435150752727260010106 0ustar00// 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";

//-------------------------------------------scss/configuration/_core.scss000060400000000456150752727260012370 0ustar00// 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;scss/configuration/_colors.scss000060400000024033150752727260012736 0ustar00// 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);
scss/configuration/_typography.scss000060400000002031150752727260013635 0ustar00// 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;scss/configuration/_nav.scss000060400000000057150752727260012221 0ustar00// Dropdowns
$menu-col-width:			180px !default;scss/configuration/_base.scss000060400000000167150752727260012351 0ustar00// Core
@import "core";

// Navigation
@import "nav";

// Colors
@import "colors";

// Typography
@import "typography";scss/configuration/_colors_old.scss000060400000023760150752727260013602 0ustar00// 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);
scss/sanctum/_footer.scss000060400000002724150752727260011541 0ustar00#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;
	}
}scss/sanctum/_onepage-menu.scss000060400000002157150752727260012623 0ustar00// 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;
					}
				}
			}
		}
	}
}scss/sanctum/_contentarray.scss000060400000002333150752727260012750 0ustar00.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;
        }
    }
}
scss/sanctum/_core_old.scss000060400000013176150752727260012034 0ustar00body, #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;
					}
				}
			}
		}
	}
}scss/sanctum/_contacts.scss000060400000007557150752727260012072 0ustar00// 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;
			}
		}
	}
}scss/sanctum/_bs-buttons.scss000060400000005272150752727260012344 0ustar00// 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;
		}
	}
}scss/sanctum/_typography.scss000060400000005074150752727260012452 0ustar00// 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;
}scss/sanctum/_particle-overrides.scss000060400000011262150752727260014043 0ustar00// 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;
			}
		}
	}
}scss/sanctum/_top.scss000060400000006111150752727260011037 0ustar00#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;
	}
}scss/sanctum/_breadcrumb.scss000060400000001176150752727260012351 0ustar00#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;
	}
}scss/sanctum/_social.scss000060400000001351150752727260011510 0ustar00.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;
				}
			}
		}
	}
}

scss/sanctum/_last.scss000060400000001071150752727260011200 0ustar00#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;
	}
}scss/sanctum/_forms.scss000060400000000756150752727260011374 0ustar00textarea, 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;
}scss/sanctum/_prebottom.scss000060400000001103150752727260012244 0ustar00#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;
	}
}scss/sanctum/_utility.scss000060400000001057150752727260011744 0ustar00#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;
	}
}scss/sanctum/_mainbody.scss000060400000001072150752727260012040 0ustar00#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;
	}
}
scss/sanctum/_cta-button.scss000060400000005753150752727260012330 0ustar00.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;
			}
		}
	}
}scss/sanctum/_systemmessages.scss000060400000001710150752727260013311 0ustar00#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;
			}
		}
	}
}scss/sanctum/_portfolio.scss000060400000011274150752727260012260 0ustar00// 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;
	}
}scss/sanctum/_core_der.scss000060400000013402150752727260012020 0ustar00body, #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;
}scss/sanctum/_dropdownanimations.scss000060400000002515150752727260014160 0ustar00.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;
    }
}scss/sanctum/_feature.scss000060400000001057150752727260011674 0ustar00#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;
	}
}scss/sanctum/_copyright.scss000060400000002074150752727260012251 0ustar00#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;
	}
}scss/sanctum/_our-team.scss000060400000010606150752727260011772 0ustar00// 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;
							}
						}
					}
				}
			}
		}
	}
}scss/sanctum/_content-pro.scss000060400000007457150752727260012523 0ustar00// 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));
					}
				}
			}
		}
	}
}scss/sanctum/_to-top.scss000060400000001712150752727260011461 0ustar00#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;
			}
		}
	}
}scss/sanctum/_afterbottom.scss000060400000001127150752727260012565 0ustar00#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;
	}
}scss/sanctum/_sidebar.scss000060400000001765150752727260011660 0ustar00#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;
	}
}scss/sanctum/_mainnav.scss000060400000011617150752727260011675 0ustar00%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;
							}
						}
					}
				}
			}
		}
	}
}scss/sanctum/_core.scss000060400000014233150752727260011171 0ustar00body, #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;

}scss/sanctum/_additional.scss000060400000001115150752727260012344 0ustar00#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;
	}
}scss/sanctum/_error.scss000060400000000223150752727260011364 0ustar00body.outline-_error {
	h1 {
		margin: 30px 0;
		text-align: center;
	}
	.g-offcanvas-toggle:not(.offcanvas-toggle-particle) {
		display: none;
	}
}scss/sanctum/_showcase.scss000060400000001071150752727260012051 0ustar00#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;
	}
}scss/sanctum/_bottom.scss000060400000001045150752727260011542 0ustar00#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;
	}
}scss/sanctum/_modal-search.scss000060400000006243150752727260012602 0ustar00.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;
	}
}scss/sanctum/_header.scss000060400000001317150752727260011470 0ustar00#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;
	}
}scss/sanctum/_image-features.scss000060400000004700150752727260013135 0ustar00// 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;
		}
	}
}scss/sanctum/_offcanvas-toggle.scss000060400000000505150752727260013463 0ustar00.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;
    }
}  scss/sanctum/_page-title.scss000060400000000225150752727260012270 0ustar00.g-page-title {
	text-align: center;
	@include breakpoint(mobile-only) {
		margin-bottom: -30px;
	}
	h3 {
		margin: 0;
	}
	i {
		display: block;
	}
}scss/sanctum/_media-box.scss000060400000003116150752727260012104 0ustar00// 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;
			}
		}
	}
}scss/sanctum/_extension.scss000060400000001103150752727260012245 0ustar00#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;
	}
}scss/sanctum/_intro.scss000060400000001033150752727260011366 0ustar00#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;
	}
}scss/sanctum/_mainbottom.scss000060400000001115150752727260012405 0ustar00#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;
	}
}scss/sanctum/_navigation.scss000060400000002261150752727260012376 0ustar00#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;
	}
}
scss/sanctum/_features-particle.scss000060400000022670150752727260013664 0ustar00// 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;
			}
		}
	}
}scss/sanctum/_variations.scss000060400000006416150752727260012424 0ustar00.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;
	}
}scss/sanctum/_menu.scss000060400000005655150752727260011215 0ustar00#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;
		}
	}
}scss/sanctum/_slideshow.scss000060400000016111150752727260012237 0ustar00.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;
        }
    }
}scss/sanctum/_drawer.scss000060400000001045150752727260011522 0ustar00#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;
	}
}scss/sanctum/_offcanvas.scss000060400000010431150752727260012203 0ustar00#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);
}scss/sanctum/_main-feature.scss000060400000002005150752727260012610 0ustar00.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;
		}
	}
}scss/sanctum/_tables.scss000060400000000321150752727260011504 0ustar00table {
	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%); 
}scss/sanctum/_fullwidth.scss000060400000001235150752727260012241 0ustar00#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;
	}
}scss/sanctum/_maintop.scss000060400000001057150752727260011710 0ustar00#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;
	}
}scss/sanctum/_aside.scss000060400000001737150752727260011333 0ustar00#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;
	}
}scss/sanctum/_subfeature.scss000060400000001115150752727260012401 0ustar00#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;
	}
}scss/sanctum/_content-pro-joomla.scss000060400000006004150752727260013765 0ustar00// 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));
					}
				}
			}
		}
	}
}scss/sanctum/_paypal-donate.scss000060400000000667150752727260013005 0ustar00.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;
			}
		}
	}
}scss/sanctum-joomla.scss000060400000002030150752727260011351 0ustar00// 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";

//-------------------------------------------
component.php000060400000001332150752727260007267 0ustar00<?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');

Youez - 2016 - github.com/yon3zu
LinuXploit