Brizy – Page Builder - Version 1.0.40

Version Description

  • 2018-10-26 =
  • New: Added context (right click) menu for most elements
  • Improved: Button and Icon groups are now vertically centered
  • Improved: Toolbar options styling
  • Improved: Added percentage to Image toolbar zoom option
  • Fixed: Import posts/projects
  • Fixed: Execute do_shortcodes on page content
  • Fixed: Brizy Menu for unsupported posts
  • Fixed: Compatibility fixes for gutemberg, autoptimize and w3-total-cache
  • Fixed: Class autoloader fix
  • Fixed: Updated project API
  • Fixed: Image url problems when using WPML
  • Fixed: Image missing alt and title attributes
  • Fixed: CSS Corrupted file compression issue with Siteground
  • Fixed: Forms stop sending other requests if one is already in progress
  • Fixed: Nucleo icon font issue
  • Fixed: Duplicate media
  • Fixed: Ignore template rules for deleted templates
  • Fixed: Fixed template rules for deleted templates
Download this release

Release Info

Developer themefusecom
Plugin Icon 128x128 Brizy – Page Builder
Version 1.0.40
Comparing to
See all releases

Code changes from version 1.0.39 to 1.0.40

README.md CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
- Stable tag: 1.0.39<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -96,6 +96,26 @@ A good bug report includes full details to easily understand the issue you are h
96
 
97
  ## Changelog
98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  ### 1.0.39 - 2018-10-11 ###
100
  * Fixed: Section background image for mobil
101
  * Fixed: Gutemberg compatilbility
3
  Requires at least: 4.5<br>
4
  Tested up to: 4.9<br>
5
  Requires PHP: 5.4<br>
6
+ Stable tag: 1.0.40<br>
7
  License: GPLv3<br>
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
96
 
97
  ## Changelog
98
 
99
+ ### 1.0.40 - 2018-10-26 ###
100
+ * New: Added context (right click) menu for most elements
101
+ * Improved: Button and Icon groups are now vertically centered
102
+ * Improved: Toolbar options styling
103
+ * Improved: Added percentage to Image toolbar zoom option
104
+ * Fixed: Import posts/projects
105
+ * Fixed: Execute do_shortcodes on page content
106
+ * Fixed: Brizy Menu for unsupported posts
107
+ * Fixed: Compatibility fixes for gutemberg, autoptimize and w3-total-cache
108
+ * Fixed: Class autoloader fix
109
+ * Fixed: Updated project API
110
+ * Fixed: Image url problems when using WPML
111
+ * Fixed: Image missing alt and title attributes
112
+ * Fixed: CSS Corrupted file compression issue with Siteground
113
+ * Fixed: Forms stop sending other requests if one is already in progress
114
+ * Fixed: Nucleo icon font issue
115
+ * Fixed: Duplicate media
116
+ * Fixed: Ignore template rules for deleted templates
117
+ * Fixed: Fixed template rules for deleted templates
118
+
119
  ### 1.0.39 - 2018-10-11 ###
120
  * Fixed: Section background image for mobil
121
  * Fixed: Gutemberg compatilbility
admin/main.php CHANGED
@@ -47,7 +47,7 @@ class Brizy_Admin_Main {
47
  'action_change_template'
48
  ) ); // action to change template from editor
49
 
50
- add_action( 'edit_form_after_title', array(
51
  $this,
52
  'action_add_enable_disable_buttons'
53
  ) ); // add button to enable disable editor
@@ -64,6 +64,9 @@ class Brizy_Admin_Main {
64
  add_filter( 'display_post_states', array( $this, 'display_post_states' ), 10, 2 );
65
 
66
  add_filter( 'save_post', array( $this, 'save_post' ), 10, 2 );
 
 
 
67
  }
68
 
69
  /**
@@ -399,4 +402,79 @@ class Brizy_Admin_Main {
399
 
400
  exit;
401
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
  }
47
  'action_change_template'
48
  ) ); // action to change template from editor
49
 
50
+ add_action( 'edit_form_after_title', array(
51
  $this,
52
  'action_add_enable_disable_buttons'
53
  ) ); // add button to enable disable editor
64
  add_filter( 'display_post_states', array( $this, 'display_post_states' ), 10, 2 );
65
 
66
  add_filter( 'save_post', array( $this, 'save_post' ), 10, 2 );
67
+
68
+ add_filter( 'wp_import_existing_post', array( $this, 'handleNewProjectPostImport' ), 10, 2 );
69
+ add_filter( 'wp_import_post_meta', array( $this, 'handleNewProjectMetaImport' ), 10, 3 );
70
  }
71
 
72
  /**
402
 
403
  exit;
404
  }
405
+
406
+ public function handleNewProjectPostImport( $existing, $post ) {
407
+
408
+ if ( $post['post_type'] == Brizy_Editor_Project::BRIZY_PROJECT ) {
409
+
410
+ $currentProject = Brizy_Editor_Project::get();
411
+ $currentProjectGlobals = $currentProject->getGlobals();
412
+ $currentProjectPostId = $currentProject->getWpPost()->ID;
413
+ $currentProjectStorage = Brizy_Editor_Storage_Project::instance( $currentProjectPostId );
414
+
415
+ $projectMeta = null;
416
+
417
+ foreach ( $post['postmeta'] as $meta ) {
418
+ if ( $meta['key'] == 'brizy-project' ) {
419
+ $projectMeta = maybe_unserialize( $meta['value'] );
420
+ break;
421
+ }
422
+ }
423
+
424
+ if ( ! $projectMeta ) {
425
+ // force import if the project data is not found in current project.
426
+ return 0;
427
+ }
428
+
429
+ $projectData = json_decode( base64_decode( $projectMeta['globals'] ) );
430
+
431
+ // merge savedBlocks
432
+ $currentProjectGlobals->project->savedBlocks = array_merge(
433
+ (array) ( isset( $currentProjectGlobals->project->savedBlocks ) ? $currentProjectGlobals->project->savedBlocks : array() ),
434
+ (array) ( isset( $projectData->project->savedBlocks ) ? $projectData->project->savedBlocks : array() ) );
435
+
436
+ // merge global blocks
437
+ $currentProjectGlobals->project->globalBlocks = (object) array_merge(
438
+ (array) ( isset( $currentProjectGlobals->project->globalBlocks ) ? $currentProjectGlobals->project->globalBlocks : array() ),
439
+ (array) ( isset( $projectData->project->globalBlocks ) ? $projectData->project->globalBlocks : array() )
440
+ );
441
+
442
+ // MERGE STYLES
443
+ // 1. merge extra fonts
444
+ $currentProjectGlobals->project->extraFonts = array_unique(
445
+ array_merge(
446
+ (array) ( isset( $currentProjectGlobals->project->extraFonts ) ? $currentProjectGlobals->project->extraFonts : array() ),
447
+ (array) ( isset( $projectData->project->extraFonts ) ? $projectData->project->extraFonts : array() )
448
+ )
449
+ );
450
+ // 2. merge extra fonts styles
451
+ $currentProjectGlobals->project->styles->_extraFontStyles = array_merge(
452
+ (array) ( isset( $currentProjectGlobals->project->styles->_extraFontStyles ) ? $currentProjectGlobals->project->styles->_extraFontStyles : array() ),
453
+ (array) ( isset( $projectData->project->styles->_extraFontStyles ) ? $projectData->project->styles->_extraFontStyles : array() )
454
+ );
455
+
456
+ $selected = $projectData->project->styles->_selected;
457
+ $currentProjectGlobals->project->styles->_selected = $selected;
458
+ $currentProjectGlobals->project->styles->$selected = $projectData->project->styles->$selected;
459
+
460
+ // create project data backup
461
+ $data = $currentProjectStorage->get_storage();
462
+ update_post_meta( $currentProjectPostId, 'brizy-project-import-backup-' . md5( time() ), $data );
463
+ //---------------------------------------------------------
464
+
465
+ $currentProject->setGlobals( $currentProjectGlobals );
466
+
467
+ return $currentProjectPostId;
468
+ }
469
+
470
+ return $existing;
471
+ }
472
+
473
+ public function handleNewProjectMetaImport( $postMeta, $post_id, $post ) {
474
+ if ( $post['post_type'] == Brizy_Editor_Project::BRIZY_PROJECT ) {
475
+ return null;
476
+ }
477
+
478
+ return $postMeta;
479
+ }
480
  }
admin/migrations/global-storage.php CHANGED
@@ -18,9 +18,18 @@ class Brizy_Admin_Migrations_GlobalStorage extends Brizy_Admin_Migrations_Abstra
18
  }
19
 
20
  /**
21
- * @return mixed
 
22
  */
23
  protected function loadData() {
24
  $this->data = get_option( Brizy_Admin_Migrations_AbstractStorage::KEY, array() );
 
 
 
 
 
 
 
 
25
  }
26
  }
18
  }
19
 
20
  /**
21
+ * @return mixed|void
22
+ * @throws Exception
23
  */
24
  protected function loadData() {
25
  $this->data = get_option( Brizy_Admin_Migrations_AbstractStorage::KEY, array() );
26
+
27
+
28
+ foreach ( $this->data as $i => $migration ) {
29
+ if ( $migration instanceof __PHP_Incomplete_Class ) {
30
+ throw new Brizy_Admin_Migrations_UpgradeRequiredException( 'Please update the plugin to the latest version' );
31
+ }
32
+ }
33
+
34
  }
35
  }
admin/migrations/upgrade-required-exception.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 10/12/18
6
+ * Time: 10:13 AM
7
+ */
8
+
9
+ class Brizy_Admin_Migrations_UpgradeRequiredException extends Exception {
10
+
11
+ }
admin/rules/api.php CHANGED
@@ -65,7 +65,7 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
65
  $postId = (int) $this->param( 'post' );
66
 
67
  if ( ! $postId ) {
68
- return wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
69
  }
70
 
71
  $rules = $this->manager->getRules( $postId );
@@ -82,11 +82,11 @@ class Brizy_Admin_Rules_Api extends Brizy_Admin_AbstractApi {
82
  $postId = (int) $this->param( 'post' );
83
 
84
  if ( ! $postId ) {
85
- return wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
86
  }
87
 
88
  $ruleData = $this->param( 'rule' );
89
- $rule = Brizy_Admin_Rule::createFromRequestData($ruleData);
90
 
91
  // validate rule
92
  $ruleSet = $this->manager->getAllRulesSet();
65
  $postId = (int) $this->param( 'post' );
66
 
67
  if ( ! $postId ) {
68
+ wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
69
  }
70
 
71
  $rules = $this->manager->getRules( $postId );
82
  $postId = (int) $this->param( 'post' );
83
 
84
  if ( ! $postId ) {
85
+ wp_send_json_error( (object) array( 'message' => 'Invalid template' ), 400 );
86
  }
87
 
88
  $ruleData = $this->param( 'rule' );
89
+ $rule = Brizy_Admin_Rule::createFromRequestData($ruleData);
90
 
91
  // validate rule
92
  $ruleSet = $this->manager->getAllRulesSet();
admin/rules/manager.php CHANGED
@@ -93,13 +93,17 @@ class Brizy_Admin_Rules_Manager {
93
  return new Brizy_Admin_RuleSet( $this->getRules( $postId ) );
94
  }
95
 
96
- public function getAllRulesSet() {
97
- $templates = get_posts( array(
 
98
  'post_type' => Brizy_Admin_Templates::CP_TEMPLATE,
99
- 'numberposts' => - 1,
100
- 'posts_per_page' => - 1,
101
- 'post_status' => 'any'
102
- ) );
 
 
 
103
 
104
  $rules = array();
105
 
93
  return new Brizy_Admin_RuleSet( $this->getRules( $postId ) );
94
  }
95
 
96
+ public function getAllRulesSet( $args = array() ) {
97
+
98
+ $defaults = array(
99
  'post_type' => Brizy_Admin_Templates::CP_TEMPLATE,
100
+ 'posts_per_page' => -1,
101
+ 'post_status' => array( 'publish', 'pending', 'draft', 'auto-draft', 'future', 'private', 'inherit' )
102
+ );
103
+
104
+ $r = wp_parse_args( $args, $defaults );
105
+
106
+ $templates = get_posts( $r );
107
 
108
  $rules = array();
109
 
admin/templates.php CHANGED
@@ -48,6 +48,7 @@ class Brizy_Admin_Templates {
48
  if ( is_admin() ) {
49
  add_filter( 'post_updated_messages', array( $this, 'filterTemplateMessages' ) );
50
  add_action( 'add_meta_boxes', array( $this, 'registerTemplateMetaBox' ), 9 );
 
51
  add_action( 'wp_ajax_' . self::RULE_LIST_VEIW, array( $this, 'getTemplateRuleBox' ) );
52
  add_action( 'wp_ajax_' . self::RULE_GROUP_LIST, array( $this, 'getGroupList' ) );
53
  add_filter( 'post_row_actions', array( $this, 'removeRowActions' ), 10, 1 );
@@ -271,7 +272,7 @@ class Brizy_Admin_Templates {
271
  ->render( 'rules-box.html.twig', $context );
272
  } catch ( Exception $e ) {
273
  Brizy_Logger::instance()->error( $e->getMessage(), array( 'exception' => $e ) );
274
- ?>Unable to show the rule box.<?php
275
  }
276
  }
277
 
@@ -568,7 +569,7 @@ class Brizy_Admin_Templates {
568
 
569
  $compiled_page = $this->template->get_compiled_page( Brizy_Editor_Project::get(), $brizyPost );
570
 
571
- echo $compiled_page->get_body();
572
  }
573
 
574
  /**
@@ -613,4 +614,46 @@ class Brizy_Admin_Templates {
613
 
614
  return $compiled_page->get_body();
615
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  }
48
  if ( is_admin() ) {
49
  add_filter( 'post_updated_messages', array( $this, 'filterTemplateMessages' ) );
50
  add_action( 'add_meta_boxes', array( $this, 'registerTemplateMetaBox' ), 9 );
51
+ add_action( 'transition_post_status', array( $this, 'actionTransitionPostStatus' ), 10, 3 );
52
  add_action( 'wp_ajax_' . self::RULE_LIST_VEIW, array( $this, 'getTemplateRuleBox' ) );
53
  add_action( 'wp_ajax_' . self::RULE_GROUP_LIST, array( $this, 'getGroupList' ) );
54
  add_filter( 'post_row_actions', array( $this, 'removeRowActions' ), 10, 1 );
272
  ->render( 'rules-box.html.twig', $context );
273
  } catch ( Exception $e ) {
274
  Brizy_Logger::instance()->error( $e->getMessage(), array( 'exception' => $e ) );
275
+ esc_html_e( 'Unable to show the rule box.', 'brizy' );
276
  }
277
  }
278
 
569
 
570
  $compiled_page = $this->template->get_compiled_page( Brizy_Editor_Project::get(), $brizyPost );
571
 
572
+ echo do_shortcode( $compiled_page->get_body() );
573
  }
574
 
575
  /**
614
 
615
  return $compiled_page->get_body();
616
  }
617
+
618
+ /**
619
+ * Check for rules conflicts on transition post from trash to another post status.
620
+ * If we have some conflicts between the rules from the transition post rules and other rules from existing posts,
621
+ * then we remove conflicting rules from the restored post.
622
+ *
623
+ * @param string $new_status New post status.
624
+ * @param string $old_status Old post status.
625
+ * @param WP_Post $post Transition post.
626
+ */
627
+ public function actionTransitionPostStatus( $new_status, $old_status, $post ) {
628
+
629
+ if ( 'trash' !== $old_status || self::CP_TEMPLATE !== $post->post_type ) {
630
+ return;
631
+ }
632
+
633
+ $post_id = $post->ID;
634
+ $rule_manager = new Brizy_Admin_Rules_Manager();
635
+ $post_rules = $rule_manager->getRules( $post_id );
636
+
637
+ if ( ! $post_rules ) {
638
+ return;
639
+ }
640
+
641
+ $all_rules = $rule_manager->getAllRulesSet( array( 'post__not_in' => array( $post_id ) ) )->getRules();
642
+ $has_conflicts = false;
643
+
644
+ foreach ( $post_rules as $post_rule ) {
645
+
646
+ foreach ( $all_rules as $arule ) {
647
+
648
+ if ( $post_rule->isEqual( $arule ) ) {
649
+ $rule_manager->deleteRule( $post_id, $post_rule->getId() );
650
+ $has_conflicts = true;
651
+ }
652
+ }
653
+ }
654
+
655
+ if ( $has_conflicts ) {
656
+ Brizy_Admin_Flash::instance()->add_error( 'Conflict of rules: Some rules have been deleted for restored posts. Please check them.' );
657
+ }
658
+ }
659
  }
autoload.php CHANGED
@@ -35,7 +35,9 @@ function brizy_autoload( $class_name ) {
35
  $include_path .= ".php";
36
  }
37
 
38
- include_once $include_path;
 
 
39
  }
40
 
41
  spl_autoload_register( 'brizy_autoload' );
35
  $include_path .= ".php";
36
  }
37
 
38
+ if ( file_exists( $include_path ) ) {
39
+ include_once $include_path;
40
+ }
41
  }
42
 
43
  spl_autoload_register( 'brizy_autoload' );
brizy.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
- * Version: 1.0.39
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
@@ -20,8 +20,8 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
- define( 'BRIZY_VERSION', '1.0.39' );
24
- define( 'BRIZY_EDITOR_VERSION', '1.0.64' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
5
  * Plugin URI: https://brizy.io/
6
  * Author: Brizy.io
7
  * Author URI: https://brizy.io/
8
+ * Version: 1.0.40
9
  * Text Domain: brizy
10
  * License: GPLv3
11
  * Domain Path: /languages
20
 
21
  define( 'BRIZY_DEVELOPMENT', false );
22
  define( 'BRIZY_LOG', false );
23
+ define( 'BRIZY_VERSION', '1.0.40' );
24
+ define( 'BRIZY_EDITOR_VERSION', '1.0.66' );
25
  define( 'BRIZY_FILE', __FILE__ );
26
  define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
27
  define( 'BRIZY_PLUGIN_PATH', dirname( BRIZY_FILE ) );
compatibilities/autoptimize.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Compatibilities_Autoptimize {
4
+
5
+ public function __construct() {
6
+ add_action( 'wp', array( $this, 'disable_js_optimize' ), 11 );
7
+ }
8
+
9
+ /**
10
+ * Enable noptimize param in the autoptimize plugin class autoptimizeScripts.
11
+ * It is used to perfom some actions above js scripts like: minify, concatenate ...
12
+ * When we are in post build mode with brizy we disable it.
13
+ */
14
+ public function disable_js_optimize() {
15
+ $pid = Brizy_Editor::get()->currentPostId();
16
+
17
+ if ( ! $pid ) {
18
+ return;
19
+ }
20
+
21
+ $post = Brizy_Editor_Post::get( $pid );
22
+
23
+ if ( $post && $post->uses_editor() && isset( $_GET[ Brizy_Editor_Constants::EDIT_KEY_IFRAME ] ) ) {
24
+ add_filter( 'autoptimize_filter_js_noptimize', '__return_true' );
25
+ }
26
+ }
27
+ }
compatibilities/gutenberg.php CHANGED
@@ -3,11 +3,6 @@
3
  class Brizy_Compatibilities_Gutenberg {
4
 
5
  public function __construct() {
6
-
7
- if ( ! function_exists( 'gutenberg_init' ) ) {
8
- return;
9
- }
10
-
11
  add_filter( 'the_content', array( $this, 'filter_the_content' ), 7 );
12
  add_action( 'admin_print_scripts-edit.php', array( $this, 'add_edit_button_to_gutenberg' ), 12 );
13
  add_action( 'admin_init', array( $this, 'action_disable_gutenberg' ) );
3
  class Brizy_Compatibilities_Gutenberg {
4
 
5
  public function __construct() {
 
 
 
 
 
6
  add_filter( 'the_content', array( $this, 'filter_the_content' ), 7 );
7
  add_action( 'admin_print_scripts-edit.php', array( $this, 'add_edit_button_to_gutenberg' ), 12 );
8
  add_action( 'admin_init', array( $this, 'action_disable_gutenberg' ) );
compatibilities/wtc.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * Compatibility with W3 Total Cache: https://wordpress.org/plugins/w3-total-cache/
4
+ * Compatibility with A2 Fixed W3 Total Cache by a2hosting.com a plugin contains some bug fixes for W3 Total Cache ususally used only on a2hosting servers.
5
+ */
6
+ class Brizy_Compatibilities_Wtc {
7
+
8
+ public function __construct() {
9
+ add_filter( 'wp_loaded', array( $this, 'action_disable_minify' ) );
10
+ }
11
+
12
+ public function action_disable_minify() {
13
+ if ( isset( $GLOBALS['_w3tc_ob_callbacks']['minify'] ) ) {
14
+ unset( $GLOBALS['_w3tc_ob_callbacks']['minify'] );
15
+ }
16
+ }
17
+ }
content/content-placeholder.php ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 8/21/18
6
+ * Time: 4:39 PM
7
+ */
8
+
9
+
10
+ /**
11
+ * Class BrizyPro_Content_Placeholder
12
+ */
13
+ class Brizy_Content_ContentPlaceholder {
14
+
15
+ /**
16
+ * @var string
17
+ */
18
+ protected $uid;
19
+
20
+ /**
21
+ * @var string
22
+ */
23
+ protected $placeholder;
24
+
25
+ /**
26
+ * @var string
27
+ */
28
+ protected $name;
29
+
30
+ /**
31
+ * @var []
32
+ */
33
+ protected $attributes;
34
+
35
+ /**
36
+ * @var string
37
+ */
38
+ protected $content;
39
+
40
+ /**
41
+ * BrizyPro_Content_ContentPlaceholder constructor.
42
+ *
43
+ * @param $name
44
+ * @param $placeholder
45
+ * @param null $attributes
46
+ * @param null $content
47
+ */
48
+ public function __construct( $name, $placeholder, $attributes = null, $content = null ) {
49
+
50
+ $this->setUid( md5( microtime() . rand( 0, PHP_INT_MAX ).$placeholder ) );
51
+ $this->setPlaceholder( $placeholder );
52
+ $this->setName( $name );
53
+ $this->setAttributes( $attributes );
54
+ $this->setContent( $content );
55
+ }
56
+
57
+ /**
58
+ * @return string
59
+ */
60
+ public function getUid() {
61
+ return $this->uid;
62
+ }
63
+
64
+ /**
65
+ * @param $uid
66
+ *
67
+ * @return $this
68
+ */
69
+ public function setUid( $uid ) {
70
+ $this->uid = $uid;
71
+
72
+ return $this;
73
+ }
74
+
75
+ /**
76
+ * @return string
77
+ */
78
+ public function getPlaceholder() {
79
+ return $this->placeholder;
80
+ }
81
+
82
+ /**
83
+ * @param $placeholder
84
+ *
85
+ * @return $this
86
+ */
87
+ public function setPlaceholder( $placeholder ) {
88
+ $this->placeholder = $placeholder;
89
+
90
+ return $this;
91
+ }
92
+
93
+ /**
94
+ * @return string
95
+ */
96
+ public function getName() {
97
+ return $this->name;
98
+ }
99
+
100
+ /**
101
+ * @param $name
102
+ *
103
+ * @return $this
104
+ */
105
+ public function setName( $name ) {
106
+ $this->name = $name;
107
+
108
+ return $this;
109
+ }
110
+
111
+ /**
112
+ * @return mixed
113
+ */
114
+ public function getAttributes() {
115
+ return $this->attributes;
116
+ }
117
+
118
+ /**
119
+ * @param $attributes
120
+ *
121
+ * @return $this
122
+ */
123
+ public function setAttributes( $attributes ) {
124
+ $this->attributes = $attributes;
125
+
126
+ return $this;
127
+ }
128
+
129
+ /**
130
+ * @return string
131
+ */
132
+ public function getContent() {
133
+ return $this->content;
134
+ }
135
+
136
+ /**
137
+ * @param $content
138
+ *
139
+ * @return $this
140
+ */
141
+ public function setContent( $content ) {
142
+ $this->content = $content;
143
+
144
+ return $this;
145
+ }
146
+
147
+
148
+ }
content/context-factory.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 8/17/18
6
+ * Time: 3:18 PM
7
+ */
8
+
9
+ class Brizy_Content_ContextFactory {
10
+
11
+ /**
12
+ * @param $project
13
+ * @param $brizy_post
14
+ * @param $wp_post
15
+ * @param $contentHtml
16
+ *
17
+ * @return Brizy_Content_Context
18
+ */
19
+ static public function createContext( $project, $brizy_post, $wp_post, $contentHtml ) {
20
+ $context = new Brizy_Content_Context( $project, $brizy_post, $wp_post, $contentHtml );
21
+
22
+ $context = apply_filters( 'brizy_dynamic_content_context_create', $context, $project, $brizy_post, $wp_post, $contentHtml );
23
+
24
+ return $context;
25
+ }
26
+ }
content/context.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Context {
4
+
5
+ private $data = array();
6
+
7
+ /**
8
+ * @param $name
9
+ * @param $arguments
10
+ *
11
+ * @return mixed|null
12
+ */
13
+ public function __call( $name, $arguments ) {
14
+ $method = substr( $name, 0, 3 );
15
+ $key = substr( $name, 3 );
16
+
17
+ switch ( $method ) {
18
+ case 'set':
19
+ return $this->set( $key, $arguments[0] );
20
+ break;
21
+ case 'get':
22
+ return $this->get( $key );
23
+ break;
24
+ }
25
+ }
26
+
27
+
28
+ /**
29
+ * @param $name
30
+ *
31
+ * @return null|mixed
32
+ */
33
+ protected function get( $name ) {
34
+
35
+ if ( is_null( $name ) ) {
36
+ return;
37
+ }
38
+
39
+ if ( isset( $this->data[ $name ] ) ) {
40
+ return $this->data[ $name ];
41
+ }
42
+
43
+ return null;
44
+ }
45
+
46
+ /**
47
+ * @param $key
48
+ * @param $value
49
+ *
50
+ * @return null|mixed
51
+ */
52
+ protected function set( $key, $value ) {
53
+ if ( is_null( $value ) ) {
54
+ return null;
55
+ }
56
+
57
+ return $this->data[ $key ] = $value;
58
+ }
59
+
60
+ /**
61
+ * BrizyPro_Content_Context constructor.
62
+ *
63
+ * @param $project
64
+ * @param $brizy_post
65
+ * @param $wp_post
66
+ * @param $contentHtml
67
+ */
68
+ public function __construct( $project, $brizy_post, $wp_post, $contentHtml ) {
69
+ $this->setContent( $contentHtml );
70
+ $this->setProject( $project );
71
+ $this->setPost( $brizy_post );
72
+ $this->setWpPost( $wp_post );
73
+ }
74
+ }
content/dynamic-content-processor.php ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_DynamicContentProcessor implements Brizy_Editor_Content_ProcessorInterface {
4
+
5
+ /**
6
+ * @var Brizy_Editor_Post
7
+ */
8
+ private $post;
9
+
10
+ /**
11
+ * @var Brizy_Editor_Project
12
+ */
13
+ private $project;
14
+
15
+ /**
16
+ * @param Brizy_Editor_Project $project
17
+ * @param Brizy_Editor_Post $post
18
+ */
19
+ public function __construct( $project, $post = null ) {
20
+ $this->post = $post;
21
+ $this->project = $project;
22
+ }
23
+
24
+ /**
25
+ * @param $content
26
+ *
27
+ * @return mixed
28
+ */
29
+ public function process( $content ) {
30
+
31
+ $context = Brizy_Content_ContextFactory::createContext( $this->project, $this->post, $this->post->get_wp_post(), $content );
32
+ $context = apply_filters( 'brizy_context_create', $context, $this->post->get_wp_post() );
33
+
34
+ $placeholderProvider = new Brizy_Content_PlaceholderProvider( $context );
35
+ $extractor = new Brizy_Content_PlaceholderExtractor( $context, $placeholderProvider );
36
+
37
+ $replacer = new Brizy_Content_PlaceholderReplacer( $context, $placeholderProvider, $extractor );
38
+
39
+ return $replacer->getContent();
40
+ }
41
+ }
content/placeholder-extractor.php ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 8/21/18
6
+ * Time: 4:37 PM
7
+ */
8
+
9
+ class Brizy_Content_PlaceholderExtractor {
10
+
11
+ /**
12
+ * @var BrizyPro_Content_Context
13
+ */
14
+ private $context;
15
+
16
+ /**
17
+ * @var BrizyPro_Content_Providers_AbstractProvider
18
+ */
19
+ private $provider;
20
+
21
+
22
+ /**
23
+ * BrizyPro_Content_PlaceholderExtractor constructor.
24
+ *
25
+ * @param BrizyPro_Content_Context $context
26
+ * @param BrizyPro_Content_Providers_AbstractProvider $provider
27
+ */
28
+ public function __construct( $context, $provider ) {
29
+ $this->context = $context;
30
+ $this->provider = $provider;
31
+ }
32
+
33
+ /**
34
+ * @return string
35
+ */
36
+ public function getContent() {
37
+ return $this->content;
38
+ }
39
+
40
+ /**
41
+ * @return array
42
+ */
43
+ public function extract() {
44
+
45
+ $placeholders = array();
46
+ $expression = "/(?<placeholder>{{\s*(?<placeholderName>.+?)(?<attributes>(?:\s+)((?:\w+\s*=\s*'(?:.[^']*|)'\s*)*))?}}(?:(?<content>.*?){{\s*end_(\g{placeholderName})\s*}})?)/ims";
47
+
48
+ $matches = array();
49
+
50
+ preg_match_all( $expression, $this->context->getContent(), $matches );
51
+
52
+ if ( count( $matches['placeholder'] ) == 0 ) {
53
+ return $placeholders;
54
+ }
55
+
56
+ foreach ( $matches['placeholder'] as $i => $name ) {
57
+ $placeholders[] = $placeholder = new Brizy_Content_ContentPlaceholder(
58
+ $matches['placeholderName'][ $i ],
59
+ $matches['placeholder'][ $i ],
60
+ $this->getPlaceholderAttributes( $matches['attributes'][ $i ] ),
61
+ $matches['content'][ $i ]
62
+ );
63
+
64
+ $hasPlaceholder = $this->provider->getPlaceholder( $placeholder->getName() );
65
+
66
+ // ignore unknown placeholders
67
+ if( !$hasPlaceholder ) continue;
68
+
69
+ //$content = str_replace( $placeholder->getPlaceholder(), $placeholder->getUid(), $this->context->getContent(), 1 );
70
+ $content = $this->context->getContent();
71
+ $pos = strpos($content, $placeholder->getPlaceholder());
72
+ if ($pos !== false) {
73
+ $content = substr_replace($content, $placeholder->getUid(), $pos, strlen($placeholder->getPlaceholder()));
74
+ }
75
+
76
+ $this->context->setContent( $content );
77
+ }
78
+
79
+ return $placeholders;
80
+ }
81
+
82
+ /**
83
+ * Split the attributs from attribute string
84
+ *
85
+ * @param $attributeString
86
+ *
87
+ * @return array
88
+ */
89
+ private function getPlaceholderAttributes( $attributeString ) {
90
+ $attrString = trim( $attributeString );
91
+ $attrMatches = array();
92
+ $attributes = array();
93
+ preg_match_all( "/(\w+)\s*=\s*'([^']*)'/mi", $attrString, $attrMatches );
94
+
95
+ if ( isset( $attrMatches[0] ) && is_array( $attrMatches[0] ) ) {
96
+ foreach ( $attrMatches[1] as $i => $name ) {
97
+ $attributes[ $name ] = $attrMatches[2][ $i ];
98
+ }
99
+ }
100
+
101
+ return $attributes;
102
+ }
103
+
104
+ }
content/placeholder-provider.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_PlaceholderProvider extends Brizy_Content_Providers_AbstractProvider {
4
+
5
+ /**
6
+ * @var array of implements Brizy_Editor_Content_PlaceholdersProviderInterface
7
+ */
8
+ private $providers = array();
9
+
10
+ /**
11
+ * @var array
12
+ */
13
+ static private $cache = null;
14
+
15
+ /**
16
+ * BrizyPro_Content_ProviderPlaceholders constructor.
17
+ *
18
+ * @param Brizy_Content_Context $context
19
+ */
20
+ public function __construct( $context ) {
21
+
22
+ parent::__construct( $context );
23
+
24
+ $this->providers[] = new Brizy_Content_Providers_FreeProvider( $context );
25
+ $this->providers = apply_filters( 'brizy_providers', $this->providers, $context );
26
+
27
+ $context->setProvider( $this );
28
+ }
29
+
30
+ /**
31
+ * @return array
32
+ */
33
+ public function getGroupedPlaceholders() {
34
+
35
+ if ( self::$cache ) {
36
+ return self::$cache;
37
+ }
38
+
39
+ $placeholders = array();
40
+ $keys = array();
41
+
42
+ foreach ( $this->providers as $provider ) {
43
+
44
+ foreach ( $provider->getGroupedPlaceholders() as $provider_name => $provider_placeholders ) {
45
+ /*$placeholders[ $provider_name ] = $provider_placeholders; - better way; to clean wp provider*/
46
+
47
+ foreach ( $provider_placeholders as $type => $holders ) {
48
+
49
+ if ( ! isset( $placeholders[ $type ][ $provider_name ] ) ) {
50
+ $placeholders[ $type ][ $provider_name ] = array();
51
+ }
52
+
53
+ if ( 'wp' === $provider_name ) {
54
+ $keys = array_filter( $keys, 'is_string' );
55
+ $placeholders[ $type ]['wp'] = array_values( array_diff_key( $holders, array_fill_keys( $keys, '' ) ) );
56
+ continue;
57
+ }
58
+
59
+ $placeholders[ $type ][ $provider_name ] = array_merge( $placeholders[ $type ][ $provider_name ], array_values( $holders ) );
60
+ $keys = array_merge( $keys, array_keys( $holders ) );
61
+ }
62
+ }
63
+ }
64
+
65
+ return apply_filters( 'brizy_placeholders', self::$cache = $placeholders );
66
+ }
67
+
68
+ /**
69
+ * @return array
70
+ */
71
+ public function getAllPlaceholders() {
72
+ $out = array();
73
+
74
+ foreach ( $this->providers as $provider ) {
75
+ $out = array_merge( $out, $provider->getAllPlaceholders() );
76
+ }
77
+
78
+ return $out;
79
+ }
80
+
81
+ /**
82
+ * @param $name
83
+ *
84
+ * @return Brizy_Content_Placeholders_Abstract
85
+ */
86
+ public function getPlaceholder( $name ) {
87
+ foreach ( $this->getAllPlaceholders() as $placeholder ) {
88
+ if ( $placeholder->getPlaceholder() == $name ) {
89
+ return $placeholder;
90
+ }
91
+ }
92
+ }
93
+ }
content/placeholder-replacer.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 8/21/18
6
+ * Time: 4:37 PM
7
+ */
8
+
9
+ class Brizy_Content_PlaceholderReplacer {
10
+
11
+ /**
12
+ * @var Brizy_Content_Context
13
+ */
14
+ private $context;
15
+
16
+ /**
17
+ * @var Brizy_Content_Providers_AbstractProvider
18
+ */
19
+ private $placeholderProvider;
20
+
21
+ /**
22
+ * @var Brizy_Content_PlaceholderExtractor
23
+ */
24
+ private $placeholderExtractor;
25
+
26
+ /**
27
+ * Brizy_Content_PlaceholderReplacer constructor.
28
+ *
29
+ * @param $context
30
+ * @param $placeholderProvider
31
+ * @param $extractor
32
+ */
33
+ public function __construct( $context, $placeholderProvider, $extractor ) {
34
+ $this->context = $context;
35
+ $this->placeholderProvider = $placeholderProvider;
36
+ $this->placeholderExtractor = $extractor;
37
+ }
38
+
39
+ /**
40
+ * @return mixed
41
+ */
42
+ public function getContent() {
43
+
44
+ $placeholders = $this->placeholderExtractor->extract();
45
+ $toReplace = array();
46
+ $toReplaceWithValues = array();
47
+
48
+ foreach ( $placeholders as $contentPlaceholder ) {
49
+ try {
50
+ $placeholder = $this->placeholderProvider->getPlaceholder( $contentPlaceholder->getName() );
51
+
52
+ $toReplace[] = $contentPlaceholder->getUid();
53
+
54
+ if ( $placeholder ) {
55
+ $toReplaceWithValues[] = $placeholder->getValue( $this->context, $contentPlaceholder );
56
+ } else {
57
+ $toReplaceWithValues[] = '';
58
+ }
59
+
60
+ } catch ( Exception $e ) {
61
+ continue;
62
+ }
63
+ }
64
+
65
+ $content = str_replace( $toReplace, $toReplaceWithValues, $this->context->getContent() );
66
+
67
+ $this->context->setContent( $content );
68
+
69
+ return $this->context->getContent();
70
+ }
71
+
72
+ }
content/placeholders/abstract.php ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Brizy_Content_Placeholders_Abstract extends Brizy_Admin_Serializable {
4
+
5
+
6
+ /**
7
+ * @return string
8
+ */
9
+ protected $label;
10
+
11
+ /**
12
+ * @return string
13
+ */
14
+ protected $placeholder;
15
+
16
+ /**
17
+ * This must return the value that will be replaced in content
18
+ *
19
+ * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
20
+ * @param Brizy_Content_Context $context
21
+ *
22
+ * @return mixed
23
+ */
24
+ abstract public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder );
25
+
26
+ /**
27
+ * This must return the option valie that will be passed to the editor
28
+ *
29
+ *
30
+ * @return mixed
31
+ */
32
+ abstract protected function getOptionValue();
33
+
34
+ /**
35
+ * @return mixed
36
+ */
37
+ public function getLabel() {
38
+ return $this->label;
39
+ }
40
+
41
+ /**
42
+ * @param mixed $label
43
+ *
44
+ * @return Brizy_Content_Placeholders_Abstract
45
+ */
46
+ public function setLabel( $label ) {
47
+ $this->label = $label;
48
+
49
+ return $this;
50
+ }
51
+
52
+ /**
53
+ * @return mixed
54
+ */
55
+ public function getPlaceholder() {
56
+ return $this->placeholder;
57
+ }
58
+
59
+ /**
60
+ * @param mixed $placeholder
61
+ *
62
+ * @return Brizy_Content_Placeholders_Abstract
63
+ */
64
+ public function setPlaceholder( $placeholder ) {
65
+ $this->placeholder = $placeholder;
66
+
67
+ return $this;
68
+ }
69
+
70
+ /**
71
+ * @return array
72
+ */
73
+ public function convertToOptionValue() {
74
+ return array(
75
+ 'label' => $this->getLabel(),
76
+ 'placeholder' => $this->getPlaceholder(),
77
+ 'data' => $this->getOptionValue(),
78
+ );
79
+ }
80
+
81
+ public function jsonSerialize() {
82
+ return array(
83
+ 'label' => $this->getLabel(),
84
+ 'placeholder' => $this->getReplacePlaceholder(),
85
+ 'data' => $this->getOptionValue(),
86
+ );
87
+ }
88
+
89
+ /**
90
+ * @return string
91
+ */
92
+ public function getReplacePlaceholder() {
93
+ $placeholder = $this->getPlaceholder();
94
+
95
+ if ( ! empty( $placeholder ) ) {
96
+ return "{{" . $placeholder . "}}";
97
+ }
98
+
99
+ return "";
100
+ }
101
+
102
+ /**
103
+ * @return string
104
+ */
105
+ public function getData() {
106
+ $value = $this->getValue(null);
107
+ if(is_callable( $value ))
108
+ return $this->getReplacePlaceholder();
109
+
110
+ return $value;
111
+ }
112
+ }
content/placeholders/image-alt-attribute.php ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Placeholders_ImageAltAttribute extends Brizy_Content_Placeholders_ImageAttribute {
4
+
5
+ /**
6
+ * @param $attachmentId
7
+ *
8
+ * @return string
9
+ */
10
+ protected function getAttributeValue( $attachmentId ) {
11
+ return get_post_meta( $attachmentId, '_wp_attachment_image_alt', true );
12
+ }
13
+ }
content/placeholders/image-attribute.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Brizy_Content_Placeholders_ImageAttribute extends Brizy_Content_Placeholders_Simple {
4
+
5
+ /**
6
+ * @return string|callable
7
+ */
8
+ protected $value;
9
+
10
+ /**
11
+ * @param $attachmentId
12
+ *
13
+ * @return mixed
14
+ */
15
+ abstract protected function getAttributeValue( $attachmentId );
16
+
17
+ /**
18
+ * Brizy_Editor_Content_GenericPlaceHolder constructor.
19
+ *
20
+ * @param string $label
21
+ * @param string $placeholder
22
+ * @param string|array $value
23
+ */
24
+ public function __construct( $label, $placeholder ) {
25
+ parent::__construct( $label, $placeholder, function ( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
26
+ $attributes = $contentPlaceholder->getAttributes();
27
+
28
+ $attachmentId = null;
29
+ if ( isset( $attributes['uid'] ) ) {
30
+ $attachmentId = $this->getAttachmentIdByByUid( $attributes['uid'], $context );
31
+ } elseif ( isset( $attributes['placeholder'] ) ) {
32
+ $attachmentId = $this->getAttachmentIdByPlaceholderName( $attributes['placeholder'], $context, $contentPlaceholder );
33
+ }
34
+
35
+ if ( $attachmentId ) {
36
+ return $this->getAttributeValue( $attachmentId );
37
+ }
38
+
39
+ return '';
40
+ } );
41
+ }
42
+
43
+
44
+ /**
45
+ * @param $placeholderName
46
+ * @param Brizy_Content_Context $context
47
+ * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
48
+ *
49
+ * @return int|mixed|null|string
50
+ */
51
+ protected function getAttachmentIdByPlaceholderName( $placeholderName, Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
52
+ $attachmentId = null;
53
+
54
+ $provider = $context->getProvider();
55
+
56
+ $placeholder = $provider->getPlaceholder( $placeholderName );
57
+
58
+ if ( $placeholder instanceof BrizyPro_Content_Placeholders_Image ) {
59
+ $attachmentId = $placeholder->getAttachmentId( $context, $contentPlaceholder );
60
+ }
61
+
62
+ return $attachmentId;
63
+ }
64
+
65
+ /**
66
+ * @param $uid
67
+ * @param Brizy_Content_Context $context
68
+ *
69
+ * @return null|string
70
+ */
71
+ protected function getAttachmentIdByByUid( $uid, Brizy_Content_Context $context ) {
72
+ global $wpdb;
73
+
74
+ $posts_table = $wpdb->posts;
75
+ $meta_table = $wpdb->postmeta;
76
+ $attachmentId = $wpdb->get_var( $wpdb->prepare(
77
+ "SELECT
78
+ {$posts_table}.ID
79
+ FROM {$posts_table}
80
+ INNER JOIN {$meta_table} ON ( {$posts_table}.ID = {$meta_table}.post_id )
81
+ WHERE
82
+ ( {$meta_table}.meta_key = 'brizy_attachment_uid'
83
+ AND {$meta_table}.meta_value = %s )
84
+ AND {$posts_table}.post_type = 'attachment'
85
+ ORDER BY {$posts_table}.post_date DESC",
86
+ $uid
87
+ ) );
88
+
89
+ return $attachmentId;
90
+ }
91
+
92
+ }
content/placeholders/image-attributes-aware.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 10/10/18
6
+ * Time: 3:18 PM
7
+ */
8
+
9
+ trait Brizy_Content_Placeholders_ImageAttributesAware {
10
+
11
+ /**
12
+ * It should return a string containigng image attributes
13
+ * Ex: alt="image alt attribute" title="Image title"
14
+ *
15
+ * @param Brizy_Content_Context $context
16
+ * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
17
+ *
18
+ * @return
19
+ */
20
+ abstract public function getAttachmentId( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder );
21
+ }
content/placeholders/image-title-attribute.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Placeholders_ImageTitleAttribute extends Brizy_Content_Placeholders_ImageAttribute {
4
+
5
+ /**
6
+ * @param $attachmentId
7
+ *
8
+ * @return mixed|string
9
+ */
10
+ protected function getAttributeValue( $attachmentId ) {
11
+ $post = get_post( $attachmentId );
12
+
13
+ return $post->post_title;
14
+ }
15
+ }
content/placeholders/simple.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Brizy_Content_Placeholders_Simple extends Brizy_Content_Placeholders_Abstract {
4
+
5
+ /**
6
+ * @return string|callable
7
+ */
8
+ protected $value;
9
+
10
+ /**
11
+ * Brizy_Editor_Content_GenericPlaceHolder constructor.
12
+ *
13
+ * @param string $label
14
+ * @param string $placeholder
15
+ * @param string|array $value
16
+ */
17
+ public function __construct( $label, $placeholder, $value ) {
18
+ $this->label = $label;
19
+ $this->placeholder = $placeholder;
20
+ $this->value = $value;
21
+ }
22
+
23
+ /**
24
+ * @param Brizy_Content_ContentPlaceholder $contentPlaceholder
25
+ * @param Brizy_Content_Context $context
26
+ *
27
+ * @return mixed|string
28
+ */
29
+ public function getValue( Brizy_Content_Context $context, Brizy_Content_ContentPlaceholder $contentPlaceholder ) {
30
+
31
+ $method = $this->value;
32
+
33
+ if ( is_object( $method ) && ( $method instanceof Closure ) ) {
34
+ return call_user_func( $method, $context, $contentPlaceholder );
35
+ }
36
+
37
+ return $this->value;
38
+ }
39
+
40
+ /**
41
+ * @return mixed|string
42
+ */
43
+ protected function getOptionValue() {
44
+
45
+ $method = $this->value;
46
+
47
+ if ( is_callable( $method ) ) {
48
+ return $this->getReplacePlaceholder();
49
+ }
50
+
51
+ return $this->value;
52
+ }
53
+ }
content/providers/abstract-provider.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ abstract class Brizy_Content_Providers_AbstractProvider implements Brizy_Content_Providers_Interface {
4
+
5
+ /**
6
+ * @var Brizy_Content_Context
7
+ */
8
+ protected $context;
9
+
10
+ /**
11
+ * BrizyPro_Content_ProviderWp constructor.
12
+ *
13
+ * @param Brizy_Content_Context $context
14
+ */
15
+ public function __construct( Brizy_Content_Context $context ) {
16
+ $this->context = $context;
17
+ }
18
+
19
+ /**
20
+ * @return array
21
+ */
22
+ protected function getDefaultGroupPlaceholders() {
23
+ return array(
24
+ self::CONFIG_KEY_TEXT =>array(),
25
+ self::CONFIG_KEY_IMAGE =>array(),
26
+ self::CONFIG_KEY_LINK =>array(),
27
+ self::CONFIG_KEY_OEMBED =>array(),
28
+ self::CONFIG_KEY_VIDEO =>array(),
29
+ self::CONFIG_KEY_SNDCLOUD =>array(),
30
+
31
+ );
32
+ }
33
+
34
+ /**
35
+ * @return array
36
+ */
37
+ public function getAllPlaceholders() {
38
+ $out = array();
39
+
40
+ foreach ( $this->getGroupedPlaceholders() as $placeholders ) {
41
+ $out = array_merge( $out, call_user_func_array( 'array_merge', $placeholders ) );
42
+ }
43
+
44
+ return $out;
45
+ }
46
+ }
content/providers/free-provider.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: alex
5
+ * Date: 10/10/18
6
+ * Time: 2:47 PM
7
+ */
8
+
9
+ class Brizy_Content_Providers_FreeProvider extends Brizy_Content_Providers_AbstractProvider {
10
+
11
+ /**
12
+ * @return array|mixed
13
+ */
14
+ public function getGroupedPlaceholders() {
15
+ return array();
16
+ }
17
+
18
+ /**
19
+ * @return array|int
20
+ * @throws Exception
21
+ */
22
+ public function getAllPlaceholders() {
23
+
24
+ return array(
25
+ new Brizy_Content_Placeholders_ImageTitleAttribute( 'Internal Title Attributes', 'brizy_dc_image_title' ),
26
+ new Brizy_Content_Placeholders_ImageAltAttribute( 'Internal Alt Attributes', 'brizy_dc_image_alt' )
27
+ );
28
+ }
29
+ }
content/providers/interface.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ interface Brizy_Content_Providers_Interface {
4
+
5
+ const CONFIG_KEY_TEXT = 'richText';
6
+ const CONFIG_KEY_IMAGE = 'image';
7
+ const CONFIG_KEY_LINK = 'link';
8
+ const CONFIG_KEY_OEMBED = 'oembed';
9
+ const CONFIG_KEY_VIDEO = 'video';
10
+ const CONFIG_KEY_SNDCLOUD = 'sndcloud';
11
+
12
+ /**
13
+ * @return mixed
14
+ */
15
+ public function getGroupedPlaceholders();
16
+
17
+ public function getAllPlaceholders();
18
+ }
editor.php CHANGED
@@ -16,13 +16,21 @@ class Brizy_Editor {
16
  */
17
  private function __construct() {
18
 
 
 
 
 
 
 
 
 
 
19
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
20
  }
21
 
22
  public function initialize() {
23
 
24
  add_action( 'init', array( $this, 'loadCompatibilityClasses' ), - 1500 );
25
- add_action( 'init', array( $this, 'runMigrations' ), - 1000 );
26
  add_action( 'init', array( $this, 'wordpressInit' ), 1000 );
27
  add_action( 'wp_loaded', array( $this, 'wordpressLoaded' ) );
28
  add_action( 'wp', array( $this, 'wordpressObjectCreated' ) );
@@ -32,6 +40,7 @@ class Brizy_Editor {
32
  }
33
 
34
  add_filter( "brizy:templates", array( $this, 'filterPublicTemplates' ) );
 
35
  }
36
 
37
  public function runMigrations() {
@@ -61,6 +70,7 @@ class Brizy_Editor {
61
 
62
  $pid = Brizy_Editor::get()->currentPostId();
63
  $post = null;
 
64
  try {
65
  // do not delete this line
66
  $user = Brizy_Editor_User::get();
@@ -73,9 +83,7 @@ class Brizy_Editor {
73
  $migrations = new Brizy_Admin_Migrations();
74
  $migrations->runMigrationsBasedOnPost( $post, BRIZY_VERSION );
75
  }
76
- } catch ( Exception $e ) {
77
- return;
78
- }
79
 
80
  $this->loadEditorApi( $project, $post, $user );
81
  $this->loadEditorAdminSettings();
@@ -99,7 +107,17 @@ class Brizy_Editor {
99
  }
100
 
101
  public function loadCompatibilityClasses() {
102
- new Brizy_Compatibilities_Gutenberg();
 
 
 
 
 
 
 
 
 
 
103
  }
104
 
105
  /**
@@ -192,7 +210,7 @@ class Brizy_Editor {
192
  if ( is_admin() ) {
193
  Brizy_Admin_Main::instance();
194
  Brizy_Admin_Settings::_init();
195
- Brizy_Admin_Flash::instance()->initialize(); // initialize flash
196
  }
197
  } catch ( Exception $exception ) {
198
  Brizy_Admin_Flash::instance()->add_error( 'Unable to empty the trash. Please try again later.' );
@@ -277,13 +295,11 @@ class Brizy_Editor {
277
  return $pid;
278
  }
279
 
280
- public
281
- static function get() {
282
  return self::$instance ? self::$instance : self::$instance = new self();
283
  }
284
 
285
- public
286
- static function is_administrator() {
287
 
288
  if ( ! is_user_logged_in() ) {
289
  return false;
@@ -294,8 +310,7 @@ class Brizy_Editor {
294
  return in_array( 'administrator', (array) $user->roles );
295
  }
296
 
297
- public
298
- static function is_subscriber() {
299
 
300
  if ( ! is_user_logged_in() ) {
301
  return false;
@@ -306,8 +321,7 @@ class Brizy_Editor {
306
  return in_array( 'subscriber', (array) $user->roles );
307
  }
308
 
309
- public
310
- static function is_user_allowed() {
311
 
312
  if ( ! is_user_logged_in() ) {
313
  return false;
@@ -321,62 +335,53 @@ class Brizy_Editor {
321
  self::$is_allowed_for_current_user =
322
  (
323
  current_user_can( Brizy_Admin_Capabilities::CAP_EDIT_WHOLE_PAGE ) ||
324
- current_user_can( Brizy_Admin_Capabilities::CAP_EDIT_CONTENT_ONLY )
325
  );
326
  }
327
 
328
  return self::$is_allowed_for_current_user;
329
  }
330
 
331
- public
332
- function get_path(
333
  $rel = '/'
334
  ) {
335
 
336
  return BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . ltrim( $rel, DIRECTORY_SEPARATOR );
337
  }
338
 
339
- public
340
- function get_url(
341
  $rel = ''
342
  ) {
343
  return BRIZY_PLUGIN_URL . "/" . ltrim( $rel, "/" );
344
  }
345
 
346
- public
347
- function get_domain() {
348
  return 'brizy';
349
  }
350
 
351
- public
352
- function get_version() {
353
  return BRIZY_VERSION;
354
  }
355
 
356
- public
357
- function get_slug() {
358
  return 'brizy';
359
  }
360
 
361
- public
362
- function supported_post_types() {
363
  $types = $this->get_post_types();
364
 
365
  return apply_filters( 'brizy_supported_post_types', apply_filters( 'brizy:post_types', $types ) );
366
  }
367
 
368
- public
369
- function default_supported_post_types() {
370
  return array( 'page', 'post' );
371
  }
372
 
373
- public
374
- function get_name() {
375
  return 'Brizy';
376
  }
377
 
378
- protected
379
- function get_post_types() {
380
  try {
381
  return Brizy_Editor_Storage_Common::instance()->get( self::$settings_key );
382
  } catch ( Brizy_Editor_Exceptions_NotFound $exception ) {
16
  */
17
  private function __construct() {
18
 
19
+ Brizy_Admin_Flash::instance()->initialize(); // initialize flash
20
+
21
+ try {
22
+ $this->runMigrations();
23
+ } catch ( Brizy_Admin_Migrations_UpgradeRequiredException $e ) {
24
+ Brizy_Admin_Flash::instance()->add_error( 'Please upgrade Brizy to the latest version.' );
25
+ return;
26
+ }
27
+
28
  add_action( 'init', array( $this, 'initialize' ), - 2000 );
29
  }
30
 
31
  public function initialize() {
32
 
33
  add_action( 'init', array( $this, 'loadCompatibilityClasses' ), - 1500 );
 
34
  add_action( 'init', array( $this, 'wordpressInit' ), 1000 );
35
  add_action( 'wp_loaded', array( $this, 'wordpressLoaded' ) );
36
  add_action( 'wp', array( $this, 'wordpressObjectCreated' ) );
40
  }
41
 
42
  add_filter( "brizy:templates", array( $this, 'filterPublicTemplates' ) );
43
+
44
  }
45
 
46
  public function runMigrations() {
70
 
71
  $pid = Brizy_Editor::get()->currentPostId();
72
  $post = null;
73
+
74
  try {
75
  // do not delete this line
76
  $user = Brizy_Editor_User::get();
83
  $migrations = new Brizy_Admin_Migrations();
84
  $migrations->runMigrationsBasedOnPost( $post, BRIZY_VERSION );
85
  }
86
+ } catch ( Exception $e ) {}
 
 
87
 
88
  $this->loadEditorApi( $project, $post, $user );
89
  $this->loadEditorAdminSettings();
107
  }
108
 
109
  public function loadCompatibilityClasses() {
110
+ if ( function_exists( 'w3tc_add_ob_callback' ) || function_exists( 'w3tc_class_autoload' ) ) {
111
+ new Brizy_Compatibilities_Wtc();
112
+ }
113
+
114
+ if ( function_exists( 'gutenberg_init' ) ) {
115
+ new Brizy_Compatibilities_Gutenberg();
116
+ }
117
+
118
+ if ( function_exists( 'autoptimize' ) ) {
119
+ new Brizy_Compatibilities_Autoptimize();
120
+ }
121
  }
122
 
123
  /**
210
  if ( is_admin() ) {
211
  Brizy_Admin_Main::instance();
212
  Brizy_Admin_Settings::_init();
213
+
214
  }
215
  } catch ( Exception $exception ) {
216
  Brizy_Admin_Flash::instance()->add_error( 'Unable to empty the trash. Please try again later.' );
295
  return $pid;
296
  }
297
 
298
+ public static function get() {
 
299
  return self::$instance ? self::$instance : self::$instance = new self();
300
  }
301
 
302
+ public static function is_administrator() {
 
303
 
304
  if ( ! is_user_logged_in() ) {
305
  return false;
310
  return in_array( 'administrator', (array) $user->roles );
311
  }
312
 
313
+ public static function is_subscriber() {
 
314
 
315
  if ( ! is_user_logged_in() ) {
316
  return false;
321
  return in_array( 'subscriber', (array) $user->roles );
322
  }
323
 
324
+ public static function is_user_allowed() {
 
325
 
326
  if ( ! is_user_logged_in() ) {
327
  return false;
335
  self::$is_allowed_for_current_user =
336
  (
337
  current_user_can( Brizy_Admin_Capabilities::CAP_EDIT_WHOLE_PAGE ) ||
338
+ current_user_can( Brizy_Admin_Capabilities::CAP_EDIT_CONTENT_ONLY )
339
  );
340
  }
341
 
342
  return self::$is_allowed_for_current_user;
343
  }
344
 
345
+ public function get_path(
 
346
  $rel = '/'
347
  ) {
348
 
349
  return BRIZY_PLUGIN_PATH . DIRECTORY_SEPARATOR . ltrim( $rel, DIRECTORY_SEPARATOR );
350
  }
351
 
352
+ public function get_url(
 
353
  $rel = ''
354
  ) {
355
  return BRIZY_PLUGIN_URL . "/" . ltrim( $rel, "/" );
356
  }
357
 
358
+ public function get_domain() {
 
359
  return 'brizy';
360
  }
361
 
362
+ public function get_version() {
 
363
  return BRIZY_VERSION;
364
  }
365
 
366
+ public function get_slug() {
 
367
  return 'brizy';
368
  }
369
 
370
+ public function supported_post_types() {
 
371
  $types = $this->get_post_types();
372
 
373
  return apply_filters( 'brizy_supported_post_types', apply_filters( 'brizy:post_types', $types ) );
374
  }
375
 
376
+ public function default_supported_post_types() {
 
377
  return array( 'page', 'post' );
378
  }
379
 
380
+ public function get_name() {
 
381
  return 'Brizy';
382
  }
383
 
384
+ protected function get_post_types() {
 
385
  try {
386
  return Brizy_Editor_Storage_Common::instance()->get( self::$settings_key );
387
  } catch ( Brizy_Editor_Exceptions_NotFound $exception ) {
editor/api/client.php CHANGED
@@ -188,10 +188,10 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
188
 
189
  $template_version = BRIZY_EDITOR_VERSION;
190
  $url_builder = new Brizy_Editor_UrlBuilder( $project );
191
- $body = array(
192
  'template_slug' => 'brizy',
193
  'template_version' => $template_version,
194
- 'template_download_url' => $url_builder->external_asset_url( '/visual/export.js' )."",
195
  'config_json' => json_encode( $config ), // ???
196
  'pages_json' => json_encode( array(
197
  array(
@@ -202,8 +202,7 @@ class Brizy_Editor_API_Client extends Brizy_Editor_Http_Client {
202
  ) ), // ???
203
  'globals_json' => $project->getGlobalsAsJson(),
204
  'page_id' => 1
205
- );
206
-
207
  $page = parent::request( $compiler_url, array( 'body' => $body ), 'POST' )->get_response_body();
208
 
209
  $template_context = array(
188
 
189
  $template_version = BRIZY_EDITOR_VERSION;
190
  $url_builder = new Brizy_Editor_UrlBuilder( $project );
191
+ $body = apply_filters('brizy_compiler_params', array(
192
  'template_slug' => 'brizy',
193
  'template_version' => $template_version,
194
+ 'download_url' => 'https://static.brizy.io',
195
  'config_json' => json_encode( $config ), // ???
196
  'pages_json' => json_encode( array(
197
  array(
202
  ) ), // ???
203
  'globals_json' => $project->getGlobalsAsJson(),
204
  'page_id' => 1
205
+ ));
 
206
  $page = parent::request( $compiler_url, array( 'body' => $body ), 'POST' )->get_response_body();
207
 
208
  $template_context = array(
editor/asset/media-asset-processor.php CHANGED
@@ -38,11 +38,13 @@ class Brizy_Editor_Asset_MediaAssetProcessor implements Brizy_Editor_Content_Pro
38
 
39
  public function process_external_asset_urls( $content ) {
40
 
41
- $site_url = home_url();
 
42
  $site_url = str_replace( array( '/', '.' ), array( '\/', '\.' ), $site_url );
43
  $project = Brizy_Editor_Project::get();
44
 
45
  preg_match_all( '/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
 
46
 
47
  if ( ! isset( $matches[0] ) || count( $matches[0] ) == 0 ) {
48
  return $content;
38
 
39
  public function process_external_asset_urls( $content ) {
40
 
41
+ $site_url = str_replace( array( 'http://', 'https://' ), '', home_url() );
42
+
43
  $site_url = str_replace( array( '/', '.' ), array( '\/', '\.' ), $site_url );
44
  $project = Brizy_Editor_Project::get();
45
 
46
  preg_match_all( '/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
47
+ preg_match_all( '/(http|https):\/\/' . $site_url . '\/?(\?' . Brizy_Public_CropProxy::ENDPOINT . '=(.[^"\',\s)]*))/im', $content, $matches );
48
 
49
  if ( ! isset( $matches[0] ) || count( $matches[0] ) == 0 ) {
50
  return $content;
editor/asset/static-file.php CHANGED
@@ -66,27 +66,7 @@ abstract class Brizy_Editor_Asset_StaticFile {
66
  return true;
67
  }
68
 
69
- /**
70
- * Make sure the $asset_path is an existing file.
71
- *
72
- * @param $asset_path
73
- * @param $post_id
74
- * @param null $uid
75
- *
76
- * @return bool|int|WP_Error
77
- * @throws Brizy_Editor_Exceptions_NotFound
78
- */
79
- public function attach_to_post( $asset_path, $post_id, $uid = null ) {
80
-
81
- if ( ! $post_id ) {
82
- return false;
83
- }
84
- if ( ! file_exists( $asset_path ) ) {
85
- return false;
86
- }
87
-
88
- $bpost = Brizy_Editor_Post::get( $post_id );
89
-
90
  $filetype = wp_check_filetype( $asset_path );
91
 
92
  $attachment = array(
@@ -102,8 +82,8 @@ abstract class Brizy_Editor_Asset_StaticFile {
102
  return false;
103
  }
104
 
 
105
  update_post_meta( $attachment_id, 'brizy_attachment_uid', $uid ? $uid : md5( $attachment_id . time() ) );
106
- update_post_meta( $attachment_id, 'brizy_post_uid', $bpost->get_uid() );
107
 
108
  if ( ! function_exists( 'wp_generate_attachment_metadata' ) ) {
109
  include_once ABSPATH . "/wp-admin/includes/image.php";
@@ -112,10 +92,29 @@ abstract class Brizy_Editor_Asset_StaticFile {
112
  $attach_data = wp_generate_attachment_metadata( $attachment_id, $asset_path );
113
  wp_update_attachment_metadata( $attachment_id, $attach_data );
114
 
115
-
116
  return $attachment_id;
117
  }
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  /**
120
  * @param $filename
121
  */
@@ -125,9 +124,9 @@ abstract class Brizy_Editor_Asset_StaticFile {
125
  $content = file_get_contents( $filename );
126
 
127
  // send headers
128
- $headers = array();
129
- $headers['Content-Type'] = $this->get_mime( $filename, 1 );
130
- $headers['Cache-Control'] = 'max-age=600';
131
 
132
  foreach ( $headers as $key => $val ) {
133
  if ( is_array( $val ) ) {
66
  return true;
67
  }
68
 
69
+ protected function create_attachment( $madia_name, $asset_path, $post_id = null, $uid = null ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  $filetype = wp_check_filetype( $asset_path );
71
 
72
  $attachment = array(
82
  return false;
83
  }
84
 
85
+ update_post_meta( $attachment_id, 'brizy_external_media_name', $madia_name );
86
  update_post_meta( $attachment_id, 'brizy_attachment_uid', $uid ? $uid : md5( $attachment_id . time() ) );
 
87
 
88
  if ( ! function_exists( 'wp_generate_attachment_metadata' ) ) {
89
  include_once ABSPATH . "/wp-admin/includes/image.php";
92
  $attach_data = wp_generate_attachment_metadata( $attachment_id, $asset_path );
93
  wp_update_attachment_metadata( $attachment_id, $attach_data );
94
 
 
95
  return $attachment_id;
96
  }
97
 
98
+ /**
99
+ * @param $attachmentId
100
+ * @param $post_id
101
+ * @param $madia_name
102
+ *
103
+ * @return bool
104
+ * @throws Brizy_Editor_Exceptions_NotFound
105
+ */
106
+ public function attach_to_post( $attachmentId, $post_id, $madia_name ) {
107
+
108
+ if ( ! $post_id ) {
109
+ return false;
110
+ }
111
+ $bpost = Brizy_Editor_Post::get( $post_id );
112
+
113
+ update_post_meta( $attachmentId, 'brizy_post_uid', $bpost->get_uid() );
114
+
115
+ return $attachmentId;
116
+ }
117
+
118
  /**
119
  * @param $filename
120
  */
124
  $content = file_get_contents( $filename );
125
 
126
  // send headers
127
+ $headers = array();
128
+ $headers['Content-Type'] = $this->get_mime( $filename, 1 );
129
+ $headers['Cache-Control'] = 'max-age=600';
130
 
131
  foreach ( $headers as $key => $val ) {
132
  if ( is_array( $val ) ) {
editor/crop-cache-media.php CHANGED
@@ -46,40 +46,49 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
46
  Brizy_Logger::instance()->error( 'Empty media file provided' );
47
  throw new InvalidArgumentException( "Invalid media file" );
48
  }
 
49
  if ( strpos( $madia_name, "wp-" ) === 0 ) {
50
  Brizy_Logger::instance()->error( 'Invalid try to download wordpress file from application server' );
51
  throw new InvalidArgumentException( "Invalid media file" );
52
  }
53
 
54
- $external_asset_url = $this->url_builder->external_media_url( "iW=5000&iH=any/" . $madia_name );
55
- $original_asset_path = $this->url_builder->upload_path( $this->url_builder->page_asset_path( "images/" . $madia_name ) );
56
 
57
- if ( ! file_exists( $original_asset_path ) ) {
58
- // I assume that the media was already attached.
59
-
60
- if ( ! $this->store_file( $external_asset_url, $original_asset_path ) ) {
61
- // unable to save the attachment
62
- Brizy_Logger::instance()->error( 'Unable to store original media file', array(
63
- 'source' => $external_asset_url,
64
- 'destination' => $original_asset_path
65
- ) );
66
- throw new Exception( 'Unable to cache media' );
 
 
 
 
 
67
  }
68
 
 
69
  }
70
 
71
- // attach to post
72
- $attach_to_post = $this->attach_to_post( $original_asset_path, $this->post_id, $madia_name );
73
- if ( $attach_to_post === 0 || is_wp_error( $attach_to_post ) ) {
74
  Brizy_Logger::instance()->error( 'Unable to attach media file', array(
75
- 'media' => $original_asset_path,
76
  'parent_post' => $this->post_id
77
 
78
  ) );
79
  throw new Exception( 'Unable to attach media' );
80
  }
81
 
82
- return $original_asset_path;
 
 
 
 
83
  }
84
 
85
  /**
@@ -227,4 +236,33 @@ class Brizy_Editor_CropCacheMedia extends Brizy_Editor_Asset_StaticFile {
227
  return $configuration;
228
  }
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  }
46
  Brizy_Logger::instance()->error( 'Empty media file provided' );
47
  throw new InvalidArgumentException( "Invalid media file" );
48
  }
49
+
50
  if ( strpos( $madia_name, "wp-" ) === 0 ) {
51
  Brizy_Logger::instance()->error( 'Invalid try to download wordpress file from application server' );
52
  throw new InvalidArgumentException( "Invalid media file" );
53
  }
54
 
55
+ $attachmentId = null;
56
+ $external_asset_url = $this->url_builder->external_media_url( "iW=5000&iH=any/" . $madia_name );
57
 
58
+ if ( ! ( $attachmentId = $this->getAttachmentByMediaName( $madia_name ) ) ) {
59
+
60
+ $original_asset_path = $this->url_builder->upload_path( $this->url_builder->page_asset_path( "images/" . $madia_name ) );
61
+
62
+ if ( ! file_exists( $original_asset_path ) ) {
63
+ // I assume that the media was already attached.
64
+
65
+ if ( ! $this->store_file( $external_asset_url, $original_asset_path ) ) {
66
+ // unable to save the attachment
67
+ Brizy_Logger::instance()->error( 'Unable to store original media file', array(
68
+ 'source' => $external_asset_url,
69
+ 'destination' => $original_asset_path
70
+ ) );
71
+ throw new Exception( 'Unable to cache media' );
72
+ }
73
  }
74
 
75
+ $attachmentId = $this->create_attachment( $madia_name, $original_asset_path, $this->post_id, $madia_name );
76
  }
77
 
78
+ if ( $attachmentId === 0 || is_wp_error( $attachmentId ) ) {
 
 
79
  Brizy_Logger::instance()->error( 'Unable to attach media file', array(
80
+ 'media' => $external_asset_url,
81
  'parent_post' => $this->post_id
82
 
83
  ) );
84
  throw new Exception( 'Unable to attach media' );
85
  }
86
 
87
+
88
+ // attach to post
89
+ $this->attach_to_post( $attachmentId, $this->post_id, $madia_name );
90
+
91
+ return get_attached_file( $attachmentId );
92
  }
93
 
94
  /**
236
  return $configuration;
237
  }
238
 
239
+
240
+ /**
241
+ * @param $media_name
242
+ *
243
+ * @return null|string
244
+ */
245
+ private function getAttachmentByMediaName( $media_name ) {
246
+
247
+ global $wpdb;
248
+
249
+ $posts_table = $wpdb->posts;
250
+ $meta_table = $wpdb->postmeta;
251
+
252
+ return $wpdb->get_var( $wpdb->prepare(
253
+ "SELECT
254
+ {$posts_table}.ID
255
+ FROM {$posts_table}
256
+ INNER JOIN {$meta_table} ON ( {$posts_table}.ID = {$meta_table}.post_id )
257
+ WHERE
258
+ ( {$meta_table}.meta_key = 'brizy_attachment_uid'
259
+ AND {$meta_table}.meta_value = %s )
260
+ AND {$posts_table}.post_type = 'attachment'
261
+ AND {$posts_table}.post_status = 'inherit'
262
+ GROUP BY {$posts_table}.ID
263
+ ORDER BY {$posts_table}.post_date DESC",
264
+ $media_name
265
+ ) );
266
+
267
+ }
268
  }
editor/editor/editor.php CHANGED
@@ -125,6 +125,7 @@ class Brizy_Editor_Editor_Editor {
125
  'backToWordpress' => get_edit_post_link( $wp_post_id, null ),
126
  'assets' => $this->urlBuilder->editor_asset_url(),
127
  'pageAssets' => $this->urlBuilder->page_upload_url(),
 
128
  'blockThumbnails' => $this->urlBuilder->external_asset_url( 'template/img-block-thumbs' ) . "",
129
  'templateIcons' => $this->urlBuilder->proxy_url( 'template/icons' ),
130
  'site' => home_url(),
@@ -180,7 +181,7 @@ class Brizy_Editor_Editor_Editor {
180
  'iframeUrl' => $this->urlBuilder->application_form_url(),
181
  'apiUrl' => Brizy_Config::BRIZY_APPLICATION_INTEGRATION_URL,
182
  'wpApiUrl' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
183
- 'submitUrl' => set_url_scheme( admin_url( 'admin-ajax.php' ) ) . "?action=brizy_submit_form"
184
  )
185
  ),
186
  );
125
  'backToWordpress' => get_edit_post_link( $wp_post_id, null ),
126
  'assets' => $this->urlBuilder->editor_asset_url(),
127
  'pageAssets' => $this->urlBuilder->page_upload_url(),
128
+ 'templateFonts' => 'https://app.brizy.io/fonts/public?path='.BRIZY_EDITOR_VERSION,
129
  'blockThumbnails' => $this->urlBuilder->external_asset_url( 'template/img-block-thumbs' ) . "",
130
  'templateIcons' => $this->urlBuilder->proxy_url( 'template/icons' ),
131
  'site' => home_url(),
181
  'iframeUrl' => $this->urlBuilder->application_form_url(),
182
  'apiUrl' => Brizy_Config::BRIZY_APPLICATION_INTEGRATION_URL,
183
  'wpApiUrl' => set_url_scheme( admin_url( 'admin-ajax.php' ) ),
184
+ 'submitUrl' => add_query_arg( 'action', 'brizy_submit_form', set_url_scheme( admin_url( 'admin-ajax.php' ) ) )
185
  )
186
  ),
187
  );
editor/post.php CHANGED
@@ -348,6 +348,8 @@ class Brizy_Editor_Post extends Brizy_Admin_Serializable {
348
 
349
  $asset_processors = apply_filters( 'brizy_content_processors', $asset_processors, $project, $post );
350
 
 
 
351
  $brizy_editor_compiled_html->setProcessors( $asset_processors );
352
 
353
  return self::$compiled_page = $brizy_editor_compiled_html;
348
 
349
  $asset_processors = apply_filters( 'brizy_content_processors', $asset_processors, $project, $post );
350
 
351
+ array_unshift( $asset_processors, new Brizy_Content_DynamicContentProcessor( $project, $post ) );
352
+
353
  $brizy_editor_compiled_html->setProcessors( $asset_processors );
354
 
355
  return self::$compiled_page = $brizy_editor_compiled_html;
editor/project.php CHANGED
@@ -105,9 +105,9 @@ class Brizy_Editor_Project implements Serializable {
105
  global $wpdb;
106
 
107
  $row = $wpdb->get_results(
108
- $wpdb->prepare( "SELECT * FROM {$wpdb->posts} p
109
- JOIN {$wpdb->postmeta} pm ON p.ID=pm.post_id
110
- WHERE p.post_type = %s ORDER BY ID DESC LIMIT 1 ", self::BRIZY_PROJECT ),
111
  OBJECT
112
  );
113
 
@@ -144,7 +144,7 @@ class Brizy_Editor_Project implements Serializable {
144
  'created' => new DateTime(),
145
  'updated' => new DateTime(),
146
  'languages' => array(),
147
- 'pluginVersion' => BRIZY_VERSION,
148
  'editorVersion' => BRIZY_EDITOR_VERSION,
149
  'signature' => Brizy_Editor_Signature::get(),
150
  );
@@ -231,6 +231,25 @@ class Brizy_Editor_Project implements Serializable {
231
  wp_update_post( $this->post );
232
  }
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  /**
235
  * @param $key
236
  *
@@ -253,7 +272,12 @@ class Brizy_Editor_Project implements Serializable {
253
  return $this->api_project;
254
  }
255
 
256
-
 
 
 
 
 
257
 
258
  // =======================================================================================================================================
259
  // =======================================================================================================================================
105
  global $wpdb;
106
 
107
  $row = $wpdb->get_results(
108
+ $wpdb->prepare( "SELECT * FROM {$wpdb->posts} p
109
+ WHERE p.post_type = %s and p.post_status='publish'
110
+ ORDER BY ID DESC LIMIT 1 ", self::BRIZY_PROJECT ),
111
  OBJECT
112
  );
113
 
144
  'created' => new DateTime(),
145
  'updated' => new DateTime(),
146
  'languages' => array(),
147
+ 'pluginVersion' => BRIZY_VERSION,
148
  'editorVersion' => BRIZY_EDITOR_VERSION,
149
  'signature' => Brizy_Editor_Signature::get(),
150
  );
231
  wp_update_post( $this->post );
232
  }
233
 
234
+
235
+ /**
236
+ * @param $key
237
+ */
238
+ public function removeMetaValue( $key ) {
239
+
240
+ if ( is_null( $key ) ) {
241
+ throw new InvalidArgumentException( 'The key parameter should not be null' );
242
+ }
243
+
244
+ $this->storage->delete( $key );
245
+
246
+ // create project revision
247
+ // md5 it to make sure no one will use this data-- we need it only to make the revision
248
+ $this->post->post_content = md5( serialize( $this->storage->get_storage() ) );
249
+ wp_update_post( $this->post );
250
+ }
251
+
252
+
253
  /**
254
  * @param $key
255
  *
272
  return $this->api_project;
273
  }
274
 
275
+ /**
276
+ * @return WP_Post
277
+ */
278
+ public function getWpPost() {
279
+ return $this->post;
280
+ }
281
 
282
  // =======================================================================================================================================
283
  // =======================================================================================================================================
languages/texts.php CHANGED
@@ -137,7 +137,7 @@ class Brizy_Languages_Texts
137
  "component" => __("component", "brizy"),
138
 
139
  // Popover
140
- "Add new column" => __("Add new column", "brizy"),
141
  //-> Bg
142
  "Background" => __("Background", "brizy"),
143
  "Bg Size" => __("Bg Size", "brizy"),
137
  "component" => __("component", "brizy"),
138
 
139
  // Popover
140
+ "Add New Column" => __("Add New Column", "brizy"),
141
  //-> Bg
142
  "Background" => __("Background", "brizy"),
143
  "Bg Size" => __("Bg Size", "brizy"),
public/editor-build/editor/css/editor.css CHANGED
@@ -4,5 +4,9076 @@
4
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
5
  *
6
  * Copyright (c) 2018 Daniel Eden
7
- */.brz-animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz-animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{20%,53%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.brz-animated__bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{50%,from,to{opacity:1}25%,75%{opacity:0}}.brz-animated__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}@keyframes pulse{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}}.brz-animated__pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}@keyframes rubberBand{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}}.brz-animated__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.brz-animated__shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.brz-animated__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.brz-animated__swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}@keyframes tada{from,to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}}.brz-animated__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}@keyframes wobble{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}}.brz-animated__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}@keyframes jello{11.1%,from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.39062deg) skewY(.39062deg);transform:skewX(.39062deg) skewY(.39062deg)}88.8%{-webkit-transform:skewX(-.19531deg) skewY(-.19531deg);transform:skewX(-.19531deg) skewY(-.19531deg)}}.brz-animated__jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.brz-animated__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{60%,75%,90%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.brz-animated__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz-animated__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz-animated__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz-animated__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz-animated__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.brz-animated__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.brz-animated__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz-animated__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.brz-animated__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz-animated__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.brz-animated__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz-animated__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.brz-animated__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz-animated__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.brz-animated__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.brz-animated__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz-animated__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.brz-animated__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.brz-animated__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.brz-animated__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.brz-animated__lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.brz-animated__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.brz-animated__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.brz-animated__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz-animated__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.brz-animated__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.brz-animated__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.brz-animated__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.brz-animated__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.brz-animated__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.brz-animated__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.brz-animated__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.brz-animated__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.brz-animated__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.brz-animated__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.brz-animated__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.brz-animated__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.brz-animated__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.brz-animated__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.brz-animated__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
8
- .brz .brz-btn,.brz .brz-ed-image__wrapper .brz-img,.brz-ed-sorting{-moz-user-select:none;-ms-user-select:none}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone,.brz-ed-sorting .sortable-hovered:not(.brz-ed-border__sortable):not(.brz-ed-container-trigger),.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone{position:relative}.brz .brz-a,.brz .brz-rich-text a,.brz-ed .brz-a{-webkit-text-decoration-skip:objects}.brz .brz-a,.brz .brz-btn.focus,.brz .brz-btn:focus,.brz .brz-btn:hover{text-decoration:none}.brz .brz-button,.brz .brz-reset-all,.brz .brz-select,.nc-icon{text-transform:none}.brz-ow-hidden{overflow:hidden!important}.brz-ow-visible{overflow:visible!important}@font-face{font-family:iowanoldst_btroman;src:url(../fonts/iowaosrm-webfont.woff);src:url(../fonts/iowaosrm-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/iowaosrm-webfont.woff2) format("woff2"),url(../fonts/iowaosrm-webfont.woff) format("woff"),url(../fonts/iowaosrm-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-regular-webfont.woff);src:url(../fonts/europa-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-regular-webfont.woff2) format("woff2"),url(../fonts/europa-regular-webfont.woff) format("woff"),url(../fonts/europa-regular-webfont.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-bold-webfont.woff);src:url(../fonts/europa-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-bold-webfont.woff2) format("woff2"),url(../fonts/europa-bold-webfont.woff) format("woff"),url(../fonts/europa-bold-webfont.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:europa;src:url(../fonts/europa-light-webfont.woff);src:url(../fonts/europa-light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/europa-light-webfont.woff2) format("woff2"),url(../fonts/europa-light-webfont.woff) format("woff"),url(../fonts/europa-light-webfont.ttf) format("truetype");font-weight:300;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-regular-webfont.eot);src:url(../fonts/pn-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-regular-webfont.woff2) format("woff2"),url(../fonts/pn-regular-webfont.woff) format("woff"),url(../fonts/pn-regular-webfont.svg) format("svg");font-weight:400;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-medium-webfont.eot);src:url(../fonts/pn-medium-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-medium-webfont.woff2) format("woff2"),url(../fonts/pn-medium-webfont.woff) format("woff"),url(../fonts/pn-medium-webfont.svg) format("svg");font-weight:600;font-style:normal}@font-face{font-family:pn;src:url(../fonts/pn-bold-webfont.eot);src:url(../fonts/pn-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/pn-bold-webfont.woff2) format("woff2"),url(../fonts/pn-bold-webfont.woff) format("woff"),url(../fonts/pn-bold-webfont.svg) format("svg");font-weight:700;font-style:normal}@font-face{font-family:"Nucleo Outline";src:url(../fonts/icons/nucleo-outline.eot);src:url(../fonts/icons/nucleo-outline.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-outline.woff2) format("woff2"),url(../fonts/icons/nucleo-outline.woff) format("woff"),url(../fonts/icons/nucleo-outline.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:"Nucleo Glyph";src:url(../fonts/icons/nucleo-glyph.eot);src:url(../fonts/icons/nucleo-glyph.eot) format("embedded-opentype"),url(../fonts/icons/nucleo-glyph.woff2) format("woff2"),url(../fonts/icons/nucleo-glyph.woff) format("woff"),url(../fonts/icons/nucleo-glyph.ttf) format("truetype");font-weight:400;font-style:normal}.nc-outline-2x-drag-down:before{content:"\ea01"}.nc-outline-2x-drag-up:before{content:"\ea02"}.nc-outline-2x-swipe-down:before{content:"\ea03"}.nc-outline-2x-swipe-left:before{content:"\ea04"}.nc-outline-2x-swipe-right:before{content:"\ea05"}.nc-outline-2x-swipe-up:before{content:"\ea06"}.nc-outline-2x-tap:before{content:"\ea07"}.nc-outline-3d-29:before{content:"\ea08"}.nc-outline-3d-model:before{content:"\ea09"}.nc-outline-3d:before{content:"\ea0a"}.nc-outline-3x-swipe-left:before{content:"\ea0b"}.nc-outline-3x-swipe-right:before{content:"\ea0c"}.nc-outline-3x-swipe-up:before{content:"\ea0e"}.nc-outline-3x-tap:before{content:"\ea0d"}.nc-outline-4x-swipe-left:before{content:"\ea0f"}.nc-outline-4x-swipe-right:before{content:"\ea10"}.nc-outline-4x-swipe-up:before{content:"\ea11"}.nc-outline-a-add:before{content:"\ea12"}.nc-outline-a-check:before{content:"\ea13"}.nc-outline-a-delete:before{content:"\ea14"}.nc-outline-a-edit:before{content:"\ea15"}.nc-outline-a-heart:before{content:"\ea16"}.nc-outline-a-location:before{content:"\ea17"}.nc-outline-a-remove:before{content:"\ea18"}.nc-outline-a-search:before{content:"\ea19"}.nc-outline-a-security:before{content:"\ea1a"}.nc-outline-a-share:before{content:"\ea1b"}.nc-outline-a-star:before{content:"\ea1c"}.nc-outline-a-sync:before{content:"\ea1d"}.nc-outline-a-time:before{content:"\ea1e"}.nc-outline-abc:before{content:"\ea1f"}.nc-outline-accessibility:before{content:"\ea20"}.nc-outline-action-73:before{content:"\ea22"}.nc-outline-action-74:before{content:"\ea21"}.nc-outline-active-38:before{content:"\ea23"}.nc-outline-active-40:before{content:"\ea24"}.nc-outline-add-27:before{content:"\ea26"}.nc-outline-add-29:before{content:"\ea25"}.nc-outline-add:before{content:"\ea28"}.nc-outline-agenda-bookmark:before{content:"\ea27"}.nc-outline-agenda:before{content:"\ea29"}.nc-outline-air-baloon:before{content:"\ea2a"}.nc-outline-air-conditioner:before{content:"\ea2b"}.nc-outline-airbag:before{content:"\ea2c"}.nc-outline-alarm-add:before{content:"\ea2d"}.nc-outline-alarm-delete:before{content:"\ea2e"}.nc-outline-album-2:before{content:"\ea2f"}.nc-outline-album:before{content:"\ea30"}.nc-outline-alcohol:before{content:"\ea31"}.nc-outline-alert-circle-exc:before{content:"\ea32"}.nc-outline-alert-circle-i:before{content:"\ea33"}.nc-outline-alert-circle-que:before{content:"\ea34"}.nc-outline-alert-exc:before{content:"\ea35"}.nc-outline-alert-i:before{content:"\ea36"}.nc-outline-alert-que:before{content:"\ea37"}.nc-outline-alert-square-exc:before{content:"\ea38"}.nc-outline-alert-square-i:before{content:"\ea39"}.nc-outline-alert-square-que:before{content:"\ea3a"}.nc-outline-alert:before{content:"\ea3b"}.nc-outline-alien-29:before{content:"\ea3c"}.nc-outline-alien-33:before{content:"\ea3d"}.nc-outline-align-bottom:before{content:"\ea3e"}.nc-outline-align-center-horizontal:before{content:"\ea3f"}.nc-outline-align-center-vertical:before{content:"\ea40"}.nc-outline-align-center:before{content:"\ea41"}.nc-outline-align-justify:before{content:"\ea42"}.nc-outline-align-left-2:before{content:"\ea43"}.nc-outline-align-left:before{content:"\ea44"}.nc-outline-align-right-2:before{content:"\ea45"}.nc-outline-align-right:before{content:"\ea46"}.nc-outline-align-top:before{content:"\ea47"}.nc-outline-ambulance:before{content:"\ea48"}.nc-outline-analytics-88:before{content:"\ea49"}.nc-outline-analytics-89:before{content:"\ea4a"}.nc-outline-anchor:before{content:"\ea4c"}.nc-outline-android:before{content:"\ea4b"}.nc-outline-angle:before{content:"\ea4d"}.nc-outline-angry-10:before{content:"\ea4e"}.nc-outline-angry-44:before{content:"\ea50"}.nc-outline-animation-14:before{content:"\ea4f"}.nc-outline-animation-31:before{content:"\ea51"}.nc-outline-animation-32:before{content:"\ea52"}.nc-outline-app:before{content:"\ea53"}.nc-outline-apple-2:before{content:"\ea54"}.nc-outline-apple:before{content:"\ea55"}.nc-outline-appointment:before{content:"\ea56"}.nc-outline-archive-2:before{content:"\ea57"}.nc-outline-archive-3d-check:before{content:"\ea58"}.nc-outline-archive-3d-content:before{content:"\ea59"}.nc-outline-archive-check:before{content:"\ea5a"}.nc-outline-archive-content:before{content:"\ea5b"}.nc-outline-archive-paper-check:before{content:"\ea5c"}.nc-outline-archive-paper:before{content:"\ea5d"}.nc-outline-archive:before{content:"\ea5e"}.nc-outline-armchair:before{content:"\ea5f"}.nc-outline-artboard:before{content:"\ea60"}.nc-outline-astronaut:before{content:"\ea62"}.nc-outline-at-sign:before{content:"\ea61"}.nc-outline-atm:before{content:"\ea63"}.nc-outline-atom:before{content:"\ea64"}.nc-outline-attach-86:before{content:"\ea65"}.nc-outline-attach-87:before{content:"\ea66"}.nc-outline-aubergine:before{content:"\ea67"}.nc-outline-audio-91:before{content:"\ea68"}.nc-outline-audio-92:before{content:"\ea69"}.nc-outline-audio:before{content:"\ea6a"}.nc-outline-avocado:before{content:"\ea6c"}.nc-outline-award-48:before{content:"\ea6b"}.nc-outline-award-49:before{content:"\ea6d"}.nc-outline-award-55:before{content:"\ea6e"}.nc-outline-award-74:before{content:"\ea6f"}.nc-outline-award:before{content:"\ea70"}.nc-outline-axe:before{content:"\ea71"}.nc-outline-b-add:before{content:"\ea72"}.nc-outline-b-check:before{content:"\ea74"}.nc-outline-b-location:before{content:"\ea73"}.nc-outline-b-love:before{content:"\ea75"}.nc-outline-b-meeting:before{content:"\ea76"}.nc-outline-b-remove:before{content:"\ea78"}.nc-outline-b-security:before{content:"\ea77"}.nc-outline-baby-2:before{content:"\ea79"}.nc-outline-baby-3:before{content:"\ea7a"}.nc-outline-baby-bottle:before{content:"\ea7b"}.nc-outline-baby:before{content:"\ea7c"}.nc-outline-back-78:before{content:"\ea7d"}.nc-outline-back-80:before{content:"\ea7e"}.nc-outline-background:before{content:"\ea7f"}.nc-outline-backpack-2:before{content:"\ea80"}.nc-outline-backpack-57:before{content:"\ea81"}.nc-outline-backpack-58:before{content:"\ea82"}.nc-outline-backpack:before{content:"\ea83"}.nc-outline-backward:before{content:"\ea84"}.nc-outline-bacon:before{content:"\ea85"}.nc-outline-badge-13:before{content:"\ea86"}.nc-outline-badge-14:before{content:"\ea87"}.nc-outline-badge-15:before{content:"\ea88"}.nc-outline-badge:before{content:"\ea89"}.nc-outline-badminton:before{content:"\ea8a"}.nc-outline-bag-09:before{content:"\ea8b"}.nc-outline-bag-16:before{content:"\ea8c"}.nc-outline-bag-17:before{content:"\ea8d"}.nc-outline-bag-20:before{content:"\ea8e"}.nc-outline-bag-21:before{content:"\ea8f"}.nc-outline-bag-22:before{content:"\ea90"}.nc-outline-bag-49:before{content:"\ea91"}.nc-outline-bag-50:before{content:"\ea92"}.nc-outline-bag-add-18:before{content:"\ea93"}.nc-outline-bag-add-21:before{content:"\ea94"}.nc-outline-bag-delivery:before{content:"\ea95"}.nc-outline-bag-edit:before{content:"\ea96"}.nc-outline-bag-remove-19:before{content:"\ea97"}.nc-outline-bag-remove-22:before{content:"\ea98"}.nc-outline-bag-time:before{content:"\ea99"}.nc-outline-bag:before{content:"\ea9a"}.nc-outline-baguette:before{content:"\ea9b"}.nc-outline-balance:before{content:"\ea9c"}.nc-outline-ball-basket:before{content:"\ea9d"}.nc-outline-ball-soccer:before{content:"\ea9e"}.nc-outline-baloon:before{content:"\eaa0"}.nc-outline-ban-bold:before{content:"\ea9f"}.nc-outline-ban:before{content:"\eaa1"}.nc-outline-banana:before{content:"\eaa2"}.nc-outline-bank:before{content:"\eaa3"}.nc-outline-barbecue-15:before{content:"\eaa4"}.nc-outline-barbecue-tools:before{content:"\eaa5"}.nc-outline-barbecue:before{content:"\eaa6"}.nc-outline-barcode-qr:before{content:"\eaa7"}.nc-outline-barcode-scan:before{content:"\eaa8"}.nc-outline-barcode:before{content:"\eaa9"}.nc-outline-bars-2:before{content:"\eaaa"}.nc-outline-bars-rotate:before{content:"\eaac"}.nc-outline-bars:before{content:"\eaab"}.nc-outline-baseball-ball:before{content:"\eaad"}.nc-outline-baseball-bat:before{content:"\eaae"}.nc-outline-baseball:before{content:"\eaaf"}.nc-outline-basket-add:before{content:"\eab0"}.nc-outline-basket-edit:before{content:"\eab1"}.nc-outline-basket-favorite:before{content:"\eab2"}.nc-outline-basket-remove:before{content:"\eab3"}.nc-outline-basket-search:before{content:"\eab4"}.nc-outline-basket-share:before{content:"\eab5"}.nc-outline-basket-simple-add:before{content:"\eab6"}.nc-outline-basket-simple-remove:before{content:"\eab7"}.nc-outline-basket-simple:before{content:"\eab8"}.nc-outline-basket-update:before{content:"\eab9"}.nc-outline-basket:before{content:"\eaba"}.nc-outline-basketball-12:before{content:"\eabb"}.nc-outline-basketball-13:before{content:"\eabc"}.nc-outline-bat:before{content:"\eabd"}.nc-outline-bath-tub:before{content:"\eabe"}.nc-outline-battery-81:before{content:"\eabf"}.nc-outline-battery-83:before{content:"\eac0"}.nc-outline-battery-half:before{content:"\eac1"}.nc-outline-battery-level:before{content:"\eac2"}.nc-outline-battery-low:before{content:"\eac3"}.nc-outline-battery:before{content:"\eac4"}.nc-outline-bear-2:before{content:"\eac5"}.nc-outline-bear:before{content:"\eac6"}.nc-outline-bed-09:before{content:"\eac8"}.nc-outline-bed-23:before{content:"\eac9"}.nc-outline-bed-side:before{content:"\eac7"}.nc-outline-bee:before{content:"\eaca"}.nc-outline-beer-95:before{content:"\eacb"}.nc-outline-beer-96:before{content:"\eacc"}.nc-outline-bell-53:before{content:"\eacd"}.nc-outline-bell-54:before{content:"\eace"}.nc-outline-bell-55:before{content:"\eacf"}.nc-outline-belt:before{content:"\ead0"}.nc-outline-berlin:before{content:"\ead1"}.nc-outline-beverage:before{content:"\ead2"}.nc-outline-big-eyes:before{content:"\ead4"}.nc-outline-big-smile:before{content:"\ead3"}.nc-outline-bigmouth:before{content:"\ead5"}.nc-outline-bike-2:before{content:"\ead6"}.nc-outline-bike:before{content:"\ead7"}.nc-outline-bill:before{content:"\ead9"}.nc-outline-billiard:before{content:"\ead8"}.nc-outline-binocular:before{content:"\eada"}.nc-outline-biscuit:before{content:"\eadb"}.nc-outline-bitcoin:before{content:"\eadc"}.nc-outline-bleah:before{content:"\eadd"}.nc-outline-blend:before{content:"\eade"}.nc-outline-blind:before{content:"\eae0"}.nc-outline-block-bottom-left:before{content:"\eadf"}.nc-outline-block-bottom-right:before{content:"\eae1"}.nc-outline-block-down:before{content:"\eae2"}.nc-outline-block-left:before{content:"\eae3"}.nc-outline-block-right:before{content:"\eae4"}.nc-outline-block-top-left:before{content:"\eae5"}.nc-outline-block-top-right:before{content:"\eae6"}.nc-outline-block-up:before{content:"\eae8"}.nc-outline-blog:before{content:"\eae7"}.nc-outline-blueberries:before{content:"\eae9"}.nc-outline-bluetooth:before{content:"\eaea"}.nc-outline-board-2:before{content:"\eaeb"}.nc-outline-board-27:before{content:"\eaec"}.nc-outline-board-28:before{content:"\eaed"}.nc-outline-board-29:before{content:"\eaee"}.nc-outline-board-30:before{content:"\eaef"}.nc-outline-board-51:before{content:"\eaf0"}.nc-outline-board:before{content:"\eaf1"}.nc-outline-boat-front:before{content:"\eaf2"}.nc-outline-boat-small-02:before{content:"\eaf3"}.nc-outline-boat-small-03:before{content:"\eaf4"}.nc-outline-boat:before{content:"\eaf5"}.nc-outline-bold-add:before{content:"\eaf6"}.nc-outline-bold-delete:before{content:"\eaf7"}.nc-outline-bold-direction:before{content:"\eaf8"}.nc-outline-bold-down:before{content:"\eaf9"}.nc-outline-bold-left:before{content:"\eafa"}.nc-outline-bold-remove:before{content:"\eafc"}.nc-outline-bold-right:before{content:"\eafb"}.nc-outline-bold-up:before{content:"\eafd"}.nc-outline-bold:before{content:"\eafe"}.nc-outline-bolt:before{content:"\eaff"}.nc-outline-bomb:before{content:"\eb00"}.nc-outline-bones:before{content:"\eb01"}.nc-outline-book-07:before{content:"\eb02"}.nc-outline-book-08:before{content:"\eb03"}.nc-outline-book-39:before{content:"\eb04"}.nc-outline-book-bookmark-2:before{content:"\eb05"}.nc-outline-book-bookmark:before{content:"\eb06"}.nc-outline-book-open-2:before{content:"\eb07"}.nc-outline-book-open:before{content:"\eb08"}.nc-outline-book:before{content:"\eb09"}.nc-outline-bookmark-2:before{content:"\eb0a"}.nc-outline-bookmark-add-2:before{content:"\eb0b"}.nc-outline-bookmark-add:before{content:"\eb0c"}.nc-outline-bookmark-remove-2:before{content:"\eb0d"}.nc-outline-bookmark-remove:before{content:"\eb0e"}.nc-outline-bookmark:before{content:"\eb0f"}.nc-outline-books-46:before{content:"\eb10"}.nc-outline-books:before{content:"\eb11"}.nc-outline-boot-2:before{content:"\eb12"}.nc-outline-boot-woman:before{content:"\eb14"}.nc-outline-boot:before{content:"\eb15"}.nc-outline-border-radius:before{content:"\eb13"}.nc-outline-border:before{content:"\eb16"}.nc-outline-bored:before{content:"\eb17"}.nc-outline-bottle-wine:before{content:"\eb18"}.nc-outline-bottle:before{content:"\eb19"}.nc-outline-bow:before{content:"\eb1a"}.nc-outline-bowl:before{content:"\eb1b"}.nc-outline-bowling:before{content:"\eb1d"}.nc-outline-box-2:before{content:"\eb1c"}.nc-outline-box-3d-50:before{content:"\eb1e"}.nc-outline-box-ribbon:before{content:"\eb1f"}.nc-outline-box:before{content:"\eb20"}.nc-outline-boxing:before{content:"\eb21"}.nc-outline-bra:before{content:"\eb22"}.nc-outline-brain:before{content:"\eb23"}.nc-outline-brakes:before{content:"\eb24"}.nc-outline-bread:before{content:"\eb25"}.nc-outline-briefcase-24:before{content:"\eb26"}.nc-outline-briefcase-25:before{content:"\eb28"}.nc-outline-briefcase-26:before{content:"\eb27"}.nc-outline-brightness-46:before{content:"\eb29"}.nc-outline-brightness-47:before{content:"\eb2a"}.nc-outline-brioche:before{content:"\eb2d"}.nc-outline-broccoli:before{content:"\eb2b"}.nc-outline-broom:before{content:"\eb2c"}.nc-outline-browser-chrome:before{content:"\eb2e"}.nc-outline-browser-edge:before{content:"\eb2f"}.nc-outline-browser-firefox:before{content:"\eb30"}.nc-outline-browser-ie:before{content:"\eb31"}.nc-outline-browser-opera:before{content:"\eb32"}.nc-outline-browser-safari:before{content:"\eb35"}.nc-outline-brush:before{content:"\eb34"}.nc-outline-bucket:before{content:"\eb33"}.nc-outline-bug:before{content:"\eb36"}.nc-outline-building:before{content:"\eb37"}.nc-outline-bulb-61:before{content:"\eb39"}.nc-outline-bulb-62:before{content:"\eb38"}.nc-outline-bulb-63:before{content:"\eb3a"}.nc-outline-bulb-saver:before{content:"\eb3b"}.nc-outline-bulb:before{content:"\eb3d"}.nc-outline-bullet-list-67:before{content:"\eb3c"}.nc-outline-bullet-list-68:before{content:"\eb3e"}.nc-outline-bullet-list-69:before{content:"\eb41"}.nc-outline-bullet-list-70:before{content:"\eb3f"}.nc-outline-bullet-list:before{content:"\eb40"}.nc-outline-bus-front-10:before{content:"\eb42"}.nc-outline-bus-front-12:before{content:"\eb44"}.nc-outline-bus:before{content:"\eb45"}.nc-outline-business-contact-85:before{content:"\eb43"}.nc-outline-business-contact-89:before{content:"\eb46"}.nc-outline-businessman-03:before{content:"\eb47"}.nc-outline-businessman-04:before{content:"\eb48"}.nc-outline-butterfly:before{content:"\eb49"}.nc-outline-button-2:before{content:"\eb4a"}.nc-outline-button-circle-pause:before{content:"\eb4c"}.nc-outline-button-circle-play:before{content:"\eb4b"}.nc-outline-button-circle-stop:before{content:"\eb4d"}.nc-outline-button-eject:before{content:"\eb4e"}.nc-outline-button-next:before{content:"\eb50"}.nc-outline-button-pause:before{content:"\eb4f"}.nc-outline-button-play:before{content:"\eb51"}.nc-outline-button-power:before{content:"\eb52"}.nc-outline-button-previous:before{content:"\eb54"}.nc-outline-button-record:before{content:"\eb53"}.nc-outline-button-rewind:before{content:"\eb55"}.nc-outline-button-skip:before{content:"\eb56"}.nc-outline-button-stop:before{content:"\eb57"}.nc-outline-button:before{content:"\eb58"}.nc-outline-cabinet:before{content:"\eb59"}.nc-outline-cable-49:before{content:"\eb5a"}.nc-outline-cable-50:before{content:"\eb5b"}.nc-outline-cactus:before{content:"\eb5c"}.nc-outline-cake-100:before{content:"\eb5d"}.nc-outline-cake-13:before{content:"\eb5e"}.nc-outline-cake-slice:before{content:"\eb5f"}.nc-outline-cake:before{content:"\eb60"}.nc-outline-calculator:before{content:"\eb61"}.nc-outline-calendar-57:before{content:"\eb62"}.nc-outline-calendar-60:before{content:"\eb64"}.nc-outline-calendar-add:before{content:"\eb65"}.nc-outline-calendar-check-59:before{content:"\eb63"}.nc-outline-calendar-check-62:before{content:"\eb66"}.nc-outline-calendar-grid-58:before{content:"\eb67"}.nc-outline-calendar-grid-61:before{content:"\eb68"}.nc-outline-camera-18:before{content:"\eb69"}.nc-outline-camera-19:before{content:"\eb6a"}.nc-outline-camera-20:before{content:"\eb6b"}.nc-outline-camera-ban-36:before{content:"\eb6c"}.nc-outline-camera-ban-37:before{content:"\eb6d"}.nc-outline-camera-compact:before{content:"\eb6e"}.nc-outline-camera-screen:before{content:"\eb6f"}.nc-outline-camera-square-57:before{content:"\eb70"}.nc-outline-camera-square-58:before{content:"\eb71"}.nc-outline-camera-time:before{content:"\eb72"}.nc-outline-camera:before{content:"\eb73"}.nc-outline-camper:before{content:"\eb75"}.nc-outline-camping:before{content:"\eb74"}.nc-outline-candle:before{content:"\eb76"}.nc-outline-candy-2:before{content:"\eb77"}.nc-outline-candy:before{content:"\eb78"}.nc-outline-canvas:before{content:"\eb79"}.nc-outline-cap:before{content:"\eb7a"}.nc-outline-capitalize:before{content:"\eb7b"}.nc-outline-caps-all:before{content:"\eb7c"}.nc-outline-caps-small:before{content:"\eb7d"}.nc-outline-car-2:before{content:"\eb7e"}.nc-outline-car-accident:before{content:"\eb7f"}.nc-outline-car-connect:before{content:"\eb80"}.nc-outline-car-door:before{content:"\eb81"}.nc-outline-car-front:before{content:"\eb82"}.nc-outline-car-lights:before{content:"\eb83"}.nc-outline-car-parking:before{content:"\eb84"}.nc-outline-car-simple:before{content:"\eb85"}.nc-outline-car-sport:before{content:"\eb86"}.nc-outline-car-taxi:before{content:"\eb87"}.nc-outline-car-ventilation:before{content:"\eb88"}.nc-outline-car-wash:before{content:"\eb89"}.nc-outline-car:before{content:"\eb8a"}.nc-outline-card-add-2:before{content:"\eb8b"}.nc-outline-card-add:before{content:"\eb8c"}.nc-outline-card-alert:before{content:"\eb8d"}.nc-outline-card-edit:before{content:"\eb8e"}.nc-outline-card-favorite:before{content:"\eb8f"}.nc-outline-card-remove:before{content:"\eb90"}.nc-outline-card-update:before{content:"\eb91"}.nc-outline-cardio:before{content:"\eb92"}.nc-outline-cards:before{content:"\eb94"}.nc-outline-carrot:before{content:"\eb95"}.nc-outline-cart-9:before{content:"\eb93"}.nc-outline-cart-add-9:before{content:"\eb96"}.nc-outline-cart-add:before{content:"\eb97"}.nc-outline-cart-favorite:before{content:"\eb98"}.nc-outline-cart-full:before{content:"\eb99"}.nc-outline-cart-in-9:before{content:"\eb9a"}.nc-outline-cart-refresh:before{content:"\eb9c"}.nc-outline-cart-remove-9:before{content:"\eb9b"}.nc-outline-cart-remove:before{content:"\eb9d"}.nc-outline-cart-return:before{content:"\eb9e"}.nc-outline-cart-simple-add:before{content:"\eb9f"}.nc-outline-cart-simple-in:before{content:"\eba1"}.nc-outline-cart-simple-remove:before{content:"\eba0"}.nc-outline-cart-simple:before{content:"\eba2"}.nc-outline-cart-speed:before{content:"\eba3"}.nc-outline-cart:before{content:"\eba4"}.nc-outline-cash-register:before{content:"\eba5"}.nc-outline-castle:before{content:"\eba6"}.nc-outline-cat:before{content:"\eba7"}.nc-outline-cauldron:before{content:"\eba8"}.nc-outline-cctv:before{content:"\eba9"}.nc-outline-cd-reader:before{content:"\ebaa"}.nc-outline-celsius:before{content:"\ebab"}.nc-outline-centralize:before{content:"\ebac"}.nc-outline-chair-2:before{content:"\ebad"}.nc-outline-chair:before{content:"\ebae"}.nc-outline-chalkboard:before{content:"\ebaf"}.nc-outline-champagne:before{content:"\ebb0"}.nc-outline-chart-2:before{content:"\ebb1"}.nc-outline-chart-3:before{content:"\ebb2"}.nc-outline-chart-bar-32:before{content:"\ebb3"}.nc-outline-chart-bar-33:before{content:"\ebb4"}.nc-outline-chart-bar-52:before{content:"\ebb5"}.nc-outline-chart-bar-53:before{content:"\ebb6"}.nc-outline-chart-bar:before{content:"\ebb7"}.nc-outline-chart-bars:before{content:"\ebb8"}.nc-outline-chart-growth:before{content:"\ebb9"}.nc-outline-chart-pie-35:before{content:"\ebba"}.nc-outline-chart-pie-36:before{content:"\ebbb"}.nc-outline-chart-pie:before{content:"\ebbc"}.nc-outline-chart:before{content:"\ebbd"}.nc-outline-chat-33:before{content:"\ebbe"}.nc-outline-chat-45:before{content:"\ebbf"}.nc-outline-chat-46:before{content:"\ebc0"}.nc-outline-chat-content:before{content:"\ebc1"}.nc-outline-chat-reply:before{content:"\ebc2"}.nc-outline-chat-round-content:before{content:"\ebc3"}.nc-outline-chat-round:before{content:"\ebc4"}.nc-outline-chat:before{content:"\ebc5"}.nc-outline-check-2:before{content:"\ebc6"}.nc-outline-check-bold:before{content:"\ebc7"}.nc-outline-check-circle-07:before{content:"\ebc8"}.nc-outline-check-circle-08:before{content:"\ebc9"}.nc-outline-check-curve:before{content:"\ebca"}.nc-outline-check-in:before{content:"\ebcb"}.nc-outline-check-out:before{content:"\ebcc"}.nc-outline-check-simple:before{content:"\ebcd"}.nc-outline-check-small:before{content:"\ebce"}.nc-outline-check-square-09:before{content:"\ebcf"}.nc-outline-check-square-11:before{content:"\ebd0"}.nc-outline-check:before{content:"\ebd1"}.nc-outline-cheese-24:before{content:"\ebd2"}.nc-outline-cheese-87:before{content:"\ebd3"}.nc-outline-cheeseburger:before{content:"\ebd4"}.nc-outline-chef-hat:before{content:"\ebd6"}.nc-outline-chef:before{content:"\ebd5"}.nc-outline-cheque-2:before{content:"\ebd7"}.nc-outline-cheque-3:before{content:"\ebd8"}.nc-outline-cheque:before{content:"\ebda"}.nc-outline-cherry:before{content:"\ebd9"}.nc-outline-chicken-2:before{content:"\ebdb"}.nc-outline-chicken:before{content:"\ebdc"}.nc-outline-child:before{content:"\ebdd"}.nc-outline-chili:before{content:"\ebde"}.nc-outline-chimney:before{content:"\ebdf"}.nc-outline-china:before{content:"\ebe0"}.nc-outline-chinese:before{content:"\ebe1"}.nc-outline-chips:before{content:"\ebe2"}.nc-outline-choco-cream:before{content:"\ebe3"}.nc-outline-chocolate-mousse:before{content:"\ebe4"}.nc-outline-chocolate:before{content:"\ebe5"}.nc-outline-church:before{content:"\ebe6"}.nc-outline-churros:before{content:"\ebe7"}.nc-outline-circle-02:before{content:"\ebe8"}.nc-outline-circle-03:before{content:"\ebe9"}.nc-outline-circle-04:before{content:"\ebea"}.nc-outline-circle-08:before{content:"\ebec"}.nc-outline-circle-09:before{content:"\ebeb"}.nc-outline-circle-10:before{content:"\ebed"}.nc-outline-circle-add:before{content:"\ebee"}.nc-outline-circle-bold-add:before{content:"\ebef"}.nc-outline-circle-bold-delete:before{content:"\ebf0"}.nc-outline-circle-bold-remove:before{content:"\ebf1"}.nc-outline-circle-delete:before{content:"\ebf2"}.nc-outline-circle-down-12:before{content:"\ebf3"}.nc-outline-circle-down-40:before{content:"\ebf4"}.nc-outline-circle-in:before{content:"\ebf5"}.nc-outline-circle-left-10:before{content:"\ebf6"}.nc-outline-circle-left-38:before{content:"\ebf7"}.nc-outline-circle-out:before{content:"\ebf8"}.nc-outline-circle-remove:before{content:"\ebf9"}.nc-outline-circle-right-09:before{content:"\ebfa"}.nc-outline-circle-right-37:before{content:"\ebfc"}.nc-outline-circle-simple-down:before{content:"\ebfb"}.nc-outline-circle-simple-left:before{content:"\ebfe"}.nc-outline-circle-simple-right:before{content:"\ebfd"}.nc-outline-circle-simple-up:before{content:"\ebff"}.nc-outline-circle-up-11:before{content:"\ec00"}.nc-outline-circle-up-39:before{content:"\ec02"}.nc-outline-circle:before{content:"\ec01"}.nc-outline-circuit-round:before{content:"\ec03"}.nc-outline-circuit:before{content:"\ec04"}.nc-outline-clone:before{content:"\ec05"}.nc-outline-cloud-25:before{content:"\ec06"}.nc-outline-cloud-26:before{content:"\ec08"}.nc-outline-cloud-download-93:before{content:"\ec07"}.nc-outline-cloud-download-95:before{content:"\ec09"}.nc-outline-cloud-drop:before{content:"\ec0a"}.nc-outline-cloud-fog-31:before{content:"\ec0c"}.nc-outline-cloud-fog-32:before{content:"\ec0b"}.nc-outline-cloud-hail:before{content:"\ec0d"}.nc-outline-cloud-light:before{content:"\ec0e"}.nc-outline-cloud-moon:before{content:"\ec10"}.nc-outline-cloud-rain:before{content:"\ec0f"}.nc-outline-cloud-rainbow:before{content:"\ec11"}.nc-outline-cloud-snow-34:before{content:"\ec12"}.nc-outline-cloud-snow-42:before{content:"\ec14"}.nc-outline-cloud-sun-17:before{content:"\ec13"}.nc-outline-cloud-sun-19:before{content:"\ec15"}.nc-outline-cloud-upload-94:before{content:"\ec16"}.nc-outline-cloud-upload-96:before{content:"\ec17"}.nc-outline-cloud:before{content:"\ec18"}.nc-outline-clover:before{content:"\ec19"}.nc-outline-coat-hanger:before{content:"\ec1a"}.nc-outline-coat:before{content:"\ec1c"}.nc-outline-cockade:before{content:"\ec1b"}.nc-outline-cocktail:before{content:"\ec1d"}.nc-outline-code-editor:before{content:"\ec1e"}.nc-outline-code:before{content:"\ec1f"}.nc-outline-coffe-long:before{content:"\ec20"}.nc-outline-coffee-2:before{content:"\ec21"}.nc-outline-coffee-bean:before{content:"\ec22"}.nc-outline-coffee-long:before{content:"\ec23"}.nc-outline-coffee:before{content:"\ec24"}.nc-outline-coffin:before{content:"\ec26"}.nc-outline-coins:before{content:"\ec25"}.nc-outline-collar:before{content:"\ec28"}.nc-outline-collection:before{content:"\ec27"}.nc-outline-color:before{content:"\ec2a"}.nc-outline-command:before{content:"\ec29"}.nc-outline-comment-add:before{content:"\ec2b"}.nc-outline-compare:before{content:"\ec2c"}.nc-outline-compass-04:before{content:"\ec2e"}.nc-outline-compass-05:before{content:"\ec2d"}.nc-outline-compass-06:before{content:"\ec2f"}.nc-outline-compass-2:before{content:"\ec30"}.nc-outline-compass-3:before{content:"\ec31"}.nc-outline-compass:before{content:"\ec32"}.nc-outline-components:before{content:"\ec33"}.nc-outline-computer-monitor:before{content:"\ec34"}.nc-outline-computer-old:before{content:"\ec35"}.nc-outline-computer-upload:before{content:"\ec36"}.nc-outline-computer:before{content:"\ec37"}.nc-outline-cone:before{content:"\ec38"}.nc-outline-connect:before{content:"\ec39"}.nc-outline-connection:before{content:"\ec3a"}.nc-outline-contact-86:before{content:"\ec3b"}.nc-outline-contact-87:before{content:"\ec3c"}.nc-outline-contact-88:before{content:"\ec3d"}.nc-outline-contacts-2:before{content:"\ec3e"}.nc-outline-contacts-44:before{content:"\ec3f"}.nc-outline-contacts-45:before{content:"\ec40"}.nc-outline-contacts:before{content:"\ec41"}.nc-outline-contrast-2:before{content:"\ec42"}.nc-outline-contrast:before{content:"\ec43"}.nc-outline-controller-2:before{content:"\ec44"}.nc-outline-controller-3:before{content:"\ec45"}.nc-outline-controller:before{content:"\ec46"}.nc-outline-conversion:before{content:"\ec47"}.nc-outline-cookies:before{content:"\ec48"}.nc-outline-copy-2:before{content:"\ec4a"}.nc-outline-copy:before{content:"\ec49"}.nc-outline-corn:before{content:"\ec4b"}.nc-outline-corner-down-round:before{content:"\ec4c"}.nc-outline-corner-down:before{content:"\ec4d"}.nc-outline-corner-left-down:before{content:"\ec4e"}.nc-outline-corner-left-round:before{content:"\ec50"}.nc-outline-corner-left:before{content:"\ec4f"}.nc-outline-corner-right-down:before{content:"\ec51"}.nc-outline-corner-right-round:before{content:"\ec52"}.nc-outline-corner-right:before{content:"\ec54"}.nc-outline-corner-up-left:before{content:"\ec53"}.nc-outline-corner-up-right:before{content:"\ec55"}.nc-outline-corner-up-round:before{content:"\ec56"}.nc-outline-corner-up:before{content:"\ec57"}.nc-outline-corset:before{content:"\ec58"}.nc-outline-countdown-34:before{content:"\ec59"}.nc-outline-countdown-35:before{content:"\ec5a"}.nc-outline-couple-gay:before{content:"\ec5b"}.nc-outline-couple-lesbian:before{content:"\ec5c"}.nc-outline-coupon:before{content:"\ec5d"}.nc-outline-course:before{content:"\ec5e"}.nc-outline-cow:before{content:"\ec5f"}.nc-outline-crab:before{content:"\ec60"}.nc-outline-cradle:before{content:"\ec62"}.nc-outline-credit-card-in:before{content:"\ec61"}.nc-outline-credit-card:before{content:"\ec64"}.nc-outline-credit-locked:before{content:"\ec63"}.nc-outline-crepe:before{content:"\ec66"}.nc-outline-cricket:before{content:"\ec65"}.nc-outline-croissant:before{content:"\ec67"}.nc-outline-crop:before{content:"\ec68"}.nc-outline-cross-down:before{content:"\ec69"}.nc-outline-cross-horizontal:before{content:"\ec6a"}.nc-outline-cross-left:before{content:"\ec6b"}.nc-outline-cross-right:before{content:"\ec6c"}.nc-outline-cross-up:before{content:"\ec6e"}.nc-outline-cross-vertical:before{content:"\ec6d"}.nc-outline-cross:before{content:"\ec6f"}.nc-outline-crosshair:before{content:"\ec70"}.nc-outline-crown:before{content:"\ec71"}.nc-outline-crumpet:before{content:"\ec72"}.nc-outline-cry-15:before{content:"\ec73"}.nc-outline-cry-57:before{content:"\ec74"}.nc-outline-css3:before{content:"\ec75"}.nc-outline-cupcake:before{content:"\ec76"}.nc-outline-currency-dollar:before{content:"\ec77"}.nc-outline-currency-euro:before{content:"\ec78"}.nc-outline-currency-exchange:before{content:"\ec79"}.nc-outline-currency-pound:before{content:"\ec7a"}.nc-outline-currency-yen:before{content:"\ec7b"}.nc-outline-cursor-48:before{content:"\ec7c"}.nc-outline-cursor-49:before{content:"\ec7e"}.nc-outline-cursor-add:before{content:"\ec7d"}.nc-outline-cursor-grab:before{content:"\ec7f"}.nc-outline-cursor-load:before{content:"\ec80"}.nc-outline-cursor-menu:before{content:"\ec81"}.nc-outline-cursor-not-allowed:before{content:"\ec82"}.nc-outline-cursor-pointer:before{content:"\ec83"}.nc-outline-cursor-text:before{content:"\ec84"}.nc-outline-curtain:before{content:"\ec85"}.nc-outline-curve-circuit:before{content:"\ec86"}.nc-outline-curve-directions:before{content:"\ec88"}.nc-outline-curve-split:before{content:"\ec87"}.nc-outline-curved-next:before{content:"\ec89"}.nc-outline-curved-previous:before{content:"\ec8a"}.nc-outline-customer-support:before{content:"\ec8b"}.nc-outline-cut:before{content:"\ec8c"}.nc-outline-cute:before{content:"\ec8d"}.nc-outline-cutlery-75:before{content:"\ec8e"}.nc-outline-cutlery-76:before{content:"\ec8f"}.nc-outline-cutlery-77:before{content:"\ec90"}.nc-outline-cutlery:before{content:"\ec91"}.nc-outline-cyclist:before{content:"\ec92"}.nc-outline-dart:before{content:"\ec93"}.nc-outline-dashboard-29:before{content:"\ec94"}.nc-outline-dashboard-30:before{content:"\ec95"}.nc-outline-dashboard-half:before{content:"\ec96"}.nc-outline-dashboard-level:before{content:"\ec97"}.nc-outline-database:before{content:"\ec98"}.nc-outline-dead-hand:before{content:"\ec9a"}.nc-outline-decoration:before{content:"\ec99"}.nc-outline-deer:before{content:"\ec9c"}.nc-outline-delete-28:before{content:"\ec9b"}.nc-outline-delete-30:before{content:"\ec9d"}.nc-outline-delete-49:before{content:"\ec9e"}.nc-outline-delete-50:before{content:"\ec9f"}.nc-outline-delivery-2:before{content:"\eca0"}.nc-outline-delivery-3:before{content:"\eca1"}.nc-outline-delivery-fast:before{content:"\eca2"}.nc-outline-delivery-time:before{content:"\eca3"}.nc-outline-delivery-track:before{content:"\eca4"}.nc-outline-delivery:before{content:"\eca5"}.nc-outline-design-system:before{content:"\eca6"}.nc-outline-design:before{content:"\eca7"}.nc-outline-desk-drawer:before{content:"\eca8"}.nc-outline-desk:before{content:"\eca9"}.nc-outline-desktop-screen:before{content:"\ecaa"}.nc-outline-desktop:before{content:"\ecab"}.nc-outline-detox:before{content:"\ecac"}.nc-outline-dev:before{content:"\ecad"}.nc-outline-device-connection:before{content:"\ecae"}.nc-outline-devil:before{content:"\ecaf"}.nc-outline-diag-bottom-left:before{content:"\ecb0"}.nc-outline-diag-bottom-right:before{content:"\ecb1"}.nc-outline-diag-top-left:before{content:"\ecb2"}.nc-outline-diag-top-right:before{content:"\ecb3"}.nc-outline-diamond:before{content:"\ecb4"}.nc-outline-dice:before{content:"\ecb6"}.nc-outline-diet-plan:before{content:"\ecb5"}.nc-outline-diet:before{content:"\ecb7"}.nc-outline-direction-53:before{content:"\ecb8"}.nc-outline-direction-56:before{content:"\ecb9"}.nc-outline-direction:before{content:"\ecba"}.nc-outline-directions:before{content:"\ecbb"}.nc-outline-disabled:before{content:"\ecbc"}.nc-outline-discount-2:before{content:"\ecbd"}.nc-outline-discount:before{content:"\ecbe"}.nc-outline-disgusted:before{content:"\ecc0"}.nc-outline-dish:before{content:"\ecbf"}.nc-outline-dishwasher:before{content:"\ecc1"}.nc-outline-disk-2:before{content:"\ecc2"}.nc-outline-disk-reader:before{content:"\ecc3"}.nc-outline-disk:before{content:"\ecc4"}.nc-outline-disperse:before{content:"\ecc6"}.nc-outline-distribute-horizontal:before{content:"\ecc5"}.nc-outline-distribute-vertical:before{content:"\ecc7"}.nc-outline-divider:before{content:"\ecc8"}.nc-outline-dna-27:before{content:"\ecc9"}.nc-outline-dna-38:before{content:"\ecca"}.nc-outline-dock-bottom:before{content:"\eccb"}.nc-outline-dock-left:before{content:"\eccc"}.nc-outline-dock-right:before{content:"\eccd"}.nc-outline-dock-top:before{content:"\ecce"}.nc-outline-dock:before{content:"\eccf"}.nc-outline-doctor:before{content:"\ecd0"}.nc-outline-dog-house:before{content:"\ecd1"}.nc-outline-dog:before{content:"\ecd2"}.nc-outline-donut:before{content:"\ecd3"}.nc-outline-door:before{content:"\ecd4"}.nc-outline-dots-05:before{content:"\ecd5"}.nc-outline-dots-06:before{content:"\ecd6"}.nc-outline-dots-07:before{content:"\ecd7"}.nc-outline-dots-download:before{content:"\ecd8"}.nc-outline-dots-upload:before{content:"\ecda"}.nc-outline-dots:before{content:"\ecd9"}.nc-outline-double-left:before{content:"\ecdb"}.nc-outline-double-right:before{content:"\ecdc"}.nc-outline-double-tap:before{content:"\ecdd"}.nc-outline-download-2:before{content:"\ecde"}.nc-outline-download-3:before{content:"\ecdf"}.nc-outline-download:before{content:"\ece0"}.nc-outline-drag-21:before{content:"\ece1"}.nc-outline-drag-31:before{content:"\ece2"}.nc-outline-drag-down:before{content:"\ece3"}.nc-outline-drag-left:before{content:"\ece4"}.nc-outline-drag-right:before{content:"\ece5"}.nc-outline-drag-up:before{content:"\ece6"}.nc-outline-drag:before{content:"\ece7"}.nc-outline-drawer-2:before{content:"\ece8"}.nc-outline-drawer:before{content:"\ece9"}.nc-outline-dress-man:before{content:"\ecea"}.nc-outline-dress-woman:before{content:"\eceb"}.nc-outline-drink-2:before{content:"\ecec"}.nc-outline-drink-list:before{content:"\eced"}.nc-outline-drink:before{content:"\ecee"}.nc-outline-drop-15:before{content:"\ecef"}.nc-outline-drop:before{content:"\ecf0"}.nc-outline-drops:before{content:"\ecf1"}.nc-outline-dumbbells:before{content:"\ecf2"}.nc-outline-eclipse:before{content:"\ecf3"}.nc-outline-edit-2:before{content:"\ecf4"}.nc-outline-edit-71:before{content:"\ecf5"}.nc-outline-edit-72:before{content:"\ecf6"}.nc-outline-edit-73:before{content:"\ecf7"}.nc-outline-edit-74:before{content:"\ecf8"}.nc-outline-edit-75:before{content:"\ecf9"}.nc-outline-edit-76:before{content:"\ecfa"}.nc-outline-edit-77:before{content:"\ecfb"}.nc-outline-edit-78:before{content:"\ecfc"}.nc-outline-edit-color:before{content:"\ecfd"}.nc-outline-edit-contrast-42:before{content:"\ecfe"}.nc-outline-edit-contrast-43:before{content:"\ecff"}.nc-outline-edit-saturation:before{content:"\ed00"}.nc-outline-edit:before{content:"\ed01"}.nc-outline-egg-38:before{content:"\ed02"}.nc-outline-egg-39:before{content:"\ed03"}.nc-outline-egg:before{content:"\ed04"}.nc-outline-eject:before{content:"\ed05"}.nc-outline-email-83:before{content:"\ed06"}.nc-outline-email-84:before{content:"\ed07"}.nc-outline-email-85:before{content:"\ed08"}.nc-outline-energy-drink-2:before{content:"\ed0a"}.nc-outline-energy-drink:before{content:"\ed09"}.nc-outline-energy-supplement:before{content:"\ed0b"}.nc-outline-energy:before{content:"\ed0c"}.nc-outline-engine-start:before{content:"\ed0d"}.nc-outline-engine:before{content:"\ed0e"}.nc-outline-enlarge-45:before{content:"\ed0f"}.nc-outline-enlarge-46:before{content:"\ed10"}.nc-outline-enlarge-57:before{content:"\ed12"}.nc-outline-enlarge-58:before{content:"\ed11"}.nc-outline-enlarge-59:before{content:"\ed13"}.nc-outline-enlarge-circle:before{content:"\ed14"}.nc-outline-enlarge-diagonal-43:before{content:"\ed15"}.nc-outline-enlarge-diagonal-44:before{content:"\ed16"}.nc-outline-enlarge-horizontal:before{content:"\ed17"}.nc-outline-enlarge-vertical:before{content:"\ed18"}.nc-outline-eraser-32:before{content:"\ed19"}.nc-outline-eraser-33:before{content:"\ed1a"}.nc-outline-eraser-46:before{content:"\ed1b"}.nc-outline-event-confirm:before{content:"\ed1c"}.nc-outline-event-create:before{content:"\ed1d"}.nc-outline-exchange:before{content:"\ed1e"}.nc-outline-exclamation:before{content:"\ed1f"}.nc-outline-explore-2:before{content:"\ed20"}.nc-outline-explore-user:before{content:"\ed21"}.nc-outline-explore:before{content:"\ed22"}.nc-outline-export:before{content:"\ed23"}.nc-outline-eye-17:before{content:"\ed24"}.nc-outline-eye-19:before{content:"\ed25"}.nc-outline-eye-ban-18:before{content:"\ed26"}.nc-outline-eye-ban-20:before{content:"\ed27"}.nc-outline-factory:before{content:"\ed28"}.nc-outline-fahrenheit:before{content:"\ed2a"}.nc-outline-family:before{content:"\ed29"}.nc-outline-fat-add:before{content:"\ed2b"}.nc-outline-fat-delete:before{content:"\ed2c"}.nc-outline-fat-remove:before{content:"\ed2e"}.nc-outline-fav-remove:before{content:"\ed2d"}.nc-outline-favourite-28:before{content:"\ed2f"}.nc-outline-favourite-31:before{content:"\ed30"}.nc-outline-favourite-add-29:before{content:"\ed31"}.nc-outline-favourite-add-32:before{content:"\ed32"}.nc-outline-favourite-remove-30:before{content:"\ed33"}.nc-outline-favourite-remove-33:before{content:"\ed34"}.nc-outline-fencing:before{content:"\ed36"}.nc-outline-file-add:before{content:"\ed35"}.nc-outline-file-delete:before{content:"\ed37"}.nc-outline-file-download-87:before{content:"\ed38"}.nc-outline-file-download-89:before{content:"\ed39"}.nc-outline-file-download-94:before{content:"\ed3a"}.nc-outline-file-upload-86:before{content:"\ed3b"}.nc-outline-file-upload-88:before{content:"\ed3c"}.nc-outline-file-upload-93:before{content:"\ed3d"}.nc-outline-filter-check:before{content:"\ed3e"}.nc-outline-filter-organization:before{content:"\ed3f"}.nc-outline-filter-remove:before{content:"\ed40"}.nc-outline-filter:before{content:"\ed41"}.nc-outline-fire:before{content:"\ed42"}.nc-outline-firewall:before{content:"\ed43"}.nc-outline-fish:before{content:"\ed44"}.nc-outline-fishbone:before{content:"\ed46"}.nc-outline-fishing:before{content:"\ed45"}.nc-outline-fist:before{content:"\ed47"}.nc-outline-fit-horizontal:before{content:"\ed48"}.nc-outline-fit-vertical:before{content:"\ed49"}.nc-outline-flag-complex:before{content:"\ed4a"}.nc-outline-flag-diagonal-33:before{content:"\ed4b"}.nc-outline-flag-diagonal-34:before{content:"\ed4c"}.nc-outline-flag-finish:before{content:"\ed4d"}.nc-outline-flag-points-31:before{content:"\ed4e"}.nc-outline-flag-points-32:before{content:"\ed50"}.nc-outline-flag-simple:before{content:"\ed4f"}.nc-outline-flag-triangle:before{content:"\ed51"}.nc-outline-flag:before{content:"\ed52"}.nc-outline-flame:before{content:"\ed53"}.nc-outline-flash-21:before{content:"\ed54"}.nc-outline-flash-24:before{content:"\ed55"}.nc-outline-flash-29:before{content:"\ed56"}.nc-outline-flash-auto-22:before{content:"\ed58"}.nc-outline-flash-auto-25:before{content:"\ed57"}.nc-outline-flash-off-23:before{content:"\ed59"}.nc-outline-flash-off-26:before{content:"\ed5a"}.nc-outline-flask-2:before{content:"\ed5b"}.nc-outline-flask:before{content:"\ed5c"}.nc-outline-flick-down:before{content:"\ed5d"}.nc-outline-flick-left:before{content:"\ed5e"}.nc-outline-flick-right:before{content:"\ed5f"}.nc-outline-flick-up:before{content:"\ed60"}.nc-outline-flip-horizontal:before{content:"\ed61"}.nc-outline-flip-vertical:before{content:"\ed62"}.nc-outline-flip:before{content:"\ed63"}.nc-outline-flower-05:before{content:"\ed64"}.nc-outline-flower-06:before{content:"\ed65"}.nc-outline-flower-07:before{content:"\ed66"}.nc-outline-focus-32:before{content:"\ed67"}.nc-outline-focus-38:before{content:"\ed68"}.nc-outline-focus-40:before{content:"\ed69"}.nc-outline-focus-circle:before{content:"\ed6a"}.nc-outline-focus:before{content:"\ed6c"}.nc-outline-fog:before{content:"\ed6b"}.nc-outline-folder-13:before{content:"\ed6d"}.nc-outline-folder-14:before{content:"\ed6e"}.nc-outline-folder-15:before{content:"\ed70"}.nc-outline-folder-16:before{content:"\ed6f"}.nc-outline-folder-17:before{content:"\ed71"}.nc-outline-folder-18:before{content:"\ed72"}.nc-outline-folder-19:before{content:"\ed73"}.nc-outline-folder-add:before{content:"\ed74"}.nc-outline-folder-audio:before{content:"\ed75"}.nc-outline-folder-bookmark:before{content:"\ed76"}.nc-outline-folder-chart-bar:before{content:"\ed78"}.nc-outline-folder-chart-pie:before{content:"\ed77"}.nc-outline-folder-check:before{content:"\ed79"}.nc-outline-folder-cloud:before{content:"\ed7a"}.nc-outline-folder-dev:before{content:"\ed7c"}.nc-outline-folder-download:before{content:"\ed7b"}.nc-outline-folder-edit:before{content:"\ed7d"}.nc-outline-folder-exclamation:before{content:"\ed7e"}.nc-outline-folder-gallery:before{content:"\ed7f"}.nc-outline-folder-heart:before{content:"\ed80"}.nc-outline-folder-image:before{content:"\ed81"}.nc-outline-folder-info:before{content:"\ed82"}.nc-outline-folder-link:before{content:"\ed83"}.nc-outline-folder-locked:before{content:"\ed84"}.nc-outline-folder-money:before{content:"\ed85"}.nc-outline-folder-music:before{content:"\ed86"}.nc-outline-folder-no-access:before{content:"\ed87"}.nc-outline-folder-play:before{content:"\ed88"}.nc-outline-folder-question:before{content:"\ed89"}.nc-outline-folder-refresh:before{content:"\ed8a"}.nc-outline-folder-remove:before{content:"\ed8b"}.nc-outline-folder-search:before{content:"\ed8c"}.nc-outline-folder-settings-81:before{content:"\ed8d"}.nc-outline-folder-settings-97:before{content:"\ed8e"}.nc-outline-folder-shared:before{content:"\ed8f"}.nc-outline-folder-star:before{content:"\ed90"}.nc-outline-folder-time:before{content:"\ed91"}.nc-outline-folder-upload:before{content:"\ed92"}.nc-outline-folder-user:before{content:"\ed93"}.nc-outline-folder-vector:before{content:"\ed94"}.nc-outline-food-dog:before{content:"\ed95"}.nc-outline-food-scale:before{content:"\ed96"}.nc-outline-food:before{content:"\ed97"}.nc-outline-football-headguard:before{content:"\ed98"}.nc-outline-forecast:before{content:"\ed99"}.nc-outline-forest:before{content:"\ed9a"}.nc-outline-fork-round:before{content:"\ed9c"}.nc-outline-fork:before{content:"\ed9b"}.nc-outline-form:before{content:"\ed9e"}.nc-outline-format-left:before{content:"\ed9d"}.nc-outline-format-right:before{content:"\ed9f"}.nc-outline-forward:before{content:"\eda0"}.nc-outline-frame-12:before{content:"\eda1"}.nc-outline-frame-41:before{content:"\eda2"}.nc-outline-frame:before{content:"\eda3"}.nc-outline-frankenstein:before{content:"\eda4"}.nc-outline-fridge:before{content:"\eda6"}.nc-outline-fuel-2:before{content:"\eda5"}.nc-outline-fuel-electric:before{content:"\eda7"}.nc-outline-fuel:before{content:"\eda8"}.nc-outline-full-screen:before{content:"\eda9"}.nc-outline-fullscreen-70:before{content:"\edaa"}.nc-outline-fullscreen-71:before{content:"\edab"}.nc-outline-fullscreen-76:before{content:"\edac"}.nc-outline-fullscreen-77:before{content:"\edae"}.nc-outline-fullscreen-double-74:before{content:"\edad"}.nc-outline-fullscreen-double-75:before{content:"\edaf"}.nc-outline-fullscreen-split-72:before{content:"\edb0"}.nc-outline-fullscreen-split-73:before{content:"\edb1"}.nc-outline-fullsize:before{content:"\edb2"}.nc-outline-funnel-39:before{content:"\edb3"}.nc-outline-funnel-40:before{content:"\edb4"}.nc-outline-funnel-41:before{content:"\edb5"}.nc-outline-gallery:before{content:"\edb6"}.nc-outline-gantt:before{content:"\edb7"}.nc-outline-garlic:before{content:"\edb8"}.nc-outline-ghost-2:before{content:"\edb9"}.nc-outline-ghost:before{content:"\edba"}.nc-outline-gift-2:before{content:"\edbb"}.nc-outline-gift-exchange:before{content:"\edbc"}.nc-outline-gift:before{content:"\edbd"}.nc-outline-git-commit:before{content:"\edbe"}.nc-outline-glass-water:before{content:"\edbf"}.nc-outline-glass:before{content:"\edc0"}.nc-outline-glasses-2:before{content:"\edc2"}.nc-outline-glasses:before{content:"\edc1"}.nc-outline-globe-2:before{content:"\edc3"}.nc-outline-globe:before{content:"\edc4"}.nc-outline-glove:before{content:"\edc5"}.nc-outline-gloves:before{content:"\edc6"}.nc-outline-goal-64:before{content:"\edc7"}.nc-outline-goal-65:before{content:"\edc8"}.nc-outline-gold:before{content:"\edc9"}.nc-outline-golf:before{content:"\edca"}.nc-outline-gps:before{content:"\edcb"}.nc-outline-grab:before{content:"\edcc"}.nc-outline-gradient:before{content:"\edcd"}.nc-outline-grammar-check:before{content:"\edce"}.nc-outline-grape:before{content:"\edcf"}.nc-outline-grave:before{content:"\edd0"}.nc-outline-grid-45:before{content:"\edd1"}.nc-outline-grid-46:before{content:"\edd2"}.nc-outline-grid-48:before{content:"\edd3"}.nc-outline-grid-49:before{content:"\edd4"}.nc-outline-grid-50:before{content:"\edd5"}.nc-outline-grid-square:before{content:"\edd6"}.nc-outline-grid-system:before{content:"\edd8"}.nc-outline-grid:before{content:"\edd7"}.nc-outline-group:before{content:"\edd9"}.nc-outline-guitar:before{content:"\edda"}.nc-outline-hammer:before{content:"\eddb"}.nc-outline-hand-card:before{content:"\eddc"}.nc-outline-handout:before{content:"\edde"}.nc-outline-handshake:before{content:"\eddd"}.nc-outline-hanger-clothes:before{content:"\eddf"}.nc-outline-hanger:before{content:"\ede0"}.nc-outline-hannibal:before{content:"\ede2"}.nc-outline-happy-sun:before{content:"\ede1"}.nc-outline-hat-2:before{content:"\ede3"}.nc-outline-hat-3:before{content:"\ede4"}.nc-outline-hat-top:before{content:"\ede5"}.nc-outline-hat:before{content:"\ede6"}.nc-outline-hazelnut:before{content:"\ede7"}.nc-outline-hdmi:before{content:"\ede8"}.nc-outline-headphone:before{content:"\ede9"}.nc-outline-headphones-2:before{content:"\edea"}.nc-outline-headphones-mic:before{content:"\edec"}.nc-outline-headphones:before{content:"\edeb"}.nc-outline-headset:before{content:"\eded"}.nc-outline-heart-2:before{content:"\edee"}.nc-outline-heart-add:before{content:"\edef"}.nc-outline-heart-remove:before{content:"\edf0"}.nc-outline-heart:before{content:"\edf2"}.nc-outline-heartbeat:before{content:"\edf1"}.nc-outline-heater:before{content:"\edf3"}.nc-outline-height:before{content:"\edf4"}.nc-outline-helicopter:before{content:"\edf5"}.nc-outline-helmet-2:before{content:"\edf6"}.nc-outline-helmet:before{content:"\edf7"}.nc-outline-hierarchy-53:before{content:"\edf8"}.nc-outline-hierarchy-54:before{content:"\edfa"}.nc-outline-hierarchy-55:before{content:"\edf9"}.nc-outline-hierarchy-56:before{content:"\edfb"}.nc-outline-hit-down:before{content:"\edfc"}.nc-outline-hit-left:before{content:"\edfd"}.nc-outline-hit-right:before{content:"\edfe"}.nc-outline-hit-up:before{content:"\edff"}.nc-outline-hob:before{content:"\ee00"}.nc-outline-hockey:before{content:"\ee01"}.nc-outline-hold:before{content:"\ee02"}.nc-outline-home-2:before{content:"\ee03"}.nc-outline-home-51:before{content:"\ee04"}.nc-outline-home-52:before{content:"\ee05"}.nc-outline-home-minimal:before{content:"\ee06"}.nc-outline-home-search:before{content:"\ee07"}.nc-outline-home-simple:before{content:"\ee08"}.nc-outline-home:before{content:"\ee09"}.nc-outline-honey:before{content:"\ee0a"}.nc-outline-hoodie:before{content:"\ee0b"}.nc-outline-hospital-32:before{content:"\ee0c"}.nc-outline-hospital-33:before{content:"\ee0d"}.nc-outline-hospital-34:before{content:"\ee0e"}.nc-outline-hot-dog:before{content:"\ee0f"}.nc-outline-hotel-bell:before{content:"\ee10"}.nc-outline-hotel-symbol:before{content:"\ee11"}.nc-outline-hotel:before{content:"\ee12"}.nc-outline-hourglass:before{content:"\ee13"}.nc-outline-html5:before{content:"\ee14"}.nc-outline-humidity-26:before{content:"\ee15"}.nc-outline-humidity-52:before{content:"\ee16"}.nc-outline-hurricane-44:before{content:"\ee17"}.nc-outline-hurricane-45:before{content:"\ee18"}.nc-outline-hut:before{content:"\ee19"}.nc-outline-hybrid:before{content:"\ee1a"}.nc-outline-ice-cream-22:before{content:"\ee1b"}.nc-outline-ice-cream-72:before{content:"\ee1c"}.nc-outline-ice-cream:before{content:"\ee1d"}.nc-outline-igloo:before{content:"\ee1e"}.nc-outline-image-01:before{content:"\ee1f"}.nc-outline-image-02:before{content:"\ee20"}.nc-outline-image-05:before{content:"\ee21"}.nc-outline-image-2:before{content:"\ee22"}.nc-outline-image-3:before{content:"\ee23"}.nc-outline-image-add:before{content:"\ee24"}.nc-outline-image-delete:before{content:"\ee25"}.nc-outline-image-location:before{content:"\ee26"}.nc-outline-image:before{content:"\ee27"}.nc-outline-infinite:before{content:"\ee28"}.nc-outline-info:before{content:"\ee29"}.nc-outline-input-12:before{content:"\ee2a"}.nc-outline-input-21:before{content:"\ee2c"}.nc-outline-intestine:before{content:"\ee2b"}.nc-outline-invert:before{content:"\ee2d"}.nc-outline-iron-2:before{content:"\ee2e"}.nc-outline-iron-dont:before{content:"\ee2f"}.nc-outline-iron:before{content:"\ee30"}.nc-outline-istanbul:before{content:"\ee31"}.nc-outline-italic:before{content:"\ee32"}.nc-outline-jam:before{content:"\ee34"}.nc-outline-jeans-41:before{content:"\ee33"}.nc-outline-jeans-43:before{content:"\ee35"}.nc-outline-jeans-pocket:before{content:"\ee36"}.nc-outline-jelly:before{content:"\ee37"}.nc-outline-jellyfish:before{content:"\ee38"}.nc-outline-journey-04:before{content:"\ee39"}.nc-outline-journey-05:before{content:"\ee3a"}.nc-outline-journey-06:before{content:"\ee3b"}.nc-outline-journey-07:before{content:"\ee3c"}.nc-outline-journey-08:before{content:"\ee3d"}.nc-outline-juice:before{content:"\ee3e"}.nc-outline-kettle:before{content:"\ee3f"}.nc-outline-kettlebell:before{content:"\ee40"}.nc-outline-key-25:before{content:"\ee41"}.nc-outline-key-26:before{content:"\ee42"}.nc-outline-keyboard-hide:before{content:"\ee43"}.nc-outline-keyboard-mouse:before{content:"\ee44"}.nc-outline-keyboard-wifi:before{content:"\ee45"}.nc-outline-keyboard-wireless:before{content:"\ee46"}.nc-outline-keyboard:before{content:"\ee47"}.nc-outline-kid-2:before{content:"\ee48"}.nc-outline-kid:before{content:"\ee49"}.nc-outline-kiss:before{content:"\ee4a"}.nc-outline-kitchen-fan:before{content:"\ee4b"}.nc-outline-kitchen:before{content:"\ee4c"}.nc-outline-kiwi:before{content:"\ee4d"}.nc-outline-knife:before{content:"\ee4e"}.nc-outline-knob:before{content:"\ee4f"}.nc-outline-l-add:before{content:"\ee50"}.nc-outline-l-check:before{content:"\ee51"}.nc-outline-l-circle:before{content:"\ee52"}.nc-outline-l-circles:before{content:"\ee53"}.nc-outline-l-location:before{content:"\ee54"}.nc-outline-l-remove:before{content:"\ee56"}.nc-outline-l-search:before{content:"\ee55"}.nc-outline-l-security:before{content:"\ee57"}.nc-outline-l-settings:before{content:"\ee58"}.nc-outline-l-sync:before{content:"\ee59"}.nc-outline-l-system-update:before{content:"\ee5a"}.nc-outline-lab:before{content:"\ee5b"}.nc-outline-lamp-2:before{content:"\ee5c"}.nc-outline-lamp-3:before{content:"\ee5d"}.nc-outline-lamp-floor:before{content:"\ee5e"}.nc-outline-lamp:before{content:"\ee60"}.nc-outline-language:before{content:"\ee5f"}.nc-outline-laptop-1:before{content:"\ee62"}.nc-outline-laptop-2:before{content:"\ee61"}.nc-outline-laptop-71:before{content:"\ee64"}.nc-outline-laptop-72:before{content:"\ee63"}.nc-outline-laptop:before{content:"\ee65"}.nc-outline-laugh-17:before{content:"\ee66"}.nc-outline-laugh-35:before{content:"\ee68"}.nc-outline-launch-11:before{content:"\ee67"}.nc-outline-launch-47:before{content:"\ee69"}.nc-outline-law:before{content:"\ee6a"}.nc-outline-layers-2:before{content:"\ee6b"}.nc-outline-layers-3:before{content:"\ee6c"}.nc-outline-layers:before{content:"\ee6d"}.nc-outline-layout-11:before{content:"\ee6e"}.nc-outline-layout-25:before{content:"\ee6f"}.nc-outline-leaf-36:before{content:"\ee70"}.nc-outline-leaf-38:before{content:"\ee71"}.nc-outline-leaf-80:before{content:"\ee72"}.nc-outline-leaf-81:before{content:"\ee73"}.nc-outline-leaf-edit:before{content:"\ee74"}.nc-outline-lemon-slice:before{content:"\ee76"}.nc-outline-lemon:before{content:"\ee75"}.nc-outline-lens-31:before{content:"\ee77"}.nc-outline-lens-56:before{content:"\ee78"}.nc-outline-library:before{content:"\ee79"}.nc-outline-light-2:before{content:"\ee7a"}.nc-outline-light-3:before{content:"\ee7b"}.nc-outline-light-traffic:before{content:"\ee7c"}.nc-outline-light:before{content:"\ee7e"}.nc-outline-lighter:before{content:"\ee7d"}.nc-outline-lighthouse:before{content:"\ee7f"}.nc-outline-like-2:before{content:"\ee80"}.nc-outline-like-no:before{content:"\ee81"}.nc-outline-like:before{content:"\ee82"}.nc-outline-line-height:before{content:"\ee83"}.nc-outline-lines:before{content:"\ee84"}.nc-outline-link-2:before{content:"\ee85"}.nc-outline-link-66:before{content:"\ee86"}.nc-outline-link-67:before{content:"\ee87"}.nc-outline-link-68:before{content:"\ee88"}.nc-outline-link-69:before{content:"\ee89"}.nc-outline-link-71:before{content:"\ee8a"}.nc-outline-link-72:before{content:"\ee8b"}.nc-outline-link-broken-70:before{content:"\ee8c"}.nc-outline-link-broken-73:before{content:"\ee8d"}.nc-outline-link:before{content:"\ee8e"}.nc-outline-list-bullet:before{content:"\ee8f"}.nc-outline-list-numbers:before{content:"\ee90"}.nc-outline-list:before{content:"\ee91"}.nc-outline-lobster:before{content:"\ee92"}.nc-outline-lock-circle-open:before{content:"\ee93"}.nc-outline-lock-circle:before{content:"\ee94"}.nc-outline-lock-landscape:before{content:"\ee95"}.nc-outline-lock-open:before{content:"\ee96"}.nc-outline-lock-portrait:before{content:"\ee97"}.nc-outline-lock:before{content:"\ee98"}.nc-outline-locked:before{content:"\ee99"}.nc-outline-log-in:before{content:"\ee9a"}.nc-outline-log-out-2:before{content:"\ee9b"}.nc-outline-log-out:before{content:"\ee9c"}.nc-outline-logout:before{content:"\ee9d"}.nc-outline-lollipop:before{content:"\ee9e"}.nc-outline-london:before{content:"\ee9f"}.nc-outline-long-sleeve:before{content:"\eea0"}.nc-outline-loop-30:before{content:"\eea1"}.nc-outline-loop-34:before{content:"\eea2"}.nc-outline-loop-82:before{content:"\eea3"}.nc-outline-loop-83:before{content:"\eea4"}.nc-outline-loop:before{content:"\eea5"}.nc-outline-luggage:before{content:"\eea6"}.nc-outline-lungs:before{content:"\eea8"}.nc-outline-m-add:before{content:"\eea7"}.nc-outline-m-check:before{content:"\eea9"}.nc-outline-m-delete:before{content:"\eeaa"}.nc-outline-m-edit:before{content:"\eeab"}.nc-outline-m-heart:before{content:"\eeac"}.nc-outline-m-location:before{content:"\eeae"}.nc-outline-m-remove:before{content:"\eead"}.nc-outline-m-search:before{content:"\eeaf"}.nc-outline-m-security:before{content:"\eeb0"}.nc-outline-m-settings:before{content:"\eeb2"}.nc-outline-m-share:before{content:"\eeb1"}.nc-outline-m-star:before{content:"\eeb3"}.nc-outline-m-sync:before{content:"\eeb4"}.nc-outline-m-time:before{content:"\eeb6"}.nc-outline-m-update:before{content:"\eeb5"}.nc-outline-macro:before{content:"\eeb7"}.nc-outline-mad-12:before{content:"\eeb8"}.nc-outline-mad-58:before{content:"\eeb9"}.nc-outline-magnet:before{content:"\eeba"}.nc-outline-makeup:before{content:"\eebb"}.nc-outline-malicious:before{content:"\eebc"}.nc-outline-man-20:before{content:"\eebd"}.nc-outline-man-23:before{content:"\eebe"}.nc-outline-man-down:before{content:"\eebf"}.nc-outline-man-glasses:before{content:"\eec0"}.nc-outline-man-up:before{content:"\eec1"}.nc-outline-man:before{content:"\eec2"}.nc-outline-manga-62:before{content:"\eec3"}.nc-outline-manga-63:before{content:"\eec4"}.nc-outline-map-big:before{content:"\eec5"}.nc-outline-map-compass:before{content:"\eec6"}.nc-outline-map-gps:before{content:"\eec7"}.nc-outline-map-marker:before{content:"\eec8"}.nc-outline-map-pin:before{content:"\eec9"}.nc-outline-map:before{content:"\eeca"}.nc-outline-margin-left:before{content:"\eecb"}.nc-outline-margin-right:before{content:"\eecc"}.nc-outline-marker-2:before{content:"\eecd"}.nc-outline-marker-3:before{content:"\eece"}.nc-outline-marker:before{content:"\eecf"}.nc-outline-market-music:before{content:"\eed0"}.nc-outline-market-play:before{content:"\eed1"}.nc-outline-mask-oval:before{content:"\eed2"}.nc-outline-mask-rect:before{content:"\eed3"}.nc-outline-matches:before{content:"\eed4"}.nc-outline-math:before{content:"\eed5"}.nc-outline-measure-02:before{content:"\eed6"}.nc-outline-measure-17:before{content:"\eed7"}.nc-outline-measure-big:before{content:"\eed8"}.nc-outline-measuring-cup:before{content:"\eed9"}.nc-outline-meat-spit:before{content:"\eeda"}.nc-outline-meeting:before{content:"\eedb"}.nc-outline-menu-34:before{content:"\eedc"}.nc-outline-menu-35:before{content:"\eedd"}.nc-outline-menu-bold:before{content:"\eede"}.nc-outline-menu-dots:before{content:"\eedf"}.nc-outline-menu-left:before{content:"\eee0"}.nc-outline-menu-right:before{content:"\eee1"}.nc-outline-menu-square:before{content:"\eee2"}.nc-outline-menu:before{content:"\eee3"}.nc-outline-merge-2:before{content:"\eee4"}.nc-outline-merge-round:before{content:"\eee5"}.nc-outline-merge:before{content:"\eee6"}.nc-outline-message:before{content:"\eee7"}.nc-outline-metrics:before{content:"\eee8"}.nc-outline-mic-2:before{content:"\eee9"}.nc-outline-mic:before{content:"\eeea"}.nc-outline-mickey-mouse:before{content:"\eeeb"}.nc-outline-microscope:before{content:"\eeec"}.nc-outline-microsoft:before{content:"\eeed"}.nc-outline-microwave:before{content:"\eeee"}.nc-outline-milk:before{content:"\eeef"}.nc-outline-minimal-down:before{content:"\eef0"}.nc-outline-minimal-left:before{content:"\eef1"}.nc-outline-minimal-right:before{content:"\eef2"}.nc-outline-minimal-up:before{content:"\eef4"}.nc-outline-mirror-2:before{content:"\eef3"}.nc-outline-mirror:before{content:"\eef5"}.nc-outline-mistletoe:before{content:"\eef6"}.nc-outline-mixer:before{content:"\eef7"}.nc-outline-mobile-button:before{content:"\eef8"}.nc-outline-mobile-camera:before{content:"\eef9"}.nc-outline-mobile-card:before{content:"\eefa"}.nc-outline-mobile-contact:before{content:"\eefb"}.nc-outline-mobile-design:before{content:"\eefc"}.nc-outline-mobile-dev:before{content:"\eefd"}.nc-outline-mobile-landscape:before{content:"\eefe"}.nc-outline-mobile-recharger-08:before{content:"\eeff"}.nc-outline-mobile-recharger-09:before{content:"\ef00"}.nc-outline-mobile-toolbar:before{content:"\ef01"}.nc-outline-mobile:before{content:"\ef02"}.nc-outline-moka:before{content:"\ef03"}.nc-outline-molecule-39:before{content:"\ef04"}.nc-outline-molecule-40:before{content:"\ef05"}.nc-outline-molecule:before{content:"\ef06"}.nc-outline-money-11:before{content:"\ef08"}.nc-outline-money-12:before{content:"\ef07"}.nc-outline-money-13:before{content:"\ef0a"}.nc-outline-money-bag:before{content:"\ef09"}.nc-outline-money-coins:before{content:"\ef0b"}.nc-outline-money-growth:before{content:"\ef0c"}.nc-outline-money-time:before{content:"\ef0d"}.nc-outline-money:before{content:"\ef0e"}.nc-outline-monster:before{content:"\ef0f"}.nc-outline-moon-cloud-drop:before{content:"\ef10"}.nc-outline-moon-cloud-fog:before{content:"\ef11"}.nc-outline-moon-cloud-hail:before{content:"\ef12"}.nc-outline-moon-cloud-light:before{content:"\ef13"}.nc-outline-moon-cloud-rain:before{content:"\ef14"}.nc-outline-moon-cloud-snow-61:before{content:"\ef15"}.nc-outline-moon-cloud-snow-62:before{content:"\ef16"}.nc-outline-moon-fog:before{content:"\ef17"}.nc-outline-moon-full:before{content:"\ef18"}.nc-outline-moon-stars:before{content:"\ef19"}.nc-outline-moon:before{content:"\ef1a"}.nc-outline-mosque:before{content:"\ef1b"}.nc-outline-moto:before{content:"\ef1c"}.nc-outline-mountain:before{content:"\ef1d"}.nc-outline-mouse-08:before{content:"\ef1e"}.nc-outline-mouse-09:before{content:"\ef1f"}.nc-outline-mouse-10:before{content:"\ef20"}.nc-outline-mouse:before{content:"\ef21"}.nc-outline-move-05:before{content:"\ef22"}.nc-outline-move-06:before{content:"\ef23"}.nc-outline-move-92:before{content:"\ef24"}.nc-outline-move-down-2:before{content:"\ef26"}.nc-outline-move-down-right:before{content:"\ef25"}.nc-outline-move-down:before{content:"\ef27"}.nc-outline-move-left:before{content:"\ef28"}.nc-outline-move-right:before{content:"\ef29"}.nc-outline-move-up-2:before{content:"\ef2a"}.nc-outline-move-up-left:before{content:"\ef2b"}.nc-outline-move-up:before{content:"\ef2c"}.nc-outline-movie-61:before{content:"\ef2d"}.nc-outline-movie-62:before{content:"\ef2e"}.nc-outline-muffin:before{content:"\ef2f"}.nc-outline-mug:before{content:"\ef30"}.nc-outline-multiple-11:before{content:"\ef31"}.nc-outline-multiple-19:before{content:"\ef32"}.nc-outline-multiple:before{content:"\ef33"}.nc-outline-mushroom:before{content:"\ef34"}.nc-outline-music-2:before{content:"\ef35"}.nc-outline-music-album:before{content:"\ef36"}.nc-outline-music-cloud:before{content:"\ef38"}.nc-outline-music:before{content:"\ef37"}.nc-outline-navigation:before{content:"\ef39"}.nc-outline-needle:before{content:"\ef3a"}.nc-outline-nerd-22:before{content:"\ef3b"}.nc-outline-nerd-23:before{content:"\ef3c"}.nc-outline-net:before{content:"\ef3d"}.nc-outline-network:before{content:"\ef3e"}.nc-outline-new:before{content:"\ef3f"}.nc-outline-newsletter-dev:before{content:"\ef40"}.nc-outline-newsletter:before{content:"\ef41"}.nc-outline-night:before{content:"\ef42"}.nc-outline-ninja:before{content:"\ef43"}.nc-outline-no-access:before{content:"\ef44"}.nc-outline-no-words:before{content:"\ef45"}.nc-outline-node:before{content:"\ef46"}.nc-outline-note-03:before{content:"\ef47"}.nc-outline-note-04:before{content:"\ef48"}.nc-outline-note-code:before{content:"\ef49"}.nc-outline-notebook-2:before{content:"\ef4a"}.nc-outline-notebook:before{content:"\ef4b"}.nc-outline-notepad:before{content:"\ef4c"}.nc-outline-notes:before{content:"\ef4d"}.nc-outline-notification-69:before{content:"\ef4e"}.nc-outline-notification-70:before{content:"\ef4f"}.nc-outline-nurse:before{content:"\ef50"}.nc-outline-nutrition:before{content:"\ef51"}.nc-outline-ny:before{content:"\ef52"}.nc-outline-octopus:before{content:"\ef53"}.nc-outline-oil:before{content:"\ef54"}.nc-outline-onion:before{content:"\ef55"}.nc-outline-open-in-browser:before{content:"\ef56"}.nc-outline-opening-times:before{content:"\ef57"}.nc-outline-orange:before{content:"\ef58"}.nc-outline-organic-2:before{content:"\ef59"}.nc-outline-organic:before{content:"\ef5a"}.nc-outline-oven:before{content:"\ef5b"}.nc-outline-owl:before{content:"\ef5c"}.nc-outline-p-add:before{content:"\ef5d"}.nc-outline-p-check:before{content:"\ef5e"}.nc-outline-p-edit:before{content:"\ef5f"}.nc-outline-p-heart:before{content:"\ef60"}.nc-outline-p-location:before{content:"\ef61"}.nc-outline-p-remove:before{content:"\ef62"}.nc-outline-p-search:before{content:"\ef63"}.nc-outline-p-settings:before{content:"\ef64"}.nc-outline-p-share:before{content:"\ef65"}.nc-outline-p-sync:before{content:"\ef66"}.nc-outline-p-system-update:before{content:"\ef67"}.nc-outline-p-time:before{content:"\ef68"}.nc-outline-paint-16:before{content:"\ef69"}.nc-outline-paint-37:before{content:"\ef6a"}.nc-outline-paint-38:before{content:"\ef6b"}.nc-outline-paint-brush:before{content:"\ef6c"}.nc-outline-paint-bucket-39:before{content:"\ef6d"}.nc-outline-paint-bucket-40:before{content:"\ef6e"}.nc-outline-pajamas:before{content:"\ef70"}.nc-outline-palette:before{content:"\ef6f"}.nc-outline-pan:before{content:"\ef71"}.nc-outline-pancake:before{content:"\ef72"}.nc-outline-panda:before{content:"\ef73"}.nc-outline-panel:before{content:"\ef74"}.nc-outline-pantone:before{content:"\ef75"}.nc-outline-paper-2:before{content:"\ef76"}.nc-outline-paper-design:before{content:"\ef77"}.nc-outline-paper-dev:before{content:"\ef78"}.nc-outline-paper-diploma:before{content:"\ef79"}.nc-outline-paper:before{content:"\ef7a"}.nc-outline-paragraph:before{content:"\ef7b"}.nc-outline-parent:before{content:"\ef7c"}.nc-outline-paris-tower:before{content:"\ef7e"}.nc-outline-parking-sensors:before{content:"\ef7d"}.nc-outline-parking:before{content:"\ef80"}.nc-outline-parrot:before{content:"\ef7f"}.nc-outline-passport:before{content:"\ef81"}.nc-outline-pasta:before{content:"\ef82"}.nc-outline-patch-19:before{content:"\ef83"}.nc-outline-patch-34:before{content:"\ef84"}.nc-outline-patch:before{content:"\ef85"}.nc-outline-path-exclude:before{content:"\ef86"}.nc-outline-path-intersect:before{content:"\ef87"}.nc-outline-path-minus:before{content:"\ef88"}.nc-outline-path-unite:before{content:"\ef8a"}.nc-outline-paw:before{content:"\ef89"}.nc-outline-payment:before{content:"\ef8b"}.nc-outline-pci-card:before{content:"\ef8c"}.nc-outline-peanut:before{content:"\ef8d"}.nc-outline-pear:before{content:"\ef8e"}.nc-outline-pen-01:before{content:"\ef8f"}.nc-outline-pen-23:before{content:"\ef90"}.nc-outline-pen-tool:before{content:"\ef92"}.nc-outline-pencil-47:before{content:"\ef91"}.nc-outline-pencil:before{content:"\ef93"}.nc-outline-penguin:before{content:"\ef94"}.nc-outline-pepper:before{content:"\ef96"}.nc-outline-percentage-38:before{content:"\ef95"}.nc-outline-percentage-39:before{content:"\ef97"}.nc-outline-phone-2:before{content:"\ef98"}.nc-outline-phone-3:before{content:"\ef99"}.nc-outline-phone-call-end:before{content:"\ef9a"}.nc-outline-phone-call:before{content:"\ef9b"}.nc-outline-phone:before{content:"\ef9c"}.nc-outline-photo-editor:before{content:"\ef9d"}.nc-outline-piano:before{content:"\ef9e"}.nc-outline-pickaxe:before{content:"\ef9f"}.nc-outline-pickle:before{content:"\efa0"}.nc-outline-picnic-basket:before{content:"\efa1"}.nc-outline-picture:before{content:"\efa2"}.nc-outline-pig-2:before{content:"\efa3"}.nc-outline-pig:before{content:"\efa4"}.nc-outline-pill-42:before{content:"\efa5"}.nc-outline-pill-43:before{content:"\efa6"}.nc-outline-pill-container-44:before{content:"\efa7"}.nc-outline-pill-container-47:before{content:"\efa8"}.nc-outline-pin-2:before{content:"\efa9"}.nc-outline-pin-3:before{content:"\efaa"}.nc-outline-pin-4:before{content:"\efab"}.nc-outline-pin-add-2:before{content:"\efac"}.nc-outline-pin-add:before{content:"\efad"}.nc-outline-pin-check:before{content:"\efae"}.nc-outline-pin-copy:before{content:"\efaf"}.nc-outline-pin-delete:before{content:"\efb0"}.nc-outline-pin-edit:before{content:"\efb2"}.nc-outline-pin-heart:before{content:"\efb1"}.nc-outline-pin-remove-2:before{content:"\efb3"}.nc-outline-pin-remove:before{content:"\efb4"}.nc-outline-pin-search:before{content:"\efb5"}.nc-outline-pin-security:before{content:"\efb6"}.nc-outline-pin-settings:before{content:"\efb7"}.nc-outline-pin-share:before{content:"\efb8"}.nc-outline-pin-star:before{content:"\efb9"}.nc-outline-pin-sync:before{content:"\efba"}.nc-outline-pin-time:before{content:"\efbb"}.nc-outline-pin-user:before{content:"\efbc"}.nc-outline-pin:before{content:"\efbd"}.nc-outline-pinch:before{content:"\efbe"}.nc-outline-pineapple:before{content:"\efbf"}.nc-outline-ping-pong:before{content:"\efc0"}.nc-outline-pins:before{content:"\efc2"}.nc-outline-pipe:before{content:"\efc1"}.nc-outline-pirate:before{content:"\efc3"}.nc-outline-pizza-slice:before{content:"\efc4"}.nc-outline-pizza:before{content:"\efc5"}.nc-outline-plane-17:before{content:"\efc6"}.nc-outline-plane-18:before{content:"\efc8"}.nc-outline-planet:before{content:"\efc7"}.nc-outline-plant-ground:before{content:"\efc9"}.nc-outline-plant-vase:before{content:"\efca"}.nc-outline-plate:before{content:"\efcc"}.nc-outline-play-68:before{content:"\efcb"}.nc-outline-play-69:before{content:"\efcd"}.nc-outline-play:before{content:"\efce"}.nc-outline-player-19:before{content:"\efcf"}.nc-outline-player-48:before{content:"\efd0"}.nc-outline-player:before{content:"\efd1"}.nc-outline-playlist:before{content:"\efd2"}.nc-outline-plug:before{content:"\efd4"}.nc-outline-podium-trophy:before{content:"\efd3"}.nc-outline-podium:before{content:"\efd5"}.nc-outline-point-a:before{content:"\efd6"}.nc-outline-point-b:before{content:"\efd7"}.nc-outline-polaroid-add:before{content:"\efd8"}.nc-outline-polaroid-delete:before{content:"\efd9"}.nc-outline-polaroid-multiple:before{content:"\efda"}.nc-outline-polaroid-user:before{content:"\efdb"}.nc-outline-polaroid:before{content:"\efdc"}.nc-outline-police:before{content:"\efdd"}.nc-outline-pool:before{content:"\efde"}.nc-outline-poop:before{content:"\efdf"}.nc-outline-popcorn:before{content:"\efe0"}.nc-outline-pos:before{content:"\efe1"}.nc-outline-position-marker:before{content:"\efe2"}.nc-outline-position-pin:before{content:"\efe3"}.nc-outline-position-user:before{content:"\efe4"}.nc-outline-position:before{content:"\efe5"}.nc-outline-pot:before{content:"\efe6"}.nc-outline-potato:before{content:"\efe7"}.nc-outline-power-level:before{content:"\efe8"}.nc-outline-preferences-circle-rotate:before{content:"\efea"}.nc-outline-preferences-circle:before{content:"\efe9"}.nc-outline-preferences-container-circle-rotate:before{content:"\efeb"}.nc-outline-preferences-container-circle:before{content:"\efec"}.nc-outline-preferences-container-rotate:before{content:"\efed"}.nc-outline-preferences-container:before{content:"\efee"}.nc-outline-preferences-rotate:before{content:"\efef"}.nc-outline-preferences:before{content:"\eff0"}.nc-outline-print:before{content:"\eff1"}.nc-outline-printer:before{content:"\eff2"}.nc-outline-priority-high:before{content:"\eff4"}.nc-outline-priority-low:before{content:"\eff3"}.nc-outline-progress:before{content:"\eff5"}.nc-outline-prosciutto:before{content:"\eff6"}.nc-outline-prototype:before{content:"\eff7"}.nc-outline-pulse-chart:before{content:"\eff8"}.nc-outline-pulse-phone:before{content:"\eff9"}.nc-outline-pulse-sleep:before{content:"\effa"}.nc-outline-pulse-watch:before{content:"\effb"}.nc-outline-pulse:before{content:"\effc"}.nc-outline-pumpkin:before{content:"\effd"}.nc-outline-push-next:before{content:"\effe"}.nc-outline-push-previous:before{content:"\efff"}.nc-outline-puzzle-09:before{content:"\f000"}.nc-outline-puzzle-10:before{content:"\f001"}.nc-outline-puzzled:before{content:"\f002"}.nc-outline-pyramid:before{content:"\f003"}.nc-outline-question:before{content:"\f004"}.nc-outline-quite-happy:before{content:"\f005"}.nc-outline-quote:before{content:"\f006"}.nc-outline-rabbit:before{content:"\f007"}.nc-outline-rackets:before{content:"\f008"}.nc-outline-radar:before{content:"\f009"}.nc-outline-radiation:before{content:"\f00a"}.nc-outline-radio:before{content:"\f00b"}.nc-outline-rain-hail:before{content:"\f00c"}.nc-outline-rain:before{content:"\f00d"}.nc-outline-rainbow:before{content:"\f00e"}.nc-outline-ram:before{content:"\f00f"}.nc-outline-rat:before{content:"\f010"}.nc-outline-receipt-list-42:before{content:"\f011"}.nc-outline-receipt-list-43:before{content:"\f012"}.nc-outline-receipt:before{content:"\f014"}.nc-outline-recipe-book-46:before{content:"\f013"}.nc-outline-recipe-book-47:before{content:"\f015"}.nc-outline-recipe-create:before{content:"\f016"}.nc-outline-recipe:before{content:"\f018"}.nc-outline-recycling:before{content:"\f017"}.nc-outline-redo-10:before{content:"\f019"}.nc-outline-redo-26:before{content:"\f01a"}.nc-outline-redo-79:before{content:"\f01b"}.nc-outline-redo-81:before{content:"\f01c"}.nc-outline-refresh-01:before{content:"\f01d"}.nc-outline-refresh-02:before{content:"\f01e"}.nc-outline-refresh-68:before{content:"\f01f"}.nc-outline-refresh-69:before{content:"\f020"}.nc-outline-refresh:before{content:"\f021"}.nc-outline-reload:before{content:"\f022"}.nc-outline-remix:before{content:"\f024"}.nc-outline-remote:before{content:"\f023"}.nc-outline-remove:before{content:"\f025"}.nc-outline-replace-folder:before{content:"\f026"}.nc-outline-replace:before{content:"\f027"}.nc-outline-replay:before{content:"\f028"}.nc-outline-reply-all:before{content:"\f02a"}.nc-outline-reply:before{content:"\f029"}.nc-outline-reservation:before{content:"\f02b"}.nc-outline-resize-h:before{content:"\f02c"}.nc-outline-resize-v:before{content:"\f02d"}.nc-outline-restaurant-menu:before{content:"\f02e"}.nc-outline-restore:before{content:"\f030"}.nc-outline-rice:before{content:"\f02f"}.nc-outline-rim:before{content:"\f032"}.nc-outline-ring:before{content:"\f031"}.nc-outline-rio:before{content:"\f034"}.nc-outline-ripples:before{content:"\f033"}.nc-outline-road-2:before{content:"\f035"}.nc-outline-road-sign-left:before{content:"\f036"}.nc-outline-road-sign-right:before{content:"\f038"}.nc-outline-road:before{content:"\f037"}.nc-outline-roast-chicken:before{content:"\f03a"}.nc-outline-robot:before{content:"\f039"}.nc-outline-rock:before{content:"\f03b"}.nc-outline-roll:before{content:"\f03c"}.nc-outline-rolling-pin:before{content:"\f03e"}.nc-outline-rome:before{content:"\f03d"}.nc-outline-rope:before{content:"\f03f"}.nc-outline-rotate-22:before{content:"\f040"}.nc-outline-rotate-23:before{content:"\f041"}.nc-outline-rotate-left-2:before{content:"\f042"}.nc-outline-rotate-left:before{content:"\f043"}.nc-outline-rotate-lock:before{content:"\f044"}.nc-outline-rotate-right-2:before{content:"\f045"}.nc-outline-rotate-right:before{content:"\f046"}.nc-outline-rotate:before{content:"\f047"}.nc-outline-round-dollar:before{content:"\f048"}.nc-outline-round-down:before{content:"\f049"}.nc-outline-round-euro:before{content:"\f04a"}.nc-outline-round-left-down:before{content:"\f04b"}.nc-outline-round-left:before{content:"\f04c"}.nc-outline-round-pound:before{content:"\f04d"}.nc-outline-round-right-down:before{content:"\f04e"}.nc-outline-round-right:before{content:"\f04f"}.nc-outline-round-up-left:before{content:"\f050"}.nc-outline-round-up-right:before{content:"\f051"}.nc-outline-round-up:before{content:"\f052"}.nc-outline-round-yen:before{content:"\f053"}.nc-outline-route-alert:before{content:"\f054"}.nc-outline-route-close:before{content:"\f055"}.nc-outline-route-open:before{content:"\f056"}.nc-outline-rowing:before{content:"\f057"}.nc-outline-rugby:before{content:"\f058"}.nc-outline-ruler-pencil:before{content:"\f059"}.nc-outline-sad:before{content:"\f05a"}.nc-outline-safe:before{content:"\f05b"}.nc-outline-salad:before{content:"\f05c"}.nc-outline-sale:before{content:"\f05d"}.nc-outline-salt:before{content:"\f05e"}.nc-outline-santa-hat:before{content:"\f05f"}.nc-outline-satisfied:before{content:"\f060"}.nc-outline-sausage:before{content:"\f061"}.nc-outline-save-planet:before{content:"\f062"}.nc-outline-scale-2:before{content:"\f063"}.nc-outline-scale-3:before{content:"\f064"}.nc-outline-scale-4:before{content:"\f065"}.nc-outline-scale-down:before{content:"\f066"}.nc-outline-scale-horizontal:before{content:"\f067"}.nc-outline-scale-up:before{content:"\f068"}.nc-outline-scale-vertical:before{content:"\f069"}.nc-outline-scale:before{content:"\f06a"}.nc-outline-scan:before{content:"\f06c"}.nc-outline-scarf:before{content:"\f06b"}.nc-outline-school:before{content:"\f06d"}.nc-outline-scissors-dashed:before{content:"\f06e"}.nc-outline-scissors:before{content:"\f06f"}.nc-outline-scotch:before{content:"\f070"}.nc-outline-scroll-horitontal:before{content:"\f071"}.nc-outline-scroll-vertical:before{content:"\f072"}.nc-outline-sd:before{content:"\f074"}.nc-outline-sea-mask:before{content:"\f073"}.nc-outline-search-2:before{content:"\f075"}.nc-outline-search-3:before{content:"\f076"}.nc-outline-search:before{content:"\f077"}.nc-outline-seat:before{content:"\f078"}.nc-outline-seatbelt:before{content:"\f07a"}.nc-outline-security:before{content:"\f079"}.nc-outline-segmentation:before{content:"\f07c"}.nc-outline-select-83:before{content:"\f07b"}.nc-outline-select-84:before{content:"\f07e"}.nc-outline-select:before{content:"\f07d"}.nc-outline-selection:before{content:"\f080"}.nc-outline-selfie:before{content:"\f07f"}.nc-outline-send-2:before{content:"\f081"}.nc-outline-send:before{content:"\f082"}.nc-outline-sensor:before{content:"\f083"}.nc-outline-separate-round:before{content:"\f084"}.nc-outline-separate:before{content:"\f085"}.nc-outline-settings-46:before{content:"\f086"}.nc-outline-settings-99:before{content:"\f087"}.nc-outline-settings-gear-63:before{content:"\f088"}.nc-outline-settings-gear-64:before{content:"\f089"}.nc-outline-settings-gear-65:before{content:"\f08a"}.nc-outline-settings-tool-66:before{content:"\f08c"}.nc-outline-settings-tool-67:before{content:"\f08b"}.nc-outline-settings:before{content:"\f08d"}.nc-outline-sf-bridge:before{content:"\f08e"}.nc-outline-shake:before{content:"\f08f"}.nc-outline-shaker:before{content:"\f090"}.nc-outline-shape-adjust:before{content:"\f091"}.nc-outline-shape-arrow:before{content:"\f092"}.nc-outline-shape-circle:before{content:"\f093"}.nc-outline-shape-custom:before{content:"\f094"}.nc-outline-shape-line:before{content:"\f095"}.nc-outline-shape-oval:before{content:"\f096"}.nc-outline-shape-polygon-2:before{content:"\f097"}.nc-outline-shape-polygon:before{content:"\f098"}.nc-outline-shape-rectangle:before{content:"\f099"}.nc-outline-shape-square:before{content:"\f09a"}.nc-outline-shape-star:before{content:"\f09b"}.nc-outline-shape-triangle-2:before{content:"\f09c"}.nc-outline-shape-triangle:before{content:"\f09e"}.nc-outline-shapes:before{content:"\f09d"}.nc-outline-share-2:before{content:"\f09f"}.nc-outline-share-66:before{content:"\f0a0"}.nc-outline-share-91:before{content:"\f0a1"}.nc-outline-share-92:before{content:"\f0a2"}.nc-outline-share-bold:before{content:"\f0a3"}.nc-outline-share-left:before{content:"\f0a4"}.nc-outline-share-right:before{content:"\f0a5"}.nc-outline-share:before{content:"\f0a6"}.nc-outline-shared:before{content:"\f0a7"}.nc-outline-shark-2:before{content:"\f0a8"}.nc-outline-shark:before{content:"\f0a9"}.nc-outline-sharpener:before{content:"\f0aa"}.nc-outline-sheep:before{content:"\f0ab"}.nc-outline-shirt-business:before{content:"\f0ac"}.nc-outline-shirt-buttons:before{content:"\f0ad"}.nc-outline-shirt-neck:before{content:"\f0ae"}.nc-outline-shirt:before{content:"\f0af"}.nc-outline-shoe-man:before{content:"\f0b0"}.nc-outline-shoe-run:before{content:"\f0b1"}.nc-outline-shoe-sport:before{content:"\f0b2"}.nc-outline-shoe-woman:before{content:"\f0b3"}.nc-outline-shop-location:before{content:"\f0b4"}.nc-outline-shop:before{content:"\f0b5"}.nc-outline-shovel:before{content:"\f0b6"}.nc-outline-shower:before{content:"\f0b7"}.nc-outline-shrimp:before{content:"\f0b8"}.nc-outline-shuffle-01:before{content:"\f0b9"}.nc-outline-shuffle-35:before{content:"\f0ba"}.nc-outline-shuffle-97:before{content:"\f0bb"}.nc-outline-shuffle-98:before{content:"\f0bc"}.nc-outline-shy:before{content:"\f0bd"}.nc-outline-sick:before{content:"\f0be"}.nc-outline-sickle:before{content:"\f0c0"}.nc-outline-sidebar:before{content:"\f0bf"}.nc-outline-sign-board:before{content:"\f0c1"}.nc-outline-sign:before{content:"\f0c2"}.nc-outline-signal-2:before{content:"\f0c3"}.nc-outline-signal:before{content:"\f0c4"}.nc-outline-signature:before{content:"\f0c6"}.nc-outline-silly:before{content:"\f0c5"}.nc-outline-sim-card:before{content:"\f0c8"}.nc-outline-simple-add:before{content:"\f0c7"}.nc-outline-simple-delete:before{content:"\f0c9"}.nc-outline-simple-down:before{content:"\f0ca"}.nc-outline-simple-left:before{content:"\f0cb"}.nc-outline-simple-remove:before{content:"\f0cc"}.nc-outline-simple-right:before{content:"\f0cd"}.nc-outline-simple-up:before{content:"\f0ce"}.nc-outline-single-01:before{content:"\f0cf"}.nc-outline-single-02:before{content:"\f0d0"}.nc-outline-single-03:before{content:"\f0d1"}.nc-outline-single-04:before{content:"\f0d2"}.nc-outline-single-05:before{content:"\f0d3"}.nc-outline-single-body:before{content:"\f0d4"}.nc-outline-single-content-02:before{content:"\f0d5"}.nc-outline-single-content-03:before{content:"\f0d6"}.nc-outline-single-copies:before{content:"\f0d8"}.nc-outline-single-copy-04:before{content:"\f0d7"}.nc-outline-single-copy-06:before{content:"\f0d9"}.nc-outline-single-folded-content:before{content:"\f0da"}.nc-outline-single-folded:before{content:"\f0db"}.nc-outline-single-paragraph:before{content:"\f0dc"}.nc-outline-single-position:before{content:"\f0dd"}.nc-outline-single:before{content:"\f0de"}.nc-outline-sink-wash:before{content:"\f0df"}.nc-outline-sink:before{content:"\f0e0"}.nc-outline-size-large:before{content:"\f0e1"}.nc-outline-size-medium:before{content:"\f0e2"}.nc-outline-size-small:before{content:"\f0e3"}.nc-outline-size:before{content:"\f0e4"}.nc-outline-skateboard-2:before{content:"\f0e5"}.nc-outline-skateboard:before{content:"\f0e6"}.nc-outline-skew-down:before{content:"\f0e7"}.nc-outline-skew-left:before{content:"\f0e8"}.nc-outline-skew-right:before{content:"\f0e9"}.nc-outline-skew-up:before{content:"\f0ea"}.nc-outline-skirt:before{content:"\f0ec"}.nc-outline-skull-2:before{content:"\f0eb"}.nc-outline-skull:before{content:"\f0ed"}.nc-outline-slacks-12:before{content:"\f0ee"}.nc-outline-slacks-13:before{content:"\f0f0"}.nc-outline-sleep-2:before{content:"\f0ef"}.nc-outline-sleep:before{content:"\f0f1"}.nc-outline-slice:before{content:"\f0f2"}.nc-outline-slide-left:before{content:"\f0f3"}.nc-outline-slide-right:before{content:"\f0f4"}.nc-outline-slider:before{content:"\f0f5"}.nc-outline-sloth:before{content:"\f0f6"}.nc-outline-small-add:before{content:"\f0f7"}.nc-outline-small-delete:before{content:"\f0f8"}.nc-outline-small-down:before{content:"\f0f9"}.nc-outline-small-left:before{content:"\f0fa"}.nc-outline-small-remove:before{content:"\f0fb"}.nc-outline-small-right:before{content:"\f0fc"}.nc-outline-small-triangle-down:before{content:"\f0fd"}.nc-outline-small-triangle-left:before{content:"\f0fe"}.nc-outline-small-triangle-right:before{content:"\f0ff"}.nc-outline-small-triangle-up:before{content:"\f100"}.nc-outline-small-up:before{content:"\f101"}.nc-outline-smart:before{content:"\f102"}.nc-outline-smile:before{content:"\f103"}.nc-outline-smoothie:before{content:"\f104"}.nc-outline-snack:before{content:"\f105"}.nc-outline-snake:before{content:"\f106"}.nc-outline-snow-ball:before{content:"\f107"}.nc-outline-snow:before{content:"\f108"}.nc-outline-snowboard:before{content:"\f10a"}.nc-outline-snowman-head:before{content:"\f109"}.nc-outline-snowman:before{content:"\f10b"}.nc-outline-soak:before{content:"\f10c"}.nc-outline-soccer-field:before{content:"\f10d"}.nc-outline-sock:before{content:"\f10e"}.nc-outline-socket-europe-1:before{content:"\f10f"}.nc-outline-socket-europe-2:before{content:"\f110"}.nc-outline-socket-uk:before{content:"\f111"}.nc-outline-socket:before{content:"\f112"}.nc-outline-sofa:before{content:"\f114"}.nc-outline-soldier:before{content:"\f113"}.nc-outline-sound-wave:before{content:"\f115"}.nc-outline-soup:before{content:"\f116"}.nc-outline-soy-sauce:before{content:"\f117"}.nc-outline-spa:before{content:"\f118"}.nc-outline-spaceship:before{content:"\f119"}.nc-outline-speaker-01:before{content:"\f11a"}.nc-outline-speaker-05:before{content:"\f11b"}.nc-outline-speaker:before{content:"\f11c"}.nc-outline-speechless:before{content:"\f11d"}.nc-outline-spider:before{content:"\f11e"}.nc-outline-spiteful:before{content:"\f11f"}.nc-outline-split-33:before{content:"\f120"}.nc-outline-split-37:before{content:"\f121"}.nc-outline-split-horizontal:before{content:"\f122"}.nc-outline-split-round:before{content:"\f123"}.nc-outline-split-vertical:before{content:"\f124"}.nc-outline-split:before{content:"\f125"}.nc-outline-sport:before{content:"\f126"}.nc-outline-spray-2:before{content:"\f127"}.nc-outline-spray:before{content:"\f128"}.nc-outline-square-add-08:before{content:"\f12a"}.nc-outline-square-add-11:before{content:"\f129"}.nc-outline-square-corner-down-left:before{content:"\f12b"}.nc-outline-square-corner-down-right:before{content:"\f12c"}.nc-outline-square-corner-up-left:before{content:"\f12d"}.nc-outline-square-corner-up-right:before{content:"\f12e"}.nc-outline-square-delete-10:before{content:"\f12f"}.nc-outline-square-delete-13:before{content:"\f130"}.nc-outline-square-down-06:before{content:"\f131"}.nc-outline-square-down:before{content:"\f132"}.nc-outline-square-download:before{content:"\f133"}.nc-outline-square-left-04:before{content:"\f134"}.nc-outline-square-left:before{content:"\f136"}.nc-outline-square-marker:before{content:"\f135"}.nc-outline-square-pin:before{content:"\f137"}.nc-outline-square-remove-09:before{content:"\f138"}.nc-outline-square-remove-12:before{content:"\f139"}.nc-outline-square-right-03:before{content:"\f13a"}.nc-outline-square-right:before{content:"\f13b"}.nc-outline-square-simple-down:before{content:"\f13c"}.nc-outline-square-simple-left:before{content:"\f13d"}.nc-outline-square-simple-right:before{content:"\f13e"}.nc-outline-square-simple-up:before{content:"\f13f"}.nc-outline-square-up-05:before{content:"\f140"}.nc-outline-square-up:before{content:"\f141"}.nc-outline-square-upload:before{content:"\f142"}.nc-outline-squares:before{content:"\f143"}.nc-outline-stamp:before{content:"\f144"}.nc-outline-standing-man:before{content:"\f145"}.nc-outline-standing-woman:before{content:"\f146"}.nc-outline-star:before{content:"\f148"}.nc-outline-steak-2:before{content:"\f147"}.nc-outline-steak:before{content:"\f149"}.nc-outline-steering-wheel:before{content:"\f14a"}.nc-outline-steps:before{content:"\f14b"}.nc-outline-stock-2:before{content:"\f14c"}.nc-outline-stock:before{content:"\f14d"}.nc-outline-storage-hanger:before{content:"\f14e"}.nc-outline-storage:before{content:"\f14f"}.nc-outline-store:before{content:"\f150"}.nc-outline-strategy:before{content:"\f151"}.nc-outline-strawberry:before{content:"\f152"}.nc-outline-stre-down:before{content:"\f153"}.nc-outline-stre-left:before{content:"\f154"}.nc-outline-stre-right:before{content:"\f156"}.nc-outline-stre-up:before{content:"\f155"}.nc-outline-stretch:before{content:"\f157"}.nc-outline-strikethrough:before{content:"\f158"}.nc-outline-strong-down:before{content:"\f15a"}.nc-outline-strong-left:before{content:"\f159"}.nc-outline-strong-right:before{content:"\f15b"}.nc-outline-strong-up:before{content:"\f15c"}.nc-outline-subscript:before{content:"\f15d"}.nc-outline-subtitles:before{content:"\f15f"}.nc-outline-sugar:before{content:"\f15e"}.nc-outline-sun-cloud-drop:before{content:"\f160"}.nc-outline-sun-cloud-fog:before{content:"\f161"}.nc-outline-sun-cloud-hail:before{content:"\f162"}.nc-outline-sun-cloud-light:before{content:"\f163"}.nc-outline-sun-cloud-rain:before{content:"\f164"}.nc-outline-sun-cloud-snow-54:before{content:"\f165"}.nc-outline-sun-cloud-snow-55:before{content:"\f166"}.nc-outline-sun-cloud:before{content:"\f167"}.nc-outline-sun-fog-29:before{content:"\f168"}.nc-outline-sun-fog-30:before{content:"\f169"}.nc-outline-sun-fog-43:before{content:"\f16a"}.nc-outline-sunglasses-48:before{content:"\f16b"}.nc-outline-sunglasses-49:before{content:"\f16c"}.nc-outline-sunglasses:before{content:"\f16d"}.nc-outline-superscript:before{content:"\f16e"}.nc-outline-supplement:before{content:"\f16f"}.nc-outline-support-16:before{content:"\f170"}.nc-outline-support-17:before{content:"\f171"}.nc-outline-surf-2:before{content:"\f172"}.nc-outline-surf:before{content:"\f173"}.nc-outline-surprise:before{content:"\f174"}.nc-outline-sushi:before{content:"\f175"}.nc-outline-swap-horizontal:before{content:"\f176"}.nc-outline-swap-vertical:before{content:"\f177"}.nc-outline-swimsuit:before{content:"\f178"}.nc-outline-swimwear:before{content:"\f179"}.nc-outline-swipe-bottom:before{content:"\f17a"}.nc-outline-swipe-left:before{content:"\f17b"}.nc-outline-swipe-right:before{content:"\f17c"}.nc-outline-swipe-up:before{content:"\f17d"}.nc-outline-swiss-knife:before{content:"\f17e"}.nc-outline-sync:before{content:"\f17f"}.nc-outline-syringe:before{content:"\f180"}.nc-outline-system-update:before{content:"\f181"}.nc-outline-table-left:before{content:"\f182"}.nc-outline-table-right:before{content:"\f183"}.nc-outline-table:before{content:"\f184"}.nc-outline-tablet-2:before{content:"\f185"}.nc-outline-tablet-button:before{content:"\f186"}.nc-outline-tablet-mobile:before{content:"\f187"}.nc-outline-tablet-reader-31:before{content:"\f188"}.nc-outline-tablet-reader-42:before{content:"\f189"}.nc-outline-tablet-toolbar:before{content:"\f18a"}.nc-outline-tablet:before{content:"\f18b"}.nc-outline-tacos:before{content:"\f18c"}.nc-outline-tactic:before{content:"\f18d"}.nc-outline-tag-2:before{content:"\f18f"}.nc-outline-tag-add:before{content:"\f18e"}.nc-outline-tag-check:before{content:"\f190"}.nc-outline-tag-content:before{content:"\f191"}.nc-outline-tag-cut:before{content:"\f192"}.nc-outline-tag-line:before{content:"\f193"}.nc-outline-tag-loyalty:before{content:"\f194"}.nc-outline-tag-remove:before{content:"\f195"}.nc-outline-tag-sale:before{content:"\f197"}.nc-outline-tag:before{content:"\f196"}.nc-outline-tail-down:before{content:"\f198"}.nc-outline-tail-left:before{content:"\f199"}.nc-outline-tail-right:before{content:"\f19a"}.nc-outline-tail-triangle-down:before{content:"\f19b"}.nc-outline-tail-triangle-left:before{content:"\f19c"}.nc-outline-tail-triangle-right:before{content:"\f19d"}.nc-outline-tail-triangle-up:before{content:"\f19f"}.nc-outline-tail-up:before{content:"\f19e"}.nc-outline-tap-01:before{content:"\f1a0"}.nc-outline-tap-02:before{content:"\f1a1"}.nc-outline-tape:before{content:"\f1a2"}.nc-outline-target:before{content:"\f1a3"}.nc-outline-tea-bag:before{content:"\f1a4"}.nc-outline-tea:before{content:"\f1a5"}.nc-outline-temperature-23:before{content:"\f1a6"}.nc-outline-temperature-24:before{content:"\f1a7"}.nc-outline-temple-25:before{content:"\f1a8"}.nc-outline-tennis-ball:before{content:"\f1a9"}.nc-outline-tennis:before{content:"\f1aa"}.nc-outline-terrace:before{content:"\f1ab"}.nc-outline-text-2:before{content:"\f1ac"}.nc-outline-text:before{content:"\f1ad"}.nc-outline-texture:before{content:"\f1ae"}.nc-outline-ticket-75:before{content:"\f1af"}.nc-outline-ticket-76:before{content:"\f1b0"}.nc-outline-tie-01:before{content:"\f1b1"}.nc-outline-tie-02:before{content:"\f1b2"}.nc-outline-tie-bow:before{content:"\f1b3"}.nc-outline-tile-55:before{content:"\f1b4"}.nc-outline-tile-56:before{content:"\f1b5"}.nc-outline-time-2:before{content:"\f1b6"}.nc-outline-time-3:before{content:"\f1b7"}.nc-outline-time-alarm:before{content:"\f1b8"}.nc-outline-time-clock:before{content:"\f1b9"}.nc-outline-time-countdown:before{content:"\f1ba"}.nc-outline-time:before{content:"\f1bb"}.nc-outline-timeline:before{content:"\f1bc"}.nc-outline-timer:before{content:"\f1bd"}.nc-outline-todo:before{content:"\f1be"}.nc-outline-toilet-paper:before{content:"\f1bf"}.nc-outline-toilet:before{content:"\f1c0"}.nc-outline-tomato:before{content:"\f1c1"}.nc-outline-tool-blur:before{content:"\f1c2"}.nc-outline-tool-hand:before{content:"\f1c3"}.nc-outline-tool-select:before{content:"\f1c4"}.nc-outline-tooth:before{content:"\f1c5"}.nc-outline-touch:before{content:"\f1c7"}.nc-outline-track-delivery:before{content:"\f1c6"}.nc-outline-tracking:before{content:"\f1c8"}.nc-outline-tractor:before{content:"\f1c9"}.nc-outline-train-speed:before{content:"\f1ca"}.nc-outline-train:before{content:"\f1cb"}.nc-outline-tram:before{content:"\f1cc"}.nc-outline-transform-2d:before{content:"\f1cd"}.nc-outline-transform-origin:before{content:"\f1ce"}.nc-outline-transform:before{content:"\f1cf"}.nc-outline-transparent:before{content:"\f1d1"}.nc-outline-trash-round:before{content:"\f1d0"}.nc-outline-trash-simple:before{content:"\f1d2"}.nc-outline-trash:before{content:"\f1d3"}.nc-outline-treasure-map-21:before{content:"\f1d4"}.nc-outline-treasure-map-40:before{content:"\f1d5"}.nc-outline-tree-01:before{content:"\f1d6"}.nc-outline-tree-02:before{content:"\f1d7"}.nc-outline-tree-03:before{content:"\f1d8"}.nc-outline-tree-ball:before{content:"\f1d9"}.nc-outline-tree:before{content:"\f1da"}.nc-outline-trend-down:before{content:"\f1db"}.nc-outline-trend-up:before{content:"\f1dc"}.nc-outline-triangle-down-20:before{content:"\f1dd"}.nc-outline-triangle-down-65:before{content:"\f1de"}.nc-outline-triangle-down:before{content:"\f1df"}.nc-outline-triangle-left-18:before{content:"\f1e0"}.nc-outline-triangle-left-63:before{content:"\f1e1"}.nc-outline-triangle-left:before{content:"\f1e2"}.nc-outline-triangle-right-17:before{content:"\f1e3"}.nc-outline-triangle-right-62:before{content:"\f1e4"}.nc-outline-triangle-right:before{content:"\f1e5"}.nc-outline-triangle-up-19:before{content:"\f1e6"}.nc-outline-triangle-up-64:before{content:"\f1e7"}.nc-outline-triangle-up:before{content:"\f1e8"}.nc-outline-tripod:before{content:"\f1e9"}.nc-outline-trolley:before{content:"\f1ea"}.nc-outline-trophy:before{content:"\f1eb"}.nc-outline-truck-front:before{content:"\f1ec"}.nc-outline-trunk:before{content:"\f1ed"}.nc-outline-tshirt-53:before{content:"\f1ee"}.nc-outline-tshirt-54:before{content:"\f1ef"}.nc-outline-tshirt-sport:before{content:"\f1f0"}.nc-outline-turtle:before{content:"\f1f1"}.nc-outline-tv-2:before{content:"\f1f2"}.nc-outline-tv-old:before{content:"\f1f3"}.nc-outline-tv:before{content:"\f1f4"}.nc-outline-ui-03:before{content:"\f1f5"}.nc-outline-ui-04:before{content:"\f1f6"}.nc-outline-umbrella-13:before{content:"\f1f7"}.nc-outline-umbrella-14:before{content:"\f1f8"}.nc-outline-underline:before{content:"\f1f9"}.nc-outline-underwear-man:before{content:"\f1fa"}.nc-outline-underwear:before{content:"\f1fb"}.nc-outline-undo-25:before{content:"\f1fc"}.nc-outline-undo-29:before{content:"\f1fd"}.nc-outline-ungroup:before{content:"\f1fe"}.nc-outline-unite-round:before{content:"\f1ff"}.nc-outline-unite:before{content:"\f200"}.nc-outline-upload-2:before{content:"\f201"}.nc-outline-upload:before{content:"\f202"}.nc-outline-upset-13:before{content:"\f203"}.nc-outline-upset-14:before{content:"\f204"}.nc-outline-usb:before{content:"\f205"}.nc-outline-user-balance:before{content:"\f206"}.nc-outline-user-climb:before{content:"\f207"}.nc-outline-user-frame-31:before{content:"\f209"}.nc-outline-user-frame-32:before{content:"\f208"}.nc-outline-user-frame-33:before{content:"\f20a"}.nc-outline-user-meditation:before{content:"\f20b"}.nc-outline-user-run:before{content:"\f20c"}.nc-outline-user-snowboard:before{content:"\f20d"}.nc-outline-user-swim:before{content:"\f20e"}.nc-outline-user:before{content:"\f20f"}.nc-outline-vampire:before{content:"\f210"}.nc-outline-vector-2:before{content:"\f211"}.nc-outline-vector:before{content:"\f212"}.nc-outline-vegan:before{content:"\f213"}.nc-outline-ventilation:before{content:"\f215"}.nc-outline-vespa-front:before{content:"\f214"}.nc-outline-vespa:before{content:"\f216"}.nc-outline-vest-31:before{content:"\f217"}.nc-outline-vest-sport:before{content:"\f218"}.nc-outline-vest:before{content:"\f219"}.nc-outline-video-64:before{content:"\f21a"}.nc-outline-video-65:before{content:"\f21b"}.nc-outline-video-66:before{content:"\f21c"}.nc-outline-video-67:before{content:"\f21d"}.nc-outline-videocamera-71:before{content:"\f21e"}.nc-outline-videocamera-72:before{content:"\f21f"}.nc-outline-virus:before{content:"\f220"}.nc-outline-voice-record:before{content:"\f221"}.nc-outline-volleyball:before{content:"\f222"}.nc-outline-volume-93:before{content:"\f223"}.nc-outline-volume-97:before{content:"\f224"}.nc-outline-volume-98:before{content:"\f225"}.nc-outline-volume-ban:before{content:"\f226"}.nc-outline-volume-down:before{content:"\f227"}.nc-outline-volume-off:before{content:"\f228"}.nc-outline-volume-up:before{content:"\f229"}.nc-outline-vpn:before{content:"\f22a"}.nc-outline-waffle:before{content:"\f22b"}.nc-outline-walk:before{content:"\f22d"}.nc-outline-wallet-43:before{content:"\f22c"}.nc-outline-wallet-44:before{content:"\f22e"}.nc-outline-wallet-90:before{content:"\f22f"}.nc-outline-wallet:before{content:"\f230"}.nc-outline-wand-11:before{content:"\f231"}.nc-outline-wardrobe:before{content:"\f232"}.nc-outline-wash-2:before{content:"\f233"}.nc-outline-wash-30:before{content:"\f234"}.nc-outline-wash-60:before{content:"\f235"}.nc-outline-wash-90:before{content:"\f236"}.nc-outline-wash-hand:before{content:"\f237"}.nc-outline-wash:before{content:"\f238"}.nc-outline-washing-fluid:before{content:"\f239"}.nc-outline-waste-danger:before{content:"\f23a"}.nc-outline-waste-recycling:before{content:"\f23b"}.nc-outline-waste:before{content:"\f23c"}.nc-outline-watch-circle:before{content:"\f23d"}.nc-outline-watch-dev:before{content:"\f23e"}.nc-outline-watch-time:before{content:"\f23f"}.nc-outline-watch:before{content:"\f240"}.nc-outline-water-hand:before{content:"\f241"}.nc-outline-water-sink:before{content:"\f242"}.nc-outline-water:before{content:"\f243"}.nc-outline-watermelon:before{content:"\f244"}.nc-outline-wc:before{content:"\f245"}.nc-outline-web-design:before{content:"\f246"}.nc-outline-webcam-38:before{content:"\f247"}.nc-outline-webcam-39:before{content:"\f248"}.nc-outline-webpage-2:before{content:"\f249"}.nc-outline-webpage:before{content:"\f24a"}.nc-outline-weed:before{content:"\f24b"}.nc-outline-weight:before{content:"\f24c"}.nc-outline-what:before{content:"\f24d"}.nc-outline-wheel-2:before{content:"\f24e"}.nc-outline-wheel:before{content:"\f251"}.nc-outline-wheelchair:before{content:"\f24f"}.nc-outline-whisk:before{content:"\f250"}.nc-outline-whiskers:before{content:"\f252"}.nc-outline-whistle:before{content:"\f253"}.nc-outline-white-house:before{content:"\f254"}.nc-outline-widget:before{content:"\f255"}.nc-outline-wifi-2:before{content:"\f256"}.nc-outline-wifi-off:before{content:"\f257"}.nc-outline-wifi-protected:before{content:"\f258"}.nc-outline-wifi-router:before{content:"\f259"}.nc-outline-wifi:before{content:"\f25a"}.nc-outline-wind-2:before{content:"\f25b"}.nc-outline-wind:before{content:"\f25c"}.nc-outline-window-add:before{content:"\f25d"}.nc-outline-window-code:before{content:"\f25e"}.nc-outline-window-delete:before{content:"\f25f"}.nc-outline-window-dev:before{content:"\f260"}.nc-outline-window-paragraph:before{content:"\f261"}.nc-outline-window-responsive:before{content:"\f262"}.nc-outline-window-zoom-in:before{content:"\f263"}.nc-outline-window-zoom-out:before{content:"\f264"}.nc-outline-wine-list:before{content:"\f265"}.nc-outline-wink-06:before{content:"\f266"}.nc-outline-wink-11:before{content:"\f267"}.nc-outline-wink-69:before{content:"\f268"}.nc-outline-witch-hat:before{content:"\f269"}.nc-outline-wolf:before{content:"\f26a"}.nc-outline-woman-2:before{content:"\f26b"}.nc-outline-woman-21:before{content:"\f26c"}.nc-outline-woman-24:before{content:"\f26d"}.nc-outline-woman-25:before{content:"\f26e"}.nc-outline-woman-down:before{content:"\f26f"}.nc-outline-woman-man:before{content:"\f270"}.nc-outline-woman-up:before{content:"\f271"}.nc-outline-woman:before{content:"\f272"}.nc-outline-wood:before{content:"\f273"}.nc-outline-wool-ball:before{content:"\f274"}.nc-outline-worl-marker:before{content:"\f275"}.nc-outline-world-2:before{content:"\f276"}.nc-outline-world-pin:before{content:"\f277"}.nc-outline-world:before{content:"\f278"}.nc-outline-yogurt:before{content:"\f279"}.nc-outline-zip-54:before{content:"\f27a"}.nc-outline-zip-55:before{content:"\f27b"}.nc-outline-zombie:before{content:"\f27c"}.nc-outline-zoom-100:before{content:"\f27d"}.nc-outline-zoom-2:before{content:"\f27e"}.nc-outline-zoom-88:before{content:"\f27f"}.nc-outline-zoom-99:before{content:"\f281"}.nc-outline-zoom-bold-in:before{content:"\f280"}.nc-outline-zoom-bold-out:before{content:"\f282"}.nc-outline-zoom-bold:before{content:"\f283"}.nc-outline-zoom-e:before{content:"\f285"}.nc-outline-zoom-in:before{content:"\f284"}.nc-outline-zoom-out:before{content:"\f286"}.nc-outline-zoom-split-in:before{content:"\f287"}.nc-outline-zoom-split-out:before{content:"\f288"}.nc-outline-zoom-split:before{content:"\f289"}.nc-outline-zoom-triangles:before{content:"\f28a"}.nc-outline-zoom:before{content:"\f28b"}.nc-glyph-2x-drag-down:before{content:"\ea01"}.nc-glyph-2x-drag-up:before{content:"\ea02"}.nc-glyph-2x-swipe-down:before{content:"\ea03"}.nc-glyph-2x-swipe-left:before{content:"\ea04"}.nc-glyph-2x-swipe-right:before{content:"\ea05"}.nc-glyph-2x-swipe-up:before{content:"\ea06"}.nc-glyph-2x-tap:before{content:"\ea07"}.nc-glyph-3d-29:before{content:"\ea08"}.nc-glyph-3d-model:before{content:"\ea09"}.nc-glyph-3d:before{content:"\ea0a"}.nc-glyph-3x-swipe-left:before{content:"\ea0b"}.nc-glyph-3x-swipe-right:before{content:"\ea0c"}.nc-glyph-3x-swipe-up:before{content:"\ea0d"}.nc-glyph-3x-tap:before{content:"\ea0e"}.nc-glyph-4x-swipe-left:before{content:"\ea0f"}.nc-glyph-4x-swipe-right:before{content:"\ea10"}.nc-glyph-4x-swipe-up:before{content:"\ea11"}.nc-glyph-a-add:before{content:"\ea12"}.nc-glyph-a-check:before{content:"\ea13"}.nc-glyph-a-delete:before{content:"\ea14"}.nc-glyph-a-edit:before{content:"\ea15"}.nc-glyph-a-heart:before{content:"\ea16"}.nc-glyph-a-location:before{content:"\ea17"}.nc-glyph-a-remove:before{content:"\ea18"}.nc-glyph-a-search:before{content:"\ea19"}.nc-glyph-a-security:before{content:"\ea1a"}.nc-glyph-a-share:before{content:"\ea1b"}.nc-glyph-a-star:before{content:"\ea1c"}.nc-glyph-a-sync:before{content:"\ea1d"}.nc-glyph-a-time:before{content:"\ea1e"}.nc-glyph-abc:before{content:"\ea1f"}.nc-glyph-accessibility:before{content:"\ea20"}.nc-glyph-action-73:before{content:"\ea21"}.nc-glyph-action-74:before{content:"\ea22"}.nc-glyph-active-38:before{content:"\ea23"}.nc-glyph-active-40:before{content:"\ea24"}.nc-glyph-add-27:before{content:"\ea25"}.nc-glyph-add-29:before{content:"\ea26"}.nc-glyph-add:before{content:"\ea27"}.nc-glyph-agenda-bookmark:before{content:"\ea28"}.nc-glyph-agenda:before{content:"\ea29"}.nc-glyph-air-baloon:before{content:"\ea2a"}.nc-glyph-air-conditioner:before{content:"\ea2b"}.nc-glyph-airbag:before{content:"\ea2c"}.nc-glyph-alarm-add:before{content:"\ea2d"}.nc-glyph-alarm-delete:before{content:"\ea2e"}.nc-glyph-album-2:before{content:"\ea2f"}.nc-glyph-album:before{content:"\ea30"}.nc-glyph-alcohol:before{content:"\ea31"}.nc-glyph-alert-circle-exc:before{content:"\ea32"}.nc-glyph-alert-circle-i:before{content:"\ea33"}.nc-glyph-alert-circle-que:before{content:"\ea34"}.nc-glyph-alert-exc:before{content:"\ea35"}.nc-glyph-alert-i:before{content:"\ea36"}.nc-glyph-alert-que:before{content:"\ea37"}.nc-glyph-alert-square-exc:before{content:"\ea38"}.nc-glyph-alert-square-i:before{content:"\ea39"}.nc-glyph-alert-square-que:before{content:"\ea3a"}.nc-glyph-alert:before{content:"\ea3b"}.nc-glyph-alien-29:before{content:"\ea3c"}.nc-glyph-alien-33:before{content:"\ea3d"}.nc-glyph-align-bottom:before{content:"\ea3e"}.nc-glyph-align-center-horizontal:before{content:"\ea3f"}.nc-glyph-align-center-vertical:before{content:"\ea40"}.nc-glyph-align-center:before{content:"\ea41"}.nc-glyph-align-justify:before{content:"\ea42"}.nc-glyph-align-left-2:before{content:"\ea43"}.nc-glyph-align-left:before{content:"\ea44"}.nc-glyph-align-right-2:before{content:"\ea45"}.nc-glyph-align-right:before{content:"\ea46"}.nc-glyph-align-top:before{content:"\ea47"}.nc-glyph-ambulance:before{content:"\ea48"}.nc-glyph-analytics-88:before{content:"\ea49"}.nc-glyph-analytics-89:before{content:"\ea4a"}.nc-glyph-anchor:before{content:"\ea4b"}.nc-glyph-android:before{content:"\ea4c"}.nc-glyph-angle:before{content:"\ea4d"}.nc-glyph-angry-10:before{content:"\ea4e"}.nc-glyph-angry-44:before{content:"\ea4f"}.nc-glyph-animation-14:before{content:"\ea50"}.nc-glyph-animation-31:before{content:"\ea51"}.nc-glyph-animation-32:before{content:"\ea52"}.nc-glyph-app:before{content:"\ea53"}.nc-glyph-apple-2:before{content:"\ea54"}.nc-glyph-apple:before{content:"\ea55"}.nc-glyph-appointment:before{content:"\ea56"}.nc-glyph-archive-2:before{content:"\ea57"}.nc-glyph-archive-3d-check:before{content:"\ea58"}.nc-glyph-archive-3d-content:before{content:"\ea59"}.nc-glyph-archive-check:before{content:"\ea5a"}.nc-glyph-archive-content:before{content:"\ea5b"}.nc-glyph-archive-paper-check:before{content:"\ea5c"}.nc-glyph-archive-paper:before{content:"\ea5d"}.nc-glyph-archive:before{content:"\ea5e"}.nc-glyph-armchair:before{content:"\ea5f"}.nc-glyph-artboard:before{content:"\ea60"}.nc-glyph-astronaut:before{content:"\ea61"}.nc-glyph-at-sign:before{content:"\ea62"}.nc-glyph-atm:before{content:"\ea63"}.nc-glyph-atom:before{content:"\ea64"}.nc-glyph-attach-86:before{content:"\ea65"}.nc-glyph-attach-87:before{content:"\ea66"}.nc-glyph-aubergine:before{content:"\ea67"}.nc-glyph-audio-91:before{content:"\ea68"}.nc-glyph-audio-92:before{content:"\ea69"}.nc-glyph-audio:before{content:"\ea6a"}.nc-glyph-avocado:before{content:"\ea6b"}.nc-glyph-award-48:before{content:"\ea6c"}.nc-glyph-award-49:before{content:"\ea6d"}.nc-glyph-award-55:before{content:"\ea6e"}.nc-glyph-award-74:before{content:"\ea6f"}.nc-glyph-award:before{content:"\ea70"}.nc-glyph-axe:before{content:"\ea71"}.nc-glyph-b-add:before{content:"\ea72"}.nc-glyph-b-check:before{content:"\ea73"}.nc-glyph-b-location:before{content:"\ea74"}.nc-glyph-b-love:before{content:"\ea75"}.nc-glyph-b-meeting:before{content:"\ea76"}.nc-glyph-b-remove:before{content:"\ea77"}.nc-glyph-b-security:before{content:"\ea78"}.nc-glyph-baby-2:before{content:"\ea79"}.nc-glyph-baby-3:before{content:"\ea7a"}.nc-glyph-baby-bottle:before{content:"\ea7b"}.nc-glyph-baby:before{content:"\ea7c"}.nc-glyph-back-78:before{content:"\ea7d"}.nc-glyph-back-80:before{content:"\ea7e"}.nc-glyph-background:before{content:"\ea7f"}.nc-glyph-backpack-2:before{content:"\ea80"}.nc-glyph-backpack-57:before{content:"\ea81"}.nc-glyph-backpack-58:before{content:"\ea82"}.nc-glyph-backpack:before{content:"\ea83"}.nc-glyph-backward:before{content:"\ea84"}.nc-glyph-bacon:before{content:"\ea85"}.nc-glyph-badge-13:before{content:"\ea86"}.nc-glyph-badge-14:before{content:"\ea87"}.nc-glyph-badge-15:before{content:"\ea88"}.nc-glyph-badge:before{content:"\ea89"}.nc-glyph-badminton:before{content:"\ea8a"}.nc-glyph-bag-09:before{content:"\ea8b"}.nc-glyph-bag-16:before{content:"\ea8c"}.nc-glyph-bag-17:before{content:"\ea8d"}.nc-glyph-bag-20:before{content:"\ea8e"}.nc-glyph-bag-21:before{content:"\ea8f"}.nc-glyph-bag-22:before{content:"\ea90"}.nc-glyph-bag-49:before{content:"\ea91"}.nc-glyph-bag-50:before{content:"\ea92"}.nc-glyph-bag-add-18:before{content:"\ea93"}.nc-glyph-bag-add-21:before{content:"\ea94"}.nc-glyph-bag-delivery:before{content:"\ea95"}.nc-glyph-bag-edit:before{content:"\ea96"}.nc-glyph-bag-remove-19:before{content:"\ea97"}.nc-glyph-bag-remove-22:before{content:"\ea98"}.nc-glyph-bag-time:before{content:"\ea99"}.nc-glyph-bag:before{content:"\ea9a"}.nc-glyph-baguette:before{content:"\ea9b"}.nc-glyph-balance:before{content:"\ea9c"}.nc-glyph-ball-basket:before{content:"\ea9d"}.nc-glyph-ball-soccer:before{content:"\ea9e"}.nc-glyph-baloon:before{content:"\ea9f"}.nc-glyph-ban-bold:before{content:"\eaa0"}.nc-glyph-ban:before{content:"\eaa1"}.nc-glyph-banana:before{content:"\eaa2"}.nc-glyph-bank:before{content:"\eaa3"}.nc-glyph-barbecue-15:before{content:"\eaa4"}.nc-glyph-barbecue-tools:before{content:"\eaa5"}.nc-glyph-barbecue:before{content:"\eaa6"}.nc-glyph-barcode-qr:before{content:"\eaa7"}.nc-glyph-barcode-scan:before{content:"\eaa8"}.nc-glyph-barcode:before{content:"\eaa9"}.nc-glyph-bars-2:before{content:"\eaaa"}.nc-glyph-bars-rotate:before{content:"\eaab"}.nc-glyph-bars:before{content:"\eaac"}.nc-glyph-baseball-ball:before{content:"\eaad"}.nc-glyph-baseball-bat:before{content:"\eaae"}.nc-glyph-baseball:before{content:"\eaaf"}.nc-glyph-basket-add:before{content:"\eab0"}.nc-glyph-basket-edit:before{content:"\eab1"}.nc-glyph-basket-favorite:before{content:"\eab2"}.nc-glyph-basket-remove:before{content:"\eab3"}.nc-glyph-basket-search:before{content:"\eab4"}.nc-glyph-basket-share:before{content:"\eab5"}.nc-glyph-basket-simple-add:before{content:"\eab6"}.nc-glyph-basket-simple-remove:before{content:"\eab7"}.nc-glyph-basket-simple:before{content:"\eab8"}.nc-glyph-basket-update:before{content:"\eab9"}.nc-glyph-basket:before{content:"\eaba"}.nc-glyph-basketball-12:before{content:"\eabb"}.nc-glyph-basketball-13:before{content:"\eabc"}.nc-glyph-bat:before{content:"\eabd"}.nc-glyph-bath-tub:before{content:"\eabe"}.nc-glyph-battery-81:before{content:"\eabf"}.nc-glyph-battery-83:before{content:"\eac0"}.nc-glyph-battery-half:before{content:"\eac1"}.nc-glyph-battery-level:before{content:"\eac2"}.nc-glyph-battery-low:before{content:"\eac3"}.nc-glyph-battery:before{content:"\eac4"}.nc-glyph-bear-2:before{content:"\eac5"}.nc-glyph-bear:before{content:"\eac6"}.nc-glyph-bed-09:before{content:"\eac7"}.nc-glyph-bed-23:before{content:"\eac8"}.nc-glyph-bed-side:before{content:"\eac9"}.nc-glyph-bee:before{content:"\eaca"}.nc-glyph-beer-95:before{content:"\eacb"}.nc-glyph-beer-96:before{content:"\eacc"}.nc-glyph-bell-53:before{content:"\eacd"}.nc-glyph-bell-54:before{content:"\eace"}.nc-glyph-bell-55:before{content:"\eacf"}.nc-glyph-belt:before{content:"\ead0"}.nc-glyph-berlin:before{content:"\ead1"}.nc-glyph-beverage:before{content:"\ead2"}.nc-glyph-big-eyes:before{content:"\ead3"}.nc-glyph-big-smile:before{content:"\ead4"}.nc-glyph-bigmouth:before{content:"\ead5"}.nc-glyph-bike-2:before{content:"\ead6"}.nc-glyph-bike:before{content:"\ead7"}.nc-glyph-bill:before{content:"\ead8"}.nc-glyph-billiard:before{content:"\ead9"}.nc-glyph-binocular:before{content:"\eada"}.nc-glyph-biscuit:before{content:"\eadb"}.nc-glyph-bitcoin:before{content:"\eadc"}.nc-glyph-bleah:before{content:"\eadd"}.nc-glyph-blend:before{content:"\eade"}.nc-glyph-blind:before{content:"\eadf"}.nc-glyph-block-bottom-left:before{content:"\eae0"}.nc-glyph-block-bottom-right:before{content:"\eae1"}.nc-glyph-block-down:before{content:"\eae2"}.nc-glyph-block-left:before{content:"\eae3"}.nc-glyph-block-right:before{content:"\eae4"}.nc-glyph-block-top-left:before{content:"\eae5"}.nc-glyph-block-top-right:before{content:"\eae6"}.nc-glyph-block-up:before{content:"\eae7"}.nc-glyph-blog:before{content:"\eae8"}.nc-glyph-blueberries:before{content:"\eae9"}.nc-glyph-bluetooth:before{content:"\eaea"}.nc-glyph-board-2:before{content:"\eaeb"}.nc-glyph-board-27:before{content:"\eaec"}.nc-glyph-board-28:before{content:"\eaed"}.nc-glyph-board-29:before{content:"\eaee"}.nc-glyph-board-30:before{content:"\eaef"}.nc-glyph-board-51:before{content:"\eaf0"}.nc-glyph-board:before{content:"\eaf1"}.nc-glyph-boat-front:before{content:"\eaf2"}.nc-glyph-boat-small-02:before{content:"\eaf3"}.nc-glyph-boat-small-03:before{content:"\eaf4"}.nc-glyph-boat:before{content:"\eaf5"}.nc-glyph-bold-add:before{content:"\eaf6"}.nc-glyph-bold-delete:before{content:"\eaf7"}.nc-glyph-bold-direction:before{content:"\eaf8"}.nc-glyph-bold-down:before{content:"\eaf9"}.nc-glyph-bold-left:before{content:"\eafa"}.nc-glyph-bold-remove:before{content:"\eafb"}.nc-glyph-bold-right:before{content:"\eafc"}.nc-glyph-bold-up:before{content:"\eafd"}.nc-glyph-bold:before{content:"\eafe"}.nc-glyph-bolt:before{content:"\eaff"}.nc-glyph-bomb:before{content:"\eb00"}.nc-glyph-bones:before{content:"\eb01"}.nc-glyph-book-07:before{content:"\eb02"}.nc-glyph-book-08:before{content:"\eb03"}.nc-glyph-book-39:before{content:"\eb04"}.nc-glyph-book-bookmark-2:before{content:"\eb05"}.nc-glyph-book-bookmark:before{content:"\eb06"}.nc-glyph-book-open-2:before{content:"\eb07"}.nc-glyph-book-open:before{content:"\eb08"}.nc-glyph-book:before{content:"\eb09"}.nc-glyph-bookmark-2:before{content:"\eb0a"}.nc-glyph-bookmark-add-2:before{content:"\eb0b"}.nc-glyph-bookmark-add:before{content:"\eb0c"}.nc-glyph-bookmark-remove-2:before{content:"\eb0d"}.nc-glyph-bookmark-remove:before{content:"\eb0e"}.nc-glyph-bookmark:before{content:"\eb0f"}.nc-glyph-books-46:before{content:"\eb10"}.nc-glyph-books:before{content:"\eb11"}.nc-glyph-boot-2:before{content:"\eb12"}.nc-glyph-boot-woman:before{content:"\eb13"}.nc-glyph-boot:before{content:"\eb14"}.nc-glyph-border-radius:before{content:"\eb15"}.nc-glyph-border:before{content:"\eb16"}.nc-glyph-bored:before{content:"\eb17"}.nc-glyph-bottle-wine:before{content:"\eb18"}.nc-glyph-bottle:before{content:"\eb19"}.nc-glyph-bow:before{content:"\eb1a"}.nc-glyph-bowl:before{content:"\eb1b"}.nc-glyph-bowling:before{content:"\eb1c"}.nc-glyph-box-2:before{content:"\eb1d"}.nc-glyph-box-3d-50:before{content:"\eb1e"}.nc-glyph-box-ribbon:before{content:"\eb1f"}.nc-glyph-box:before{content:"\eb20"}.nc-glyph-boxing:before{content:"\eb21"}.nc-glyph-bra:before{content:"\eb22"}.nc-glyph-brain:before{content:"\eb23"}.nc-glyph-brakes:before{content:"\eb24"}.nc-glyph-bread:before{content:"\eb25"}.nc-glyph-briefcase-24:before{content:"\eb26"}.nc-glyph-briefcase-25:before{content:"\eb27"}.nc-glyph-briefcase-26:before{content:"\eb28"}.nc-glyph-brightness-46:before{content:"\eb29"}.nc-glyph-brightness-47:before{content:"\eb2a"}.nc-glyph-brioche:before{content:"\eb2b"}.nc-glyph-broccoli:before{content:"\eb2c"}.nc-glyph-broom:before{content:"\eb2d"}.nc-glyph-browser-chrome:before{content:"\eb2e"}.nc-glyph-browser-edge:before{content:"\eb2f"}.nc-glyph-browser-firefox:before{content:"\eb30"}.nc-glyph-browser-ie:before{content:"\eb31"}.nc-glyph-browser-opera:before{content:"\eb32"}.nc-glyph-browser-safari:before{content:"\eb33"}.nc-glyph-brush:before{content:"\eb34"}.nc-glyph-bucket:before{content:"\eb35"}.nc-glyph-bug:before{content:"\eb36"}.nc-glyph-building:before{content:"\eb37"}.nc-glyph-bulb-61:before{content:"\eb38"}.nc-glyph-bulb-62:before{content:"\eb39"}.nc-glyph-bulb-63:before{content:"\eb3a"}.nc-glyph-bulb-saver:before{content:"\eb3b"}.nc-glyph-bulb:before{content:"\eb3c"}.nc-glyph-bullet-list-67:before{content:"\eb3d"}.nc-glyph-bullet-list-68:before{content:"\eb3e"}.nc-glyph-bullet-list-69:before{content:"\eb3f"}.nc-glyph-bullet-list-70:before{content:"\eb40"}.nc-glyph-bullet-list:before{content:"\eb41"}.nc-glyph-bus-front-10:before{content:"\eb42"}.nc-glyph-bus-front-12:before{content:"\eb43"}.nc-glyph-bus:before{content:"\eb44"}.nc-glyph-business-contact-85:before{content:"\eb45"}.nc-glyph-business-contact-86:before{content:"\eb46"}.nc-glyph-business-contact-87:before{content:"\eb47"}.nc-glyph-business-contact-88:before{content:"\eb48"}.nc-glyph-business-contact-89:before{content:"\eb49"}.nc-glyph-businessman-03:before{content:"\eb4a"}.nc-glyph-businessman-04:before{content:"\eb4b"}.nc-glyph-butterfly:before{content:"\eb4c"}.nc-glyph-button-2:before{content:"\eb4d"}.nc-glyph-button-circle-pause:before{content:"\eb4e"}.nc-glyph-button-circle-play:before{content:"\eb4f"}.nc-glyph-button-circle-stop:before{content:"\eb50"}.nc-glyph-button-eject:before{content:"\eb51"}.nc-glyph-button-next:before{content:"\eb52"}.nc-glyph-button-pause:before{content:"\eb53"}.nc-glyph-button-play:before{content:"\eb54"}.nc-glyph-button-power:before{content:"\eb55"}.nc-glyph-button-previous:before{content:"\eb56"}.nc-glyph-button-record:before{content:"\eb57"}.nc-glyph-button-rewind:before{content:"\eb58"}.nc-glyph-button-skip:before{content:"\eb5b"}.nc-glyph-button-stop:before{content:"\eb59"}.nc-glyph-button:before{content:"\eb5a"}.nc-glyph-cabinet:before{content:"\eb5c"}.nc-glyph-cable-49:before{content:"\eb5d"}.nc-glyph-cable-50:before{content:"\eb5e"}.nc-glyph-cactus:before{content:"\eb5f"}.nc-glyph-cake-100:before{content:"\eb60"}.nc-glyph-cake-13:before{content:"\eb61"}.nc-glyph-cake-slice:before{content:"\eb62"}.nc-glyph-cake:before{content:"\eb63"}.nc-glyph-calculator:before{content:"\eb64"}.nc-glyph-calendar-57:before{content:"\eb65"}.nc-glyph-calendar-60:before{content:"\eb66"}.nc-glyph-calendar-add:before{content:"\eb67"}.nc-glyph-calendar-check-59:before{content:"\eb68"}.nc-glyph-calendar-check-62:before{content:"\eb69"}.nc-glyph-calendar-grid-58:before{content:"\eb6a"}.nc-glyph-calendar-grid-61:before{content:"\eb6b"}.nc-glyph-camera-18:before{content:"\eb6c"}.nc-glyph-camera-19:before{content:"\eb6d"}.nc-glyph-camera-20:before{content:"\eb6e"}.nc-glyph-camera-ban-36:before{content:"\eb6f"}.nc-glyph-camera-ban-37:before{content:"\eb70"}.nc-glyph-camera-compact:before{content:"\eb71"}.nc-glyph-camera-screen:before{content:"\eb72"}.nc-glyph-camera-square-57:before{content:"\eb73"}.nc-glyph-camera-square-58:before{content:"\eb74"}.nc-glyph-camera-time:before{content:"\eb75"}.nc-glyph-camera:before{content:"\eb76"}.nc-glyph-camper:before{content:"\eb77"}.nc-glyph-camping:before{content:"\eb78"}.nc-glyph-candle:before{content:"\eb79"}.nc-glyph-candy-2:before{content:"\eb7a"}.nc-glyph-candy:before{content:"\eb7b"}.nc-glyph-canvas:before{content:"\eb7c"}.nc-glyph-cap:before{content:"\eb7d"}.nc-glyph-capitalize:before{content:"\eb7e"}.nc-glyph-caps-all:before{content:"\eb7f"}.nc-glyph-caps-small:before{content:"\eb80"}.nc-glyph-car-2:before{content:"\eb81"}.nc-glyph-car-accident:before{content:"\eb82"}.nc-glyph-car-connect:before{content:"\eb83"}.nc-glyph-car-door:before{content:"\eb84"}.nc-glyph-car-front:before{content:"\eb85"}.nc-glyph-car-lights:before{content:"\eb86"}.nc-glyph-car-parking:before{content:"\eb87"}.nc-glyph-car-simple:before{content:"\eb88"}.nc-glyph-car-sport:before{content:"\eb89"}.nc-glyph-car-taxi:before{content:"\eb8a"}.nc-glyph-car-ventilation:before{content:"\eb8b"}.nc-glyph-car-wash:before{content:"\eb8c"}.nc-glyph-car:before{content:"\eb8d"}.nc-glyph-card-add-2:before{content:"\eb8e"}.nc-glyph-card-add:before{content:"\eb8f"}.nc-glyph-card-alert:before{content:"\eb90"}.nc-glyph-card-edit:before{content:"\eb91"}.nc-glyph-card-favorite:before{content:"\eb92"}.nc-glyph-card-remove:before{content:"\eb93"}.nc-glyph-card-update:before{content:"\eb94"}.nc-glyph-cardio:before{content:"\eb95"}.nc-glyph-cards:before{content:"\eb96"}.nc-glyph-carrot:before{content:"\eb97"}.nc-glyph-cart-9:before{content:"\eb98"}.nc-glyph-cart-add-9:before{content:"\eb99"}.nc-glyph-cart-add:before{content:"\eb9a"}.nc-glyph-cart-favorite:before{content:"\eb9b"}.nc-glyph-cart-full:before{content:"\eb9c"}.nc-glyph-cart-in-9:before{content:"\eb9d"}.nc-glyph-cart-refresh:before{content:"\eb9e"}.nc-glyph-cart-remove-9:before{content:"\eb9f"}.nc-glyph-cart-remove:before{content:"\eba0"}.nc-glyph-cart-return:before{content:"\eba1"}.nc-glyph-cart-simple-add:before{content:"\eba2"}.nc-glyph-cart-simple-in:before{content:"\eba3"}.nc-glyph-cart-simple-remove:before{content:"\eba4"}.nc-glyph-cart-simple:before{content:"\eba5"}.nc-glyph-cart-speed:before{content:"\eba6"}.nc-glyph-cart:before{content:"\eba7"}.nc-glyph-cash-register:before{content:"\eba8"}.nc-glyph-castle:before{content:"\eba9"}.nc-glyph-cat:before{content:"\ebaa"}.nc-glyph-cauldron:before{content:"\ebab"}.nc-glyph-cctv:before{content:"\ebac"}.nc-glyph-cd-reader:before{content:"\ebad"}.nc-glyph-celsius:before{content:"\ebae"}.nc-glyph-centralize:before{content:"\ebaf"}.nc-glyph-chair-2:before{content:"\ebb0"}.nc-glyph-chair:before{content:"\ebb1"}.nc-glyph-chalkboard:before{content:"\ebb2"}.nc-glyph-champagne:before{content:"\ebb3"}.nc-glyph-chart-2:before{content:"\ebb4"}.nc-glyph-chart-3:before{content:"\ebb5"}.nc-glyph-chart-bar-32:before{content:"\ebb6"}.nc-glyph-chart-bar-33:before{content:"\ebb7"}.nc-glyph-chart-bar-52:before{content:"\ebb8"}.nc-glyph-chart-bar-53:before{content:"\ebb9"}.nc-glyph-chart-bar:before{content:"\ebba"}.nc-glyph-chart-bars:before{content:"\ebbb"}.nc-glyph-chart-growth:before{content:"\ebbc"}.nc-glyph-chart-pie-35:before{content:"\ebbd"}.nc-glyph-chart-pie-36:before{content:"\ebbe"}.nc-glyph-chart-pie:before{content:"\ebbf"}.nc-glyph-chart:before{content:"\ebc0"}.nc-glyph-chat-33:before{content:"\ebc1"}.nc-glyph-chat-45:before{content:"\ebc2"}.nc-glyph-chat-46:before{content:"\ebc3"}.nc-glyph-chat-content:before{content:"\ebc4"}.nc-glyph-chat-reply:before{content:"\ebc5"}.nc-glyph-chat-round-content:before{content:"\ebc6"}.nc-glyph-chat-round:before{content:"\ebc7"}.nc-glyph-chat:before{content:"\ebc8"}.nc-glyph-check-2:before{content:"\ebc9"}.nc-glyph-check-bold:before{content:"\ebca"}.nc-glyph-check-circle-07:before{content:"\ebcb"}.nc-glyph-check-circle-08:before{content:"\ebcc"}.nc-glyph-check-curve:before{content:"\ebcd"}.nc-glyph-check-in:before{content:"\ebce"}.nc-glyph-check-out:before{content:"\ebcf"}.nc-glyph-check-simple:before{content:"\ebd0"}.nc-glyph-check-small:before{content:"\ebd1"}.nc-glyph-check-square-09:before{content:"\ebd2"}.nc-glyph-check-square-11:before{content:"\ebd3"}.nc-glyph-check:before{content:"\ebd4"}.nc-glyph-cheese-24:before{content:"\ebd5"}.nc-glyph-cheese-87:before{content:"\ebd6"}.nc-glyph-cheeseburger:before{content:"\ebd7"}.nc-glyph-chef-hat:before{content:"\ebd8"}.nc-glyph-chef:before{content:"\ebd9"}.nc-glyph-cheque-2:before{content:"\ebda"}.nc-glyph-cheque-3:before{content:"\ebdb"}.nc-glyph-cheque:before{content:"\ebdc"}.nc-glyph-cherry:before{content:"\ebdd"}.nc-glyph-chicken-2:before{content:"\ebde"}.nc-glyph-chicken:before{content:"\ebdf"}.nc-glyph-child:before{content:"\ebe0"}.nc-glyph-chili:before{content:"\ebe1"}.nc-glyph-chimney:before{content:"\ebe2"}.nc-glyph-china:before{content:"\ebe3"}.nc-glyph-chinese:before{content:"\ebe4"}.nc-glyph-chips:before{content:"\ebe5"}.nc-glyph-choco-cream:before{content:"\ebe7"}.nc-glyph-chocolate-mousse:before{content:"\ebe6"}.nc-glyph-chocolate:before{content:"\ebe8"}.nc-glyph-church:before{content:"\ebe9"}.nc-glyph-churros:before{content:"\ebea"}.nc-glyph-circle-02:before{content:"\ebeb"}.nc-glyph-circle-03:before{content:"\ebec"}.nc-glyph-circle-04:before{content:"\ebed"}.nc-glyph-circle-08:before{content:"\ebee"}.nc-glyph-circle-09:before{content:"\ebef"}.nc-glyph-circle-10:before{content:"\ebf0"}.nc-glyph-circle-add:before{content:"\ebf1"}.nc-glyph-circle-bold-add:before{content:"\ebf2"}.nc-glyph-circle-bold-delete:before{content:"\ebf3"}.nc-glyph-circle-bold-remove:before{content:"\ebf4"}.nc-glyph-circle-delete:before{content:"\ebf5"}.nc-glyph-circle-down-12:before{content:"\ebf6"}.nc-glyph-circle-down-40:before{content:"\ebf7"}.nc-glyph-circle-in:before{content:"\ebf8"}.nc-glyph-circle-left-10:before{content:"\ebf9"}.nc-glyph-circle-left-38:before{content:"\ebfa"}.nc-glyph-circle-out:before{content:"\ebfb"}.nc-glyph-circle-remove:before{content:"\ebfc"}.nc-glyph-circle-right-09:before{content:"\ebfd"}.nc-glyph-circle-right-37:before{content:"\ebfe"}.nc-glyph-circle-simple-down:before{content:"\ebff"}.nc-glyph-circle-simple-left:before{content:"\ec00"}.nc-glyph-circle-simple-right:before{content:"\ec01"}.nc-glyph-circle-simple-up:before{content:"\ec02"}.nc-glyph-circle-up-11:before{content:"\ec03"}.nc-glyph-circle-up-39:before{content:"\ec04"}.nc-glyph-circle:before{content:"\ec05"}.nc-glyph-circuit-round:before{content:"\ec06"}.nc-glyph-circuit:before{content:"\ec07"}.nc-glyph-clone:before{content:"\ec08"}.nc-glyph-cloud-25:before{content:"\ec09"}.nc-glyph-cloud-26:before{content:"\ec0a"}.nc-glyph-cloud-download-93:before{content:"\ec0b"}.nc-glyph-cloud-download-95:before{content:"\ec0c"}.nc-glyph-cloud-drop:before{content:"\ec0d"}.nc-glyph-cloud-fog-31:before{content:"\ec0e"}.nc-glyph-cloud-fog-32:before{content:"\ec0f"}.nc-glyph-cloud-hail:before{content:"\ec10"}.nc-glyph-cloud-light:before{content:"\ec11"}.nc-glyph-cloud-moon:before{content:"\ec12"}.nc-glyph-cloud-rain:before{content:"\ec13"}.nc-glyph-cloud-rainbow:before{content:"\ec14"}.nc-glyph-cloud-snow-34:before{content:"\ec15"}.nc-glyph-cloud-snow-42:before{content:"\ec16"}.nc-glyph-cloud-sun-17:before{content:"\ec17"}.nc-glyph-cloud-sun-19:before{content:"\ec18"}.nc-glyph-cloud-upload-94:before{content:"\ec19"}.nc-glyph-cloud-upload-96:before{content:"\ec1a"}.nc-glyph-cloud:before{content:"\ec1b"}.nc-glyph-clover:before{content:"\ec1c"}.nc-glyph-coat-hanger:before{content:"\ec1d"}.nc-glyph-coat:before{content:"\ec1e"}.nc-glyph-cockade:before{content:"\ec1f"}.nc-glyph-cocktail:before{content:"\ec20"}.nc-glyph-code-editor:before{content:"\ec21"}.nc-glyph-code:before{content:"\ec22"}.nc-glyph-coffe-long:before{content:"\ec23"}.nc-glyph-coffee-2:before{content:"\ec24"}.nc-glyph-coffee-bean:before{content:"\ec25"}.nc-glyph-coffee-long:before{content:"\ec26"}.nc-glyph-coffee:before{content:"\ec27"}.nc-glyph-coffin:before{content:"\ec28"}.nc-glyph-coins:before{content:"\ec29"}.nc-glyph-collar:before{content:"\ec2a"}.nc-glyph-collection:before{content:"\ec2b"}.nc-glyph-color:before{content:"\ec2c"}.nc-glyph-command:before{content:"\ec2d"}.nc-glyph-comment-add:before{content:"\ec2e"}.nc-glyph-compare:before{content:"\ec2f"}.nc-glyph-compass-04:before{content:"\ec30"}.nc-glyph-compass-05:before{content:"\ec31"}.nc-glyph-compass-06:before{content:"\ec32"}.nc-glyph-compass-2:before{content:"\ec33"}.nc-glyph-compass-3:before{content:"\ec34"}.nc-glyph-compass:before{content:"\ec35"}.nc-glyph-components:before{content:"\ec36"}.nc-glyph-computer-monitor:before{content:"\ec37"}.nc-glyph-computer-old:before{content:"\ec38"}.nc-glyph-computer-upload:before{content:"\ec39"}.nc-glyph-computer:before{content:"\ec3a"}.nc-glyph-cone:before{content:"\ec3b"}.nc-glyph-connect:before{content:"\ec3c"}.nc-glyph-connection:before{content:"\ec3d"}.nc-glyph-contacts-2:before{content:"\ec3e"}.nc-glyph-contacts-44:before{content:"\ec3f"}.nc-glyph-contacts-45:before{content:"\ec40"}.nc-glyph-contacts:before{content:"\ec41"}.nc-glyph-contrast-2:before{content:"\ec42"}.nc-glyph-contrast:before{content:"\ec43"}.nc-glyph-controller-2:before{content:"\ec44"}.nc-glyph-controller-3:before{content:"\ec45"}.nc-glyph-controller:before{content:"\ec46"}.nc-glyph-conversion:before{content:"\ec47"}.nc-glyph-cookies:before{content:"\ec48"}.nc-glyph-copy-2:before{content:"\ec49"}.nc-glyph-copy:before{content:"\ec4a"}.nc-glyph-corn:before{content:"\ec4b"}.nc-glyph-corner-down-round:before{content:"\ec4c"}.nc-glyph-corner-down:before{content:"\ec4d"}.nc-glyph-corner-left-down:before{content:"\ec4e"}.nc-glyph-corner-left-round:before{content:"\ec4f"}.nc-glyph-corner-left:before{content:"\ec50"}.nc-glyph-corner-right-down:before{content:"\ec51"}.nc-glyph-corner-right-round:before{content:"\ec52"}.nc-glyph-corner-right:before{content:"\ec53"}.nc-glyph-corner-up-left:before{content:"\ec54"}.nc-glyph-corner-up-right:before{content:"\ec55"}.nc-glyph-corner-up-round:before{content:"\ec56"}.nc-glyph-corner-up:before{content:"\ec57"}.nc-glyph-corset:before{content:"\ec58"}.nc-glyph-countdown-34:before{content:"\ec59"}.nc-glyph-countdown-35:before{content:"\ec5a"}.nc-glyph-couple-gay:before{content:"\ec5b"}.nc-glyph-couple-lesbian:before{content:"\ec5c"}.nc-glyph-coupon:before{content:"\ec5d"}.nc-glyph-course:before{content:"\ec5e"}.nc-glyph-cow:before{content:"\ec5f"}.nc-glyph-crab:before{content:"\ec60"}.nc-glyph-cradle:before{content:"\ec61"}.nc-glyph-credit-card-in:before{content:"\ec62"}.nc-glyph-credit-card:before{content:"\ec63"}.nc-glyph-credit-locked:before{content:"\ec64"}.nc-glyph-crepe:before{content:"\ec65"}.nc-glyph-cricket:before{content:"\ec66"}.nc-glyph-croissant:before{content:"\ec67"}.nc-glyph-crop:before{content:"\ec68"}.nc-glyph-cross-down:before{content:"\ec69"}.nc-glyph-cross-horizontal:before{content:"\ec6a"}.nc-glyph-cross-left:before{content:"\ec6b"}.nc-glyph-cross-right:before{content:"\ec6c"}.nc-glyph-cross-up:before{content:"\ec6d"}.nc-glyph-cross-vertical:before{content:"\ec6e"}.nc-glyph-cross:before{content:"\ec6f"}.nc-glyph-crosshair:before{content:"\ec70"}.nc-glyph-crown:before{content:"\ec71"}.nc-glyph-crumpet:before{content:"\ec72"}.nc-glyph-cry-15:before{content:"\ec73"}.nc-glyph-cry-57:before{content:"\ec74"}.nc-glyph-css3:before{content:"\ec75"}.nc-glyph-cupcake:before{content:"\ec76"}.nc-glyph-currency-dollar:before{content:"\ec77"}.nc-glyph-currency-euro:before{content:"\ec78"}.nc-glyph-currency-exchange:before{content:"\ec79"}.nc-glyph-currency-pound:before{content:"\ec7a"}.nc-glyph-currency-yen:before{content:"\ec7b"}.nc-glyph-cursor-48:before{content:"\ec7c"}.nc-glyph-cursor-49:before{content:"\ec7d"}.nc-glyph-cursor-add:before{content:"\ec7e"}.nc-glyph-cursor-grab:before{content:"\ec7f"}.nc-glyph-cursor-load:before{content:"\ec80"}.nc-glyph-cursor-menu:before{content:"\ec81"}.nc-glyph-cursor-not-allowed:before{content:"\ec82"}.nc-glyph-cursor-pointer:before{content:"\ec83"}.nc-glyph-cursor-text:before{content:"\ec84"}.nc-glyph-curtain:before{content:"\ec85"}.nc-glyph-curve-circuit:before{content:"\ec86"}.nc-glyph-curve-directions:before{content:"\ec87"}.nc-glyph-curve-split:before{content:"\ec88"}.nc-glyph-curved-next:before{content:"\ec89"}.nc-glyph-curved-previous:before{content:"\ec8a"}.nc-glyph-customer-support:before{content:"\ec8b"}.nc-glyph-cut:before{content:"\ec8c"}.nc-glyph-cute:before{content:"\ec8d"}.nc-glyph-cutlery-75:before{content:"\ec8e"}.nc-glyph-cutlery-76:before{content:"\ec8f"}.nc-glyph-cutlery-77:before{content:"\ec90"}.nc-glyph-cutlery:before{content:"\ec91"}.nc-glyph-cyclist:before{content:"\ec92"}.nc-glyph-dart:before{content:"\ec93"}.nc-glyph-dashboard-29:before{content:"\ec94"}.nc-glyph-dashboard-30:before{content:"\ec95"}.nc-glyph-dashboard-half:before{content:"\ec96"}.nc-glyph-dashboard-level:before{content:"\ec97"}.nc-glyph-database:before{content:"\ec98"}.nc-glyph-dead-hand:before{content:"\ec99"}.nc-glyph-decoration:before{content:"\ec9a"}.nc-glyph-deer:before{content:"\ec9b"}.nc-glyph-delete-28:before{content:"\ec9c"}.nc-glyph-delete-30:before{content:"\ec9d"}.nc-glyph-delete-49:before{content:"\ec9e"}.nc-glyph-delete-50:before{content:"\ec9f"}.nc-glyph-delivery-2:before{content:"\eca0"}.nc-glyph-delivery-3:before{content:"\eca1"}.nc-glyph-delivery-fast:before{content:"\eca2"}.nc-glyph-delivery-time:before{content:"\eca3"}.nc-glyph-delivery-track:before{content:"\eca4"}.nc-glyph-delivery:before{content:"\eca5"}.nc-glyph-design-system:before{content:"\eca6"}.nc-glyph-design:before{content:"\eca7"}.nc-glyph-desk-drawer:before{content:"\eca8"}.nc-glyph-desk:before{content:"\eca9"}.nc-glyph-desktop-screen:before{content:"\ecaa"}.nc-glyph-desktop:before{content:"\ecab"}.nc-glyph-detox:before{content:"\ecac"}.nc-glyph-dev:before{content:"\ecad"}.nc-glyph-device-connection:before{content:"\ecae"}.nc-glyph-devil:before{content:"\ecaf"}.nc-glyph-diag-bottom-left:before{content:"\ecb0"}.nc-glyph-diag-bottom-right:before{content:"\ecb1"}.nc-glyph-diag-top-left:before{content:"\ecb2"}.nc-glyph-diag-top-right:before{content:"\ecb3"}.nc-glyph-diamond:before{content:"\ecb4"}.nc-glyph-dice:before{content:"\ecb5"}.nc-glyph-diet-plan:before{content:"\ecb6"}.nc-glyph-diet:before{content:"\ecb7"}.nc-glyph-direction-53:before{content:"\ecb8"}.nc-glyph-direction-56:before{content:"\ecb9"}.nc-glyph-direction:before{content:"\ecba"}.nc-glyph-directions:before{content:"\ecbb"}.nc-glyph-disabled:before{content:"\ecbc"}.nc-glyph-discord:before{content:"\ecbd"}.nc-glyph-discount-2:before{content:"\ecbe"}.nc-glyph-discount:before{content:"\ecbf"}.nc-glyph-disgusted:before{content:"\ecc0"}.nc-glyph-dish:before{content:"\ecc1"}.nc-glyph-dishwasher:before{content:"\ecc2"}.nc-glyph-disk-2:before{content:"\ecc3"}.nc-glyph-disk-reader:before{content:"\ecc4"}.nc-glyph-disk:before{content:"\ecc5"}.nc-glyph-disperse:before{content:"\ecc6"}.nc-glyph-distribute-horizontal:before{content:"\ecc7"}.nc-glyph-distribute-vertical:before{content:"\ecc8"}.nc-glyph-divider:before{content:"\ecc9"}.nc-glyph-dna-27:before{content:"\ecca"}.nc-glyph-dna-38:before{content:"\eccb"}.nc-glyph-dock-bottom:before{content:"\eccc"}.nc-glyph-dock-left:before{content:"\eccd"}.nc-glyph-dock-right:before{content:"\ecce"}.nc-glyph-dock-top:before{content:"\eccf"}.nc-glyph-dock:before{content:"\ecd0"}.nc-glyph-doctor:before{content:"\ecd1"}.nc-glyph-dog-house:before{content:"\ecd2"}.nc-glyph-dog:before{content:"\ecd3"}.nc-glyph-donut:before{content:"\ecd4"}.nc-glyph-door:before{content:"\ecd5"}.nc-glyph-dots-05:before{content:"\ecd6"}.nc-glyph-dots-06:before{content:"\ecd7"}.nc-glyph-dots-07:before{content:"\ecd8"}.nc-glyph-dots-download:before{content:"\ecd9"}.nc-glyph-dots-upload:before{content:"\ecda"}.nc-glyph-dots:before{content:"\ecdb"}.nc-glyph-double-left:before{content:"\ecdc"}.nc-glyph-double-right:before{content:"\ecdd"}.nc-glyph-double-tap:before{content:"\ecde"}.nc-glyph-download-2:before{content:"\ecdf"}.nc-glyph-download-3:before{content:"\ece0"}.nc-glyph-download:before{content:"\ece1"}.nc-glyph-drag-21:before{content:"\ece2"}.nc-glyph-drag-31:before{content:"\ece3"}.nc-glyph-drag-down:before{content:"\ece4"}.nc-glyph-drag-left:before{content:"\ece5"}.nc-glyph-drag-right:before{content:"\ece6"}.nc-glyph-drag-up:before{content:"\ece7"}.nc-glyph-drag:before{content:"\ece8"}.nc-glyph-drawer-2:before{content:"\ece9"}.nc-glyph-drawer:before{content:"\ecea"}.nc-glyph-dress-man:before{content:"\eceb"}.nc-glyph-dress-woman:before{content:"\ecec"}.nc-glyph-drink-2:before{content:"\ecee"}.nc-glyph-drink-list:before{content:"\eced"}.nc-glyph-drink:before{content:"\ecef"}.nc-glyph-drop-15:before{content:"\ecf0"}.nc-glyph-drop:before{content:"\ecf1"}.nc-glyph-drops:before{content:"\ecf3"}.nc-glyph-dumbbells:before{content:"\ecf2"}.nc-glyph-eclipse:before{content:"\ecf4"}.nc-glyph-edit-2:before{content:"\ecf5"}.nc-glyph-edit-71:before{content:"\ecf6"}.nc-glyph-edit-72:before{content:"\ecf7"}.nc-glyph-edit-73:before{content:"\ecf8"}.nc-glyph-edit-74:before{content:"\ecf9"}.nc-glyph-edit-75:before{content:"\ecfa"}.nc-glyph-edit-76:before{content:"\ecfb"}.nc-glyph-edit-77:before{content:"\ecfc"}.nc-glyph-edit-78:before{content:"\ecfd"}.nc-glyph-edit-color:before{content:"\ecfe"}.nc-glyph-edit-contrast-42:before{content:"\ecff"}.nc-glyph-edit-contrast-43:before{content:"\ed00"}.nc-glyph-edit-saturation:before{content:"\ed01"}.nc-glyph-edit:before{content:"\ed02"}.nc-glyph-egg-38:before{content:"\ed03"}.nc-glyph-egg-39:before{content:"\ed04"}.nc-glyph-egg:before{content:"\ed05"}.nc-glyph-eject:before{content:"\ed06"}.nc-glyph-email-83:before{content:"\ed07"}.nc-glyph-email-84:before{content:"\ed08"}.nc-glyph-email-85:before{content:"\ed09"}.nc-glyph-energy-drink-2:before{content:"\ed0a"}.nc-glyph-energy-drink:before{content:"\ed0b"}.nc-glyph-energy-supplement:before{content:"\ed0c"}.nc-glyph-energy:before{content:"\ed0d"}.nc-glyph-engine-start:before{content:"\ed0e"}.nc-glyph-engine:before{content:"\ed0f"}.nc-glyph-enlarge-45:before{content:"\ed10"}.nc-glyph-enlarge-46:before{content:"\ed11"}.nc-glyph-enlarge-57:before{content:"\ed12"}.nc-glyph-enlarge-58:before{content:"\ed13"}.nc-glyph-enlarge-59:before{content:"\ed14"}.nc-glyph-enlarge-circle:before{content:"\ed15"}.nc-glyph-enlarge-diagonal-43:before{content:"\ed16"}.nc-glyph-enlarge-diagonal-44:before{content:"\ed17"}.nc-glyph-enlarge-horizontal:before{content:"\ed18"}.nc-glyph-enlarge-vertical:before{content:"\ed19"}.nc-glyph-eraser-32:before{content:"\ed1a"}.nc-glyph-eraser-33:before{content:"\ed1b"}.nc-glyph-eraser-46:before{content:"\ed1c"}.nc-glyph-event-confirm:before{content:"\ed1d"}.nc-glyph-event-create:before{content:"\ed1e"}.nc-glyph-exchange:before{content:"\ed1f"}.nc-glyph-exclamation:before{content:"\ed20"}.nc-glyph-explore-2:before{content:"\ed21"}.nc-glyph-explore-user:before{content:"\ed22"}.nc-glyph-explore:before{content:"\ed23"}.nc-glyph-export:before{content:"\ed24"}.nc-glyph-eye-17:before{content:"\ed25"}.nc-glyph-eye-19:before{content:"\ed26"}.nc-glyph-eye-ban-18:before{content:"\ed27"}.nc-glyph-eye-ban-20:before{content:"\ed28"}.nc-glyph-factory:before{content:"\ed29"}.nc-glyph-fahrenheit:before{content:"\ed2a"}.nc-glyph-family:before{content:"\ed2b"}.nc-glyph-fat-add:before{content:"\ed2c"}.nc-glyph-fat-delete:before{content:"\ed2d"}.nc-glyph-fat-remove:before{content:"\ed2e"}.nc-glyph-fav-remove:before{content:"\ed2f"}.nc-glyph-favourite-28:before{content:"\ed30"}.nc-glyph-favourite-31:before{content:"\ed31"}.nc-glyph-favourite-add-29:before{content:"\ed32"}.nc-glyph-favourite-add-32:before{content:"\ed33"}.nc-glyph-favourite-remove-30:before{content:"\ed34"}.nc-glyph-favourite-remove-33:before{content:"\ed35"}.nc-glyph-fencing:before{content:"\ed36"}.nc-glyph-file-add:before{content:"\ed37"}.nc-glyph-file-delete:before{content:"\ed38"}.nc-glyph-file-download-87:before{content:"\ed39"}.nc-glyph-file-download-89:before{content:"\ed3a"}.nc-glyph-file-download-94:before{content:"\ed3b"}.nc-glyph-file-upload-86:before{content:"\ed3c"}.nc-glyph-file-upload-88:before{content:"\ed3d"}.nc-glyph-file-upload-93:before{content:"\ed3e"}.nc-glyph-filter-check:before{content:"\ed3f"}.nc-glyph-filter-organization:before{content:"\ed40"}.nc-glyph-filter-remove:before{content:"\ed41"}.nc-glyph-filter:before{content:"\ed42"}.nc-glyph-fire:before{content:"\ed43"}.nc-glyph-firewall:before{content:"\ed44"}.nc-glyph-fish:before{content:"\ed45"}.nc-glyph-fishbone:before{content:"\ed46"}.nc-glyph-fishing:before{content:"\ed47"}.nc-glyph-fist:before{content:"\ed48"}.nc-glyph-fit-horizontal:before{content:"\ed49"}.nc-glyph-fit-vertical:before{content:"\ed4a"}.nc-glyph-flag-complex:before{content:"\ed4b"}.nc-glyph-flag-diagonal-33:before{content:"\ed4c"}.nc-glyph-flag-diagonal-34:before{content:"\ed4d"}.nc-glyph-flag-finish:before{content:"\ed4e"}.nc-glyph-flag-points-31:before{content:"\ed4f"}.nc-glyph-flag-points-32:before{content:"\ed50"}.nc-glyph-flag-simple:before{content:"\ed51"}.nc-glyph-flag-triangle:before{content:"\ed52"}.nc-glyph-flag:before{content:"\ed53"}.nc-glyph-flame:before{content:"\ed54"}.nc-glyph-flash-21:before{content:"\ed55"}.nc-glyph-flash-24:before{content:"\ed56"}.nc-glyph-flash-29:before{content:"\ed57"}.nc-glyph-flash-auto-22:before{content:"\ed58"}.nc-glyph-flash-auto-25:before{content:"\ed59"}.nc-glyph-flash-off-23:before{content:"\ed5a"}.nc-glyph-flash-off-26:before{content:"\ed5b"}.nc-glyph-flask-2:before{content:"\ed5c"}.nc-glyph-flask:before{content:"\ed5d"}.nc-glyph-flick-down:before{content:"\ed5e"}.nc-glyph-flick-left:before{content:"\ed5f"}.nc-glyph-flick-right:before{content:"\ed60"}.nc-glyph-flick-up:before{content:"\ed61"}.nc-glyph-flip-horizontal:before{content:"\ed63"}.nc-glyph-flip-vertical:before{content:"\ed62"}.nc-glyph-flip:before{content:"\ed64"}.nc-glyph-flower-05:before{content:"\ed66"}.nc-glyph-flower-06:before{content:"\ed65"}.nc-glyph-flower-07:before{content:"\ed67"}.nc-glyph-focus-32:before{content:"\ed68"}.nc-glyph-focus-38:before{content:"\ed69"}.nc-glyph-focus-40:before{content:"\ed6a"}.nc-glyph-focus-circle:before{content:"\ed6b"}.nc-glyph-focus:before{content:"\ed6c"}.nc-glyph-fog:before{content:"\ed6d"}.nc-glyph-folder-13:before{content:"\ed6e"}.nc-glyph-folder-14:before{content:"\ed6f"}.nc-glyph-folder-15:before{content:"\ed70"}.nc-glyph-folder-16:before{content:"\ed73"}.nc-glyph-folder-17:before{content:"\ed71"}.nc-glyph-folder-18:before{content:"\ed72"}.nc-glyph-folder-19:before{content:"\ed74"}.nc-glyph-folder-add:before{content:"\ed75"}.nc-glyph-folder-audio:before{content:"\ed76"}.nc-glyph-folder-bookmark:before{content:"\ed77"}.nc-glyph-folder-chart-bar:before{content:"\ed78"}.nc-glyph-folder-chart-pie:before{content:"\ed79"}.nc-glyph-folder-check:before{content:"\ed7a"}.nc-glyph-folder-cloud:before{content:"\ed7b"}.nc-glyph-folder-dev:before{content:"\ed7c"}.nc-glyph-folder-download:before{content:"\ed7d"}.nc-glyph-folder-edit:before{content:"\ed7e"}.nc-glyph-folder-exclamation:before{content:"\ed7f"}.nc-glyph-folder-gallery:before{content:"\ed80"}.nc-glyph-folder-heart:before{content:"\ed81"}.nc-glyph-folder-image:before{content:"\ed82"}.nc-glyph-folder-info:before{content:"\ed83"}.nc-glyph-folder-link:before{content:"\ed84"}.nc-glyph-folder-locked:before{content:"\ed85"}.nc-glyph-folder-money:before{content:"\ed86"}.nc-glyph-folder-music:before{content:"\ed87"}.nc-glyph-folder-no-access:before{content:"\ed88"}.nc-glyph-folder-play:before{content:"\ed89"}.nc-glyph-folder-question:before{content:"\ed8a"}.nc-glyph-folder-refresh:before{content:"\ed8b"}.nc-glyph-folder-remove:before{content:"\ed8c"}.nc-glyph-folder-search:before{content:"\ed8d"}.nc-glyph-folder-settings-81:before{content:"\ed8e"}.nc-glyph-folder-settings-97:before{content:"\ed8f"}.nc-glyph-folder-shared:before{content:"\ed90"}.nc-glyph-folder-star:before{content:"\ed91"}.nc-glyph-folder-time:before{content:"\ed92"}.nc-glyph-folder-upload:before{content:"\ed93"}.nc-glyph-folder-user:before{content:"\ed94"}.nc-glyph-folder-vector:before{content:"\ed95"}.nc-glyph-food-dog:before{content:"\ed96"}.nc-glyph-food-scale:before{content:"\ed97"}.nc-glyph-food:before{content:"\ed98"}.nc-glyph-football-headguard:before{content:"\ed99"}.nc-glyph-forecast:before{content:"\ed9a"}.nc-glyph-forest:before{content:"\ed9b"}.nc-glyph-fork-round:before{content:"\ed9c"}.nc-glyph-fork:before{content:"\ed9d"}.nc-glyph-form:before{content:"\ed9e"}.nc-glyph-format-left:before{content:"\ed9f"}.nc-glyph-format-right:before{content:"\eda0"}.nc-glyph-forward:before{content:"\eda1"}.nc-glyph-frame-12:before{content:"\eda2"}.nc-glyph-frame-41:before{content:"\eda3"}.nc-glyph-frame:before{content:"\eda4"}.nc-glyph-frankenstein:before{content:"\eda5"}.nc-glyph-fridge:before{content:"\eda6"}.nc-glyph-fuel-2:before{content:"\eda7"}.nc-glyph-fuel-electric:before{content:"\eda8"}.nc-glyph-fuel:before{content:"\eda9"}.nc-glyph-full-screen:before{content:"\edaa"}.nc-glyph-fullscreen-70:before{content:"\edab"}.nc-glyph-fullscreen-71:before{content:"\edac"}.nc-glyph-fullscreen-76:before{content:"\edad"}.nc-glyph-fullscreen-77:before{content:"\edae"}.nc-glyph-fullscreen-double-74:before{content:"\edaf"}.nc-glyph-fullscreen-double-75:before{content:"\edb0"}.nc-glyph-fullscreen-split-72:before{content:"\edb1"}.nc-glyph-fullscreen-split-73:before{content:"\edb2"}.nc-glyph-fullsize:before{content:"\edb3"}.nc-glyph-funnel-39:before{content:"\edb4"}.nc-glyph-funnel-40:before{content:"\edb5"}.nc-glyph-funnel-41:before{content:"\edb6"}.nc-glyph-gallery:before{content:"\edb7"}.nc-glyph-gantt:before{content:"\edb8"}.nc-glyph-garlic:before{content:"\edb9"}.nc-glyph-ghost-2:before{content:"\edba"}.nc-glyph-ghost:before{content:"\edbb"}.nc-glyph-gift-2:before{content:"\edbc"}.nc-glyph-gift-exchange:before{content:"\edbd"}.nc-glyph-gift:before{content:"\edbe"}.nc-glyph-git-commit:before{content:"\edbf"}.nc-glyph-glass-water:before{content:"\edc0"}.nc-glyph-glass:before{content:"\edc1"}.nc-glyph-glasses-2:before{content:"\edc2"}.nc-glyph-glasses:before{content:"\edc3"}.nc-glyph-globe-2:before{content:"\edc4"}.nc-glyph-globe:before{content:"\edc5"}.nc-glyph-glove:before{content:"\edc6"}.nc-glyph-gloves:before{content:"\edc7"}.nc-glyph-goal-64:before{content:"\edc8"}.nc-glyph-goal-65:before{content:"\edc9"}.nc-glyph-gold:before{content:"\edca"}.nc-glyph-golf:before{content:"\edcb"}.nc-glyph-gps:before{content:"\edcc"}.nc-glyph-grab:before{content:"\edcd"}.nc-glyph-gradient:before{content:"\edce"}.nc-glyph-grammar-check:before{content:"\edcf"}.nc-glyph-grape:before{content:"\edd0"}.nc-glyph-grave:before{content:"\edd1"}.nc-glyph-grid-45:before{content:"\edd2"}.nc-glyph-grid-46:before{content:"\edd3"}.nc-glyph-grid-48:before{content:"\edd4"}.nc-glyph-grid-49:before{content:"\edd5"}.nc-glyph-grid-50:before{content:"\edd6"}.nc-glyph-grid-square:before{content:"\edd7"}.nc-glyph-grid-system:before{content:"\edd8"}.nc-glyph-grid:before{content:"\edd9"}.nc-glyph-group:before{content:"\edda"}.nc-glyph-guitar:before{content:"\eddb"}.nc-glyph-hammer:before{content:"\eddc"}.nc-glyph-hand-card:before{content:"\eddd"}.nc-glyph-handout:before{content:"\edde"}.nc-glyph-handshake:before{content:"\eddf"}.nc-glyph-hanger-clothes:before{content:"\ede0"}.nc-glyph-hanger:before{content:"\ede1"}.nc-glyph-hannibal:before{content:"\ede2"}.nc-glyph-happy-sun:before{content:"\ede3"}.nc-glyph-hat-2:before{content:"\ede4"}.nc-glyph-hat-3:before{content:"\ede5"}.nc-glyph-hat-top:before{content:"\ede6"}.nc-glyph-hat:before{content:"\ede7"}.nc-glyph-hazelnut:before{content:"\ede8"}.nc-glyph-hdmi:before{content:"\ede9"}.nc-glyph-headphone:before{content:"\edea"}.nc-glyph-headphones-2:before{content:"\edeb"}.nc-glyph-headphones-mic:before{content:"\edec"}.nc-glyph-headphones:before{content:"\eded"}.nc-glyph-headset:before{content:"\edee"}.nc-glyph-heart-2:before{content:"\edef"}.nc-glyph-heart-add:before{content:"\edf0"}.nc-glyph-heart-remove:before{content:"\edf1"}.nc-glyph-heart:before{content:"\edf2"}.nc-glyph-heartbeat:before{content:"\edf3"}.nc-glyph-heater:before{content:"\edf4"}.nc-glyph-height:before{content:"\edf5"}.nc-glyph-helicopter:before{content:"\edf6"}.nc-glyph-helmet-2:before{content:"\edf7"}.nc-glyph-helmet:before{content:"\edf8"}.nc-glyph-hierarchy-53:before{content:"\edf9"}.nc-glyph-hierarchy-54:before{content:"\edfa"}.nc-glyph-hierarchy-55:before{content:"\edfb"}.nc-glyph-hierarchy-56:before{content:"\edfc"}.nc-glyph-hit-down:before{content:"\edfd"}.nc-glyph-hit-left:before{content:"\edfe"}.nc-glyph-hit-right:before{content:"\edff"}.nc-glyph-hit-up:before{content:"\ee00"}.nc-glyph-hob:before{content:"\ee01"}.nc-glyph-hockey:before{content:"\ee02"}.nc-glyph-hold:before{content:"\ee03"}.nc-glyph-home-2:before{content:"\ee04"}.nc-glyph-home-51:before{content:"\ee05"}.nc-glyph-home-52:before{content:"\ee06"}.nc-glyph-home-minimal:before{content:"\ee07"}.nc-glyph-home-search:before{content:"\ee08"}.nc-glyph-home-simple:before{content:"\ee09"}.nc-glyph-home:before{content:"\ee0a"}.nc-glyph-honey:before{content:"\ee0b"}.nc-glyph-hoodie:before{content:"\ee0c"}.nc-glyph-hospital-32:before{content:"\ee0d"}.nc-glyph-hospital-33:before{content:"\ee0e"}.nc-glyph-hospital-34:before{content:"\ee0f"}.nc-glyph-hot-dog:before{content:"\ee10"}.nc-glyph-hotel-bell:before{content:"\ee11"}.nc-glyph-hotel-symbol:before{content:"\ee12"}.nc-glyph-hotel:before{content:"\ee13"}.nc-glyph-hourglass:before{content:"\ee14"}.nc-glyph-html5:before{content:"\ee15"}.nc-glyph-humidity-26:before{content:"\ee16"}.nc-glyph-humidity-52:before{content:"\ee17"}.nc-glyph-hurricane-44:before{content:"\ee18"}.nc-glyph-hurricane-45:before{content:"\ee19"}.nc-glyph-hut:before{content:"\ee1a"}.nc-glyph-hybrid:before{content:"\ee1b"}.nc-glyph-ice-cream-22:before{content:"\ee1c"}.nc-glyph-ice-cream-72:before{content:"\ee1d"}.nc-glyph-ice-cream:before{content:"\ee1e"}.nc-glyph-igloo:before{content:"\ee1f"}.nc-glyph-image-01:before{content:"\ee20"}.nc-glyph-image-02:before{content:"\ee21"}.nc-glyph-image-05:before{content:"\ee22"}.nc-glyph-image-2:before{content:"\ee23"}.nc-glyph-image-3:before{content:"\ee24"}.nc-glyph-image-add:before{content:"\ee25"}.nc-glyph-image-delete:before{content:"\ee26"}.nc-glyph-image-location:before{content:"\ee27"}.nc-glyph-image:before{content:"\ee28"}.nc-glyph-infinite:before{content:"\ee29"}.nc-glyph-info:before{content:"\ee2a"}.nc-glyph-input-12:before{content:"\ee2b"}.nc-glyph-input-21:before{content:"\ee2c"}.nc-glyph-intestine:before{content:"\ee2d"}.nc-glyph-invert:before{content:"\ee2e"}.nc-glyph-iron-2:before{content:"\ee2f"}.nc-glyph-iron-dont:before{content:"\ee30"}.nc-glyph-iron:before{content:"\ee31"}.nc-glyph-istanbul:before{content:"\ee32"}.nc-glyph-italic:before{content:"\ee33"}.nc-glyph-jam:before{content:"\ee34"}.nc-glyph-jeans-41:before{content:"\ee35"}.nc-glyph-jeans-43:before{content:"\ee36"}.nc-glyph-jeans-pocket:before{content:"\ee37"}.nc-glyph-jelly:before{content:"\ee38"}.nc-glyph-jellyfish:before{content:"\ee39"}.nc-glyph-journey-04:before{content:"\ee3a"}.nc-glyph-journey-05:before{content:"\ee3b"}.nc-glyph-journey-06:before{content:"\ee3c"}.nc-glyph-journey-07:before{content:"\ee3d"}.nc-glyph-journey-08:before{content:"\ee3e"}.nc-glyph-juice:before{content:"\ee3f"}.nc-glyph-kettle:before{content:"\ee40"}.nc-glyph-kettlebell:before{content:"\ee41"}.nc-glyph-key-25:before{content:"\ee42"}.nc-glyph-key-26:before{content:"\ee43"}.nc-glyph-keyboard-hide:before{content:"\ee44"}.nc-glyph-keyboard-mouse:before{content:"\ee45"}.nc-glyph-keyboard-wifi:before{content:"\ee46"}.nc-glyph-keyboard-wireless:before{content:"\ee47"}.nc-glyph-keyboard:before{content:"\ee48"}.nc-glyph-kid-2:before{content:"\ee49"}.nc-glyph-kid:before{content:"\ee4a"}.nc-glyph-kiss:before{content:"\ee4b"}.nc-glyph-kitchen-fan:before{content:"\ee4c"}.nc-glyph-kitchen:before{content:"\ee4d"}.nc-glyph-kiwi:before{content:"\ee4e"}.nc-glyph-knife:before{content:"\ee4f"}.nc-glyph-knob:before{content:"\ee50"}.nc-glyph-l-add:before{content:"\ee51"}.nc-glyph-l-check:before{content:"\ee52"}.nc-glyph-l-circle:before{content:"\ee53"}.nc-glyph-l-circles:before{content:"\ee54"}.nc-glyph-l-location:before{content:"\ee55"}.nc-glyph-l-remove:before{content:"\ee56"}.nc-glyph-l-search:before{content:"\ee57"}.nc-glyph-l-security:before{content:"\ee58"}.nc-glyph-l-settings:before{content:"\ee59"}.nc-glyph-l-sync:before{content:"\ee5a"}.nc-glyph-l-system-update:before{content:"\ee5b"}.nc-glyph-lab:before{content:"\ee5c"}.nc-glyph-lamp-2:before{content:"\ee5d"}.nc-glyph-lamp-3:before{content:"\ee5e"}.nc-glyph-lamp-floor:before{content:"\ee5f"}.nc-glyph-lamp:before{content:"\ee60"}.nc-glyph-language:before{content:"\ee61"}.nc-glyph-laptop-1:before{content:"\ee62"}.nc-glyph-laptop-2:before{content:"\ee63"}.nc-glyph-laptop-71:before{content:"\ee64"}.nc-glyph-laptop-72:before{content:"\ee65"}.nc-glyph-laptop:before{content:"\ee66"}.nc-glyph-laugh-17:before{content:"\ee67"}.nc-glyph-laugh-35:before{content:"\ee68"}.nc-glyph-launch-11:before{content:"\ee69"}.nc-glyph-launch-47:before{content:"\ee6a"}.nc-glyph-law:before{content:"\ee6b"}.nc-glyph-layers-2:before{content:"\ee6c"}.nc-glyph-layers-3:before{content:"\ee6d"}.nc-glyph-layers:before{content:"\ee6e"}.nc-glyph-layout-11:before{content:"\ee6f"}.nc-glyph-layout-25:before{content:"\ee70"}.nc-glyph-leaf-36:before{content:"\ee71"}.nc-glyph-leaf-38:before{content:"\ee72"}.nc-glyph-leaf-80:before{content:"\ee73"}.nc-glyph-leaf-81:before{content:"\ee74"}.nc-glyph-leaf-edit:before{content:"\ee75"}.nc-glyph-lemon-slice:before{content:"\ee76"}.nc-glyph-lemon:before{content:"\ee77"}.nc-glyph-lens-31:before{content:"\ee78"}.nc-glyph-lens-56:before{content:"\ee79"}.nc-glyph-library:before{content:"\ee7a"}.nc-glyph-light-2:before{content:"\ee7b"}.nc-glyph-light-3:before{content:"\ee7c"}.nc-glyph-light-traffic:before{content:"\ee7d"}.nc-glyph-light:before{content:"\ee7e"}.nc-glyph-lighter:before{content:"\ee7f"}.nc-glyph-lighthouse:before{content:"\ee80"}.nc-glyph-like-2:before{content:"\ee81"}.nc-glyph-like-no:before{content:"\ee82"}.nc-glyph-like:before{content:"\ee83"}.nc-glyph-line-height:before{content:"\ee84"}.nc-glyph-lines:before{content:"\ee85"}.nc-glyph-link-2:before{content:"\ee86"}.nc-glyph-link-66:before{content:"\ee87"}.nc-glyph-link-67:before{content:"\ee88"}.nc-glyph-link-68:before{content:"\ee89"}.nc-glyph-link-69:before{content:"\ee8a"}.nc-glyph-link-71:before{content:"\ee8b"}.nc-glyph-link-72:before{content:"\ee8c"}.nc-glyph-link-broken-70:before{content:"\ee8d"}.nc-glyph-link-broken-73:before{content:"\ee8e"}.nc-glyph-link:before{content:"\ee8f"}.nc-glyph-list-bullet:before{content:"\ee90"}.nc-glyph-list-numbers:before{content:"\ee91"}.nc-glyph-list:before{content:"\ee92"}.nc-glyph-lobster:before{content:"\ee93"}.nc-glyph-lock-circle-open:before{content:"\ee94"}.nc-glyph-lock-circle:before{content:"\ee95"}.nc-glyph-lock-landscape:before{content:"\ee96"}.nc-glyph-lock-open:before{content:"\ee97"}.nc-glyph-lock-portrait:before{content:"\ee98"}.nc-glyph-lock:before{content:"\ee99"}.nc-glyph-locked:before{content:"\ee9a"}.nc-glyph-log-in:before{content:"\ee9b"}.nc-glyph-log-out-2:before{content:"\ee9c"}.nc-glyph-log-out:before{content:"\ee9d"}.nc-glyph-logo-500px:before{content:"\ee9e"}.nc-glyph-logo-angellist:before{content:"\ee9f"}.nc-glyph-logo-behance:before{content:"\eea0"}.nc-glyph-logo-blogger:before{content:"\eea1"}.nc-glyph-logo-buffer:before{content:"\eea2"}.nc-glyph-logo-buysellads:before{content:"\eea3"}.nc-glyph-logo-codepen:before{content:"\eea4"}.nc-glyph-logo-creative-market:before{content:"\eea5"}.nc-glyph-logo-crunchbase:before{content:"\eea6"}.nc-glyph-logo-deviantart:before{content:"\eea7"}.nc-glyph-logo-dribbble:before{content:"\eea8"}.nc-glyph-logo-dropbox:before{content:"\eea9"}.nc-glyph-logo-envato:before{content:"\eeaa"}.nc-glyph-logo-evernote:before{content:"\eeab"}.nc-glyph-logo-facebook:before{content:"\eeac"}.nc-glyph-logo-fb-simple:before{content:"\eead"}.nc-glyph-logo-feedly:before{content:"\eeae"}.nc-glyph-logo-flickr:before{content:"\eeaf"}.nc-glyph-logo-github:before{content:"\eeb0"}.nc-glyph-logo-google-plus:before{content:"\eeb1"}.nc-glyph-logo-instagram:before{content:"\eeb2"}.nc-glyph-logo-lastfm:before{content:"\eeb3"}.nc-glyph-logo-linkedin:before{content:"\eeb4"}.nc-glyph-logo-medium:before{content:"\eeb5"}.nc-glyph-logo-meetup:before{content:"\eeb6"}.nc-glyph-logo-messenger:before{content:"\eeb7"}.nc-glyph-logo-myspace:before{content:"\eeb8"}.nc-glyph-logo-paypal:before{content:"\eeb9"}.nc-glyph-logo-pinterest:before{content:"\eeba"}.nc-glyph-logo-product-hunt:before{content:"\eebb"}.nc-glyph-logo-qq:before{content:"\eebc"}.nc-glyph-logo-reddit:before{content:"\eebd"}.nc-glyph-logo-rss:before{content:"\eebe"}.nc-glyph-logo-shopify:before{content:"\eebf"}.nc-glyph-logo-skype:before{content:"\eec0"}.nc-glyph-logo-slack:before{content:"\eec1"}.nc-glyph-logo-soundcloud:before{content:"\eec2"}.nc-glyph-logo-spotify:before{content:"\eec3"}.nc-glyph-logo-squarespace:before{content:"\eec4"}.nc-glyph-logo-trello:before{content:"\eec5"}.nc-glyph-logo-tumblr:before{content:"\eec6"}.nc-glyph-logo-twitter:before{content:"\eec7"}.nc-glyph-logo-vimeo:before{content:"\eec8"}.nc-glyph-logo-vine:before{content:"\eec9"}.nc-glyph-logo-vk:before{content:"\eeca"}.nc-glyph-logo-wechat:before{content:"\eecb"}.nc-glyph-logo-weibo:before{content:"\eecc"}.nc-glyph-logo-whatsapp:before{content:"\eecd"}.nc-glyph-logo-wikipedia:before{content:"\eece"}.nc-glyph-logo-wordpress:before{content:"\eecf"}.nc-glyph-logo-yelp:before{content:"\eed0"}.nc-glyph-logo-youtube:before{content:"\eed1"}.nc-glyph-logout:before{content:"\eed2"}.nc-glyph-lollipop:before{content:"\eed3"}.nc-glyph-london:before{content:"\eed4"}.nc-glyph-long-sleeve:before{content:"\eed5"}.nc-glyph-loop-30:before{content:"\eed6"}.nc-glyph-loop-34:before{content:"\eed7"}.nc-glyph-loop-82:before{content:"\eed8"}.nc-glyph-loop-83:before{content:"\eed9"}.nc-glyph-loop:before{content:"\eeda"}.nc-glyph-luggage:before{content:"\eedb"}.nc-glyph-lungs:before{content:"\eedc"}.nc-glyph-m-add:before{content:"\eedd"}.nc-glyph-m-check:before{content:"\eede"}.nc-glyph-m-delete:before{content:"\eedf"}.nc-glyph-m-edit:before{content:"\eee0"}.nc-glyph-m-heart:before{content:"\eee1"}.nc-glyph-m-location:before{content:"\eee2"}.nc-glyph-m-remove:before{content:"\eee3"}.nc-glyph-m-search:before{content:"\eee4"}.nc-glyph-m-security:before{content:"\eee5"}.nc-glyph-m-settings:before{content:"\eee6"}.nc-glyph-m-share:before{content:"\eee7"}.nc-glyph-m-star:before{content:"\eee8"}.nc-glyph-m-sync:before{content:"\eee9"}.nc-glyph-m-time:before{content:"\eeea"}.nc-glyph-m-update:before{content:"\eeeb"}.nc-glyph-macro:before{content:"\eeec"}.nc-glyph-mad-12:before{content:"\eeed"}.nc-glyph-mad-58:before{content:"\eeee"}.nc-glyph-magnet:before{content:"\eeef"}.nc-glyph-makeup:before{content:"\eef0"}.nc-glyph-malicious:before{content:"\eef1"}.nc-glyph-man-20:before{content:"\eef2"}.nc-glyph-man-23:before{content:"\eef3"}.nc-glyph-man-down:before{content:"\eef4"}.nc-glyph-man-glasses:before{content:"\eef5"}.nc-glyph-man-up:before{content:"\eef6"}.nc-glyph-man:before{content:"\eef7"}.nc-glyph-manga-62:before{content:"\eef8"}.nc-glyph-manga-63:before{content:"\eef9"}.nc-glyph-map-big:before{content:"\eefa"}.nc-glyph-map-compass:before{content:"\eefb"}.nc-glyph-map-gps:before{content:"\eefc"}.nc-glyph-map-marker:before{content:"\eefd"}.nc-glyph-map-pin:before{content:"\eefe"}.nc-glyph-map:before{content:"\eeff"}.nc-glyph-margin-left:before{content:"\ef00"}.nc-glyph-margin-right:before{content:"\ef01"}.nc-glyph-marker-2:before{content:"\ef02"}.nc-glyph-marker-3:before{content:"\ef03"}.nc-glyph-marker:before{content:"\ef04"}.nc-glyph-market-music:before{content:"\ef05"}.nc-glyph-market-play:before{content:"\ef06"}.nc-glyph-mask-oval:before{content:"\ef07"}.nc-glyph-mask-rect:before{content:"\ef08"}.nc-glyph-matches:before{content:"\ef09"}.nc-glyph-math:before{content:"\ef0a"}.nc-glyph-measure-02:before{content:"\ef0b"}.nc-glyph-measure-17:before{content:"\ef0c"}.nc-glyph-measure-big:before{content:"\ef0d"}.nc-glyph-measuring-cup:before{content:"\ef0e"}.nc-glyph-meat-spit:before{content:"\ef0f"}.nc-glyph-meeting:before{content:"\ef10"}.nc-glyph-menu-34:before{content:"\ef11"}.nc-glyph-menu-35:before{content:"\ef12"}.nc-glyph-menu-bold:before{content:"\ef13"}.nc-glyph-menu-dots:before{content:"\ef14"}.nc-glyph-menu-left:before{content:"\ef15"}.nc-glyph-menu-right:before{content:"\ef16"}.nc-glyph-menu-square:before{content:"\ef17"}.nc-glyph-menu:before{content:"\ef18"}.nc-glyph-merge-2:before{content:"\ef19"}.nc-glyph-merge-round:before{content:"\ef1a"}.nc-glyph-merge:before{content:"\ef1b"}.nc-glyph-message:before{content:"\ef1c"}.nc-glyph-metrics:before{content:"\ef1d"}.nc-glyph-mic-2:before{content:"\ef1e"}.nc-glyph-mic:before{content:"\ef1f"}.nc-glyph-mickey-mouse:before{content:"\ef20"}.nc-glyph-microscope:before{content:"\ef21"}.nc-glyph-microsoft:before{content:"\ef22"}.nc-glyph-microwave:before{content:"\ef23"}.nc-glyph-milk:before{content:"\ef24"}.nc-glyph-minimal-down:before{content:"\ef25"}.nc-glyph-minimal-left:before{content:"\ef26"}.nc-glyph-minimal-right:before{content:"\ef27"}.nc-glyph-minimal-up:before{content:"\ef28"}.nc-glyph-mirror-2:before{content:"\ef29"}.nc-glyph-mirror:before{content:"\ef2a"}.nc-glyph-mistletoe:before{content:"\ef2b"}.nc-glyph-mixer:before{content:"\ef2c"}.nc-glyph-mobile-button:before{content:"\ef2d"}.nc-glyph-mobile-camera:before{content:"\ef2e"}.nc-glyph-mobile-card:before{content:"\ef2f"}.nc-glyph-mobile-contact:before{content:"\ef30"}.nc-glyph-mobile-design:before{content:"\ef31"}.nc-glyph-mobile-dev:before{content:"\ef32"}.nc-glyph-mobile-landscape:before{content:"\ef33"}.nc-glyph-mobile-recharger-08:before{content:"\ef34"}.nc-glyph-mobile-recharger-09:before{content:"\ef35"}.nc-glyph-mobile-toolbar:before{content:"\ef36"}.nc-glyph-mobile:before{content:"\ef37"}.nc-glyph-moka:before{content:"\ef38"}.nc-glyph-molecule-39:before{content:"\ef39"}.nc-glyph-molecule-40:before{content:"\ef3a"}.nc-glyph-molecule:before{content:"\ef3b"}.nc-glyph-money-11:before{content:"\ef3c"}.nc-glyph-money-12:before{content:"\ef3d"}.nc-glyph-money-13:before{content:"\ef3e"}.nc-glyph-money-bag:before{content:"\ef3f"}.nc-glyph-money-coins:before{content:"\ef40"}.nc-glyph-money-growth:before{content:"\ef41"}.nc-glyph-money-time:before{content:"\ef42"}.nc-glyph-money:before{content:"\ef43"}.nc-glyph-monster:before{content:"\ef44"}.nc-glyph-moon-cloud-drop:before{content:"\ef45"}.nc-glyph-moon-cloud-fog:before{content:"\ef46"}.nc-glyph-moon-cloud-hail:before{content:"\ef47"}.nc-glyph-moon-cloud-light:before{content:"\ef48"}.nc-glyph-moon-cloud-rain:before{content:"\ef49"}.nc-glyph-moon-cloud-snow-61:before{content:"\ef4a"}.nc-glyph-moon-cloud-snow-62:before{content:"\ef4b"}.nc-glyph-moon-fog:before{content:"\ef4c"}.nc-glyph-moon-full:before{content:"\ef4d"}.nc-glyph-moon-stars:before{content:"\ef4e"}.nc-glyph-moon:before{content:"\ef4f"}.nc-glyph-mosque:before{content:"\ef50"}.nc-glyph-moto:before{content:"\ef51"}.nc-glyph-mountain:before{content:"\ef52"}.nc-glyph-mouse-08:before{content:"\ef53"}.nc-glyph-mouse-09:before{content:"\ef54"}.nc-glyph-mouse-10:before{content:"\ef55"}.nc-glyph-mouse:before{content:"\ef56"}.nc-glyph-move-05:before{content:"\ef57"}.nc-glyph-move-06:before{content:"\ef58"}.nc-glyph-move-92:before{content:"\ef59"}.nc-glyph-move-down-2:before{content:"\ef5a"}.nc-glyph-move-down-right:before{content:"\ef5b"}.nc-glyph-move-down:before{content:"\ef5c"}.nc-glyph-move-left:before{content:"\ef5d"}.nc-glyph-move-right:before{content:"\ef5e"}.nc-glyph-move-up-2:before{content:"\ef5f"}.nc-glyph-move-up-left:before{content:"\ef60"}.nc-glyph-move-up:before{content:"\ef61"}.nc-glyph-movie-61:before{content:"\ef62"}.nc-glyph-movie-62:before{content:"\ef63"}.nc-glyph-muffin:before{content:"\ef64"}.nc-glyph-mug:before{content:"\ef65"}.nc-glyph-multiple-11:before{content:"\ef66"}.nc-glyph-multiple-19:before{content:"\ef67"}.nc-glyph-multiple:before{content:"\ef68"}.nc-glyph-mushroom:before{content:"\ef69"}.nc-glyph-music-2:before{content:"\ef6a"}.nc-glyph-music-album:before{content:"\ef6b"}.nc-glyph-music-cloud:before{content:"\ef6c"}.nc-glyph-music:before{content:"\ef6d"}.nc-glyph-navigation:before{content:"\ef6e"}.nc-glyph-needle:before{content:"\ef6f"}.nc-glyph-nerd-22:before{content:"\ef70"}.nc-glyph-nerd-23:before{content:"\ef71"}.nc-glyph-net:before{content:"\ef72"}.nc-glyph-network:before{content:"\ef73"}.nc-glyph-new:before{content:"\ef74"}.nc-glyph-newsletter-dev:before{content:"\ef75"}.nc-glyph-newsletter:before{content:"\ef76"}.nc-glyph-night:before{content:"\ef77"}.nc-glyph-ninja:before{content:"\ef78"}.nc-glyph-no-access:before{content:"\ef79"}.nc-glyph-no-words:before{content:"\ef7a"}.nc-glyph-node:before{content:"\ef7b"}.nc-glyph-note-03:before{content:"\ef7c"}.nc-glyph-note-04:before{content:"\ef7d"}.nc-glyph-note-code:before{content:"\ef7e"}.nc-glyph-notebook-2:before{content:"\ef7f"}.nc-glyph-notebook:before{content:"\ef80"}.nc-glyph-notepad:before{content:"\ef81"}.nc-glyph-notes:before{content:"\ef82"}.nc-glyph-notification-69:before{content:"\ef83"}.nc-glyph-notification-70:before{content:"\ef84"}.nc-glyph-nurse:before{content:"\ef85"}.nc-glyph-nutrition:before{content:"\ef86"}.nc-glyph-ny:before{content:"\ef87"}.nc-glyph-octopus:before{content:"\ef88"}.nc-glyph-oil:before{content:"\ef89"}.nc-glyph-onenote:before{content:"\ef8a"}.nc-glyph-onion:before{content:"\ef8b"}.nc-glyph-open-in-browser:before{content:"\ef8c"}.nc-glyph-opening-times:before{content:"\ef8d"}.nc-glyph-orange:before{content:"\ef8e"}.nc-glyph-organic-2:before{content:"\ef8f"}.nc-glyph-organic:before{content:"\ef90"}.nc-glyph-oven:before{content:"\ef91"}.nc-glyph-owl:before{content:"\ef93"}.nc-glyph-p-add:before{content:"\ef92"}.nc-glyph-p-check:before{content:"\ef94"}.nc-glyph-p-edit:before{content:"\ef95"}.nc-glyph-p-heart:before{content:"\ef96"}.nc-glyph-p-location:before{content:"\ef97"}.nc-glyph-p-remove:before{content:"\ef98"}.nc-glyph-p-search:before{content:"\ef99"}.nc-glyph-p-settings:before{content:"\ef9a"}.nc-glyph-p-share:before{content:"\ef9b"}.nc-glyph-p-sync:before{content:"\ef9c"}.nc-glyph-p-system-update:before{content:"\ef9d"}.nc-glyph-p-time:before{content:"\ef9e"}.nc-glyph-paint-16:before{content:"\ef9f"}.nc-glyph-paint-37:before{content:"\efa0"}.nc-glyph-paint-38:before{content:"\efa1"}.nc-glyph-paint-brush:before{content:"\efa2"}.nc-glyph-paint-bucket-39:before{content:"\efa3"}.nc-glyph-paint-bucket-40:before{content:"\efa4"}.nc-glyph-pajamas:before{content:"\efa5"}.nc-glyph-palette:before{content:"\efa6"}.nc-glyph-pan:before{content:"\efa7"}.nc-glyph-pancake:before{content:"\efa8"}.nc-glyph-panda:before{content:"\efa9"}.nc-glyph-panel:before{content:"\efaa"}.nc-glyph-pantone:before{content:"\efab"}.nc-glyph-paper-2:before{content:"\efac"}.nc-glyph-paper-design:before{content:"\efad"}.nc-glyph-paper-dev:before{content:"\efae"}.nc-glyph-paper-diploma:before{content:"\efaf"}.nc-glyph-paper:before{content:"\efb0"}.nc-glyph-paragraph:before{content:"\efb1"}.nc-glyph-parent:before{content:"\efb2"}.nc-glyph-paris-tower:before{content:"\efb3"}.nc-glyph-parking-sensors:before{content:"\efb4"}.nc-glyph-parking:before{content:"\efb5"}.nc-glyph-parrot:before{content:"\efb6"}.nc-glyph-passport:before{content:"\efb7"}.nc-glyph-pasta:before{content:"\efb8"}.nc-glyph-patch-19:before{content:"\efb9"}.nc-glyph-patch-34:before{content:"\efba"}.nc-glyph-patch:before{content:"\efbb"}.nc-glyph-path-exclude:before{content:"\efbc"}.nc-glyph-path-intersect:before{content:"\efbd"}.nc-glyph-path-minus:before{content:"\efbe"}.nc-glyph-path-unite:before{content:"\efbf"}.nc-glyph-paw:before{content:"\efc0"}.nc-glyph-payment:before{content:"\efc1"}.nc-glyph-pci-card:before{content:"\efc2"}.nc-glyph-peanut:before{content:"\efc3"}.nc-glyph-pear:before{content:"\efc4"}.nc-glyph-pen-01:before{content:"\efc5"}.nc-glyph-pen-23:before{content:"\efc6"}.nc-glyph-pen-tool:before{content:"\efc7"}.nc-glyph-pencil-47:before{content:"\efc8"}.nc-glyph-pencil:before{content:"\efc9"}.nc-glyph-penguin:before{content:"\efca"}.nc-glyph-pepper:before{content:"\efcb"}.nc-glyph-percentage-38:before{content:"\efcc"}.nc-glyph-percentage-39:before{content:"\efcd"}.nc-glyph-phone-2:before{content:"\efce"}.nc-glyph-phone-3:before{content:"\efcf"}.nc-glyph-phone-call-end:before{content:"\efd0"}.nc-glyph-phone-call:before{content:"\efd1"}.nc-glyph-phone:before{content:"\efd2"}.nc-glyph-photo-editor:before{content:"\efd3"}.nc-glyph-piano:before{content:"\efd4"}.nc-glyph-pickaxe:before{content:"\efd5"}.nc-glyph-pickle:before{content:"\efd6"}.nc-glyph-picnic-basket:before{content:"\efd7"}.nc-glyph-picture:before{content:"\efd8"}.nc-glyph-pig-2:before{content:"\efd9"}.nc-glyph-pig:before{content:"\efda"}.nc-glyph-pill-42:before{content:"\efdb"}.nc-glyph-pill-43:before{content:"\efdc"}.nc-glyph-pill-container-44:before{content:"\efdd"}.nc-glyph-pill-container-47:before{content:"\efde"}.nc-glyph-pin-2:before{content:"\efdf"}.nc-glyph-pin-3:before{content:"\efe0"}.nc-glyph-pin-4:before{content:"\efe1"}.nc-glyph-pin-add-2:before{content:"\efe2"}.nc-glyph-pin-add:before{content:"\efe3"}.nc-glyph-pin-check:before{content:"\efe4"}.nc-glyph-pin-copy:before{content:"\efe5"}.nc-glyph-pin-delete:before{content:"\efe6"}.nc-glyph-pin-edit:before{content:"\efe7"}.nc-glyph-pin-heart:before{content:"\efe8"}.nc-glyph-pin-remove-2:before{content:"\efe9"}.nc-glyph-pin-remove:before{content:"\efea"}.nc-glyph-pin-search:before{content:"\efeb"}.nc-glyph-pin-security:before{content:"\efec"}.nc-glyph-pin-settings:before{content:"\efed"}.nc-glyph-pin-share:before{content:"\efee"}.nc-glyph-pin-star:before{content:"\efef"}.nc-glyph-pin-sync:before{content:"\eff0"}.nc-glyph-pin-time:before{content:"\eff1"}.nc-glyph-pin-user:before{content:"\eff2"}.nc-glyph-pin:before{content:"\eff3"}.nc-glyph-pinch:before{content:"\eff4"}.nc-glyph-pineapple:before{content:"\eff5"}.nc-glyph-ping-pong:before{content:"\eff6"}.nc-glyph-pins:before{content:"\eff7"}.nc-glyph-pipe:before{content:"\eff8"}.nc-glyph-pirate:before{content:"\eff9"}.nc-glyph-pizza-slice:before{content:"\effa"}.nc-glyph-pizza:before{content:"\effb"}.nc-glyph-plane-17:before{content:"\effc"}.nc-glyph-plane-18:before{content:"\effd"}.nc-glyph-planet:before{content:"\effe"}.nc-glyph-plant-ground:before{content:"\efff"}.nc-glyph-plant-vase:before{content:"\f000"}.nc-glyph-plate:before{content:"\f001"}.nc-glyph-play-68:before{content:"\f002"}.nc-glyph-play-69:before{content:"\f003"}.nc-glyph-play:before{content:"\f004"}.nc-glyph-player-19:before{content:"\f005"}.nc-glyph-player-48:before{content:"\f006"}.nc-glyph-player:before{content:"\f007"}.nc-glyph-playlist:before{content:"\f008"}.nc-glyph-plug:before{content:"\f009"}.nc-glyph-podium-trophy:before{content:"\f00a"}.nc-glyph-podium:before{content:"\f00b"}.nc-glyph-point-a:before{content:"\f00c"}.nc-glyph-point-b:before{content:"\f00d"}.nc-glyph-polaroid-add:before{content:"\f00e"}.nc-glyph-polaroid-delete:before{content:"\f00f"}.nc-glyph-polaroid-multiple:before{content:"\f010"}.nc-glyph-polaroid-user:before{content:"\f011"}.nc-glyph-polaroid:before{content:"\f012"}.nc-glyph-police:before{content:"\f013"}.nc-glyph-pool:before{content:"\f014"}.nc-glyph-poop:before{content:"\f015"}.nc-glyph-popcorn:before{content:"\f016"}.nc-glyph-pos:before{content:"\f017"}.nc-glyph-position-marker:before{content:"\f018"}.nc-glyph-position-pin:before{content:"\f019"}.nc-glyph-position-user:before{content:"\f01a"}.nc-glyph-position:before{content:"\f01b"}.nc-glyph-pot:before{content:"\f01c"}.nc-glyph-potato:before{content:"\f01d"}.nc-glyph-power-level:before{content:"\f01e"}.nc-glyph-preferences-circle-rotate:before{content:"\f01f"}.nc-glyph-preferences-circle:before{content:"\f020"}.nc-glyph-preferences-container-circle-rotate:before{content:"\f021"}.nc-glyph-preferences-container-circle:before{content:"\f022"}.nc-glyph-preferences-container-rotate:before{content:"\f023"}.nc-glyph-preferences-container:before{content:"\f024"}.nc-glyph-preferences-rotate:before{content:"\f025"}.nc-glyph-preferences:before{content:"\f026"}.nc-glyph-print:before{content:"\f027"}.nc-glyph-printer:before{content:"\f028"}.nc-glyph-priority-high:before{content:"\f029"}.nc-glyph-priority-low:before{content:"\f02a"}.nc-glyph-progress:before{content:"\f02b"}.nc-glyph-prosciutto:before{content:"\f02c"}.nc-glyph-prototype:before{content:"\f02d"}.nc-glyph-pulse-chart:before{content:"\f02e"}.nc-glyph-pulse-phone:before{content:"\f02f"}.nc-glyph-pulse-sleep:before{content:"\f030"}.nc-glyph-pulse-watch:before{content:"\f031"}.nc-glyph-pulse:before{content:"\f032"}.nc-glyph-pumpkin:before{content:"\f033"}.nc-glyph-push-next:before{content:"\f034"}.nc-glyph-push-previous:before{content:"\f035"}.nc-glyph-puzzle-09:before{content:"\f036"}.nc-glyph-puzzle-10:before{content:"\f037"}.nc-glyph-puzzled:before{content:"\f038"}.nc-glyph-pyramid:before{content:"\f039"}.nc-glyph-question:before{content:"\f03a"}.nc-glyph-quite-happy:before{content:"\f03b"}.nc-glyph-quote:before{content:"\f03c"}.nc-glyph-rabbit:before{content:"\f03d"}.nc-glyph-rackets:before{content:"\f03e"}.nc-glyph-radar:before{content:"\f03f"}.nc-glyph-radiation:before{content:"\f040"}.nc-glyph-radio:before{content:"\f041"}.nc-glyph-rain-hail:before{content:"\f042"}.nc-glyph-rain:before{content:"\f043"}.nc-glyph-rainbow:before{content:"\f044"}.nc-glyph-ram:before{content:"\f045"}.nc-glyph-rat:before{content:"\f046"}.nc-glyph-receipt-list-42:before{content:"\f047"}.nc-glyph-receipt-list-43:before{content:"\f048"}.nc-glyph-receipt:before{content:"\f049"}.nc-glyph-recipe-book-46:before{content:"\f04a"}.nc-glyph-recipe-book-47:before{content:"\f04b"}.nc-glyph-recipe-create:before{content:"\f04c"}.nc-glyph-recipe:before{content:"\f04d"}.nc-glyph-recycling:before{content:"\f04e"}.nc-glyph-redo-10:before{content:"\f04f"}.nc-glyph-redo-26:before{content:"\f050"}.nc-glyph-redo-79:before{content:"\f051"}.nc-glyph-redo-81:before{content:"\f052"}.nc-glyph-refresh-01:before{content:"\f053"}.nc-glyph-refresh-02:before{content:"\f054"}.nc-glyph-refresh-68:before{content:"\f055"}.nc-glyph-refresh-69:before{content:"\f056"}.nc-glyph-refresh:before{content:"\f057"}.nc-glyph-reload:before{content:"\f058"}.nc-glyph-remix:before{content:"\f059"}.nc-glyph-remote:before{content:"\f05a"}.nc-glyph-remove:before{content:"\f05b"}.nc-glyph-replace-folder:before{content:"\f05c"}.nc-glyph-replace:before{content:"\f05d"}.nc-glyph-replay:before{content:"\f05e"}.nc-glyph-reply-all:before{content:"\f05f"}.nc-glyph-reply:before{content:"\f060"}.nc-glyph-reservation:before{content:"\f061"}.nc-glyph-resize-h:before{content:"\f062"}.nc-glyph-resize-v:before{content:"\f063"}.nc-glyph-restaurant-menu:before{content:"\f064"}.nc-glyph-restore:before{content:"\f065"}.nc-glyph-rice:before{content:"\f066"}.nc-glyph-rim:before{content:"\f067"}.nc-glyph-ring:before{content:"\f068"}.nc-glyph-rio:before{content:"\f069"}.nc-glyph-ripples:before{content:"\f06a"}.nc-glyph-road-2:before{content:"\f06b"}.nc-glyph-road-sign-left:before{content:"\f06c"}.nc-glyph-road-sign-right:before{content:"\f06d"}.nc-glyph-road:before{content:"\f06e"}.nc-glyph-roast-chicken:before{content:"\f06f"}.nc-glyph-robot:before{content:"\f070"}.nc-glyph-rock:before{content:"\f071"}.nc-glyph-roll:before{content:"\f072"}.nc-glyph-rolling-pin:before{content:"\f073"}.nc-glyph-rome:before{content:"\f074"}.nc-glyph-rope:before{content:"\f075"}.nc-glyph-rotate-22:before{content:"\f076"}.nc-glyph-rotate-23:before{content:"\f077"}.nc-glyph-rotate-left-2:before{content:"\f078"}.nc-glyph-rotate-left:before{content:"\f079"}.nc-glyph-rotate-lock:before{content:"\f07a"}.nc-glyph-rotate-right-2:before{content:"\f07b"}.nc-glyph-rotate-right:before{content:"\f07c"}.nc-glyph-rotate:before{content:"\f07d"}.nc-glyph-round-dollar:before{content:"\f07e"}.nc-glyph-round-down:before{content:"\f07f"}.nc-glyph-round-euro:before{content:"\f080"}.nc-glyph-round-left-down:before{content:"\f081"}.nc-glyph-round-left:before{content:"\f082"}.nc-glyph-round-pound:before{content:"\f083"}.nc-glyph-round-right-down:before{content:"\f084"}.nc-glyph-round-right:before{content:"\f085"}.nc-glyph-round-up-left:before{content:"\f086"}.nc-glyph-round-up-right:before{content:"\f087"}.nc-glyph-round-up:before{content:"\f088"}.nc-glyph-round-yen:before{content:"\f089"}.nc-glyph-route-alert:before{content:"\f08a"}.nc-glyph-route-close:before{content:"\f08b"}.nc-glyph-route-open:before{content:"\f08c"}.nc-glyph-rowing:before{content:"\f08d"}.nc-glyph-rugby:before{content:"\f08e"}.nc-glyph-ruler-pencil:before{content:"\f08f"}.nc-glyph-sad:before{content:"\f090"}.nc-glyph-safe:before{content:"\f091"}.nc-glyph-salad:before{content:"\f092"}.nc-glyph-sale:before{content:"\f093"}.nc-glyph-salt:before{content:"\f094"}.nc-glyph-santa-hat:before{content:"\f095"}.nc-glyph-satisfied:before{content:"\f096"}.nc-glyph-sausage:before{content:"\f097"}.nc-glyph-save-planet:before{content:"\f098"}.nc-glyph-scale-2:before{content:"\f099"}.nc-glyph-scale-3:before{content:"\f09a"}.nc-glyph-scale-4:before{content:"\f09b"}.nc-glyph-scale-down:before{content:"\f09c"}.nc-glyph-scale-horizontal:before{content:"\f09d"}.nc-glyph-scale-up:before{content:"\f09e"}.nc-glyph-scale-vertical:before{content:"\f09f"}.nc-glyph-scale:before{content:"\f0a0"}.nc-glyph-scan:before{content:"\f0a1"}.nc-glyph-scarf:before{content:"\f0a2"}.nc-glyph-school:before{content:"\f0a3"}.nc-glyph-scissors-dashed:before{content:"\f0a4"}.nc-glyph-scissors:before{content:"\f0a5"}.nc-glyph-scotch:before{content:"\f0a6"}.nc-glyph-scroll-horitontal:before{content:"\f0a7"}.nc-glyph-scroll-vertical:before{content:"\f0a8"}.nc-glyph-sd:before{content:"\f0a9"}.nc-glyph-sea-mask:before{content:"\f0aa"}.nc-glyph-search-2:before{content:"\f0ab"}.nc-glyph-search-3:before{content:"\f0ac"}.nc-glyph-search:before{content:"\f0ad"}.nc-glyph-seat:before{content:"\f0ae"}.nc-glyph-seatbelt:before{content:"\f0af"}.nc-glyph-security:before{content:"\f0b0"}.nc-glyph-segmentation:before{content:"\f0b1"}.nc-glyph-select-83:before{content:"\f0b2"}.nc-glyph-select-84:before{content:"\f0b3"}.nc-glyph-select:before{content:"\f0b4"}.nc-glyph-selection:before{content:"\f0b5"}.nc-glyph-selfie:before{content:"\f0b6"}.nc-glyph-send-2:before{content:"\f0b7"}.nc-glyph-send:before{content:"\f0b8"}.nc-glyph-sensor:before{content:"\f0b9"}.nc-glyph-separate-round:before{content:"\f0ba"}.nc-glyph-separate:before{content:"\f0bb"}.nc-glyph-settings-46:before{content:"\f0bc"}.nc-glyph-settings-99:before{content:"\f0bd"}.nc-glyph-settings-gear-63:before{content:"\f0be"}.nc-glyph-settings-gear-64:before{content:"\f0bf"}.nc-glyph-settings-gear-65:before{content:"\f0c0"}.nc-glyph-settings-tool-66:before{content:"\f0c1"}.nc-glyph-settings-tool-67:before{content:"\f0c2"}.nc-glyph-settings:before{content:"\f0c3"}.nc-glyph-sf-bridge:before{content:"\f0c4"}.nc-glyph-shake:before{content:"\f0c5"}.nc-glyph-shaker:before{content:"\f0c6"}.nc-glyph-shape-adjust:before{content:"\f0c7"}.nc-glyph-shape-arrow:before{content:"\f0c8"}.nc-glyph-shape-circle:before{content:"\f0c9"}.nc-glyph-shape-custom:before{content:"\f0ca"}.nc-glyph-shape-line:before{content:"\f0cb"}.nc-glyph-shape-oval:before{content:"\f0cc"}.nc-glyph-shape-polygon-2:before{content:"\f0cd"}.nc-glyph-shape-polygon:before{content:"\f0ce"}.nc-glyph-shape-rectangle:before{content:"\f0cf"}.nc-glyph-shape-square:before{content:"\f0d0"}.nc-glyph-shape-star:before{content:"\f0d1"}.nc-glyph-shape-triangle-2:before{content:"\f0d2"}.nc-glyph-shape-triangle:before{content:"\f0d3"}.nc-glyph-shapes:before{content:"\f0d4"}.nc-glyph-share-2:before{content:"\f0d5"}.nc-glyph-share-66:before{content:"\f0d6"}.nc-glyph-share-91:before{content:"\f0d7"}.nc-glyph-share-92:before{content:"\f0d8"}.nc-glyph-share-bold:before{content:"\f0d9"}.nc-glyph-share-left:before{content:"\f0da"}.nc-glyph-share-right:before{content:"\f0db"}.nc-glyph-share:before{content:"\f0dc"}.nc-glyph-shared:before{content:"\f0dd"}.nc-glyph-shark-2:before{content:"\f0de"}.nc-glyph-shark:before{content:"\f0df"}.nc-glyph-sharpener:before{content:"\f0e0"}.nc-glyph-sheep:before{content:"\f0e1"}.nc-glyph-shirt-business:before{content:"\f0e2"}.nc-glyph-shirt-buttons:before{content:"\f0e3"}.nc-glyph-shirt-neck:before{content:"\f0e4"}.nc-glyph-shirt:before{content:"\f0e5"}.nc-glyph-shoe-man:before{content:"\f0e6"}.nc-glyph-shoe-run:before{content:"\f0e7"}.nc-glyph-shoe-sport:before{content:"\f0e8"}.nc-glyph-shoe-woman:before{content:"\f0e9"}.nc-glyph-shop-location:before{content:"\f0ea"}.nc-glyph-shop:before{content:"\f0eb"}.nc-glyph-shovel:before{content:"\f0ec"}.nc-glyph-shower:before{content:"\f0ed"}.nc-glyph-shrimp:before{content:"\f0ee"}.nc-glyph-shuffle-01:before{content:"\f0ef"}.nc-glyph-shuffle-35:before{content:"\f0f0"}.nc-glyph-shuffle-97:before{content:"\f0f1"}.nc-glyph-shuffle-98:before{content:"\f0f2"}.nc-glyph-shy:before{content:"\f0f3"}.nc-glyph-sick:before{content:"\f0f4"}.nc-glyph-sickle:before{content:"\f0f5"}.nc-glyph-sidebar:before{content:"\f0f6"}.nc-glyph-sign-board:before{content:"\f0f7"}.nc-glyph-sign:before{content:"\f0f8"}.nc-glyph-signal-2:before{content:"\f0f9"}.nc-glyph-signal:before{content:"\f0fa"}.nc-glyph-signature:before{content:"\f0fb"}.nc-glyph-silly:before{content:"\f0fc"}.nc-glyph-sim-card:before{content:"\f0fd"}.nc-glyph-simple-add:before{content:"\f0fe"}.nc-glyph-simple-delete:before{content:"\f0ff"}.nc-glyph-simple-down:before{content:"\f100"}.nc-glyph-simple-left:before{content:"\f101"}.nc-glyph-simple-remove:before{content:"\f102"}.nc-glyph-simple-right:before{content:"\f103"}.nc-glyph-simple-up:before{content:"\f104"}.nc-glyph-single-01:before{content:"\f105"}.nc-glyph-single-02:before{content:"\f106"}.nc-glyph-single-03:before{content:"\f107"}.nc-glyph-single-04:before{content:"\f108"}.nc-glyph-single-05:before{content:"\f109"}.nc-glyph-single-body:before{content:"\f10a"}.nc-glyph-single-content-02:before{content:"\f10b"}.nc-glyph-single-content-03:before{content:"\f10c"}.nc-glyph-single-copies:before{content:"\f10d"}.nc-glyph-single-copy-04:before{content:"\f10e"}.nc-glyph-single-copy-06:before{content:"\f10f"}.nc-glyph-single-folded-content:before{content:"\f110"}.nc-glyph-single-folded:before{content:"\f111"}.nc-glyph-single-paragraph:before{content:"\f112"}.nc-glyph-single-position:before{content:"\f113"}.nc-glyph-single:before{content:"\f114"}.nc-glyph-sink-wash:before{content:"\f115"}.nc-glyph-sink:before{content:"\f116"}.nc-glyph-size-large:before{content:"\f117"}.nc-glyph-size-medium:before{content:"\f118"}.nc-glyph-size-small:before{content:"\f119"}.nc-glyph-size:before{content:"\f11a"}.nc-glyph-skateboard-2:before{content:"\f11b"}.nc-glyph-skateboard:before{content:"\f11c"}.nc-glyph-skew-down:before{content:"\f11d"}.nc-glyph-skew-left:before{content:"\f11e"}.nc-glyph-skew-right:before{content:"\f11f"}.nc-glyph-skew-up:before{content:"\f120"}.nc-glyph-skirt:before{content:"\f121"}.nc-glyph-skull-2:before{content:"\f122"}.nc-glyph-skull:before{content:"\f123"}.nc-glyph-slacks-12:before{content:"\f124"}.nc-glyph-slacks-13:before{content:"\f125"}.nc-glyph-sleep-2:before{content:"\f126"}.nc-glyph-sleep:before{content:"\f127"}.nc-glyph-slice:before{content:"\f128"}.nc-glyph-slide-left:before{content:"\f129"}.nc-glyph-slide-right:before{content:"\f12a"}.nc-glyph-slider:before{content:"\f12b"}.nc-glyph-sloth:before{content:"\f12c"}.nc-glyph-small-add:before{content:"\f12d"}.nc-glyph-small-delete:before{content:"\f12e"}.nc-glyph-small-down:before{content:"\f12f"}.nc-glyph-small-left:before{content:"\f130"}.nc-glyph-small-remove:before{content:"\f131"}.nc-glyph-small-right:before{content:"\f132"}.nc-glyph-small-triangle-down:before{content:"\f133"}.nc-glyph-small-triangle-left:before{content:"\f134"}.nc-glyph-small-triangle-right:before{content:"\f135"}.nc-glyph-small-triangle-up:before{content:"\f136"}.nc-glyph-small-up:before{content:"\f137"}.nc-glyph-smart:before{content:"\f138"}.nc-glyph-smile:before{content:"\f139"}.nc-glyph-smoothie:before{content:"\f13a"}.nc-glyph-snack:before{content:"\f13b"}.nc-glyph-snake:before{content:"\f13c"}.nc-glyph-snow-ball:before{content:"\f13d"}.nc-glyph-snow:before{content:"\f13e"}.nc-glyph-snowboard:before{content:"\f13f"}.nc-glyph-snowman-head:before{content:"\f140"}.nc-glyph-snowman:before{content:"\f141"}.nc-glyph-soak:before{content:"\f142"}.nc-glyph-soccer-field:before{content:"\f143"}.nc-glyph-sock:before{content:"\f144"}.nc-glyph-socket-europe-1:before{content:"\f145"}.nc-glyph-socket-europe-2:before{content:"\f146"}.nc-glyph-socket-uk:before{content:"\f147"}.nc-glyph-socket:before{content:"\f148"}.nc-glyph-sofa:before{content:"\f149"}.nc-glyph-soldier:before{content:"\f14a"}.nc-glyph-sound-wave:before{content:"\f14b"}.nc-glyph-soup:before{content:"\f14c"}.nc-glyph-soy-sauce:before{content:"\f14d"}.nc-glyph-spa:before{content:"\f14e"}.nc-glyph-spaceship:before{content:"\f14f"}.nc-glyph-speaker-01:before{content:"\f150"}.nc-glyph-speaker-05:before{content:"\f151"}.nc-glyph-speaker:before{content:"\f152"}.nc-glyph-speechless:before{content:"\f153"}.nc-glyph-spider:before{content:"\f154"}.nc-glyph-spiteful:before{content:"\f155"}.nc-glyph-split-33:before{content:"\f156"}.nc-glyph-split-37:before{content:"\f157"}.nc-glyph-split-horizontal:before{content:"\f158"}.nc-glyph-split-round:before{content:"\f159"}.nc-glyph-split-vertical:before{content:"\f15a"}.nc-glyph-split:before{content:"\f15b"}.nc-glyph-sport:before{content:"\f15c"}.nc-glyph-spray-2:before{content:"\f15d"}.nc-glyph-spray:before{content:"\f15e"}.nc-glyph-square-add-08:before{content:"\f15f"}.nc-glyph-square-add-11:before{content:"\f160"}.nc-glyph-square-corner-down-left:before{content:"\f161"}.nc-glyph-square-corner-down-right:before{content:"\f162"}.nc-glyph-square-corner-up-left:before{content:"\f163"}.nc-glyph-square-corner-up-right:before{content:"\f164"}.nc-glyph-square-delete-10:before{content:"\f165"}.nc-glyph-square-delete-13:before{content:"\f166"}.nc-glyph-square-down-06:before{content:"\f167"}.nc-glyph-square-down:before{content:"\f168"}.nc-glyph-square-download:before{content:"\f169"}.nc-glyph-square-left-04:before{content:"\f16a"}.nc-glyph-square-left:before{content:"\f16b"}.nc-glyph-square-marker:before{content:"\f16c"}.nc-glyph-square-pin:before{content:"\f16d"}.nc-glyph-square-remove-09:before{content:"\f16e"}.nc-glyph-square-remove-12:before{content:"\f16f"}.nc-glyph-square-right-03:before{content:"\f170"}.nc-glyph-square-right:before{content:"\f171"}.nc-glyph-square-simple-down:before{content:"\f172"}.nc-glyph-square-simple-left:before{content:"\f173"}.nc-glyph-square-simple-right:before{content:"\f174"}.nc-glyph-square-simple-up:before{content:"\f175"}.nc-glyph-square-up-05:before{content:"\f176"}.nc-glyph-square-up:before{content:"\f177"}.nc-glyph-square-upload:before{content:"\f178"}.nc-glyph-squares:before{content:"\f179"}.nc-glyph-stamp:before{content:"\f17a"}.nc-glyph-standing-man:before{content:"\f17b"}.nc-glyph-standing-woman:before{content:"\f17c"}.nc-glyph-star:before{content:"\f17d"}.nc-glyph-steak-2:before{content:"\f17e"}.nc-glyph-steak:before{content:"\f17f"}.nc-glyph-steering-wheel:before{content:"\f180"}.nc-glyph-steps:before{content:"\f181"}.nc-glyph-stock-2:before{content:"\f182"}.nc-glyph-stock:before{content:"\f183"}.nc-glyph-storage-hanger:before{content:"\f184"}.nc-glyph-storage:before{content:"\f185"}.nc-glyph-store:before{content:"\f186"}.nc-glyph-strategy:before{content:"\f187"}.nc-glyph-strawberry:before{content:"\f188"}.nc-glyph-stre-down:before{content:"\f189"}.nc-glyph-stre-left:before{content:"\f18a"}.nc-glyph-stre-right:before{content:"\f18b"}.nc-glyph-stre-up:before{content:"\f18c"}.nc-glyph-stretch:before{content:"\f18d"}.nc-glyph-strikethrough:before{content:"\f18e"}.nc-glyph-strong-down:before{content:"\f18f"}.nc-glyph-strong-left:before{content:"\f190"}.nc-glyph-strong-right:before{content:"\f191"}.nc-glyph-strong-up:before{content:"\f192"}.nc-glyph-subscript:before{content:"\f193"}.nc-glyph-subtitles:before{content:"\f194"}.nc-glyph-sugar:before{content:"\f195"}.nc-glyph-sun-cloud-drop:before{content:"\f196"}.nc-glyph-sun-cloud-fog:before{content:"\f197"}.nc-glyph-sun-cloud-hail:before{content:"\f198"}.nc-glyph-sun-cloud-light:before{content:"\f199"}.nc-glyph-sun-cloud-rain:before{content:"\f19a"}.nc-glyph-sun-cloud-snow-54:before{content:"\f19b"}.nc-glyph-sun-cloud-snow-55:before{content:"\f19c"}.nc-glyph-sun-cloud:before{content:"\f19d"}.nc-glyph-sun-fog-29:before{content:"\f19e"}.nc-glyph-sun-fog-30:before{content:"\f19f"}.nc-glyph-sun-fog-43:before{content:"\f1a0"}.nc-glyph-sunglasses-48:before{content:"\f1a1"}.nc-glyph-sunglasses-49:before{content:"\f1a2"}.nc-glyph-sunglasses:before{content:"\f1a3"}.nc-glyph-superscript:before{content:"\f1a4"}.nc-glyph-supplement:before{content:"\f1a5"}.nc-glyph-support-16:before{content:"\f1a6"}.nc-glyph-support-17:before{content:"\f1a7"}.nc-glyph-surf-2:before{content:"\f1a8"}.nc-glyph-surf:before{content:"\f1a9"}.nc-glyph-surprise:before{content:"\f1aa"}.nc-glyph-sushi:before{content:"\f1ab"}.nc-glyph-swap-horizontal:before{content:"\f1ac"}.nc-glyph-swap-vertical:before{content:"\f1ad"}.nc-glyph-swimsuit:before{content:"\f1ae"}.nc-glyph-swimwear:before{content:"\f1af"}.nc-glyph-swipe-bottom:before{content:"\f1b0"}.nc-glyph-swipe-left:before{content:"\f1b1"}.nc-glyph-swipe-right:before{content:"\f1b2"}.nc-glyph-swipe-up:before{content:"\f1b3"}.nc-glyph-swiss-knife:before{content:"\f1b4"}.nc-glyph-sync:before{content:"\f1b5"}.nc-glyph-syringe:before{content:"\f1b6"}.nc-glyph-system-update:before{content:"\f1b7"}.nc-glyph-table-left:before{content:"\f1b8"}.nc-glyph-table-right:before{content:"\f1b9"}.nc-glyph-table:before{content:"\f1ba"}.nc-glyph-tablet-2:before{content:"\f1bb"}.nc-glyph-tablet-button:before{content:"\f1bc"}.nc-glyph-tablet-mobile:before{content:"\f1bd"}.nc-glyph-tablet-reader-31:before{content:"\f1be"}.nc-glyph-tablet-reader-42:before{content:"\f1bf"}.nc-glyph-tablet-toolbar:before{content:"\f1c0"}.nc-glyph-tablet:before{content:"\f1c1"}.nc-glyph-tacos:before{content:"\f1c2"}.nc-glyph-tactic:before{content:"\f1c3"}.nc-glyph-tag-2:before{content:"\f1c4"}.nc-glyph-tag-add:before{content:"\f1c5"}.nc-glyph-tag-check:before{content:"\f1c6"}.nc-glyph-tag-content:before{content:"\f1c7"}.nc-glyph-tag-cut:before{content:"\f1c8"}.nc-glyph-tag-line:before{content:"\f1c9"}.nc-glyph-tag-loyalty:before{content:"\f1ca"}.nc-glyph-tag-remove:before{content:"\f1cb"}.nc-glyph-tag-sale:before{content:"\f1cc"}.nc-glyph-tag:before{content:"\f1cd"}.nc-glyph-tail-down:before{content:"\f1ce"}.nc-glyph-tail-left:before{content:"\f1cf"}.nc-glyph-tail-right:before{content:"\f1d0"}.nc-glyph-tail-triangle-down:before{content:"\f1d1"}.nc-glyph-tail-triangle-left:before{content:"\f1d2"}.nc-glyph-tail-triangle-right:before{content:"\f1d3"}.nc-glyph-tail-triangle-up:before{content:"\f1d4"}.nc-glyph-tail-up:before{content:"\f1d5"}.nc-glyph-tap-01:before{content:"\f1d6"}.nc-glyph-tap-02:before{content:"\f1d7"}.nc-glyph-tape:before{content:"\f1d8"}.nc-glyph-target:before{content:"\f1d9"}.nc-glyph-tea-bag:before{content:"\f1da"}.nc-glyph-tea:before{content:"\f1db"}.nc-glyph-temperature-23:before{content:"\f1dc"}.nc-glyph-temperature-24:before{content:"\f1dd"}.nc-glyph-temple-25:before{content:"\f1de"}.nc-glyph-tennis-ball:before{content:"\f1df"}.nc-glyph-tennis:before{content:"\f1e0"}.nc-glyph-terrace:before{content:"\f1e1"}.nc-glyph-text-2:before{content:"\f1e2"}.nc-glyph-text:before{content:"\f1e3"}.nc-glyph-texture:before{content:"\f1e4"}.nc-glyph-ticket-75:before{content:"\f1e5"}.nc-glyph-ticket-76:before{content:"\f1e6"}.nc-glyph-tie-01:before{content:"\f1e7"}.nc-glyph-tie-02:before{content:"\f1e8"}.nc-glyph-tie-bow:before{content:"\f1e9"}.nc-glyph-tile-55:before{content:"\f1ea"}.nc-glyph-time-2:before{content:"\f1eb"}.nc-glyph-time-3:before{content:"\f1ec"}.nc-glyph-time-alarm:before{content:"\f1ed"}.nc-glyph-time-clock:before{content:"\f1ee"}.nc-glyph-time-countdown:before{content:"\f1ef"}.nc-glyph-time:before{content:"\f1f0"}.nc-glyph-timeline:before{content:"\f1f1"}.nc-glyph-timer:before{content:"\f1f2"}.nc-glyph-todo:before{content:"\f1f3"}.nc-glyph-toilet-paper:before{content:"\f1f4"}.nc-glyph-toilet:before{content:"\f1f5"}.nc-glyph-tomato:before{content:"\f1f6"}.nc-glyph-tool-blur:before{content:"\f1f7"}.nc-glyph-tool-hand:before{content:"\f1f8"}.nc-glyph-tool-select:before{content:"\f1f9"}.nc-glyph-tooth:before{content:"\f1fa"}.nc-glyph-touch:before{content:"\f1fb"}.nc-glyph-track-delivery:before{content:"\f1fc"}.nc-glyph-tracking:before{content:"\f1fd"}.nc-glyph-tractor:before{content:"\f1fe"}.nc-glyph-train-speed:before{content:"\f1ff"}.nc-glyph-train:before{content:"\f200"}.nc-glyph-tram:before{content:"\f201"}.nc-glyph-transform-2d:before{content:"\f202"}.nc-glyph-transform-origin:before{content:"\f203"}.nc-glyph-transform:before{content:"\f204"}.nc-glyph-transparent:before{content:"\f205"}.nc-glyph-trash-round:before{content:"\f206"}.nc-glyph-trash-simple:before{content:"\f207"}.nc-glyph-trash:before{content:"\f208"}.nc-glyph-treasure-map-21:before{content:"\f209"}.nc-glyph-treasure-map-40:before{content:"\f20a"}.nc-glyph-tree-01:before{content:"\f20b"}.nc-glyph-tree-02:before{content:"\f20c"}.nc-glyph-tree-03:before{content:"\f20d"}.nc-glyph-tree-ball:before{content:"\f20e"}.nc-glyph-tree:before{content:"\f20f"}.nc-glyph-trend-down:before{content:"\f210"}.nc-glyph-trend-up:before{content:"\f211"}.nc-glyph-triangle-down-20:before{content:"\f212"}.nc-glyph-triangle-down-65:before{content:"\f213"}.nc-glyph-triangle-down:before{content:"\f214"}.nc-glyph-triangle-left-18:before{content:"\f215"}.nc-glyph-triangle-left-63:before{content:"\f216"}.nc-glyph-triangle-left:before{content:"\f217"}.nc-glyph-triangle-right-17:before{content:"\f218"}.nc-glyph-triangle-right-62:before{content:"\f219"}.nc-glyph-triangle-right:before{content:"\f21a"}.nc-glyph-triangle-up-19:before{content:"\f21b"}.nc-glyph-triangle-up-64:before{content:"\f21c"}.nc-glyph-triangle-up:before{content:"\f21d"}.nc-glyph-tripod:before{content:"\f21e"}.nc-glyph-trolley:before{content:"\f21f"}.nc-glyph-trophy:before{content:"\f220"}.nc-glyph-truck-front:before{content:"\f221"}.nc-glyph-trunk:before{content:"\f222"}.nc-glyph-tshirt-53:before{content:"\f223"}.nc-glyph-tshirt-54:before{content:"\f224"}.nc-glyph-tshirt-sport:before{content:"\f225"}.nc-glyph-turtle:before{content:"\f226"}.nc-glyph-tv-2:before{content:"\f227"}.nc-glyph-tv-old:before{content:"\f228"}.nc-glyph-tv:before{content:"\f229"}.nc-glyph-twitch:before{content:"\f22a"}.nc-glyph-ui-03:before{content:"\f22b"}.nc-glyph-ui-04:before{content:"\f22c"}.nc-glyph-umbrella-13:before{content:"\f22d"}.nc-glyph-umbrella-14:before{content:"\f22e"}.nc-glyph-underline:before{content:"\f22f"}.nc-glyph-underwear-man:before{content:"\f230"}.nc-glyph-underwear:before{content:"\f231"}.nc-glyph-undo-25:before{content:"\f233"}.nc-glyph-undo-29:before{content:"\f232"}.nc-glyph-ungroup:before{content:"\f234"}.nc-glyph-unite-round:before{content:"\f235"}.nc-glyph-unite:before{content:"\f236"}.nc-glyph-upload-2:before{content:"\f237"}.nc-glyph-upload:before{content:"\f238"}.nc-glyph-upset-13:before{content:"\f239"}.nc-glyph-upset-14:before{content:"\f23a"}.nc-glyph-usb:before{content:"\f23b"}.nc-glyph-user-balance:before{content:"\f23c"}.nc-glyph-user-climb:before{content:"\f23d"}.nc-glyph-user-frame-31:before{content:"\f23e"}.nc-glyph-user-frame-32:before{content:"\f23f"}.nc-glyph-user-frame-33:before{content:"\f240"}.nc-glyph-user-meditation:before{content:"\f241"}.nc-glyph-user-run:before{content:"\f242"}.nc-glyph-user-snowboard:before{content:"\f243"}.nc-glyph-user-swim:before{content:"\f244"}.nc-glyph-user:before{content:"\f245"}.nc-glyph-vampire:before{content:"\f246"}.nc-glyph-vector-2:before{content:"\f247"}.nc-glyph-vector:before{content:"\f248"}.nc-glyph-vegan:before{content:"\f249"}.nc-glyph-ventilation:before{content:"\f24a"}.nc-glyph-vespa-front:before{content:"\f24b"}.nc-glyph-vespa:before{content:"\f24c"}.nc-glyph-vest-31:before{content:"\f24d"}.nc-glyph-vest-sport:before{content:"\f24e"}.nc-glyph-vest:before{content:"\f24f"}.nc-glyph-video-64:before{content:"\f250"}.nc-glyph-video-65:before{content:"\f251"}.nc-glyph-video-66:before{content:"\f252"}.nc-glyph-video-67:before{content:"\f253"}.nc-glyph-videocamera-71:before{content:"\f254"}.nc-glyph-videocamera-72:before{content:"\f255"}.nc-glyph-virus:before{content:"\f256"}.nc-glyph-voice-record:before{content:"\f257"}.nc-glyph-volleyball:before{content:"\f258"}.nc-glyph-volume-93:before{content:"\f259"}.nc-glyph-volume-97:before{content:"\f25a"}.nc-glyph-volume-98:before{content:"\f25b"}.nc-glyph-volume-ban:before{content:"\f25c"}.nc-glyph-volume-down:before{content:"\f25d"}.nc-glyph-volume-off:before{content:"\f25e"}.nc-glyph-volume-up:before{content:"\f25f"}.nc-glyph-vpn:before{content:"\f260"}.nc-glyph-waffle:before{content:"\f261"}.nc-glyph-walk:before{content:"\f262"}.nc-glyph-wallet-43:before{content:"\f263"}.nc-glyph-wallet-44:before{content:"\f264"}.nc-glyph-wallet-90:before{content:"\f265"}.nc-glyph-wallet:before{content:"\f266"}.nc-glyph-wand-11:before{content:"\f267"}.nc-glyph-wardrobe:before{content:"\f268"}.nc-glyph-wash-2:before{content:"\f269"}.nc-glyph-wash-30:before{content:"\f26a"}.nc-glyph-wash-60:before{content:"\f26b"}.nc-glyph-wash-90:before{content:"\f26c"}.nc-glyph-wash-hand:before{content:"\f26d"}.nc-glyph-wash:before{content:"\f26e"}.nc-glyph-washing-fluid:before{content:"\f26f"}.nc-glyph-waste-danger:before{content:"\f270"}.nc-glyph-waste-recycling:before{content:"\f272"}.nc-glyph-waste:before{content:"\f271"}.nc-glyph-watch-circle:before{content:"\f273"}.nc-glyph-watch-dev:before{content:"\f274"}.nc-glyph-watch-time:before{content:"\f275"}.nc-glyph-watch:before{content:"\f276"}.nc-glyph-water-hand:before{content:"\f277"}.nc-glyph-water-sink:before{content:"\f278"}.nc-glyph-water:before{content:"\f279"}.nc-glyph-watermelon:before{content:"\f27a"}.nc-glyph-wc:before{content:"\f27b"}.nc-glyph-web-design:before{content:"\f27c"}.nc-glyph-webcam-38:before{content:"\f27d"}.nc-glyph-webcam-39:before{content:"\f27e"}.nc-glyph-webpage-2:before{content:"\f27f"}.nc-glyph-webpage:before{content:"\f280"}.nc-glyph-weed:before{content:"\f281"}.nc-glyph-weight:before{content:"\f282"}.nc-glyph-what:before{content:"\f283"}.nc-glyph-wheel-2:before{content:"\f284"}.nc-glyph-wheel:before{content:"\f285"}.nc-glyph-wheelchair:before{content:"\f286"}.nc-glyph-whisk:before{content:"\f287"}.nc-glyph-whiskers:before{content:"\f288"}.nc-glyph-whistle:before{content:"\f289"}.nc-glyph-white-house:before{content:"\f28a"}.nc-glyph-widget:before{content:"\f28b"}.nc-glyph-wifi-2:before{content:"\f28c"}.nc-glyph-wifi-off:before{content:"\f28d"}.nc-glyph-wifi-protected:before{content:"\f28e"}.nc-glyph-wifi-router:before{content:"\f28f"}.nc-glyph-wifi:before{content:"\f290"}.nc-glyph-wind-2:before{content:"\f291"}.nc-glyph-wind:before{content:"\f292"}.nc-glyph-window-add:before{content:"\f293"}.nc-glyph-window-code:before{content:"\f294"}.nc-glyph-window-delete:before{content:"\f295"}.nc-glyph-window-dev:before{content:"\f296"}.nc-glyph-window-paragraph:before{content:"\f297"}.nc-glyph-window-responsive:before{content:"\f298"}.nc-glyph-window-zoom-in:before{content:"\f299"}.nc-glyph-window-zoom-out:before{content:"\f29a"}.nc-glyph-wine-list:before{content:"\f29b"}.nc-glyph-wink-06:before{content:"\f29c"}.nc-glyph-wink-11:before{content:"\f29d"}.nc-glyph-wink-69:before{content:"\f29e"}.nc-glyph-witch-hat:before{content:"\f29f"}.nc-glyph-wolf:before{content:"\f2a0"}.nc-glyph-woman-2:before{content:"\f2a1"}.nc-glyph-woman-21:before{content:"\f2a2"}.nc-glyph-woman-24:before{content:"\f2a3"}.nc-glyph-woman-25:before{content:"\f2a4"}.nc-glyph-woman-down:before{content:"\f2a5"}.nc-glyph-woman-man:before{content:"\f2a6"}.nc-glyph-woman-up:before{content:"\f2a7"}.nc-glyph-woman:before{content:"\f2a8"}.nc-glyph-wood:before{content:"\f2a9"}.nc-glyph-wool-ball:before{content:"\f2aa"}.nc-glyph-worl-marker:before{content:"\f2ab"}.nc-glyph-world-2:before{content:"\f2ac"}.nc-glyph-world-pin:before{content:"\f2ad"}.nc-glyph-world:before{content:"\f2ae"}.nc-glyph-yogurt:before{content:"\f2af"}.nc-glyph-zip-54:before{content:"\f2b0"}.nc-glyph-zip-55:before{content:"\f2b1"}.nc-glyph-zombie:before{content:"\f2b2"}.nc-glyph-zoom-100:before{content:"\f2b3"}.nc-glyph-zoom-2:before{content:"\f2b4"}.nc-glyph-zoom-88:before{content:"\f2b5"}.nc-glyph-zoom-99:before{content:"\f2b6"}.nc-glyph-zoom-bold-in:before{content:"\f2b7"}.nc-glyph-zoom-bold-out:before{content:"\f2b8"}.nc-glyph-zoom-bold:before{content:"\f2b9"}.nc-glyph-zoom-e:before{content:"\f2ba"}.nc-glyph-zoom-in:before{content:"\f2bb"}.nc-glyph-zoom-out:before{content:"\f2bc"}.nc-glyph-zoom-split-in:before{content:"\f2bd"}.nc-glyph-zoom-split-out:before{content:"\f2be"}.nc-glyph-zoom-split:before{content:"\f2bf"}.nc-glyph-zoom-triangles:before{content:"\f2c0"}.nc-glyph-zoom:before{content:"\f2c1"}.nc-icon{display:inline-block;font-size:24px;line-height:1;font-weight:400;font-style:normal;font-variant:normal;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed-sorting .brz-ed-draggable,.brz-ed-sorting .sortable-chosen:after,.brz-ed-sorting .sortable-chosen:before{display:none}.nc-outline{font-family:"Nucleo Outline"}.nc-glyph{font-family:"Nucleo Glyph"}.nc-icon.rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.nc-icon.rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nc-icon.rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);transform:rotate(270deg)}.nc-icon.flip-y{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);transform:scale(-1,1)}.nc-icon.flip-x{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);transform:scale(1,-1)}.brz-ed-sorting{-webkit-user-select:none;user-select:none;cursor:move}.brz-ed-sorting *{pointer-events:none}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger{background-color:#03080f}.brz-ed-sorting .sortable-hovered.brz-ed-container-trigger:after{opacity:1!important;background-color:#fff!important}.brz .brz-reset-all,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after,.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:before{opacity:1;visibility:visible}.brz-ed-sorting .sortable-chosen :not(.brz-ed-border){visibility:hidden}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-1:after{top:-1px}.brz-ed-sorting .sortable-chosen>.brz-ed-border>.brz-ed-border__inner-2:after{bottom:-1px}.brz-ed-sorting .sortable-chosen.brz-columns__posts>.brz-ed-border>.brz-ed-border__inner-1:after{top:-2px}.brz-ed-sorting .sortable-chosen.brz-columns__posts>.brz-ed-border>.brz-ed-border__inner-2:after{bottom:-2px}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:after,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{content:"";height:2px;position:absolute;left:0;right:0;bottom:-1px;background-color:#879294;opacity:.3}.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz .brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .brz .sortable-receiver:not(.brz-ed-sortable--empty)>.sortable-chosen.brz-wrapper-clone+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-row__container:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper-clone:first-child:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper.sortable-chosen+div:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-wrapper:first-child:before{top:-1px;bottom:auto}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border>.brz-ed-border__inner-1:before,.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty)>.brz-columns:not(.brz-columns__posts)>.brz-ed-border>.brz-ed-border__inner-2:before{top:-1px;bottom:-1px;visibility:visible;opacity:.5;-webkit-transition:none;transition:none}.brz-ed-sorting .sortable-receiver:not(.brz-ed-sortable--empty).brz-row{margin-top:5px;margin-bottom:5px}.brz-ed-sorting .sortable-hovered-bottom:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):after,.brz-ed-sorting .sortable-hovered-top:not(.brz-ed-container-trigger):not(.brz-ed-border__sortable):before{opacity:1!important;-webkit-transform:scaleY(2);transform:scaleY(2);border-radius:4px}.brz-ed-sorting .sortable-hovered-left:after,.brz-ed-sorting .sortable-hovered-right:after{top:0;width:2px;height:100%}.brz-ed-sorting .sortable-hovered-left:after{left:0}.brz-ed-sorting .sortable-hovered-left>.brz-ed-border>.brz-ed-border__inner-1:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.brz-ed-sorting .sortable-hovered-right:after{right:-2px}.brz-ed-sorting .sortable-hovered-right>.brz-ed-border>.brz-ed-border__inner-2:before{-webkit-transform:scaleX(2);transform:scaleX(2);opacity:1!important;-webkit-transition:none;transition:none;border-radius:4px}.sortable-helper{width:30px;height:30px;border-radius:50%;background-color:#3dbfe8;cursor:move}.sortable-placeholder{outline:#3dbfe8 solid 1px}.brz-ed .brz-ed-sortable--empty{position:relative;min-height:125px;width:calc(100% - 20px);height:calc(100% - 20px);margin:10px}.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-1,.brz-ed .brz-ed-sortable--empty .brz-ed-border__inner-2{opacity:.6}.brz-ed .brz-ed-sortable--empty .brz-ed-container-trigger{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);margin:0}@-ms-viewport{width:device-width}.brz .brz-figcaption,.brz .brz-figure,.brz .brz-section{display:block}.brz .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}.brz .brz-span{float:none;margin:0;padding:0;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit}.brz .brz-b,.brz .brz-dt,.brz .brz-strong{font-weight:700}.brz .brz-dl,.brz .brz-ol,.brz .brz-ul{margin:0;list-style:none;padding:0}.brz .brz-ol .brz-ol,.brz .brz-ol .brz-ul,.brz .brz-ul .brz-ol,.brz .brz-ul .brz-ul{margin:0}.brz .brz-dd{margin-bottom:.5rem;margin-left:0}.brz .brz-blockquote{margin:0 0 1rem}.brz .brz-dfn{font-style:italic}.brz .brz-a{color:#3dbfe8;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.brz .brz-a[href]:hover{color:#1aabd8;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;cursor:pointer}.brz .brz-figure{margin:0;min-width:auto;min-height:auto}.brz .brz-img{vertical-align:middle;border-style:none}.brz svg:not(:root){overflow:hidden}.brz .brz-button,.brz .brz-input,.brz .brz-label,.brz .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz .brz-table{border-collapse:collapse}.brz .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#9da8b1;text-align:left;caption-side:bottom}.brz .brz-th{text-align:left}.brz .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz .brz-button,.brz .brz-input,.brz .brz-optgroup,.brz .brz-select,.brz .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz .brz-button,.brz .brz-input{overflow:visible}.brz .brz-button{-webkit-appearance:button}.brz .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz .brz-input[type=radio],.brz .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz .brz-input[type=date],.brz .brz-input[type=time],.brz .brz-input[type=datetime-local],.brz .brz-input[type=month]{-webkit-appearance:listbox}.brz .brz-textarea{overflow:auto;resize:vertical}.brz .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz .brz-iframe,.brz .brz-object{margin-bottom:0;max-width:100%}.brz .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz .brz-reset-all,.brz-ed .brz-reset-all{-ms-flex-line-pack:stretch;border-block-start-width:medium;border-collapse:separate;border-image-outset:0s;border-image-slice:100%;border-image-source:none;border-inline-start-style:none;border-spacing:0;break-after:auto;-webkit-column-break-before:auto;break-inside:auto;caret-color:auto;empty-cells:show;grid-auto-columns:auto;grid-auto-flow:row;grid-auto-rows:auto;grid-column-end:auto;grid-column-gap:0;grid-column-start:auto;grid-row-end:auto;grid-row-gap:0;grid-row-start:auto;grid-template-areas:none;grid-template-columns:none;grid-template-rows:none;-webkit-hyphens:manual;image-orientation:0deg;image-rendering:auto;image-resolution:1dppx;ime-mode:auto;inline-size:auto;isolation:auto;margin-block-start:0;mask-type:luminance;min-block-size:0;min-inline-size:0;mix-blend-mode:normal;offset-block-end:auto;offset-block-start:auto;offset-inline-end:auto;offset-inline-start:auto;orphans:2;page-break-after:auto;page-break-before:auto;page-break-inside:auto;quotes:initial;ruby-align:space-around;ruby-merge:separate;ruby-position:over;scroll-behavior:auto;shape-image-threshold:0;shape-margin:0;shape-outside:none;table-layout:auto;text-combine-upright:none;text-decoration-color:currentcolor;-webkit-text-decoration-line:none;-webkit-text-decoration-style:solid;-webkit-text-emphasis-color:currentcolor;-webkit-text-emphasis-position:over;-webkit-text-emphasis-style:none;text-emphasis-style:none;text-orientation:mixed;text-rendering:auto;text-underline-position:auto;-webkit-appearance:none;list-style:disc}.brz [hidden]{display:none!important}.brz .brz-reset-all{align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-image-repeat:stretch;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-width:medium;bottom:auto;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-before:auto;-webkit-column-break-inside:auto;caption-side:top;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;height:auto;-ms-hyphens:manual;hyphens:manual;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-break:auto;line-height:normal;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0;-webkit-mask-clip:border-box;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-width:0;-o-object-fit:fill;object-fit:fill;-o-object-position:50% 50%;object-position:50% 50%;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;padding-inline-start:0;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;resize:none;right:auto;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-emphasis-color:currentcolor;text-emphasis-position:over right;text-indent:0;text-justify:auto;text-overflow:clip;text-shadow:none;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;white-space:normal;widows:2;width:auto;will-change:auto;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;margin:0;padding:0}.brz .brz-bg-shape,.brz .brz-ed-blocked,.brz .slick-slide.dragging img{pointer-events:none}.brz .brz-h1,.brz .brz-h2,.brz .brz-h3,.brz .brz-h4,.brz .brz-h5,.brz .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz .brz-h1,.brz .brz-p{font-weight:400}.brz .brz-h1{font-size:55px}.brz .brz-h2{font-size:40px}.brz .brz-h3{font-size:32px}.brz .brz-h4{font-size:26px}.brz .brz-h5{font-size:19px}.brz .brz-h6,.brz .brz-p{font-size:14px}.brz .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz .brz-d-block{display:block!important}.brz .brz-d-inline-block{display:inline-block!important}.brz .brz-d-inline{display:inline!important}.brz .brz-d-table{width:100%;display:table;position:relative}.brz .brz-d-table-cell{display:table-cell}.brz .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}@media (min-width:480px){.brz .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz .brz-hidden-xl-up{display:none!important}}.brz .brz-hidden,.brz .brz-hidden-xl-down,.brz .brz-hidden-xs-up,.brz .brz-visible-print-block{display:none!important}.brz .brz-p-relative{position:relative!important}.brz .brz-p-absolute{position:absolute!important}.brz .brz-p-fixed{position:fixed!important}.brz .brz-invisible{visibility:hidden!important}.brz .brz-visible{visibility:visible!important}.brz .brz-invisible-xl-down,.brz .brz-invisible-xs-up{visibility:hidden!important}.brz .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz .brz-hidden-xs-down{display:none!important}.brz .brz-invisible-xs-down{visibility:hidden!important}.brz .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz .brz-hidden-ms-up{display:none!important}.brz .brz-invisible-ms-up{visibility:hidden!important}.brz .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz.brz:not(.brz-ed) *{min-width:0;min-height:0}.brz .brz-hidden-ms-down{display:none!important}.brz .brz-invisible-ms-down{visibility:hidden!important}.brz .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}.brz .brz-container__wrap,.brz .brz-container__wrap--fluid{padding-left:15px;padding-right:15px}}@media (min-width:768px){.brz .brz-hidden-sm-up{display:none!important}.brz .brz-invisible-sm-up{visibility:hidden!important}.brz .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz .brz-hidden-sm-down{display:none!important}.brz .brz-invisible-sm-down{visibility:hidden!important}.brz .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz .brz-hidden-md-up{display:none!important}.brz .brz-invisible-md-up{visibility:hidden!important}.brz .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz .brz-hidden-md-down{display:none!important}.brz .brz-invisible-md-down{visibility:hidden!important}.brz .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz .brz-hidden-lg-up{display:none!important}.brz .brz-invisible-lg-up{visibility:hidden!important}.brz .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz .brz-hidden-lg-down{display:none!important}.brz .brz-invisible-lg-down{visibility:hidden!important}.brz .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz .brz-invisible-xl-up{visibility:hidden!important}.brz .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.slick-loading .brz .slick-slide,.slick-loading .brz .slick-track{visibility:hidden}.brz .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz .brz-visible-print-block{display:block!important}}.brz .brz-visible-print-inline{display:none!important}@media print{.brz .brz-visible-print-inline{display:inline!important}}.brz .brz-visible-print-inline-block{display:none!important}@media print{.brz .brz-visible-print-inline-block{display:inline-block!important}.brz .brz-hidden-print{display:none!important}}.brz .brz-ow-hidden{overflow:hidden!important}.brz .brz-ow-visible{overflow:visible!important}.brz .brz-fw-100{font-weight:100!important}.brz .brz-fw-200{font-weight:200!important}.brz .brz-fw-300{font-weight:300!important}.brz .brz-fw-400{font-weight:400!important}.brz .brz-fw-500{font-weight:500!important}.brz .brz-fw-600{font-weight:600!important}.brz .brz-fw-700{font-weight:700!important}.brz .brz-fw-800{font-weight:800!important}.brz .brz-fw-900{font-weight:900!important}.brz .brz-animated{opacity:0}.brz .brz-animated.brz-animate,.brz .brz-bg-color{opacity:1}.brz .brz-icon-svg{display:inline-block;width:1em;height:1em;stroke:none;position:relative;fill:currentColor;color:currentColor}.brz .brz-icon-svg use{fill:inherit}.brz .brz-icon-svg.glyph,.brz-ed .brz-icon-svg{fill:currentColor;stroke:none}.brz .brz-icon-svg.grid-16{height:16px;width:16px}.brz .brz-icon-svg.grid-24{height:24px;width:24px}.brz .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz .brz-section{background-color:#fff;position:relative}.brz .brz-section__content{position:relative;width:100%}.brz .brz-section__content>.brz-bg{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.brz .brz-section__items{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}.brz .brz-section>.brz-slick-slider .brz-container__wrap{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-section>.brz-slick-slider:not(.slick-initialized)>.brz-section__items:not(:first-child){display:none}.brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide{height:auto}.brz .brz-section>.brz-slick-slider>.slick-list>.slick-track>.slick-slide .brz-section__content>.brz-bg>.brz-bg-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-sec-full-height .brz-container__wrap,.brz .brz-sec-full-height .brz-container__wrap--fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-height:100vh}.brz .brz-container__wrap,.brz .brz-row{display:-webkit-box;display:-ms-flexbox}.brz .brz-section__header--animated{position:fixed;z-index:1050;top:0;left:0;width:100%;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz .brz-section__header--animated-opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz .brz-section__header--fixed{position:relative}.brz .brz-section__header--fixed-opened{position:fixed;z-index:1051;top:0;left:0;width:100%}.brz .brz-container,.brz .brz-container__wrap{margin-left:auto;margin-right:auto;width:100%}.brz .brz-container__wrap{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-row{display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:1px;-ms-flex-preferred-size:100%;flex-basis:100%}.brz .brz-columns>.brz-bg{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-wrapper,.brz .brz-wrapper-clone{border-top:1px solid transparent;border-bottom:1px solid transparent;margin-top:-1px;margin-bottom:-1px}.brz .brz-wrapper-clone__wrap{height:100%}.brz .brz-wrapper-clone__item{position:relative;min-height:1px;-ms-flex-preferred-size:auto;flex-basis:auto}.brz .brz-bg{position:relative}.brz .brz-bg-content{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.brz .brz-bg-media{overflow:hidden}.brz .brz-bg-color,.brz .brz-bg-image,.brz .brz-bg-map,.brz .brz-bg-media,.brz .brz-bg-video{position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-bg-image{background-repeat:no-repeat;background-size:cover}.brz .brz-iframe.brz-bg-map__cover,.brz .brz-iframe.brz-bg-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none;max-width:none;background-repeat:no-repeat;background-size:cover}.brz .brz-bg-shape{width:100%;height:100px;position:absolute;left:0;right:0;background-repeat:no-repeat;margin:0 -1px}.brz .brz-bg-shape__top{top:0}.brz .brz-bg-shape__bottom{bottom:0;-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.brz .brz-bg-image-parallax,.brz .brz-ed.brz-ed--desktop .brz-bg-image-parallax,.brz-ed.brz-ed--desktop .brz .brz-bg-image-parallax{width:100%;background-size:cover!important;background-position:50% 50%;left:0;top:-50vh;height:100vh;-webkit-transition:all 0s ease!important;transition:all 0s ease!important;-webkit-transform-origin:center center 0;transform-origin:center center 0;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}@media (max-width:767px){.brz .brz-bg-video .brz-iframe{display:none!important}}.brz .brz-btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #ccc;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;color:#fff;cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-user-drag:none;background-image:none;white-space:nowrap;font-weight:400;-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-btn .brz-span{display:block}.brz .buttons{margin:-10px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .buttons .brz-wrapper-clone__item{padding:10px}.brz .brz-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;vertical-align:middle;max-width:100%;-webkit-transition:background .3s ease,color .3s ease,border-color .3s ease;transition:background .3s ease,color .3s ease,border-color .3s ease}.brz .brz-list{margin:-6px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz .brz-list .brz-list__item{padding:6px}.brz .brz-countdown{display:-webkit-box;display:-ms-flexbox;display:flex}.brz .brz-countdown__item{-webkit-box-flex:1;-ms-flex:1 0 25%;flex:1 0 25%;text-align:center;padding-left:15px;padding-right:15px;word-break:break-word;word-wrap:break-word}.brz .brz-countdown__number{font-size:1em;margin-bottom:15px}.brz .brz-countdown .brz-ed-box__resizer{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}.brz .brz-spacer{width:100%}.brz .brz-icon-text{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-align:left;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.brz .brz-line,.brz .brz-map{position:relative;display:inline-block}.brz .brz-icon-text .brz-text-btn,.brz .brz-icon-text .brz-text__editor{width:100%}.brz .brz-line{line-height:1;font-size:0;padding-top:7px;padding-bottom:7px}.brz .brz-line .brz-hr{border-right-width:0;border-bottom-width:0;border-left-width:0;background:0 0}.brz .brz-map{width:100%;vertical-align:middle}.brz .brz-map .brz-iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-image{display:inherit;-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;-ms-flex-preferred-size:100%;flex-basis:100%;width:100%}.brz .brz-image .brz-img{max-width:100%;border-radius:inherit}.brz .brz-image .brz-a,.brz .brz-image picture{outline:0;border-radius:inherit}.brz .brz-ed-image__content{position:relative;width:100%}.brz .brz-ed-image__wrapper{position:absolute;top:0;left:0;margin-left:auto;margin-right:auto;overflow:hidden}.brz .brz-ed-image__wrapper .brz-img{max-width:none;-webkit-user-select:none;user-select:none;-webkit-user-drag:none;display:block}.brz .brz-ed-image__wrapper picture:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.brz .brz-image-fix-1-1{padding-top:100%}.brz .brz-image-fix-2-1{padding-top:50%}.brz .brz-image-fix-2-3{padding-top:150%}.brz .brz-image-fix-3-4{padding-top:125%}.brz .brz-image-fix-4-3{padding-top:75%}.brz .brz-image-fix-9-16{padding-top:177.8%}.brz .brz-image-fix-16-9{padding-top:56.25%}.brz:not(.brz-ed) .brz-image .brz-a,.brz:not(.brz-ed) .brz-image .brz-img,.brz:not(.brz-ed) .brz-image picture{width:100%}.brz:not(.brz-ed) .brz-image__lightbox *{cursor:-webkit-zoom-in;cursor:zoom-in}.brz .mfp-figure:after,.brz .mfp-iframe-scaler iframe{-webkit-box-shadow:0 0 40px rgba(0,0,0,.35);box-shadow:0 0 40px rgba(0,0,0,.35)}.brz .brz-video{position:relative;width:100%;display:inline-block;vertical-align:middle}.brz .brz-video .brz-iframe,.brz .brz-video .brz-video__cover{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.brz .brz-video .brz-video__cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-repeat:no-repeat}.brz .brz-video .brz-video__cover::before{content:'';display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0 auto}.brz .brz-video .brz-video__cover .brz-video__cover-icon{position:relative;z-index:1;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease}.brz .brz-video .brz-video__cover .brz-video__cover-icon .brz-icon-svg{width:100%;left:2px}.brz .brz-video .brz-video__cover .brz-video__cover-icon a{line-height:0}.brz .brz-video .brz-video__cover:hover{cursor:pointer}.brz .brz-video .brz-video__cover:hover .brz-video__cover-icon{-webkit-transform:scale(1.1);transform:scale(1.1)}.brz .brz-video .brz-shortcode__placeholder{position:absolute;top:0}.brz .brz-embed-code{position:relative;display:inline-block;width:100%;min-height:10px;height:auto;word-break:break-all;word-wrap:break-word}.brz .brz-embed-code .brz-shortcode__placeholder{height:250px}.brz .brz-rich-text{-webkit-font-smoothing:antialiased;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}.brz .brz-rich-text em,.brz .brz-rich-text i{font-style:italic}.brz .brz-rich-text ol li,.brz .brz-rich-text ul li{list-style:none;padding-left:1em}.brz .brz-rich-text ol li:before,.brz .brz-rich-text ul li:before{margin-left:-1em}.brz .brz-rich-text ol ol,.brz .brz-rich-text ol ul,.brz .brz-rich-text ul ol,.brz .brz-rich-text ul ul,.brz .slick-list,.brz .slick-slider.slick-dotted{margin:0}.brz .brz-rich-text ul li:before{position:relative;top:-.1em;line-height:1;content:"\2022";padding-right:.5em}.brz .brz-rich-text ol{counter-reset:number}.brz .brz-rich-text ol li{counter-increment:number}.brz .brz-rich-text ol li:before{content:counter(number);line-height:1;padding-right:.5em}.brz .brz-form .brz-input,.brz .brz-form .brz-textarea,.brz .brz-rich-text span{line-height:inherit;font-family:inherit;font-weight:inherit;letter-spacing:inherit}.brz .brz-rich-text .ql-editor{white-space:pre-wrap}.brz .brz-rich-text h1,.brz .brz-rich-text h2,.brz .brz-rich-text h3,.brz .brz-rich-text h4,.brz .brz-rich-text h5,.brz .brz-rich-text h6{margin-top:0;margin-bottom:0;padding:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text p,.brz .brz-rich-text span{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;text-shadow:none;text-transform:initial;text-decoration:initial}.brz .brz-rich-text span{font-size:inherit}.brz .brz-rich-text p{display:block}.brz .brz-rich-text a,.brz .brz-rich-text em,.brz .brz-rich-text span{display:inline}.brz .brz-rich-text dl,.brz .brz-rich-text ol,.brz .brz-rich-text ul{margin:0;list-style:none;padding:0}.brz .brz-rich-text a{color:#3dbfe8;text-decoration:none;background-color:transparent}.brz .brz-rich-text a[href]:hover{color:#1aabd8;text-decoration:none}.brz .brz-rich-text .link--anchor:not(.is-empty),.brz .brz-rich-text .link--external:not(.is-empty){color:#3dbfe8}.brz .brz-rich-text .link--anchor:not(.is-empty):hover,.brz .brz-rich-text .link--external:not(.is-empty):hover{color:#1aabd8}.brz .brz-text__editor{min-width:10px}.brz .brz-text__editor:empty:before{content:"\00a0\00a0"}.brz .brz-counter{-webkit-transition:all .3s ease;transition:all .3s ease;cursor:default;text-align:center;display:inline-block}.brz .brz-progress-bar__wrapper{overflow:hidden}.brz .brz-progress-bar .brz-text__editor{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz .brz-shortcode__placeholder{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;background-color:#373e48;color:#151924}.brz .brz-shortcode__placeholder .brz-icon-svg{width:calc(16px + (.075 * 100%));height:calc(16px + (.075 * 100%))}.brz .brz-soundcloud{font-size:0}.brz .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.brz .slick-list{position:relative;overflow:hidden;display:block;padding:0}.brz .slick-list:focus{outline:0}.brz .slick-list.dragging{cursor:pointer;cursor:hand}.brz .slick-slider .slick-list,.brz .slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.brz .slick-track:after,.brz .slick-track:before{content:none}.brz .slick-slide{height:100%;min-height:1px;display:none;float:none}.brz .brz-accordion__item--active>.brz-accordion__content:empty,.brz .brz-tabs__items--active .brz-bg-content:empty{min-height:50px}.brz .slick-slide img{display:block}.brz .slick-slide.slick-loading img{display:none}.slick-initialized .brz .slick-slide{display:block}.slick-vertical .brz .slick-slide{display:block;height:auto;border:1px solid transparent}.brz .slick-arrow.slick-hidden{display:none}.brz .brz-slick-slider .brz-icon-svg,.brz .brz-slick-slider .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-slick-slider .brz-bg-media{width:calc(100% + 1px)}.brz .brz-slick-slider .brz-bg-color,.brz .brz-slick-slider .brz-bg-content{-webkit-transform:translateZ(0);transform:translateZ(0)}.brz .brz-slick-slider--fade .slick-slide{height:auto;visibility:hidden}.brz .brz-slick-slider--fade .slick-slide.slick-active{visibility:visible}.brz .slick-initialized .slick-slide{display:block}.brz .slick-track{position:relative;left:0;top:0;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-slick-slider__dots{position:absolute;bottom:50px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);padding:0;list-style:none;margin:0;font-size:0}.brz .brz-slick-slider__dots li{display:inline-block;vertical-align:middle;padding-left:5px;padding-right:5px}.brz .brz-slick-slider__dots li:first-child{padding-left:0}.brz .brz-slick-slider__dots li:last-child{padding-right:0}.brz .brz-slick-slider__dots button{cursor:pointer;color:inherit;outline:0;overflow:hidden;padding:0;text-indent:-9999px;border:2px solid currentColor;background-color:transparent;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots .slick-active button{background-color:currentColor;-webkit-transition:linear .2s transform,linear .2s background-color;transition:linear .2s transform,linear .2s background-color}.brz .brz-slick-slider__dots--circle button{width:10px;height:10px;border-radius:10px}.brz .brz-slick-slider__dots--diamond button{width:10px;height:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz .brz-slick-slider__dots--square button{width:10px;height:10px}.brz .brz-slick-slider__arrow{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:2;font-size:30px;opacity:.7;cursor:pointer;-webkit-transition:linear .2s opacity;transition:linear .2s opacity;color:#000;background-color:transparent;border:none}.brz .brz-slick-slider__arrow:hover{opacity:1;-webkit-transition:linear .2s opacity;transition:linear .2s opacity}.brz .brz-slick-slider__arrow .brz-icon-svg{display:block}.brz .brz-slick-slider__arrow-prev{-webkit-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);left:30px}.brz .brz-slick-slider__arrow-next{right:30px}.brz .brz-form{width:100%}.brz .brz-form__fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-form__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:0;flex-shrink:0}.brz .brz-form .brz-input,.brz .brz-form .brz-textarea{display:block;width:100%;height:auto;background-color:transparent;border:none;outline:0;color:inherit;font-size:inherit}.brz .brz-form .brz-textarea{height:100%;resize:none}.brz .brz-form .brz-form__field{padding:14px 24px}.brz .brz-form__select{position:relative}.brz .brz-form__select-current{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz .brz-form__select-list{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1041;top:100%;left:0;width:100%;background-color:#fff}.brz .brz-form__select-item{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;border:0;height:52px}.brz .brz-form__select-item:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__select-item__input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;font-size:16px;color:rgba(115,119,127,.7);line-height:1;font-family:inherit;font-weight:inherit;padding:14px 24px}.brz .brz-form__select-item__input .brz-input{border-width:0;height:100%;width:100%;color:inherit}.brz .brz-form__select-item__input .brz-input::-webkit-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input::-moz-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .brz-form__select-item__input .brz-input:-ms-input-placeholder{color:rgba(115,119,127,.7);font-style:italic}.brz .media-frame button,.brz .media-frame-title h1{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-style:normal}.brz .brz-form__select-item__input .brz-input.brz-input{cursor:text}.brz .brz-form__select-item__icon{color:rgba(115,119,127,.7);-ms-flex-preferred-size:52px;flex-basis:52px;text-align:center;font-size:13px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.brz .brz-form__select--arrow{font-size:14px}.brz .brz-form .brz-control__select{position:relative}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:inherit;color:inherit}.brz .brz-form .brz-control__select-current{padding:14px 24px;cursor:pointer}.brz .brz-form .brz-control__select-current .brz-control__select-option{border:0;-ms-flex-preferred-size:100%;flex-basis:100%;height:100%}.brz .brz-form .brz-control__select-current .brz-control__select--arrow{font-size:14px}.brz .brz-form .brz-control__select-options{border:1px solid #dcdee1;border-top-width:0;overflow:hidden;position:absolute;z-index:1030;top:100%;left:0;width:100%;background-color:#fff;display:none}.brz .brz-form .brz-control__select-options .brz-control__select-option{padding:14px 24px;font-size:16px;height:52px;line-height:1.5;cursor:pointer}.brz .brz-form .brz-control__select-options .brz-control__select-option:not(:last-child){border-bottom:1px solid #f1f1f2}.brz .brz-form__alert{height:55px;width:100%;font-size:12px;line-height:2;letter-spacing:2.5px;font-weight:600;text-transform:uppercase;padding:17px 30px;color:#fff;margin-top:15px}.brz .brz-form__alert--success{background-color:#15d053}.brz .brz-form__alert--error{background-color:red}.brz .brz-form__item--error .brz-control__select-current,.brz .brz-form__item--error .brz-form__field{border-color:red!important}@media (max-width:767px){.brz .brz-form .brz-control__select-options .brz-control__select-option,.brz .brz-form__select-item__input{padding:10px 16px;font-size:14px}.brz .brz-form .brz-control__select-current,.brz .brz-form .brz-form__field{padding:10px 16px}}.brz .brz-tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz .brz-tabs__nav{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;margin:0;padding:0}.brz .brz-accordion__nav,.brz .brz-tabs__nav--button{padding:10px 15px;background-clip:padding-box;cursor:pointer}.brz .brz-tabs__nav--item{list-style:none}.brz .brz-tabs__nav--item:not(:last-child){margin-right:3px}.brz .brz-tabs__nav--active{position:relative}.brz .brz-tabs__nav--active:after,.brz .brz-tabs__nav--active:before{content:"";position:absolute;width:100vw;height:2px;bottom:0}.brz .brz-tabs__nav--active:before{left:-100vw}.brz .brz-tabs__nav--active:after{right:-100vw}.brz .brz-tabs__nav--button{border-style:solid}.brz .brz-tabs__nav--mobile{display:none}.brz .brz-tabs__items{display:none;border-style:solid;background-clip:padding-box;width:100%}.brz .brz-tabs__items--active{display:block;border-top:none}.brz .brz-tabs__items--active>.brz-tabs__item--content{-webkit-animation-name:fadeIn;animation-name:fadeIn;-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:767px){.brz .brz-tabs__nav--mobile{display:block}.brz .brz-tabs__nav--desktop{display:none}.brz .brz-tabs__items{display:block}.brz .brz-tabs__items>.brz-tabs__item--content{display:none}.brz .brz-tabs__items:not(:last-child){margin-bottom:3px}.brz .brz-tabs__items--active{border-top:solid}.brz .brz-tabs__items--active>.brz-tabs__nav--button{border-bottom:solid}.brz .brz-tabs__items--active>.brz-tabs__item--content{display:block}}.brz .brz-accordion{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.brz .brz-accordion__nav{border-style:solid}.brz .brz-accordion__item{display:block;width:100%}.brz .brz-accordion__item>.brz-accordion__content{display:none;border-style:solid;background-clip:padding-box;border-top-color:transparent!important}.brz .brz-accordion__item:not(:last-child){margin-bottom:3px}.brz .brz-accordion__item--active>.brz-accordion__content{display:block}.brz .brz-image__gallery{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-image__gallery .brz-image{display:block}.brz .brz-image__gallery-item{-webkit-transition:none!important;transition:none!important}.brz .brz-popup{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1070}.brz .brz-popup__close{position:absolute;z-index:2;top:36px;left:50px;color:#fff;font-size:0;cursor:pointer}.brz .brz-popup__close .brz-icon-svg{font-size:26px}.brz .brz-popup__inner>.brz-bg-content{max-height:100%;overflow:auto;padding-top:70px;padding-bottom:70px}.brz .brz-popup__preview{z-index:-1;visibility:hidden;-webkit-transform:translate(-100%);transform:translate(-100%);opacity:0;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz .brz-popup__preview.brz-popup--opened{z-index:100;visibility:visible;-webkit-transform:translate(0);transform:translate(0);opacity:1;-webkit-transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index;transition:.3s cubic-bezier(.25,.46,.45,.94) opacity,.3s cubic-bezier(.25,.46,.45,.94) visibility,.3s cubic-bezier(.25,.46,.45,.94) z-index}.brz .brz-carousel{display:block;width:100%}.brz .brz-carousel__slider:not(.slick-initialized){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz .brz-carousel>.slick-slider{overflow:hidden}.brz .brz-carousel>.slick-slider>.slick-list{padding-top:30px;padding-bottom:30px}.brz .brz-carousel>.slick-slider .slick-slide{height:auto;outline:0}.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div,.brz .brz-carousel>.slick-slider>.slick-list>.slick-track>.slick-slide>div>.brz-columns{height:100%}.brz .brz-carousel>.slick-slider>.brz-slick-slider__arrow{opacity:1}.brz .brz-carousel>.slick-slider>.brz-slick-slider__dots{bottom:10px}.brz .brz-carousel .brz-icon-svg,.brz .brz-carousel .brz-rich-text *{-webkit-backface-visibility:hidden;backface-visibility:hidden}.brz .brz-posts{width:100%;display:grid}.brz .brz-posts ul.page-numbers{margin:0;list-style:none;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-column:1/-1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz .brz-posts ul.page-numbers>li{position:relative;margin-left:4px;margin-right:4px}.brz .brz-posts ul.page-numbers>li:first-child{margin-left:0}.brz .brz-posts ul.page-numbers>li:last-child{margin-right:0}.brz .brz-posts ul.page-numbers .page-numbers{position:relative;display:block;color:inherit;font-size:18px;line-height:1;text-decoration:none;padding:6px 10px;-webkit-transition:.2s linear color;transition:.2s linear color;outline:0}.brz .media-frame .hidden,.brz .screen-reader-text{display:none}.brz .brz-posts ul.page-numbers .page-numbers:before{content:"";width:28px;height:28px;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color;opacity:.75}.brz .brz-posts ul.page-numbers .page-numbers:hover{-webkit-transition:.2s linear color;transition:.2s linear color}.brz .brz-posts ul.page-numbers .page-numbers.current:before{border-color:currentColor;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz .media-modal *{-webkit-box-sizing:content-box;box-sizing:content-box}.brz .media-modal input,.brz .media-modal select,.brz .media-modal textarea{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .media-frame,.brz .media-modal{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;outline:0;-webkit-overflow-scrolling:touch}.brz .media-frame h1,.brz .media-frame h2,.brz .media-frame h3,.brz .media-frame h4,.brz .media-frame h5,.brz .media-frame h6,.brz .media-frame p,.brz .media-modal h1,.brz .media-modal h2,.brz .media-modal h3,.brz .media-modal h4,.brz .media-modal h5,.brz .media-modal h6,.brz .media-modal p{letter-spacing:0;line-height:normal}.brz .media-modal label,.brz .media-modal legend{font-size:13px;text-transform:capitalize;line-height:1.4em;color:#666;font-weight:400}.brz .media-frame input,.brz .media-frame textarea{padding:6px 8px}.brz .media-frame select,.brz .wp-admin .media-frame select{line-height:28px;margin-top:3px}.brz .media-frame a{border-bottom:none;color:#0073aa}.brz .media-frame a:active,.brz .media-frame a:hover{color:#00a0d2}.brz .media-frame a:focus{-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);outline:0;color:#124964}.brz .media-frame a.button{color:#32373c}.brz .media-frame a.button:hover{color:#23282d}.brz .media-frame a.button-primary,.brz .media-frame a.button-primary:hover{color:#fff}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:12px;line-height:normal;font-weight:400;font-style:normal;border:1px solid #ddd;background-color:#fff;min-height:25px;height:auto;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out;letter-spacing:normal}.brz .media-frame input[type=text]:focus,.brz .media-frame input[type=password]:focus,.brz .media-frame input[type=number]:focus,.brz .media-frame input[type=search]:focus,.brz .media-frame input[type=email]:focus,.brz .media-frame input[type=url]:focus,.brz .media-frame select:focus,.brz .media-frame textarea:focus{border-color:#5b9dd9}.brz .media-frame select{height:24px;padding:2px}.brz .media-frame input:disabled,.brz .media-frame input[readonly],.brz .media-frame textarea:disabled,.brz .media-frame textarea[readonly]{background-color:#eee}.brz .media-frame input[type=search]{-webkit-appearance:textfield}.brz .media-frame ::-webkit-input-placeholder{color:#72777c}.brz .media-frame ::-moz-placeholder{color:#72777c;opacity:1}.brz .media-frame :-ms-input-placeholder{color:#72777c}.brz .media-frame button{text-shadow:none!important;line-height:normal!important;letter-spacing:normal;font-weight:400;text-transform:capitalize;margin:0}.brz .media-frame button.delete-attachment{height:auto;font-size:12px;line-height:1}.brz .media-frame button.media-button-select{margin-top:15px;font-size:13px;line-height:26px;height:28px}.brz .media-frame button.browser{color:#555!important;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc}.brz .media-frame button.browser:hover{background:#fafafa;border-color:#999;color:#23282d!important}.brz .media-modal{position:fixed;top:30px;left:78px;right:30px;bottom:60px;z-index:160000}.brz .media-frame-title h1{padding:0 16px;margin:0;font-size:22px;font-weight:600;line-height:50px;color:#23282d;text-shadow:none;text-transform:capitalize}.brz .media-modal-close{position:absolute;top:0;right:0;width:50px;height:50px;margin:0;padding:0;border:1px solid transparent;background:0 0;color:#666;z-index:1000;cursor:pointer;outline:0;text-align:center;-webkit-transition:color .1s ease-in-out,background .1s ease-in-out;transition:color .1s ease-in-out,background .1s ease-in-out}.brz .media-modal-close:active,.brz .media-modal-close:hover{color:#00a0d2}.brz .media-modal-close:focus{color:#00a0d2;border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .media-modal-close span.media-modal-icon{background-image:none}.brz .media-modal-close .media-modal-icon:before{content:"\f158";font:400 20px/1 dashicons;speak:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz .media-frame .search,.brz .media-router>a,.brz .uploader-inline h2,.brz .uploader-inline h3{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-router>a{position:relative;float:left;padding:8px 10px 9px;margin:0;height:18px;line-height:18px;font-size:14px;text-decoration:none;font-style:normal;font-weight:400;border-bottom:none;color:#0073aa;text-transform:capitalize;text-align:left;text-shadow:none}.brz .media-router>a:hover{color:#00a0d2}.brz .media-router>a:last-child{border-right:0}.brz .media-router>a:active{outline:0}.brz .media-router .active,.brz .media-router .active:hover{color:#32373c}.brz .media-router .active,.brz .media-router>a.active:last-child{background:#fff;border:1px solid #ddd;border-bottom:none}.brz .media-frame .search{padding:4px;font-size:13px;border-radius:0;line-height:normal;color:#444}.brz .media-toolbar-primary .search{max-width:100%}.brz .media-modal-content .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;width:42%;width:calc(48% - 12px);padding:2px;line-height:28px;height:28px}.brz .thumbnail{display:block;padding:0;margin-bottom:0;line-height:normal;background-color:transparent;border:0;border-radius:0}.brz .uploader-inline h2,.brz .uploader-inline h3{font-style:normal;letter-spacing:0;color:#23282d}.brz .attachment-details .setting label,.brz .attachment-details .setting span,.brz .image-details h2,.brz .image-details h3,.brz .media-sidebar .setting label,.brz .media-sidebar .setting span,.brz .media-sidebar h2,.brz .media-sidebar h3{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;letter-spacing:normal;font-style:normal;text-shadow:none}.brz .uploader-inline .has-upload-message .upload-instructions,.brz .uploader-inline p{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .media-sidebar .sidebar-title{font-size:20px;margin:0;padding:12px 10px 10px;line-height:28px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.brz .image-details h2,.brz .image-details h3,.brz .media-sidebar h2,.brz .media-sidebar h3{position:relative;font-weight:600;text-transform:uppercase;font-size:12px;line-height:1.4em;color:#666;margin:24px 0 8px}.brz .attachment-details .setting label,.brz .media-sidebar .setting label{display:block;text-transform:capitalize}.brz .attachment-details .setting span,.brz .media-sidebar .setting span{min-width:30%;margin-right:4%;font-size:12px;text-align:right;word-wrap:break-word}.brz .media-sidebar .setting .name{max-width:80px}.brz .attachment-details .setting select,.brz .media-sidebar .setting select{max-width:65%}.brz .attachment-details .field input[type=radio],.brz .attachment-details .field input[type=checkbox],.brz .attachment-details .setting input[type=radio],.brz .attachment-details .setting input[type=checkbox],.brz .media-sidebar .field input[type=radio],.brz .media-sidebar .field input[type=checkbox],.brz .media-sidebar .setting input[type=radio],.brz .media-sidebar .setting input[type=checkbox]{float:none;margin:8px 3px 0;padding:0}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{float:left;min-height:22px;padding-top:8px;line-height:16px;font-weight:400;color:#666}.brz .compat-item label span{text-align:right}.brz .attachment-details .setting .value,.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting textarea,.brz .media-sidebar .setting .value,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting textarea{-webkit-box-sizing:border-box;box-sizing:border-box;margin:1px;width:65%;float:right;border-radius:0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{margin:0 1px;text-align:left}.brz .attachment-details .setting textarea,.brz .compat-item .field textarea,.brz .media-sidebar .setting textarea{height:62px;resize:vertical}.brz .attachment-details select,.brz .media-sidebar select{margin-top:3px}.brz .media-frame-title .suggested-dimensions{font-size:14px;float:right;margin-right:20px}.brz .media-frame select.attachment-filters{margin-top:11px;margin-right:2%;max-width:42%;max-width:calc(48% - 12px)}.brz .media-frame select.attachment-filters:last-of-type{margin-right:0}.brz .wp-core-ui .attachment{position:relative;float:left;padding:8px;margin:0;color:#444;cursor:pointer;list-style:none;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:25%;-webkit-box-sizing:border-box;box-sizing:border-box}.brz .wp-core-ui .attachment.details:focus,.brz .wp-core-ui .attachment:focus,.brz .wp-core-ui .selected.attachment:focus{-webkit-box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;box-shadow:inset 0 0 2px 3px #fff,inset 0 0 0 7px #5b9dd9;outline:0}.brz .wp-core-ui .selected.attachment{-webkit-box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc;box-shadow:inset 0 0 0 5px #fff,inset 0 0 0 7px #ccc}.brz .wp-core-ui .attachment.details{-webkit-box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa;box-shadow:inset 0 0 0 3px #fff,inset 0 0 0 7px #0073aa}.brz .wp-core-ui .attachment-preview{position:relative;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);box-shadow:inset 0 0 15px rgba(0,0,0,.1),inset 0 0 0 1px rgba(0,0,0,.05);background:#eee;cursor:pointer}.brz .wp-core-ui .attachment-preview:before{content:"";display:block;padding-top:100%}.brz .wp-core-ui .attachment .icon{margin:0 auto;overflow:hidden}.brz .wp-core-ui .attachment .thumbnail{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;opacity:1;-webkit-transition:opacity .1s;transition:opacity .1s}.brz .wp-core-ui .attachment .portrait img{max-width:100%}.brz .wp-core-ui .attachment .landscape img{max-height:100%}.brz .wp-core-ui .attachment .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz .wp-core-ui .attachment .thumbnail img{top:0;left:0}.brz .wp-core-ui .attachment .thumbnail .centered{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.brz .wp-core-ui .attachment .thumbnail .centered img{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz .wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon{-webkit-transform:translate(-50%,-70%);transform:translate(-50%,-70%)}.brz .ie8 .wp-core-ui .attachment img.icon{top:20%;position:relative}.brz .wp-core-ui .attachment .filename{position:absolute;left:0;right:0;bottom:0;overflow:hidden;max-height:100%;word-wrap:break-word;text-align:center;font-weight:600;background:rgba(255,255,255,.8);-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .filename div{padding:5px 10px}.brz .wp-core-ui .attachment .thumbnail img{position:absolute}.brz .wp-core-ui .attachment-close{display:block;position:absolute;top:5px;right:5px;height:22px;width:22px;padding:0;background-color:#fff;background-position:-96px 4px;border-radius:3px;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.3);box-shadow:0 0 0 1px rgba(0,0,0,.3);-webkit-transition:none;transition:none}.brz .wp-core-ui .attachment-close:focus,.brz .wp-core-ui .attachment-close:hover{background-position:-36px 4px}.brz .wp-core-ui .attachment .check{display:none;height:24px;width:24px;padding:0;border:0;position:absolute;z-index:10;top:0;right:0;outline:0;background:#eee;cursor:pointer;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15);box-shadow:0 0 0 1px #fff,0 0 0 2px rgba(0,0,0,.15)}.brz .wp-core-ui .attachment .check .media-modal-icon{display:block;background-position:-1px 0;height:15px;width:15px;margin:5px}.brz .wp-core-ui .attachment .check:hover .media-modal-icon{background-position:-40px 0}.brz .wp-core-ui .attachment.selected .check{display:block}.brz .wp-core-ui .attachment.details .check,.brz .wp-core-ui .attachment.selected .check:focus,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check{background-color:#0073aa;-webkit-box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 2px #0073aa}.brz .wp-core-ui .attachment.details .check .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check .media-modal-icon{background-position:-21px 0}.brz .wp-core-ui .attachment.details .check:hover .media-modal-icon,.brz .wp-core-ui .attachment.selected .check:focus .media-modal-icon,.brz .wp-core-ui .media-frame.mode-grid .attachment.selected .check:hover .media-modal-icon{background-position:-60px 0}.brz .wp-core-ui .media-frame .attachment .describe{position:relative;display:block;width:100%;margin:0;padding:8px;font-size:12px;border-radius:0}.brz .media-frame .attachments-browser{position:relative;width:100%;height:100%;overflow:hidden}.brz .attachments-browser .media-toolbar{right:300px;height:50px}.brz .attachments-browser.hide-sidebar .media-toolbar{right:0}.brz .attachments-browser .media-toolbar-primary>.media-button,.brz .attachments-browser .media-toolbar-primary>.media-button-group,.brz .attachments-browser .media-toolbar-secondary>.media-button,.brz .attachments-browser .media-toolbar-secondary>.media-button-group{margin:11px 0}.brz .attachments-browser .attachments{padding:2px 8px 8px}.brz .attachments-browser .attachments,.brz .attachments-browser .uploader-inline{position:absolute;top:50px;left:0;right:300px;bottom:0;overflow:auto;outline:0}.brz .attachments-browser .uploader-inline.hidden{display:none}.brz .attachments-browser .media-toolbar-primary{max-width:33%}.brz .attachments-browser .media-toolbar-secondary{max-width:66%}.brz .uploader-inline .close{background-color:transparent;border:0;cursor:pointer;height:48px;outline:0;padding:0;position:absolute;right:2px;text-align:center;top:2px;width:48px;z-index:1}.brz .uploader-inline .close:before{font:400 30px/1 dashicons!important;color:#555d66;display:inline-block;content:"\f335";font-weight:300;margin-top:1px}.brz .uploader-inline .close:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .attachments-browser.hide-sidebar .attachments,.brz .attachments-browser.hide-sidebar .uploader-inline{right:0;margin-right:0}.brz .attachments-browser .instructions{display:inline-block;margin-top:16px;line-height:18px;font-size:13px;color:#666;margin-right:.5em}.brz .attachments-browser .no-media{padding:2em 0 0 2em}.brz .media-progress-bar{position:relative;height:10px;width:70%;margin:10px auto;border-radius:10px;background:#ddd;background:rgba(0,0,0,.1)}.brz .media-progress-bar div{height:10px;min-width:20px;width:0;background:#0073aa;border-radius:10px;-webkit-transition:width .3s;transition:width .3s}.brz .media-uploader-status .media-progress-bar{display:none;width:100%}.brz .uploading.media-uploader-status .media-progress-bar{display:block}.brz .attachment-preview .media-progress-bar{position:absolute;top:50%;left:15%;width:70%;margin:-5px 0 0}.brz .media-uploader-status{position:relative;margin:0 auto;padding-bottom:10px;max-width:400px}.brz .uploader-inline .media-uploader-status h2,.brz .uploader-inline .media-uploader-status h3{display:none}.brz .media-uploader-status .upload-details{display:none;font-size:12px;color:#666}.brz .uploading.media-uploader-status .upload-details{display:block}.brz .media-uploader-status .upload-detail-separator{padding:0 4px}.brz .media-uploader-status .upload-count{color:#444}.brz .media-uploader-status .upload-dismiss-errors,.brz .media-uploader-status .upload-errors{display:none}.brz .errors.media-uploader-status .upload-dismiss-errors,.brz .errors.media-uploader-status .upload-errors{display:block}.brz .media-uploader-status .upload-dismiss-errors{text-decoration:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors{position:absolute;top:-10px;right:-10px;padding:10px;-webkit-transition:none;transition:none}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:before{content:"\f153";display:block;font:400 16px/1 dashicons;color:#72777c}.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:focus:before,.brz .media-sidebar .media-uploader-status .upload-dismiss-errors:hover:before{color:#c00}.brz .upload-errors .upload-error{padding:12px;margin-bottom:12px;background:#fff;border-left:4px solid #dc3232;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.brz .uploader-inline .upload-errors .upload-error{background-color:#fbeaea;-webkit-box-shadow:none;box-shadow:none}.brz .upload-errors .upload-error-filename{font-weight:600}.brz .upload-errors .upload-error-message{display:block;padding-top:8px;word-wrap:break-word}.brz .uploader-window{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,86,132,.9);z-index:250000;display:none;text-align:center;opacity:0;-webkit-transition:opacity 250ms;transition:opacity 250ms}.brz .uploader-window-content{position:absolute;top:10px;left:10px;right:10px;bottom:10px;border:1px dashed #fff}.brz .uploader-window h1,.brz .uploader-window h3{margin:-.5em 0 0;position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:40px;color:#fff;padding:0}.brz .uploader-window .media-progress-bar{margin-top:20px;max-width:300px;background:0 0;border-color:#fff;display:none}.brz .uploader-window .media-progress-bar div{background:#fff}.brz .uploading .uploader-window .media-progress-bar{display:block}.brz .media-frame .uploader-inline{margin-bottom:20px;padding:0;text-align:center}.brz .uploader-inline-content{position:absolute;top:30%;left:0;right:0}.brz .uploader-inline-content .upload-ui{margin:2em 0}.brz .uploader-inline-content .post-upload-ui{margin-bottom:2em}.brz .uploader-inline .has-upload-message .upload-ui{margin:0 0 4em}.brz .uploader-inline h2,.brz .uploader-inline h3{font-size:20px;line-height:28px;font-weight:400;margin:0}.brz .uploader-inline .has-upload-message .upload-instructions{font-size:14px;color:#444;font-weight:400}.brz .uploader-inline .drop-instructions{display:none}.brz .supports-drag-drop .uploader-inline .drop-instructions{display:block}.brz .uploader-inline p{font-size:12px;margin:.5em 0}.brz .uploader-inline .media-progress-bar{display:none}.brz .uploading.uploader-inline .media-progress-bar{display:block}.brz .uploader-inline .browser{display:inline-block!important}.brz .media-selection{position:absolute;top:0;left:0;right:350px;height:60px;padding:0 0 0 16px;overflow:hidden;white-space:nowrap}.brz .media-selection .selection-info{display:inline-block;font-size:12px;height:60px;margin-right:10px;vertical-align:top}.brz .media-selection.editing,.brz .media-selection.empty,.brz .media-selection.one .edit-selection{display:none}.brz .media-selection .count{display:block;padding-top:12px;font-size:14px;line-height:20px;font-weight:600}.brz .media-selection .attachments,.brz .media-selection .selection-view{display:inline-block;vertical-align:top}.brz .media-selection .button-link{float:left;padding:1px 8px;margin:1px 8px 1px -8px;line-height:16px;border-right:1px solid #ddd;color:#0073aa;text-decoration:none}.brz .media-selection .button-link:focus,.brz .media-selection .button-link:hover{color:#00a0d2}.brz .media-selection .button-link:last-child{border-right:0;margin-right:0}.brz .selection-info .clear-selection{color:#bc0b0b}.brz .selection-info .clear-selection:focus,.brz .selection-info .clear-selection:hover{color:#dc3232}.brz .media-selection .attachments{height:48px;margin:6px;padding:0;overflow:hidden}.brz .media-selection .attachment{width:40px;padding:0;margin:4px}.brz .media-selection .attachment .thumbnail{top:0;right:0;bottom:0;left:0}.brz .media-selection .attachment .icon{width:50%}.brz .media-selection .attachment-preview{-webkit-box-shadow:none;box-shadow:none;background:0 0}.brz .wp-core-ui .media-selection .attachment.details:focus,.brz .wp-core-ui .media-selection .attachment:focus,.brz .wp-core-ui .media-selection .selected.attachment:focus{-webkit-box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9;box-shadow:0 0 0 1px #fff,0 0 2px 3px #5b9dd9}.brz .wp-core-ui .media-selection .selected.attachment{-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui .media-selection .attachment.details{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa;box-shadow:0 0 0 1px #fff,0 0 0 3px #0073aa}.brz .media-selection:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;width:25px;background-image:-webkit-gradient(linear,right top,left top,from(white),to(rgba(255,255,255,0)));background-image:linear-gradient(to left,#fff,rgba(255,255,255,0))}.brz .media-selection .attachment .filename{display:none}.brz .media-frame .spinner{background-size:20px 20px;float:right;display:inline-block;visibility:hidden;opacity:.7;filter:alpha(opacity=70);width:20px;height:20px;margin:0;vertical-align:middle}.brz .attachment-details.save-waiting .settings-save-status .spinner,.brz .media-frame .embed-loading .embed-url .spinner,.brz .media-frame .spinner.is-active{visibility:visible}.brz .media-toolbar .spinner{margin-top:14px}.brz .attachment-details{position:relative;overflow:auto}.brz .attachment-details .settings-save-status{float:right;text-transform:none;z-index:10}.brz .attachment-details .settings-save-status .spinner{margin-left:5px}.brz .attachment-details .settings-save-status .saved{float:right;display:none}.brz .attachment-details.save-complete .settings-save-status .saved{display:block}.brz .attachment-info{overflow:hidden;min-height:60px;margin-bottom:16px;line-height:18px;color:#666;border-bottom:1px solid #ddd;padding-bottom:11px}.brz .attachment-info .filename{font-weight:600;color:#444;word-wrap:break-word}.brz .attachment-info .thumbnail{position:relative;float:left;max-width:120px;max-height:120px;margin-top:5px;margin-right:10px;margin-bottom:5px}.brz .uploading .attachment-info .thumbnail{width:120px;height:80px;-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,.1);box-shadow:inset 0 0 15px rgba(0,0,0,.1)}.brz .uploading .attachment-info .media-progress-bar{margin-top:35px}.brz .attachment-info .thumbnail-image:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);overflow:hidden}.brz .attachment-info .thumbnail img{display:block;max-width:120px;max-height:120px;margin:0 auto}.brz .attachment-info .details{float:left;font-size:12px;max-width:100%}.brz .attachment-info .delete-attachment,.brz .attachment-info .edit-attachment,.brz .attachment-info .trash-attachment,.brz .attachment-info .untrash-attachment{display:block;text-decoration:none;white-space:nowrap}.brz .attachment-details.needs-refresh .attachment-info .edit-attachment{display:none}.brz .attachment-info .edit-attachment{display:block}.brz .media-modal .delete-attachment,.brz .media-modal .trash-attachment,.brz .media-modal .untrash-attachment{display:inline;padding:0;color:#bc0b0b}.brz .media-modal .delete-attachment:focus,.brz .media-modal .delete-attachment:hover,.brz .media-modal .trash-attachment:focus,.brz .media-modal .trash-attachment:hover,.brz .media-modal .untrash-attachment:focus,.brz .media-modal .untrash-attachment:hover{color:#dc3232}.brz .attachment-display-settings{width:100%;float:left;overflow:hidden}.brz .attachment-display-settings h4{margin:1.4em 0 .4em}.brz .collection-settings{overflow:hidden}.brz .collection-settings .setting input[type=checkbox]{float:left;margin-right:8px}.brz .collection-settings .setting span{min-width:inherit}.brz .media-modal .imgedit-wrap{position:static}.brz .media-modal .imgedit-wrap .imgedit-panel-content{padding:16px;position:absolute;top:0;right:282px;bottom:0;left:0;overflow:auto}.brz .media-modal .imgedit-wrap .imgedit-settings{background:#f3f3f3;border-left:1px solid #ddd;padding:20px 16px 16px;position:absolute;top:0;right:0;bottom:0;width:250px;overflow:auto}.brz .media-modal .imgedit-group{background:0 0;border:none;border-bottom:1px solid #ddd;-webkit-box-shadow:none;box-shadow:none;margin:0 0 16px;padding:0 0 16px;position:relative}.brz .media-modal .imgedit-group:last-of-type{border:none;margin:0;padding:0}.brz .media-modal .imgedit-group-top{margin:0}.brz .media-modal .imgedit-group-top h2,.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h3{display:inline-block;text-transform:uppercase;font-size:12px;color:#666;margin:3px 0 0}.brz .media-modal .imgedit-group-top h2 .button-link,.brz .media-modal .imgedit-group-top h2 a,.brz .media-modal .imgedit-group-top h3 a{text-decoration:none;color:#666}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:active,.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:hover{border:1px solid transparent;margin:0;padding:0;background:0 0;color:#0074a2;font-size:20px;line-height:1;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:none;box-shadow:none}.brz .wp-core-ui.media-modal .image-editor .imgedit-help-toggle:focus{color:#0074a2;border-color:#5b9dd9;outline:0;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}.brz .wp-core-ui.media-modal .imgedit-group-top .dashicons-arrow-down.imgedit-help-toggle{margin-top:-3px}.brz .wp-core-ui.media-modal .image-editor h3 .imgedit-help-toggle{margin-top:-2px}.brz .media-modal .imgedit-help-toggled span.dashicons:before{content:"\f142"}.brz .media-modal .imgedit-thumbnail-preview{margin:10px 8px 0 0}.brz .imgedit-thumbnail-preview-caption{display:block}.brz .media-modal .imgedit-wrap div.updated{margin:0 0 16px}.brz .embed-url{display:block;position:relative;padding:16px;margin:0;z-index:250;background:#fff;font-size:18px}.brz .media-frame .embed-url input{font-size:18px;padding:12px 14px;width:100%;min-width:200px;-webkit-box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1);box-shadow:inset 2px 2px 4px -2px rgba(0,0,0,.1)}.brz .media-frame .embed-url .spinner{position:absolute;top:32px;right:26px}.brz .embed-link-settings,.brz .embed-media-settings{position:absolute;top:70px;left:0;right:0;bottom:0;padding:16px 16px 32px;overflow:auto}.brz .media-embed .embed-link-settings{overflow:visible}.brz .embed-preview embed,.brz .embed-preview iframe,.brz .embed-preview img,.brz .mejs-container video{max-width:100%;vertical-align:middle}.brz .embed-preview a{display:inline-block}.brz .embed-preview img{display:block;height:auto}.brz .mejs-container:focus{outline:#5b9dd9 solid 1px;-webkit-box-shadow:0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 2px 1px rgba(30,140,190,.8)}.brz .image-details .media-modal{left:140px;right:140px}.brz .image-details .media-frame-content,.brz .image-details .media-frame-router,.brz .image-details .media-frame-title{left:0}.brz .image-details .embed-media-settings{top:0;overflow:visible;padding:0}.brz .image-details .embed-media-settings,.brz .image-details .embed-media-settings div{-webkit-box-sizing:border-box;box-sizing:border-box}.brz .image-details .column-settings{background:#f3f3f3;border-right:1px solid #ddd;min-height:100%;width:55%;position:absolute;top:0;left:0}.brz .image-details .column-settings h2,.brz .image-details .column-settings h3{margin:20px;padding-top:20px;border-top:1px solid #ddd;color:#23282d}.brz .image-details .column-image{width:45%;position:absolute;left:55%;top:0}.brz .image-details .image{margin:20px}.brz .image-details .image img{max-width:100%;max-height:500px}.brz .image-details .advanced-toggle{padding:0;color:#666;text-transform:uppercase;text-decoration:none}.brz .image-details .advanced-toggle:active,.brz .image-details .advanced-toggle:hover{color:#666}.brz .image-details .advanced-toggle:after{font:400 20px/1 dashicons;speak:none;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f140";display:inline-block;margin-top:-2px}.brz .image-details .advanced-visible .advanced-toggle:after{content:"\f142"}.brz .image-details .embed-media-settings .size{margin-bottom:4px}.brz .image-details .custom-size span{display:block}.brz .image-details .custom-size label{display:block;float:left}.brz .image-details .custom-size span small{color:#555d66;font-size:inherit}.brz .image-details .custom-size input{width:5em}.brz .image-details .custom-size .sep{float:left;margin:26px 6px 0}.brz .image-details .custom-size:after{content:"";display:table;clear:both}.brz .media-embed .thumbnail{max-width:100%;max-height:200px;position:relative;float:left}.brz .media-embed .thumbnail img{max-height:200px;display:block}.brz .media-embed .thumbnail:after{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);overflow:hidden}.brz-ed .brz-a,.brz-ed .brz-a[href]:hover{-webkit-box-shadow:none;text-decoration:none}.brz .media-embed .setting{width:100%;margin:10px 0;float:left;display:block;clear:both}.brz .image-details .embed-media-settings .setting{float:none;width:auto}.brz .image-details .actions{margin:10px 0}.brz .image-details .hidden{display:none}.brz .media-embed .setting input[type=text],.brz .media-embed .setting textarea{display:block;width:100%;max-width:400px;margin:1px 0}.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{max-width:inherit;width:70%}.brz .image-details .embed-media-settings .custom-size,.brz .image-details .embed-media-settings .link-target,.brz .image-details .embed-media-settings .setting input.link-to-custom{margin-left:27%;width:70%}.brz .image-details .embed-media-settings .link-target{margin-top:24px}.brz .media-embed .setting input.hidden,.brz .media-embed .setting textarea.hidden{display:none}.brz .media-embed .setting span{display:block;width:200px;font-size:13px;line-height:24px;color:#666}.brz .image-details .embed-media-settings .setting span{float:left;width:25%;text-align:right;margin:8px 1% 0;line-height:1.1}.brz .media-embed .setting .button-group{margin:2px 0}.brz .media-embed-sidebar{position:absolute;top:0;left:440px}.brz .advanced-section,.brz .link-settings{margin-top:10px}.brz .wp-editor-wrap .uploader-editor{background:rgba(150,150,150,.9);position:absolute;top:0;left:0;width:100%;height:100%;z-index:99998;display:none;text-align:center}.brz .wp-editor-wrap .uploader-editor-content{border:1px dashed #fff;position:absolute;top:10px;left:10px;right:10px;bottom:10px}.brz .wp-editor-wrap .uploader-editor .uploader-editor-title{position:absolute;top:50%;left:0;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:3em;line-height:1.3;font-weight:600;color:#fff;padding:0;margin:0;display:none}.brz .wp-editor-wrap .uploader-editor.droppable{background:rgba(0,86,132,.9)}.brz .wp-editor-wrap .uploader-editor.droppable .uploader-editor-title{display:block}@media only screen and (max-width:900px){.brz .media-frame:not(.hide-menu) .media-frame-content,.brz .media-frame:not(.hide-menu) .media-frame-router,.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-frame-toolbar{left:0}.brz .media-frame:not(.hide-menu) .media-frame-menu{position:static;width:0}.brz .media-frame:not(.hide-menu) .media-menu{width:auto;max-width:80%;overflow:auto;z-index:2000;top:50px;left:-300px;right:auto;bottom:auto;padding:5px 0;border:1px solid #ccc}.brz .media-frame:not(.hide-menu) .media-frame-title,.brz .media-frame:not(.hide-menu) .media-menu.visible{left:0}.brz .media-frame:not(.hide-menu) .media-menu>a{padding:12px 16px;font-size:16px}.brz .media-frame:not(.hide-menu) .media-menu>a.active{display:none}.brz .media-frame:not(.hide-menu) .media-menu .separator{margin:5px 10px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{display:inline-block;line-height:50px}.brz .media-frame:not(.hide-menu) .media-frame-title h1{color:#0073aa;line-height:3;font-size:18px;float:left;cursor:pointer}.brz .media-sidebar{width:230px}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:262px}.brz .attachment-details .setting,.brz .media-sidebar .setting{margin:6px 0}.brz .attachment-details .setting input,.brz .attachment-details .setting span,.brz .attachment-details .setting textarea,.brz .compat-item label span,.brz .media-sidebar .setting input,.brz .media-sidebar .setting span,.brz .media-sidebar .setting textarea{float:none}.brz .attachment-details .setting span,.brz .compat-item label span,.brz .media-sidebar .setting span{text-align:inherit;min-height:16px;margin:0;padding:8px 2px 0}.brz .attachment-details .setting .value,.brz .media-sidebar .setting .value{float:none;width:auto}.brz .attachment-details .setting input[type=text],.brz .attachment-details .setting input[type=password],.brz .attachment-details .setting input[type=number],.brz .attachment-details .setting input[type=search],.brz .attachment-details .setting input[type=email],.brz .attachment-details .setting input[type=url],.brz .attachment-details .setting input[type=tel],.brz .attachment-details .setting select,.brz .attachment-details .setting textarea,.brz .media-sidebar .setting input[type=text],.brz .media-sidebar .setting input[type=password],.brz .media-sidebar .setting input[type=number],.brz .media-sidebar .setting input[type=search],.brz .media-sidebar .setting input[type=email],.brz .media-sidebar .setting input[type=url],.brz .media-sidebar .setting input[type=tel],.brz .media-sidebar .setting select,.brz .media-sidebar .setting textarea{float:none;width:98%;max-width:none;height:auto}.brz .attachment-details .setting select.columns,.brz .media-sidebar .setting select.columns{width:auto}.brz .media-frame .search,.brz .media-frame input,.brz .media-frame textarea{padding:3px 6px}.brz .image-details .column-image{width:30%;left:70%}.brz .image-details .column-settings{width:70%}.brz .image-details .media-modal{left:30px;right:30px}.brz .image-details .embed-media-settings .setting{margin:20px}.brz .image-details .embed-media-settings .setting span{float:none;text-align:left;width:100%;margin-bottom:4px}.brz .image-details .embed-media-settings .setting input.link-to-custom,.brz .image-details .embed-media-settings .setting input[type=text],.brz .image-details .embed-media-settings .setting textarea{width:100%;margin-left:0}.brz .image-details .embed-media-settings .custom-size{margin-left:20px}.brz .collection-settings .setting input[type=checkbox]{margin-top:0}.brz .media-selection{min-width:120px}.brz .media-selection:after{background:0 0}.brz .media-selection .attachments{display:none}.brz .media-modal .attachments-browser .media-toolbar .search{max-width:100%;height:auto;float:right}.brz .media-modal .attachments-browser .media-toolbar .attachment-filters{height:auto}.brz .media-modal .attachments-browser .media-toolbar .spinner{margin:14px 2px 0}.brz .media-frame input[type=text],.brz .media-frame input[type=password],.brz .media-frame input[type=number],.brz .media-frame input[type=search],.brz .media-frame input[type=email],.brz .media-frame input[type=url],.brz .media-frame select,.brz .media-frame textarea{font-size:16px}}@media only screen and (max-width:640px),screen and (max-height:400px){.brz .image-details .media-modal,.brz .media-modal{position:fixed;top:0;left:0;right:0;bottom:0}.brz .media-modal-backdrop{position:fixed}.brz .media-sidebar{z-index:1900;max-width:70%;bottom:120%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:0}.brz .media-sidebar.visible{bottom:0}.brz .attachments-browser .attachments,.brz .attachments-browser .media-toolbar,.brz .attachments-browser .uploader-inline{right:0}.brz .image-details .media-frame-title{display:block;top:0;font-size:14px}.brz .image-details .column-image,.brz .image-details .column-settings{width:100%;position:relative;left:0}.brz .image-details .column-settings{padding:4px 0}.brz .media-frame-content .media-toolbar .instructions{display:none}}@media screen and (max-height:400px){.brz .media-menu{padding:0}.brz .media-frame-router{top:44px}.brz .media-frame-content{top:78px}.brz .attachments-browser .attachments{top:40px}.brz .embed-link-settings{overflow:visible}}.brz .brz-root__container.brz-reset-all,.brz-ed #brz-ed-root>.brz-reset-all,.brz-ed .body-without-scroll{overflow:hidden}@media only screen and (max-width:480px){.brz .media-modal-close{top:-5px}.brz .media-modal .media-frame-title{height:40px}.brz .wp-core-ui.wp-customizer .media-button{margin-top:13px}.brz .media-frame:not(.hide-menu) .media-frame-title h1,.brz .media-modal .media-frame-title h1{font-size:18px;line-height:40px}.brz .media-frame:not(.hide-menu) .media-frame-title .dashicons{line-height:40px}.brz .media-frame-router,.brz .media-frame:not(.hide-menu) .media-menu{top:40px}.brz .media-frame-content{top:74px}.brz .media-frame.hide-router .media-frame-content{top:40px}}@media print,(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.brz .wp-core-ui .media-modal-icon{background-size:134px 15px}}.brz .media-frame-content[data-columns="1"] .attachment{width:100%}.brz .media-frame-content[data-columns="2"] .attachment{width:50%}.brz .media-frame-content[data-columns="3"] .attachment{width:33.33%}.brz .media-frame-content[data-columns="4"] .attachment{width:25%}.brz .media-frame-content[data-columns="5"] .attachment{width:20%}.brz .media-frame-content[data-columns="6"] .attachment{width:16.66%}.brz .media-frame-content[data-columns="7"] .attachment{width:14.28%}.brz .media-frame-content[data-columns="8"] .attachment{width:12.5%}.brz .media-frame-content[data-columns="9"] .attachment{width:11.11%}.brz .media-frame-content[data-columns="10"] .attachment{width:10%}.brz .media-frame-content[data-columns="11"] .attachment{width:9.09%}.brz .media-frame-content[data-columns="12"] .attachment{width:8.33%}.brz .admin-bar .wp-env .visual-sidebar{top:32px;left:0}.brz .admin-bar .wp-env .visual-wrap-block-wrap{margin-left:0;padding-bottom:0}.brz .brz-wp__sidebar{width:100%}.brz .brz-wp__sidebar .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode{width:100%}.brz .brz-wp-shortcode .woocommerce:empty{width:100%;height:15px}.brz .brz-wp-shortcode .woocommerce-product-gallery{opacity:1!important}.brz .brz-wp-shortcode .brz-shortcode__placeholder{width:100%;min-height:300px}.brz .brz-wp-shortcode__menu .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;list-style:none;margin:0 auto;padding:0}.brz .brz-wp-shortcode__menu .menu .menu-item{position:relative;text-align:left;list-style:none}.brz .brz-wp-shortcode__menu .menu .menu-item a span{display:block}.brz .brz-wp-shortcode__menu .menu .sub-menu{position:absolute;left:0;padding-left:0;padding-right:0;text-align:center;text-transform:none;list-style:none;margin:0!important;display:none;width:280px;background-color:#33344b;z-index:110}.brz .brz-wp-shortcode__menu .menu .sub-menu .menu-item{display:block;margin:0;padding:0}.brz .brz-wp-shortcode__menu .menu .sub-menu .menu-item a{display:block;line-height:1.2em;padding:10px 12%}.brz .brz-wp-shortcode__menu .menu .sub-menu .sub-menu{display:none;left:100%;top:0}.brz .brz-wp-shortcode__menu .menu>.menu-item{display:inline-block;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;padding-top:5px;padding-bottom:5px}.brz .brz-wp-shortcode__menu .menu>.menu-item>.sub-menu{top:100%;padding-top:15px;padding-bottom:15px}.brz .brz-wp-shortcode__menu .menu>.menu-item:hover>.sub-menu,.brz .brz-wp-shortcode__menu .menu>.menu-item>.sub-menu>.menu-item:hover>.sub-menu{display:block}.brz .brz-wp-shortcode__menu .menu>ul{margin:0!important}.brz .brz-wp-shortcode__menu .menu>ul .page_item:not(:first-child){margin-left:15px}.brz .brz-wp-shortcode__menu__toggle .menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.brz .brz-wp-shortcode__menu__icon{display:none;padding:15px;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin:0}.brz .brz-wp-shortcode__menu__icon--bars{display:block;height:2px;position:relative;-webkit-transition:background .2s ease-out;transition:background .2s ease-out;width:18px}.brz .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu__icon--bars:before{background-color:currentColor;content:"";display:block;height:100%;position:absolute;-webkit-transition:all .2s ease-out;transition:all .2s ease-out;width:100%}.brz-ed #brz-ed-root,.brz-ed .brz-ed-element-placeholder{position:relative}.brz .brz-wp-shortcode__menu__icon--bars:before{top:5px}.brz .brz-wp-shortcode__menu__icon--bars:after{top:-5px}.brz .brz-wp-shortcode__menu__btn{display:none}.brz .brz-wp-shortcode__menu__btn:checked~div .menu{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:100%}.brz .brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars{background:0 0}.brz .brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.brz .brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon .brz-wp-shortcode__menu__icon--bars:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.brz .brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:after,.brz .brz-wp-shortcode__menu__btn:checked~.brz-wp-shortcode__menu__icon:not(.steps) .brz-wp-shortcode__menu__icon--bars:before{top:0}@media (max-width:767px){.brz:not(.brz-ed) .brz-wp-shortcode__menu{width:auto;text-align:center}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu .sub-menu .menu-item a{padding:5px}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu .sub-menu .menu-item a:hover{background-color:transparent}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu .sub-menu .sub-menu{display:block;left:15px}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu>.menu-item{padding:0}.brz:not(.brz-ed) .brz-wp-shortcode__menu__toggle .menu>.menu-item>.sub-menu{top:100%;padding:5px 0}.brz:not(.brz-ed) .brz-wp-shortcode__menu__icon{display:inline-block}.brz:not(.brz-ed) .brz-wp-shortcode__menu>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu .menu-item a{color:#fcfcfc}.brz:not(.brz-ed) .brz-wp-shortcode__menu>div:not(.brz-wp-shortcode__menu__toggle) .menu .sub-menu .menu-item a:hover{color:#fff;background:rgba(36,36,53,.94)}}@media (min-width:768px){.brz:not(.brz-ed) .brz-wp-shortcode__menu .menu .sub-menu .menu-item a{color:#fcfcfc}.brz:not(.brz-ed) .brz-wp-shortcode__menu .menu .sub-menu .menu-item a:hover{color:#fff;background:rgba(36,36,53,.94)}}.brz.brz-ed--mobile .brz-wp-shortcode__menu{width:auto;text-align:center}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;max-height:0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-transition:max-height .2s ease-out;transition:max-height .2s ease-out}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu .sub-menu{position:relative;display:block;width:100%;left:15px;background-color:transparent}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu .sub-menu .menu-item a{padding:5px}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu .sub-menu .menu-item a:hover{background-color:transparent}.brz-ed #brz-ed-root,body.brz-ed{background-color:#f3f3f3}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu .sub-menu .sub-menu{display:block;left:15px}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu>.menu-item{padding:0}.brz.brz-ed--mobile .brz-wp-shortcode__menu__toggle .menu>.menu-item>.sub-menu{display:none;top:100%;padding:5px 0}.brz.brz-ed--mobile .brz-wp-shortcode__menu__icon{display:inline-block}@-webkit-keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes brz-ed-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes brz-ed-fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes brz-ed-fadeIn{from{opacity:0}to{opacity:1}}@keyframes brz-ed-fadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes brz-ed-fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@-webkit-keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@keyframes brz-ed-pulsate{0%{-webkit-transform:scale(.1,.1);transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{-webkit-transform:scale(1.2,1.2);transform:scale(1.2,1.2);opacity:0}}@-webkit-keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes brz-ed-sk-bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}.brz-ed .brz-ed-wrap-block-wrap{width:100%}.brz-ed .brz-ed-wrap-block-wrap--first{min-height:400px;height:100vh}.brz-ed .btn .brz-span[contenteditable=true]{cursor:text}.brz-ed .brz-ed-element-placeholder *{visibility:hidden}.brz-ed .brz-ed-element-placeholder:after{position:absolute;top:0;right:0;bottom:0;left:0;content:"";display:block;border:1px dashed #34beea;visibility:visible}.brz-ed .brz-ed-bar-wrapper,.brz-ed .brz-ed-fixed,.brz-ed .brz-ed-large-popup,.brz-ed .brz-ed-sidebar-block{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*,:after,:before,html{-webkit-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.brz-ed .brz-figcaption,.brz-ed .brz-figure,.brz-ed .brz-section{display:block}body{margin:0}body.brz::after,body.brz::before{display:none}.brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.brz-ed .brz-hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible;margin:0}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{margin-top:0;margin-bottom:0;padding:0}.brz-ed .brz-p{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0}.brz-ed .brz-span{float:none;margin:0;padding:0;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit}.brz-ed .brz-b,.brz-ed .brz-dt,.brz-ed .brz-strong{font-weight:700}.brz-ed .brz-dl,.brz-ed .brz-ol,.brz-ed .brz-ul{margin:0;list-style:none;padding:0}.brz-ed .brz-ol .brz-ol,.brz-ed .brz-ol .brz-ul,.brz-ed .brz-ul .brz-ol,.brz-ed .brz-ul .brz-ul{margin:0}.brz-ed .brz-dd{margin-bottom:.5rem;margin-left:0}.brz-ed .brz-blockquote{margin:0 0 1rem}.brz-ed .brz-dfn{font-style:italic}.brz-ed .brz-a{color:#3dbfe8;background-color:transparent;box-shadow:none}.brz-ed .brz-a[href]:hover{color:#1aabd8;box-shadow:none;cursor:pointer}.brz-ed .brz-figure{margin:0;min-width:auto;min-height:auto}.brz-ed .brz-img{vertical-align:middle;border-style:none}.brz-ed svg:not(:root){overflow:hidden}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-label,.brz-ed .brz-textarea{-ms-touch-action:manipulation;touch-action:manipulation}.brz-ed .brz-table{border-collapse:collapse}.brz-ed .brz-caption{padding-top:.75rem;padding-bottom:.75rem;color:#9da8b1;text-align:left;caption-side:bottom}.brz-ed .brz-th{text-align:left}.brz-ed .brz-label{display:inline-block;margin-bottom:0;font-weight:400}.brz-ed .brz-button:focus{outline:dotted 1px;outline:-webkit-focus-ring-color auto 5px}.brz-ed .brz-button,.brz-ed .brz-input,.brz-ed .brz-optgroup,.brz-ed .brz-select,.brz-ed .brz-textarea{padding:0;margin:0;font-family:inherit;font-size:inherit;line-height:inherit}.brz-ed .brz-button,.brz-ed .brz-input{overflow:visible}.brz-ed .brz-button,.brz-ed .brz-select{text-transform:none}.brz-ed .brz-button{-webkit-appearance:button}.brz-ed .brz-button::-moz-focus-inner{padding:0;border-style:none}.brz-ed .brz-input[type=radio],.brz-ed .brz-input[type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}.brz-ed .brz-input[type=date],.brz-ed .brz-input[type=time],.brz-ed .brz-input[type=datetime-local],.brz-ed .brz-input[type=month]{-webkit-appearance:listbox}.brz-ed .brz-textarea{overflow:auto;resize:vertical}.brz-ed .brz-fieldset{min-width:0;padding:0;margin:0;border:0}.brz-ed .brz-iframe,.brz-ed .brz-object{margin-bottom:0;max-width:100%}.brz-ed .brz-iframe{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.brz-ed [hidden]{display:none!important}.brz-ed .brz-reset-all{align-content:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-item-align:auto;align-self:auto;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-duration:0s;animation-duration:0s;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-name:none;animation-name:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:ease;animation-timing-function:ease;azimuth:center;-webkit-backface-visibility:visible;backface-visibility:visible;background-blend-mode:normal;block-size:auto;border-block-end-color:currentcolor;border-block-end-style:none;border-block-end-width:medium;border-block-start-color:currentcolor;border-block-start-style:none;border-image-repeat:stretch;border-image-width:1;border-inline-end-color:currentcolor;border-inline-end-style:none;border-inline-end-width:medium;border-inline-start-color:currentcolor;border-inline-start-width:medium;bottom:auto;-webkit-box-decoration-break:slice;box-decoration-break:slice;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-column-break-after:auto;break-before:auto;-webkit-column-break-inside:auto;caption-side:top;clear:none;clip:auto;-webkit-clip-path:none;clip-path:none;color:initial;-webkit-column-count:auto;column-count:auto;-webkit-column-fill:balance;column-fill:balance;-webkit-column-gap:normal;column-gap:normal;-webkit-column-rule-color:currentcolor;column-rule-color:currentcolor;-webkit-column-rule-style:none;column-rule-style:none;-webkit-column-rule-width:medium;column-rule-width:medium;-webkit-column-span:none;column-span:none;-webkit-column-width:auto;column-width:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:inline;-webkit-filter:none;filter:none;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;float:none;font-family:initial;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-kerning:auto;font-kerning:auto;-webkit-font-language-override:normal;font-language-override:normal;font-size:medium;font-size-adjust:none;font-stretch:normal;font-style:normal;font-synthesis:weight style;font-variant:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;-webkit-font-variant-ligatures:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-weight:400;height:auto;-ms-hyphens:manual;hyphens:manual;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;left:auto;letter-spacing:normal;line-break:auto;line-height:normal;-webkit-margin-after:0;margin-block-end:0;-webkit-margin-before:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-margin-start:0;margin-inline-start:0;-webkit-mask-clip:border-box;mask-clip:border-box;-webkit-mask-composite:add;mask-composite:add;-webkit-mask-image:none;mask-image:none;mask-mode:match-source;-webkit-mask-origin:border-box;mask-origin:border-box;-webkit-mask-position:0 0;mask-position:0 0;-webkit-mask-repeat:repeat;mask-repeat:repeat;-webkit-mask-size:auto;mask-size:auto;max-height:none;max-width:none;min-height:0;min-width:0;-o-object-fit:fill;object-fit:fill;-o-object-position:50% 50%;object-position:50% 50%;opacity:1;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;outline-color:initial;outline-offset:0;outline-style:none;outline-width:medium;overflow:visible;overflow-wrap:normal;overflow-x:visible;overflow-y:visible;-webkit-padding-after:0;padding-block-end:0;-webkit-padding-before:0;padding-block-start:0;-webkit-padding-end:0;padding-inline-end:0;-webkit-padding-start:0;padding-inline-start:0;-webkit-perspective:none;perspective:none;-webkit-perspective-origin:50% 50%;perspective-origin:50% 50%;pointer-events:auto;position:static;resize:none;right:auto;-ms-scroll-snap-coordinate:none;scroll-snap-coordinate:none;-ms-scroll-snap-destination:0 0;scroll-snap-destination:0 0;-ms-scroll-snap-points-x:none;scroll-snap-points-x:none;-ms-scroll-snap-points-y:none;scroll-snap-points-y:none;-ms-scroll-snap-type:none;scroll-snap-type:none;-moz-tab-size:8;-o-tab-size:8;tab-size:8;text-align:initial;text-align-last:auto;-webkit-text-decoration-color:currentcolor;text-decoration-line:none;text-decoration-style:solid;text-emphasis-color:currentcolor;text-emphasis-position:over right;text-indent:0;text-justify:auto;text-overflow:clip;text-shadow:none;text-transform:none;top:auto;-ms-touch-action:auto;touch-action:auto;-webkit-transform:none;transform:none;transform-box:border-box;-webkit-transform-origin:50% 50% 0;transform-origin:50% 50% 0;-webkit-transform-style:flat;transform-style:flat;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:ease;transition-timing-function:ease;vertical-align:baseline;visibility:visible;white-space:normal;widows:2;width:auto;will-change:auto;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-writing-mode:horizontal-tb;-ms-writing-mode:lr-tb;writing-mode:horizontal-tb;z-index:auto;-moz-appearance:none;-ms-appearance:none;appearance:none;background:0 0;border-color:currentcolor;border-radius:0;border-style:none;border-width:medium;margin:0;padding:0}.brz-ed .brz-ed-blocked,.brz-ed .brz-posts .page-numbers{pointer-events:none}.brz-ed .brz-h1,.brz-ed .brz-h2,.brz-ed .brz-h3,.brz-ed .brz-h4,.brz-ed .brz-h5,.brz-ed .brz-h6{font-family:inherit;font-weight:700;line-height:1.2;color:inherit}.brz-ed .brz-h1,.brz-ed .brz-p{font-weight:400}.brz-ed .brz-h1{font-size:55px}.brz-ed .brz-h2{font-size:40px}.brz-ed .brz-h3{font-size:32px}.brz-ed .brz-h4{font-size:26px}.brz-ed .brz-h5{font-size:19px}.brz-ed .brz-h6,.brz-ed .brz-p{font-size:14px}.brz-ed .brz-flex-xs-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xs-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xs-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xs-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xs-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xs-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xs-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xs-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xs-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xs-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xs-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xs-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xs-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xs{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xs{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xs-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xs-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xs-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xs-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xs-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xs-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xs-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xs-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xs-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xs-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xs-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xs-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xs-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}@media (min-width:480px){.brz-ed .brz-flex-ms-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-ms-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-ms-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-ms-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-ms-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-ms-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-ms-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-ms-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-ms-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-ms-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-ms-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-ms-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-ms-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-ms{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-ms{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-ms-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-ms-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-ms-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-ms-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-ms-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-ms-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-ms-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-ms-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-ms-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-ms-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-ms-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-ms-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-ms-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:768px){.brz-ed .brz-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-sm{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-sm{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}@media (min-width:992px){.brz-ed .brz-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-md{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-md{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}}.brz-ed .brz-d-block{display:block!important}.brz-ed .brz-d-inline-block{display:inline-block!important}.brz-ed .brz-d-inline{display:inline!important}.brz-ed .brz-d-table{width:100%;display:table;position:relative}.brz-ed .brz-d-table-cell{display:table-cell}.brz-ed .brz-d-xs-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-xs-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}@media (min-width:480px){.brz-ed .brz-d-ms-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-ms-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:768px){.brz-ed .brz-d-sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-sm-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:992px){.brz-ed .brz-d-md-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-md-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1200px){.brz-ed .brz-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-lg{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-lg{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-lg-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}}@media (min-width:1400px){.brz-ed .brz-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.brz-ed .brz-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.brz-ed .brz-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.brz-ed .brz-justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.brz-ed .brz-justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.brz-ed .brz-align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.brz-ed .brz-align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.brz-ed .brz-align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.brz-ed .brz-align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.brz-ed .brz-align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.brz-ed .brz-col-first-xl{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.brz-ed .brz-col-last-xl{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.brz-ed .brz-align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.brz-ed .brz-align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.brz-ed .brz-align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.brz-ed .brz-align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.brz-ed .brz-align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.brz-ed .brz-flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.brz-ed .brz-flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.brz-ed .brz-align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.brz-ed .brz-align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.brz-ed .brz-align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.brz-ed .brz-align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.brz-ed .brz-align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.brz-ed .brz-align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.brz-ed .brz-d-xl-flex{display:-webkit-box;display:-ms-flexbox;display:flex;min-width:0}.brz-ed .brz-d-xl-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.brz-ed .brz-hidden-xl-up{display:none!important}}.brz-ed .brz-hidden,.brz-ed .brz-hidden-xl-down,.brz-ed .brz-hidden-xs-up,.brz-ed .brz-visible-print-block{display:none!important}.brz-ed .brz-p-relative{position:relative!important}.brz-ed .brz-p-absolute{position:absolute!important}.brz-ed .brz-p-fixed{position:fixed!important}.brz-ed .brz-invisible{visibility:hidden!important}.brz-ed .brz-visible{visibility:visible!important}.brz-ed .brz-invisible-xl-down,.brz-ed .brz-invisible-xs-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media (max-width:479px){.brz-ed .brz-hidden-xs-down{display:none!important}.brz-ed .brz-invisible-xs-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-xs-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:480px){.brz-ed .brz-hidden-ms-up{display:none!important}.brz-ed .brz-invisible-ms-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:767px){.brz-ed.brz:not(.brz-ed) *{min-width:0;min-height:0}.brz-ed .brz-hidden-ms-down{display:none!important}.brz-ed .brz-invisible-ms-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-ms-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:768px){.brz-ed .brz-hidden-sm-up{display:none!important}.brz-ed .brz-invisible-sm-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:991px){.brz-ed .brz-hidden-sm-down{display:none!important}.brz-ed .brz-invisible-sm-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-sm-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:992px){.brz-ed .brz-hidden-md-up{display:none!important}.brz-ed .brz-invisible-md-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1199px){.brz-ed .brz-hidden-md-down{display:none!important}.brz-ed .brz-invisible-md-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-md-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1200px){.brz-ed .brz-hidden-lg-up{display:none!important}.brz-ed .brz-invisible-lg-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (max-width:1399px){.brz-ed .brz-hidden-lg-down{display:none!important}.brz-ed .brz-invisible-lg-down{visibility:hidden!important}.brz-ed .brz-invisible-blur-lg-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}@media (min-width:1400px){.brz-ed .brz-invisible-xl-up{visibility:hidden!important}.brz-ed .brz-invisible-blur-xl-up .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}}.brz-ed .brz-invisible-blur-xl-down .brz-bg-content{-webkit-filter:blur(3px);filter:blur(3px);opacity:.9}@media print{.brz-ed .brz-visible-print-block{display:block!important}}.brz-ed .brz-visible-print-inline{display:none!important}@media print{.brz-ed .brz-visible-print-inline{display:inline!important}}.brz-ed .brz-visible-print-inline-block{display:none!important}@media print{.brz-ed .brz-visible-print-inline-block{display:inline-block!important}.brz-ed .brz-hidden-print{display:none!important}}.brz-ed .brz-ow-hidden{overflow:hidden!important}.brz-ed .brz-ow-visible{overflow:visible!important}.brz-ed .brz-fw-100{font-weight:100!important}.brz-ed .brz-fw-200{font-weight:200!important}.brz-ed .brz-fw-300{font-weight:300!important}.brz-ed .brz-fw-400{font-weight:400!important}.brz-ed .brz-fw-500{font-weight:500!important}.brz-ed .brz-fw-600{font-weight:600!important}.brz-ed .brz-fw-700{font-weight:700!important}.brz-ed .brz-fw-800{font-weight:800!important}.brz-ed .brz-fw-900{font-weight:900!important}.brz-ed.disable-select{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-popup-image-inner{position:relative;color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-popup-image-label{margin-bottom:0}.brz-ed .brz-ed-popup-image-remove{position:absolute;z-index:2;top:-10px;right:-10px;width:22px;height:22px;font-size:8px;background-color:#34beec;border-radius:50%;-webkit-transition:background .2s linear;transition:background .2s linear;text-align:center;cursor:pointer}.brz-ed .brz-ed-popup-image-remove:hover{background-color:#03080f;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .brz-ed-popup-image-remove i{line-height:2.75}.brz-ed .brz-ed-popup-image-upload{position:absolute;top:4px;left:4px;right:4px;bottom:4px;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDIwIDIwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE5LDIwSDFjLTAuNTUyLDAtMS0wLjQ0OC0xLTFWMy44OTNjMC0wLjU1MiwwLjQ0OC0wLjksMS0wLjlMMy42ODUsM0M0LjEsMyw0LjQ3MiwyLjYzNiw0LjYyLDIuMjQ4bDAuNTgtMUM1LjIsMS4yNDksNS41NiwwLDYuMjUsMGg3LjVjMC42OSwwLDEuMTUsMS4yNDksMS4xNSwxLjI0OWwwLjQ4LDFjMC4xNDcsMC4zODgsMC41MiwwLjc0NSwwLjkzNSwwLjc0NUgxOWMwLjU1MiwwLDEsMC4zNDgsMSwwLjlWMTlDMjAsMTkuNTUyLDE5LjU1MiwyMCwxOSwyMHogTTE5LDQuNTg2Yy0wLjAwNC0wLjMyOC0wLjI3Mi0wLjU5Mi0wLjYtMC41OTJoLTMuMzk5Yy0wLjE0My0wLjE0My0wLjExNy0wLjIwMi0wLjg4MS0xLjg0N2MwLDAtMC40NDgtMS4xNDctMS0xLjE0N0g3LjExOGMtMC41NTIsMC0xLDEuMTQ3LTEsMS4xNDdDNS4wNTEsMy45MTMsNS4wOCwzLjg2NCw1LDMuOTk0SDEuNjUxYy0wLjMzMSwwLTAuNiwwLjI2OS0wLjYsMC42VjE4LjRjMCwwLjMzMSwwLjI2OSwwLjYsMC42LDAuNkgxOC40YzAuMzMxLDAsMC42LTAuMjY5LDAuNi0wLjZMMTksNC41ODZ6IE0xMi4wMiwxNS42MDNjLTQuMjg3LDEuNjk2LTguMzE5LTIuMzM1LTYuNjI0LTYuNjIyYzAuNDYzLTEuMTcyLDEuNDE0LTIuMTIyLDIuNTg2LTIuNTg2YzQuMjg3LTEuNjk1LDguMzE4LDIuMzM4LDYuNjIyLDYuNjI0QzE0LjE0LDE0LjE5LDEzLjE5LDE1LjE0LDEyLjAyLDE1LjYwM3ogTTEwLjYzMiw3LjA0OWMtMi43MDMtMC40MTQtNC45OTcsMS44OC00LjU4NCw0LjU4NGMwLjI1OCwxLjY4NSwxLjYzNSwzLjA2MSwzLjMxOSwzLjMxOWMyLjcwMywwLjQxNCw0Ljk5Ny0xLjg4LDQuNTg0LTQuNTg0QzEzLjY5NCw4LjY4MywxMi4zMTcsNy4zMDYsMTAuNjMyLDcuMDQ5eiIvPjwvc3ZnPg==) 50% 50% no-repeat #fff;background-size:25px}.brz-ed .brz-ed-loading{position:relative;padding:4px;border:2px dashed #ccc;width:117px;height:117px;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-loading:before{content:'Change Image';font:700 10px pn,"Open Sans",Arial,sans-serif;color:#fff;line-height:117px;text-transform:uppercase;position:absolute;z-index:1;top:-2px;left:-2px;width:117px;height:117px;background-color:rgba(0,0,0,.8);text-align:center;visibility:hidden;opacity:0;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .brz-ed-loading:hover{border-color:transparent}.brz-ed .brz-ed-loading:hover:before{visibility:visible;opacity:1;-webkit-transition:opacity .2s linear,visibility .2s linear;transition:opacity .2s linear,visibility .2s linear}.brz-ed .p-events-none{pointer-events:none!important}.brz-ed.brz-ed--desktop .brz-fs-lg-6{font-size:6px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-7{font-size:7px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-8{font-size:8px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-9{font-size:9px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-10{font-size:10px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-11{font-size:11px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-12{font-size:12px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-13{font-size:13px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-14{font-size:14px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-15{font-size:15px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-16{font-size:16px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-17{font-size:17px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-18{font-size:18px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-19{font-size:19px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-20{font-size:20px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-21{font-size:21px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-22{font-size:22px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-23{font-size:23px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-24{font-size:24px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-25{font-size:25px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-26{font-size:26px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-27{font-size:27px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-28{font-size:28px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-29{font-size:29px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-30{font-size:30px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-31{font-size:31px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-32{font-size:32px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-33{font-size:33px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-34{font-size:34px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-35{font-size:35px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-36{font-size:36px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-37{font-size:37px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-38{font-size:38px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-39{font-size:39px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-40{font-size:40px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-41{font-size:41px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-42{font-size:42px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-43{font-size:43px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-44{font-size:44px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-45{font-size:45px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-46{font-size:46px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-47{font-size:47px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-48{font-size:48px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-49{font-size:49px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-50{font-size:50px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-51{font-size:51px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-52{font-size:52px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-53{font-size:53px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-54{font-size:54px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-55{font-size:55px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-56{font-size:56px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-57{font-size:57px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-58{font-size:58px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-59{font-size:59px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-60{font-size:60px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-61{font-size:61px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-62{font-size:62px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-63{font-size:63px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-64{font-size:64px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-65{font-size:65px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-66{font-size:66px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-67{font-size:67px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-68{font-size:68px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-69{font-size:69px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-70{font-size:70px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-71{font-size:71px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-72{font-size:72px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-73{font-size:73px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-74{font-size:74px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-75{font-size:75px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-76{font-size:76px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-77{font-size:77px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-78{font-size:78px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-79{font-size:79px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-80{font-size:80px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-81{font-size:81px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-82{font-size:82px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-83{font-size:83px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-84{font-size:84px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-85{font-size:85px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-86{font-size:86px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-87{font-size:87px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-88{font-size:88px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-89{font-size:89px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-90{font-size:90px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-91{font-size:91px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-92{font-size:92px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-93{font-size:93px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-94{font-size:94px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-95{font-size:95px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-96{font-size:96px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-97{font-size:97px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-98{font-size:98px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-99{font-size:99px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-100{font-size:100px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-101{font-size:101px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-102{font-size:102px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-103{font-size:103px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-104{font-size:104px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-105{font-size:105px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-106{font-size:106px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-107{font-size:107px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-108{font-size:108px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-109{font-size:109px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-110{font-size:110px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-111{font-size:111px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-112{font-size:112px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-113{font-size:113px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-114{font-size:114px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-115{font-size:115px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-116{font-size:116px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-117{font-size:117px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-118{font-size:118px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-119{font-size:119px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-120{font-size:120px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-121{font-size:121px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-122{font-size:122px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-123{font-size:123px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-124{font-size:124px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-125{font-size:125px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-126{font-size:126px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-127{font-size:127px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-128{font-size:128px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-129{font-size:129px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-130{font-size:130px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-131{font-size:131px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-132{font-size:132px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-133{font-size:133px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-134{font-size:134px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-135{font-size:135px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-136{font-size:136px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-137{font-size:137px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-138{font-size:138px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-139{font-size:139px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-140{font-size:140px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-141{font-size:141px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-142{font-size:142px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-143{font-size:143px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-144{font-size:144px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-145{font-size:145px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-146{font-size:146px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-147{font-size:147px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-148{font-size:148px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-149{font-size:149px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-150{font-size:150px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-151{font-size:151px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-152{font-size:152px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-153{font-size:153px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-154{font-size:154px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-155{font-size:155px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-156{font-size:156px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-157{font-size:157px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-158{font-size:158px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-159{font-size:159px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-160{font-size:160px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-161{font-size:161px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-162{font-size:162px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-163{font-size:163px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-164{font-size:164px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-165{font-size:165px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-166{font-size:166px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-167{font-size:167px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-168{font-size:168px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-169{font-size:169px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-170{font-size:170px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-171{font-size:171px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-172{font-size:172px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-173{font-size:173px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-174{font-size:174px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-175{font-size:175px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-176{font-size:176px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-177{font-size:177px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-178{font-size:178px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-179{font-size:179px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-180{font-size:180px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-181{font-size:181px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-182{font-size:182px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-183{font-size:183px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-184{font-size:184px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-185{font-size:185px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-186{font-size:186px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-187{font-size:187px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-188{font-size:188px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-189{font-size:189px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-190{font-size:190px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-191{font-size:191px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-192{font-size:192px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-193{font-size:193px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-194{font-size:194px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-195{font-size:195px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-196{font-size:196px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-197{font-size:197px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-198{font-size:198px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-199{font-size:199px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-200{font-size:200px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-201{font-size:201px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-202{font-size:202px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-203{font-size:203px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-204{font-size:204px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-205{font-size:205px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-206{font-size:206px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-207{font-size:207px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-208{font-size:208px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-209{font-size:209px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-210{font-size:210px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-211{font-size:211px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-212{font-size:212px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-213{font-size:213px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-214{font-size:214px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-215{font-size:215px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-216{font-size:216px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-217{font-size:217px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-218{font-size:218px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-219{font-size:219px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-220{font-size:220px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-221{font-size:221px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-222{font-size:222px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-223{font-size:223px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-224{font-size:224px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-225{font-size:225px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-226{font-size:226px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-227{font-size:227px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-228{font-size:228px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-229{font-size:229px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-230{font-size:230px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-231{font-size:231px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-232{font-size:232px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-233{font-size:233px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-234{font-size:234px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-235{font-size:235px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-236{font-size:236px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-237{font-size:237px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-238{font-size:238px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-239{font-size:239px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-240{font-size:240px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-241{font-size:241px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-242{font-size:242px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-243{font-size:243px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-244{font-size:244px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-245{font-size:245px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-246{font-size:246px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-247{font-size:247px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-248{font-size:248px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-249{font-size:249px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-250{font-size:250px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-251{font-size:251px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-252{font-size:252px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-253{font-size:253px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-254{font-size:254px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-255{font-size:255px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-256{font-size:256px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-257{font-size:257px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-258{font-size:258px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-259{font-size:259px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-260{font-size:260px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-261{font-size:261px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-262{font-size:262px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-263{font-size:263px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-264{font-size:264px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-265{font-size:265px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-266{font-size:266px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-267{font-size:267px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-268{font-size:268px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-269{font-size:269px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-270{font-size:270px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-271{font-size:271px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-272{font-size:272px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-273{font-size:273px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-274{font-size:274px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-275{font-size:275px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-276{font-size:276px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-277{font-size:277px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-278{font-size:278px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-279{font-size:279px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-280{font-size:280px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-281{font-size:281px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-282{font-size:282px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-283{font-size:283px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-284{font-size:284px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-285{font-size:285px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-286{font-size:286px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-287{font-size:287px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-288{font-size:288px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-289{font-size:289px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-290{font-size:290px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-291{font-size:291px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-292{font-size:292px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-293{font-size:293px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-294{font-size:294px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-295{font-size:295px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-296{font-size:296px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-297{font-size:297px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-298{font-size:298px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-299{font-size:299px!important}.brz-ed.brz-ed--desktop .brz-fs-lg-300{font-size:300px!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1{line-height:1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_1{line-height:1.1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_2{line-height:1.2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_3{line-height:1.3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_4{line-height:1.4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_5{line-height:1.5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_6{line-height:1.6em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_7{line-height:1.7em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_8{line-height:1.8em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-1_9{line-height:1.9em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2{line-height:2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_1{line-height:2.1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_2{line-height:2.2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_3{line-height:2.3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_4{line-height:2.4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_5{line-height:2.5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_6{line-height:2.6em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_7{line-height:2.7em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_8{line-height:2.8em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-2_9{line-height:2.9em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3{line-height:3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_1{line-height:3.1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_2{line-height:3.2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_3{line-height:3.3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_4{line-height:3.4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_5{line-height:3.5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_6{line-height:3.6em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_7{line-height:3.7em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_8{line-height:3.8em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-3_9{line-height:3.9em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4{line-height:4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_1{line-height:4.1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_2{line-height:4.2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_3{line-height:4.3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_4{line-height:4.4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_5{line-height:4.5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_6{line-height:4.6em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_7{line-height:4.7em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_8{line-height:4.8em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-4_9{line-height:4.9em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5{line-height:5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_1{line-height:5.1em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_2{line-height:5.2em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_3{line-height:5.3em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_4{line-height:5.4em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_5{line-height:5.5em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_6{line-height:5.6em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_7{line-height:5.7em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_8{line-height:5.8em!important}.brz-ed.brz-ed--desktop .brz-lh-lg-5_9{line-height:5.9em!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5{letter-spacing:-5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_5_5{letter-spacing:-5.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4{letter-spacing:-4px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_4_5{letter-spacing:-4.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3{letter-spacing:-3px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_3_5{letter-spacing:-3.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2{letter-spacing:-2px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_2_5{letter-spacing:-2.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1{letter-spacing:-1px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_1_5{letter-spacing:-1.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0{letter-spacing:0!important}.brz-ed.brz-ed--desktop .brz-ls-lg-m_0_5{letter-spacing:-.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-0{letter-spacing:0!important}.brz-ed.brz-ed--desktop .brz-ls-lg-0_5{letter-spacing:.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-1{letter-spacing:1px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-1_5{letter-spacing:1.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-2{letter-spacing:2px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-2_5{letter-spacing:2.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-3{letter-spacing:3px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-3_5{letter-spacing:3.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-4{letter-spacing:4px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-4_5{letter-spacing:4.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-5{letter-spacing:5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-5_5{letter-spacing:5.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-6{letter-spacing:6px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-6_5{letter-spacing:6.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-7{letter-spacing:7px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-7_5{letter-spacing:7.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-8{letter-spacing:8px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-8_5{letter-spacing:8.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-9{letter-spacing:9px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-9_5{letter-spacing:9.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-10{letter-spacing:10px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-10_5{letter-spacing:10.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-11{letter-spacing:11px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-11_5{letter-spacing:11.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-12{letter-spacing:12px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-12_5{letter-spacing:12.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-13{letter-spacing:13px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-13_5{letter-spacing:13.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-14{letter-spacing:14px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-14_5{letter-spacing:14.5px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-15{letter-spacing:15px!important}.brz-ed.brz-ed--desktop .brz-ls-lg-15_5{letter-spacing:15.5px!important}.brz-ed.brz-ed--desktop .brz-fw-lg-100{font-weight:100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-200{font-weight:200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-300{font-weight:300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-400{font-weight:400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-500{font-weight:500!important}.brz-ed.brz-ed--desktop .brz-fw-lg-600{font-weight:600!important}.brz-ed.brz-ed--desktop .brz-fw-lg-700{font-weight:700!important}.brz-ed.brz-ed--desktop .brz-fw-lg-800{font-weight:800!important}.brz-ed.brz-ed--desktop .brz-fw-lg-900{font-weight:900!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1000{font-weight:1000!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1100{font-weight:1100!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1200{font-weight:1200!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1300{font-weight:1300!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1400{font-weight:1400!important}.brz-ed.brz-ed--desktop .brz-fw-lg-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fs-im-6{font-size:6px!important}.brz-ed.brz-ed--mobile .brz-fs-im-7{font-size:7px!important}.brz-ed.brz-ed--mobile .brz-fs-im-8{font-size:8px!important}.brz-ed.brz-ed--mobile .brz-fs-im-9{font-size:9px!important}.brz-ed.brz-ed--mobile .brz-fs-im-10{font-size:10px!important}.brz-ed.brz-ed--mobile .brz-fs-im-11{font-size:11px!important}.brz-ed.brz-ed--mobile .brz-fs-im-12{font-size:12px!important}.brz-ed.brz-ed--mobile .brz-fs-im-13{font-size:13px!important}.brz-ed.brz-ed--mobile .brz-fs-im-14{font-size:14px!important}.brz-ed.brz-ed--mobile .brz-fs-im-15{font-size:15px!important}.brz-ed.brz-ed--mobile .brz-fs-im-16{font-size:16px!important}.brz-ed.brz-ed--mobile .brz-fs-im-17{font-size:17px!important}.brz-ed.brz-ed--mobile .brz-fs-im-18{font-size:18px!important}.brz-ed.brz-ed--mobile .brz-fs-im-19{font-size:19px!important}.brz-ed.brz-ed--mobile .brz-fs-im-20{font-size:20px!important}.brz-ed.brz-ed--mobile .brz-fs-im-21{font-size:21px!important}.brz-ed.brz-ed--mobile .brz-fs-im-22{font-size:22px!important}.brz-ed.brz-ed--mobile .brz-fs-im-23{font-size:23px!important}.brz-ed.brz-ed--mobile .brz-fs-im-24{font-size:24px!important}.brz-ed.brz-ed--mobile .brz-fs-im-25{font-size:25px!important}.brz-ed.brz-ed--mobile .brz-fs-im-26{font-size:26px!important}.brz-ed.brz-ed--mobile .brz-fs-im-27{font-size:27px!important}.brz-ed.brz-ed--mobile .brz-fs-im-28{font-size:28px!important}.brz-ed.brz-ed--mobile .brz-fs-im-29{font-size:29px!important}.brz-ed.brz-ed--mobile .brz-fs-im-30{font-size:30px!important}.brz-ed.brz-ed--mobile .brz-fs-im-31{font-size:31px!important}.brz-ed.brz-ed--mobile .brz-fs-im-32{font-size:32px!important}.brz-ed.brz-ed--mobile .brz-fs-im-33{font-size:33px!important}.brz-ed.brz-ed--mobile .brz-fs-im-34{font-size:34px!important}.brz-ed.brz-ed--mobile .brz-fs-im-35{font-size:35px!important}.brz-ed.brz-ed--mobile .brz-fs-im-36{font-size:36px!important}.brz-ed.brz-ed--mobile .brz-fs-im-37{font-size:37px!important}.brz-ed.brz-ed--mobile .brz-fs-im-38{font-size:38px!important}.brz-ed.brz-ed--mobile .brz-fs-im-39{font-size:39px!important}.brz-ed.brz-ed--mobile .brz-fs-im-40{font-size:40px!important}.brz-ed.brz-ed--mobile .brz-fs-im-41{font-size:41px!important}.brz-ed.brz-ed--mobile .brz-fs-im-42{font-size:42px!important}.brz-ed.brz-ed--mobile .brz-fs-im-43{font-size:43px!important}.brz-ed.brz-ed--mobile .brz-fs-im-44{font-size:44px!important}.brz-ed.brz-ed--mobile .brz-fs-im-45{font-size:45px!important}.brz-ed.brz-ed--mobile .brz-fs-im-46{font-size:46px!important}.brz-ed.brz-ed--mobile .brz-fs-im-47{font-size:47px!important}.brz-ed.brz-ed--mobile .brz-fs-im-48{font-size:48px!important}.brz-ed.brz-ed--mobile .brz-fs-im-49{font-size:49px!important}.brz-ed.brz-ed--mobile .brz-fs-im-50{font-size:50px!important}.brz-ed.brz-ed--mobile .brz-fs-im-51{font-size:51px!important}.brz-ed.brz-ed--mobile .brz-fs-im-52{font-size:52px!important}.brz-ed.brz-ed--mobile .brz-fs-im-53{font-size:53px!important}.brz-ed.brz-ed--mobile .brz-fs-im-54{font-size:54px!important}.brz-ed.brz-ed--mobile .brz-fs-im-55{font-size:55px!important}.brz-ed.brz-ed--mobile .brz-fs-im-56{font-size:56px!important}.brz-ed.brz-ed--mobile .brz-fs-im-57{font-size:57px!important}.brz-ed.brz-ed--mobile .brz-fs-im-58{font-size:58px!important}.brz-ed.brz-ed--mobile .brz-fs-im-59{font-size:59px!important}.brz-ed.brz-ed--mobile .brz-fs-im-60{font-size:60px!important}.brz-ed.brz-ed--mobile .brz-fs-im-61{font-size:61px!important}.brz-ed.brz-ed--mobile .brz-fs-im-62{font-size:62px!important}.brz-ed.brz-ed--mobile .brz-fs-im-63{font-size:63px!important}.brz-ed.brz-ed--mobile .brz-fs-im-64{font-size:64px!important}.brz-ed.brz-ed--mobile .brz-fs-im-65{font-size:65px!important}.brz-ed.brz-ed--mobile .brz-fs-im-66{font-size:66px!important}.brz-ed.brz-ed--mobile .brz-fs-im-67{font-size:67px!important}.brz-ed.brz-ed--mobile .brz-fs-im-68{font-size:68px!important}.brz-ed.brz-ed--mobile .brz-fs-im-69{font-size:69px!important}.brz-ed.brz-ed--mobile .brz-fs-im-70{font-size:70px!important}.brz-ed.brz-ed--mobile .brz-fs-im-71{font-size:71px!important}.brz-ed.brz-ed--mobile .brz-fs-im-72{font-size:72px!important}.brz-ed.brz-ed--mobile .brz-fs-im-73{font-size:73px!important}.brz-ed.brz-ed--mobile .brz-fs-im-74{font-size:74px!important}.brz-ed.brz-ed--mobile .brz-fs-im-75{font-size:75px!important}.brz-ed.brz-ed--mobile .brz-fs-im-76{font-size:76px!important}.brz-ed.brz-ed--mobile .brz-fs-im-77{font-size:77px!important}.brz-ed.brz-ed--mobile .brz-fs-im-78{font-size:78px!important}.brz-ed.brz-ed--mobile .brz-fs-im-79{font-size:79px!important}.brz-ed.brz-ed--mobile .brz-fs-im-80{font-size:80px!important}.brz-ed.brz-ed--mobile .brz-fs-im-81{font-size:81px!important}.brz-ed.brz-ed--mobile .brz-fs-im-82{font-size:82px!important}.brz-ed.brz-ed--mobile .brz-fs-im-83{font-size:83px!important}.brz-ed.brz-ed--mobile .brz-fs-im-84{font-size:84px!important}.brz-ed.brz-ed--mobile .brz-fs-im-85{font-size:85px!important}.brz-ed.brz-ed--mobile .brz-fs-im-86{font-size:86px!important}.brz-ed.brz-ed--mobile .brz-fs-im-87{font-size:87px!important}.brz-ed.brz-ed--mobile .brz-fs-im-88{font-size:88px!important}.brz-ed.brz-ed--mobile .brz-fs-im-89{font-size:89px!important}.brz-ed.brz-ed--mobile .brz-fs-im-90{font-size:90px!important}.brz-ed.brz-ed--mobile .brz-fs-im-91{font-size:91px!important}.brz-ed.brz-ed--mobile .brz-fs-im-92{font-size:92px!important}.brz-ed.brz-ed--mobile .brz-fs-im-93{font-size:93px!important}.brz-ed.brz-ed--mobile .brz-fs-im-94{font-size:94px!important}.brz-ed.brz-ed--mobile .brz-fs-im-95{font-size:95px!important}.brz-ed.brz-ed--mobile .brz-fs-im-96{font-size:96px!important}.brz-ed.brz-ed--mobile .brz-fs-im-97{font-size:97px!important}.brz-ed.brz-ed--mobile .brz-fs-im-98{font-size:98px!important}.brz-ed.brz-ed--mobile .brz-fs-im-99{font-size:99px!important}.brz-ed.brz-ed--mobile .brz-fs-im-100{font-size:100px!important}.brz-ed.brz-ed--mobile .brz-fs-im-101{font-size:101px!important}.brz-ed.brz-ed--mobile .brz-fs-im-102{font-size:102px!important}.brz-ed.brz-ed--mobile .brz-fs-im-103{font-size:103px!important}.brz-ed.brz-ed--mobile .brz-fs-im-104{font-size:104px!important}.brz-ed.brz-ed--mobile .brz-fs-im-105{font-size:105px!important}.brz-ed.brz-ed--mobile .brz-fs-im-106{font-size:106px!important}.brz-ed.brz-ed--mobile .brz-fs-im-107{font-size:107px!important}.brz-ed.brz-ed--mobile .brz-fs-im-108{font-size:108px!important}.brz-ed.brz-ed--mobile .brz-fs-im-109{font-size:109px!important}.brz-ed.brz-ed--mobile .brz-fs-im-110{font-size:110px!important}.brz-ed.brz-ed--mobile .brz-fs-im-111{font-size:111px!important}.brz-ed.brz-ed--mobile .brz-fs-im-112{font-size:112px!important}.brz-ed.brz-ed--mobile .brz-fs-im-113{font-size:113px!important}.brz-ed.brz-ed--mobile .brz-fs-im-114{font-size:114px!important}.brz-ed.brz-ed--mobile .brz-fs-im-115{font-size:115px!important}.brz-ed.brz-ed--mobile .brz-fs-im-116{font-size:116px!important}.brz-ed.brz-ed--mobile .brz-fs-im-117{font-size:117px!important}.brz-ed.brz-ed--mobile .brz-fs-im-118{font-size:118px!important}.brz-ed.brz-ed--mobile .brz-fs-im-119{font-size:119px!important}.brz-ed.brz-ed--mobile .brz-fs-im-120{font-size:120px!important}.brz-ed.brz-ed--mobile .brz-fs-im-121{font-size:121px!important}.brz-ed.brz-ed--mobile .brz-fs-im-122{font-size:122px!important}.brz-ed.brz-ed--mobile .brz-fs-im-123{font-size:123px!important}.brz-ed.brz-ed--mobile .brz-fs-im-124{font-size:124px!important}.brz-ed.brz-ed--mobile .brz-fs-im-125{font-size:125px!important}.brz-ed.brz-ed--mobile .brz-fs-im-126{font-size:126px!important}.brz-ed.brz-ed--mobile .brz-fs-im-127{font-size:127px!important}.brz-ed.brz-ed--mobile .brz-fs-im-128{font-size:128px!important}.brz-ed.brz-ed--mobile .brz-fs-im-129{font-size:129px!important}.brz-ed.brz-ed--mobile .brz-fs-im-130{font-size:130px!important}.brz-ed.brz-ed--mobile .brz-fs-im-131{font-size:131px!important}.brz-ed.brz-ed--mobile .brz-fs-im-132{font-size:132px!important}.brz-ed.brz-ed--mobile .brz-fs-im-133{font-size:133px!important}.brz-ed.brz-ed--mobile .brz-fs-im-134{font-size:134px!important}.brz-ed.brz-ed--mobile .brz-fs-im-135{font-size:135px!important}.brz-ed.brz-ed--mobile .brz-fs-im-136{font-size:136px!important}.brz-ed.brz-ed--mobile .brz-fs-im-137{font-size:137px!important}.brz-ed.brz-ed--mobile .brz-fs-im-138{font-size:138px!important}.brz-ed.brz-ed--mobile .brz-fs-im-139{font-size:139px!important}.brz-ed.brz-ed--mobile .brz-fs-im-140{font-size:140px!important}.brz-ed.brz-ed--mobile .brz-fs-im-141{font-size:141px!important}.brz-ed.brz-ed--mobile .brz-fs-im-142{font-size:142px!important}.brz-ed.brz-ed--mobile .brz-fs-im-143{font-size:143px!important}.brz-ed.brz-ed--mobile .brz-fs-im-144{font-size:144px!important}.brz-ed.brz-ed--mobile .brz-fs-im-145{font-size:145px!important}.brz-ed.brz-ed--mobile .brz-fs-im-146{font-size:146px!important}.brz-ed.brz-ed--mobile .brz-fs-im-147{font-size:147px!important}.brz-ed.brz-ed--mobile .brz-fs-im-148{font-size:148px!important}.brz-ed.brz-ed--mobile .brz-fs-im-149{font-size:149px!important}.brz-ed.brz-ed--mobile .brz-fs-im-150{font-size:150px!important}.brz-ed.brz-ed--mobile .brz-fs-im-151{font-size:151px!important}.brz-ed.brz-ed--mobile .brz-fs-im-152{font-size:152px!important}.brz-ed.brz-ed--mobile .brz-fs-im-153{font-size:153px!important}.brz-ed.brz-ed--mobile .brz-fs-im-154{font-size:154px!important}.brz-ed.brz-ed--mobile .brz-fs-im-155{font-size:155px!important}.brz-ed.brz-ed--mobile .brz-fs-im-156{font-size:156px!important}.brz-ed.brz-ed--mobile .brz-fs-im-157{font-size:157px!important}.brz-ed.brz-ed--mobile .brz-fs-im-158{font-size:158px!important}.brz-ed.brz-ed--mobile .brz-fs-im-159{font-size:159px!important}.brz-ed.brz-ed--mobile .brz-fs-im-160{font-size:160px!important}.brz-ed.brz-ed--mobile .brz-fs-im-161{font-size:161px!important}.brz-ed.brz-ed--mobile .brz-fs-im-162{font-size:162px!important}.brz-ed.brz-ed--mobile .brz-fs-im-163{font-size:163px!important}.brz-ed.brz-ed--mobile .brz-fs-im-164{font-size:164px!important}.brz-ed.brz-ed--mobile .brz-fs-im-165{font-size:165px!important}.brz-ed.brz-ed--mobile .brz-fs-im-166{font-size:166px!important}.brz-ed.brz-ed--mobile .brz-fs-im-167{font-size:167px!important}.brz-ed.brz-ed--mobile .brz-fs-im-168{font-size:168px!important}.brz-ed.brz-ed--mobile .brz-fs-im-169{font-size:169px!important}.brz-ed.brz-ed--mobile .brz-fs-im-170{font-size:170px!important}.brz-ed.brz-ed--mobile .brz-fs-im-171{font-size:171px!important}.brz-ed.brz-ed--mobile .brz-fs-im-172{font-size:172px!important}.brz-ed.brz-ed--mobile .brz-fs-im-173{font-size:173px!important}.brz-ed.brz-ed--mobile .brz-fs-im-174{font-size:174px!important}.brz-ed.brz-ed--mobile .brz-fs-im-175{font-size:175px!important}.brz-ed.brz-ed--mobile .brz-fs-im-176{font-size:176px!important}.brz-ed.brz-ed--mobile .brz-fs-im-177{font-size:177px!important}.brz-ed.brz-ed--mobile .brz-fs-im-178{font-size:178px!important}.brz-ed.brz-ed--mobile .brz-fs-im-179{font-size:179px!important}.brz-ed.brz-ed--mobile .brz-fs-im-180{font-size:180px!important}.brz-ed.brz-ed--mobile .brz-fs-im-181{font-size:181px!important}.brz-ed.brz-ed--mobile .brz-fs-im-182{font-size:182px!important}.brz-ed.brz-ed--mobile .brz-fs-im-183{font-size:183px!important}.brz-ed.brz-ed--mobile .brz-fs-im-184{font-size:184px!important}.brz-ed.brz-ed--mobile .brz-fs-im-185{font-size:185px!important}.brz-ed.brz-ed--mobile .brz-fs-im-186{font-size:186px!important}.brz-ed.brz-ed--mobile .brz-fs-im-187{font-size:187px!important}.brz-ed.brz-ed--mobile .brz-fs-im-188{font-size:188px!important}.brz-ed.brz-ed--mobile .brz-fs-im-189{font-size:189px!important}.brz-ed.brz-ed--mobile .brz-fs-im-190{font-size:190px!important}.brz-ed.brz-ed--mobile .brz-fs-im-191{font-size:191px!important}.brz-ed.brz-ed--mobile .brz-fs-im-192{font-size:192px!important}.brz-ed.brz-ed--mobile .brz-fs-im-193{font-size:193px!important}.brz-ed.brz-ed--mobile .brz-fs-im-194{font-size:194px!important}.brz-ed.brz-ed--mobile .brz-fs-im-195{font-size:195px!important}.brz-ed.brz-ed--mobile .brz-fs-im-196{font-size:196px!important}.brz-ed.brz-ed--mobile .brz-fs-im-197{font-size:197px!important}.brz-ed.brz-ed--mobile .brz-fs-im-198{font-size:198px!important}.brz-ed.brz-ed--mobile .brz-fs-im-199{font-size:199px!important}.brz-ed.brz-ed--mobile .brz-fs-im-200{font-size:200px!important}.brz-ed.brz-ed--mobile .brz-fs-im-201{font-size:201px!important}.brz-ed.brz-ed--mobile .brz-fs-im-202{font-size:202px!important}.brz-ed.brz-ed--mobile .brz-fs-im-203{font-size:203px!important}.brz-ed.brz-ed--mobile .brz-fs-im-204{font-size:204px!important}.brz-ed.brz-ed--mobile .brz-fs-im-205{font-size:205px!important}.brz-ed.brz-ed--mobile .brz-fs-im-206{font-size:206px!important}.brz-ed.brz-ed--mobile .brz-fs-im-207{font-size:207px!important}.brz-ed.brz-ed--mobile .brz-fs-im-208{font-size:208px!important}.brz-ed.brz-ed--mobile .brz-fs-im-209{font-size:209px!important}.brz-ed.brz-ed--mobile .brz-fs-im-210{font-size:210px!important}.brz-ed.brz-ed--mobile .brz-fs-im-211{font-size:211px!important}.brz-ed.brz-ed--mobile .brz-fs-im-212{font-size:212px!important}.brz-ed.brz-ed--mobile .brz-fs-im-213{font-size:213px!important}.brz-ed.brz-ed--mobile .brz-fs-im-214{font-size:214px!important}.brz-ed.brz-ed--mobile .brz-fs-im-215{font-size:215px!important}.brz-ed.brz-ed--mobile .brz-fs-im-216{font-size:216px!important}.brz-ed.brz-ed--mobile .brz-fs-im-217{font-size:217px!important}.brz-ed.brz-ed--mobile .brz-fs-im-218{font-size:218px!important}.brz-ed.brz-ed--mobile .brz-fs-im-219{font-size:219px!important}.brz-ed.brz-ed--mobile .brz-fs-im-220{font-size:220px!important}.brz-ed.brz-ed--mobile .brz-fs-im-221{font-size:221px!important}.brz-ed.brz-ed--mobile .brz-fs-im-222{font-size:222px!important}.brz-ed.brz-ed--mobile .brz-fs-im-223{font-size:223px!important}.brz-ed.brz-ed--mobile .brz-fs-im-224{font-size:224px!important}.brz-ed.brz-ed--mobile .brz-fs-im-225{font-size:225px!important}.brz-ed.brz-ed--mobile .brz-fs-im-226{font-size:226px!important}.brz-ed.brz-ed--mobile .brz-fs-im-227{font-size:227px!important}.brz-ed.brz-ed--mobile .brz-fs-im-228{font-size:228px!important}.brz-ed.brz-ed--mobile .brz-fs-im-229{font-size:229px!important}.brz-ed.brz-ed--mobile .brz-fs-im-230{font-size:230px!important}.brz-ed.brz-ed--mobile .brz-fs-im-231{font-size:231px!important}.brz-ed.brz-ed--mobile .brz-fs-im-232{font-size:232px!important}.brz-ed.brz-ed--mobile .brz-fs-im-233{font-size:233px!important}.brz-ed.brz-ed--mobile .brz-fs-im-234{font-size:234px!important}.brz-ed.brz-ed--mobile .brz-fs-im-235{font-size:235px!important}.brz-ed.brz-ed--mobile .brz-fs-im-236{font-size:236px!important}.brz-ed.brz-ed--mobile .brz-fs-im-237{font-size:237px!important}.brz-ed.brz-ed--mobile .brz-fs-im-238{font-size:238px!important}.brz-ed.brz-ed--mobile .brz-fs-im-239{font-size:239px!important}.brz-ed.brz-ed--mobile .brz-fs-im-240{font-size:240px!important}.brz-ed.brz-ed--mobile .brz-fs-im-241{font-size:241px!important}.brz-ed.brz-ed--mobile .brz-fs-im-242{font-size:242px!important}.brz-ed.brz-ed--mobile .brz-fs-im-243{font-size:243px!important}.brz-ed.brz-ed--mobile .brz-fs-im-244{font-size:244px!important}.brz-ed.brz-ed--mobile .brz-fs-im-245{font-size:245px!important}.brz-ed.brz-ed--mobile .brz-fs-im-246{font-size:246px!important}.brz-ed.brz-ed--mobile .brz-fs-im-247{font-size:247px!important}.brz-ed.brz-ed--mobile .brz-fs-im-248{font-size:248px!important}.brz-ed.brz-ed--mobile .brz-fs-im-249{font-size:249px!important}.brz-ed.brz-ed--mobile .brz-fs-im-250{font-size:250px!important}.brz-ed.brz-ed--mobile .brz-fs-im-251{font-size:251px!important}.brz-ed.brz-ed--mobile .brz-fs-im-252{font-size:252px!important}.brz-ed.brz-ed--mobile .brz-fs-im-253{font-size:253px!important}.brz-ed.brz-ed--mobile .brz-fs-im-254{font-size:254px!important}.brz-ed.brz-ed--mobile .brz-fs-im-255{font-size:255px!important}.brz-ed.brz-ed--mobile .brz-fs-im-256{font-size:256px!important}.brz-ed.brz-ed--mobile .brz-fs-im-257{font-size:257px!important}.brz-ed.brz-ed--mobile .brz-fs-im-258{font-size:258px!important}.brz-ed.brz-ed--mobile .brz-fs-im-259{font-size:259px!important}.brz-ed.brz-ed--mobile .brz-fs-im-260{font-size:260px!important}.brz-ed.brz-ed--mobile .brz-fs-im-261{font-size:261px!important}.brz-ed.brz-ed--mobile .brz-fs-im-262{font-size:262px!important}.brz-ed.brz-ed--mobile .brz-fs-im-263{font-size:263px!important}.brz-ed.brz-ed--mobile .brz-fs-im-264{font-size:264px!important}.brz-ed.brz-ed--mobile .brz-fs-im-265{font-size:265px!important}.brz-ed.brz-ed--mobile .brz-fs-im-266{font-size:266px!important}.brz-ed.brz-ed--mobile .brz-fs-im-267{font-size:267px!important}.brz-ed.brz-ed--mobile .brz-fs-im-268{font-size:268px!important}.brz-ed.brz-ed--mobile .brz-fs-im-269{font-size:269px!important}.brz-ed.brz-ed--mobile .brz-fs-im-270{font-size:270px!important}.brz-ed.brz-ed--mobile .brz-fs-im-271{font-size:271px!important}.brz-ed.brz-ed--mobile .brz-fs-im-272{font-size:272px!important}.brz-ed.brz-ed--mobile .brz-fs-im-273{font-size:273px!important}.brz-ed.brz-ed--mobile .brz-fs-im-274{font-size:274px!important}.brz-ed.brz-ed--mobile .brz-fs-im-275{font-size:275px!important}.brz-ed.brz-ed--mobile .brz-fs-im-276{font-size:276px!important}.brz-ed.brz-ed--mobile .brz-fs-im-277{font-size:277px!important}.brz-ed.brz-ed--mobile .brz-fs-im-278{font-size:278px!important}.brz-ed.brz-ed--mobile .brz-fs-im-279{font-size:279px!important}.brz-ed.brz-ed--mobile .brz-fs-im-280{font-size:280px!important}.brz-ed.brz-ed--mobile .brz-fs-im-281{font-size:281px!important}.brz-ed.brz-ed--mobile .brz-fs-im-282{font-size:282px!important}.brz-ed.brz-ed--mobile .brz-fs-im-283{font-size:283px!important}.brz-ed.brz-ed--mobile .brz-fs-im-284{font-size:284px!important}.brz-ed.brz-ed--mobile .brz-fs-im-285{font-size:285px!important}.brz-ed.brz-ed--mobile .brz-fs-im-286{font-size:286px!important}.brz-ed.brz-ed--mobile .brz-fs-im-287{font-size:287px!important}.brz-ed.brz-ed--mobile .brz-fs-im-288{font-size:288px!important}.brz-ed.brz-ed--mobile .brz-fs-im-289{font-size:289px!important}.brz-ed.brz-ed--mobile .brz-fs-im-290{font-size:290px!important}.brz-ed.brz-ed--mobile .brz-fs-im-291{font-size:291px!important}.brz-ed.brz-ed--mobile .brz-fs-im-292{font-size:292px!important}.brz-ed.brz-ed--mobile .brz-fs-im-293{font-size:293px!important}.brz-ed.brz-ed--mobile .brz-fs-im-294{font-size:294px!important}.brz-ed.brz-ed--mobile .brz-fs-im-295{font-size:295px!important}.brz-ed.brz-ed--mobile .brz-fs-im-296{font-size:296px!important}.brz-ed.brz-ed--mobile .brz-fs-im-297{font-size:297px!important}.brz-ed.brz-ed--mobile .brz-fs-im-298{font-size:298px!important}.brz-ed.brz-ed--mobile .brz-fs-im-299{font-size:299px!important}.brz-ed.brz-ed--mobile .brz-fs-im-300{font-size:300px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-6{font-size:6px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-7{font-size:7px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-8{font-size:8px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-9{font-size:9px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-10{font-size:10px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-11{font-size:11px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-12{font-size:12px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-13{font-size:13px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-14{font-size:14px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-15{font-size:15px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-16{font-size:16px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-17{font-size:17px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-18{font-size:18px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-19{font-size:19px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-20{font-size:20px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-21{font-size:21px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-22{font-size:22px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-23{font-size:23px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-24{font-size:24px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-25{font-size:25px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-26{font-size:26px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-27{font-size:27px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-28{font-size:28px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-29{font-size:29px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-30{font-size:30px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-31{font-size:31px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-32{font-size:32px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-33{font-size:33px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-34{font-size:34px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-35{font-size:35px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-36{font-size:36px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-37{font-size:37px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-38{font-size:38px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-39{font-size:39px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-40{font-size:40px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-41{font-size:41px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-42{font-size:42px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-43{font-size:43px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-44{font-size:44px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-45{font-size:45px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-46{font-size:46px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-47{font-size:47px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-48{font-size:48px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-49{font-size:49px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-50{font-size:50px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-51{font-size:51px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-52{font-size:52px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-53{font-size:53px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-54{font-size:54px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-55{font-size:55px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-56{font-size:56px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-57{font-size:57px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-58{font-size:58px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-59{font-size:59px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-60{font-size:60px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-61{font-size:61px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-62{font-size:62px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-63{font-size:63px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-64{font-size:64px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-65{font-size:65px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-66{font-size:66px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-67{font-size:67px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-68{font-size:68px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-69{font-size:69px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-70{font-size:70px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-71{font-size:71px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-72{font-size:72px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-73{font-size:73px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-74{font-size:74px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-75{font-size:75px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-76{font-size:76px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-77{font-size:77px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-78{font-size:78px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-79{font-size:79px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-80{font-size:80px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-81{font-size:81px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-82{font-size:82px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-83{font-size:83px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-84{font-size:84px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-85{font-size:85px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-86{font-size:86px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-87{font-size:87px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-88{font-size:88px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-89{font-size:89px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-90{font-size:90px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-91{font-size:91px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-92{font-size:92px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-93{font-size:93px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-94{font-size:94px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-95{font-size:95px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-96{font-size:96px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-97{font-size:97px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-98{font-size:98px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-99{font-size:99px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-100{font-size:100px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-101{font-size:101px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-102{font-size:102px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-103{font-size:103px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-104{font-size:104px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-105{font-size:105px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-106{font-size:106px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-107{font-size:107px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-108{font-size:108px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-109{font-size:109px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-110{font-size:110px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-111{font-size:111px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-112{font-size:112px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-113{font-size:113px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-114{font-size:114px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-115{font-size:115px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-116{font-size:116px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-117{font-size:117px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-118{font-size:118px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-119{font-size:119px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-120{font-size:120px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-121{font-size:121px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-122{font-size:122px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-123{font-size:123px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-124{font-size:124px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-125{font-size:125px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-126{font-size:126px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-127{font-size:127px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-128{font-size:128px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-129{font-size:129px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-130{font-size:130px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-131{font-size:131px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-132{font-size:132px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-133{font-size:133px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-134{font-size:134px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-135{font-size:135px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-136{font-size:136px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-137{font-size:137px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-138{font-size:138px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-139{font-size:139px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-140{font-size:140px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-141{font-size:141px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-142{font-size:142px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-143{font-size:143px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-144{font-size:144px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-145{font-size:145px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-146{font-size:146px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-147{font-size:147px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-148{font-size:148px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-149{font-size:149px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-150{font-size:150px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-151{font-size:151px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-152{font-size:152px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-153{font-size:153px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-154{font-size:154px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-155{font-size:155px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-156{font-size:156px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-157{font-size:157px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-158{font-size:158px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-159{font-size:159px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-160{font-size:160px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-161{font-size:161px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-162{font-size:162px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-163{font-size:163px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-164{font-size:164px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-165{font-size:165px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-166{font-size:166px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-167{font-size:167px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-168{font-size:168px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-169{font-size:169px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-170{font-size:170px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-171{font-size:171px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-172{font-size:172px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-173{font-size:173px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-174{font-size:174px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-175{font-size:175px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-176{font-size:176px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-177{font-size:177px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-178{font-size:178px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-179{font-size:179px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-180{font-size:180px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-181{font-size:181px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-182{font-size:182px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-183{font-size:183px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-184{font-size:184px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-185{font-size:185px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-186{font-size:186px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-187{font-size:187px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-188{font-size:188px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-189{font-size:189px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-190{font-size:190px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-191{font-size:191px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-192{font-size:192px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-193{font-size:193px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-194{font-size:194px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-195{font-size:195px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-196{font-size:196px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-197{font-size:197px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-198{font-size:198px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-199{font-size:199px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-200{font-size:200px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-201{font-size:201px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-202{font-size:202px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-203{font-size:203px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-204{font-size:204px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-205{font-size:205px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-206{font-size:206px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-207{font-size:207px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-208{font-size:208px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-209{font-size:209px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-210{font-size:210px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-211{font-size:211px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-212{font-size:212px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-213{font-size:213px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-214{font-size:214px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-215{font-size:215px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-216{font-size:216px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-217{font-size:217px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-218{font-size:218px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-219{font-size:219px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-220{font-size:220px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-221{font-size:221px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-222{font-size:222px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-223{font-size:223px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-224{font-size:224px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-225{font-size:225px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-226{font-size:226px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-227{font-size:227px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-228{font-size:228px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-229{font-size:229px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-230{font-size:230px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-231{font-size:231px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-232{font-size:232px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-233{font-size:233px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-234{font-size:234px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-235{font-size:235px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-236{font-size:236px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-237{font-size:237px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-238{font-size:238px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-239{font-size:239px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-240{font-size:240px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-241{font-size:241px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-242{font-size:242px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-243{font-size:243px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-244{font-size:244px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-245{font-size:245px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-246{font-size:246px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-247{font-size:247px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-248{font-size:248px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-249{font-size:249px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-250{font-size:250px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-251{font-size:251px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-252{font-size:252px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-253{font-size:253px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-254{font-size:254px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-255{font-size:255px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-256{font-size:256px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-257{font-size:257px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-258{font-size:258px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-259{font-size:259px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-260{font-size:260px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-261{font-size:261px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-262{font-size:262px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-263{font-size:263px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-264{font-size:264px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-265{font-size:265px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-266{font-size:266px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-267{font-size:267px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-268{font-size:268px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-269{font-size:269px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-270{font-size:270px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-271{font-size:271px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-272{font-size:272px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-273{font-size:273px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-274{font-size:274px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-275{font-size:275px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-276{font-size:276px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-277{font-size:277px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-278{font-size:278px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-279{font-size:279px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-280{font-size:280px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-281{font-size:281px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-282{font-size:282px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-283{font-size:283px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-284{font-size:284px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-285{font-size:285px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-286{font-size:286px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-287{font-size:287px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-288{font-size:288px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-289{font-size:289px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-290{font-size:290px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-291{font-size:291px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-292{font-size:292px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-293{font-size:293px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-294{font-size:294px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-295{font-size:295px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-296{font-size:296px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-297{font-size:297px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-298{font-size:298px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-299{font-size:299px!important}.brz-ed.brz-ed--mobile .brz-fs-xs-300{font-size:300px!important}.brz-ed.brz-ed--mobile .brz-lh-im-1{line-height:1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_1{line-height:1.1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_2{line-height:1.2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_3{line-height:1.3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_4{line-height:1.4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_5{line-height:1.5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_6{line-height:1.6em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_7{line-height:1.7em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_8{line-height:1.8em!important}.brz-ed.brz-ed--mobile .brz-lh-im-1_9{line-height:1.9em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2{line-height:2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_1{line-height:2.1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_2{line-height:2.2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_3{line-height:2.3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_4{line-height:2.4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_5{line-height:2.5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_6{line-height:2.6em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_7{line-height:2.7em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_8{line-height:2.8em!important}.brz-ed.brz-ed--mobile .brz-lh-im-2_9{line-height:2.9em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3{line-height:3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_1{line-height:3.1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_2{line-height:3.2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_3{line-height:3.3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_4{line-height:3.4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_5{line-height:3.5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_6{line-height:3.6em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_7{line-height:3.7em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_8{line-height:3.8em!important}.brz-ed.brz-ed--mobile .brz-lh-im-3_9{line-height:3.9em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4{line-height:4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_1{line-height:4.1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_2{line-height:4.2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_3{line-height:4.3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_4{line-height:4.4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_5{line-height:4.5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_6{line-height:4.6em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_7{line-height:4.7em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_8{line-height:4.8em!important}.brz-ed.brz-ed--mobile .brz-lh-im-4_9{line-height:4.9em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5{line-height:5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_1{line-height:5.1em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_2{line-height:5.2em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_3{line-height:5.3em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_4{line-height:5.4em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_5{line-height:5.5em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_6{line-height:5.6em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_7{line-height:5.7em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_8{line-height:5.8em!important}.brz-ed.brz-ed--mobile .brz-lh-im-5_9{line-height:5.9em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1{line-height:1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_1{line-height:1.1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_2{line-height:1.2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_3{line-height:1.3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_4{line-height:1.4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_5{line-height:1.5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_6{line-height:1.6em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_7{line-height:1.7em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_8{line-height:1.8em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-1_9{line-height:1.9em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2{line-height:2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_1{line-height:2.1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_2{line-height:2.2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_3{line-height:2.3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_4{line-height:2.4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_5{line-height:2.5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_6{line-height:2.6em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_7{line-height:2.7em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_8{line-height:2.8em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-2_9{line-height:2.9em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3{line-height:3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_1{line-height:3.1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_2{line-height:3.2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_3{line-height:3.3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_4{line-height:3.4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_5{line-height:3.5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_6{line-height:3.6em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_7{line-height:3.7em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_8{line-height:3.8em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-3_9{line-height:3.9em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4{line-height:4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_1{line-height:4.1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_2{line-height:4.2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_3{line-height:4.3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_4{line-height:4.4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_5{line-height:4.5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_6{line-height:4.6em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_7{line-height:4.7em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_8{line-height:4.8em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-4_9{line-height:4.9em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5{line-height:5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_1{line-height:5.1em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_2{line-height:5.2em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_3{line-height:5.3em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_4{line-height:5.4em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_5{line-height:5.5em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_6{line-height:5.6em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_7{line-height:5.7em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_8{line-height:5.8em!important}.brz-ed.brz-ed--mobile .brz-lh-xs-5_9{line-height:5.9em!important}.brz-ed.brz-ed--mobile .brz-fw-im-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-im-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-im-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-im-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-im-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-im-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-im-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-im-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-im-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-im-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-im-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-im-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-im-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-im-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-im-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-100{font-weight:100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-200{font-weight:200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-300{font-weight:300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-400{font-weight:400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-500{font-weight:500!important}.brz-ed.brz-ed--mobile .brz-fw-xs-600{font-weight:600!important}.brz-ed.brz-ed--mobile .brz-fw-xs-700{font-weight:700!important}.brz-ed.brz-ed--mobile .brz-fw-xs-800{font-weight:800!important}.brz-ed.brz-ed--mobile .brz-fw-xs-900{font-weight:900!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1000{font-weight:1000!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1100{font-weight:1100!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1200{font-weight:1200!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1300{font-weight:1300!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1400{font-weight:1400!important}.brz-ed.brz-ed--mobile .brz-fw-xs-1500{font-weight:1500!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_5{letter-spacing:-5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_5_5{letter-spacing:-5.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_4{letter-spacing:-4px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_4_5{letter-spacing:-4.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_3{letter-spacing:-3px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_3_5{letter-spacing:-3.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_2{letter-spacing:-2px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_2_5{letter-spacing:-2.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_1{letter-spacing:-1px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_1_5{letter-spacing:-1.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_0{letter-spacing:0!important}.brz-ed.brz-ed--mobile .brz-ls-im-m_0_5{letter-spacing:-.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-0{letter-spacing:0!important}.brz-ed.brz-ed--mobile .brz-ls-im-0_5{letter-spacing:.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-1{letter-spacing:1px!important}.brz-ed.brz-ed--mobile .brz-ls-im-1_5{letter-spacing:1.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-2{letter-spacing:2px!important}.brz-ed.brz-ed--mobile .brz-ls-im-2_5{letter-spacing:2.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-3{letter-spacing:3px!important}.brz-ed.brz-ed--mobile .brz-ls-im-3_5{letter-spacing:3.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-4{letter-spacing:4px!important}.brz-ed.brz-ed--mobile .brz-ls-im-4_5{letter-spacing:4.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-5{letter-spacing:5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-5_5{letter-spacing:5.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-6{letter-spacing:6px!important}.brz-ed.brz-ed--mobile .brz-ls-im-6_5{letter-spacing:6.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-7{letter-spacing:7px!important}.brz-ed.brz-ed--mobile .brz-ls-im-7_5{letter-spacing:7.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-8{letter-spacing:8px!important}.brz-ed.brz-ed--mobile .brz-ls-im-8_5{letter-spacing:8.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-9{letter-spacing:9px!important}.brz-ed.brz-ed--mobile .brz-ls-im-9_5{letter-spacing:9.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-10{letter-spacing:10px!important}.brz-ed.brz-ed--mobile .brz-ls-im-10_5{letter-spacing:10.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-11{letter-spacing:11px!important}.brz-ed.brz-ed--mobile .brz-ls-im-11_5{letter-spacing:11.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-12{letter-spacing:12px!important}.brz-ed.brz-ed--mobile .brz-ls-im-12_5{letter-spacing:12.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-13{letter-spacing:13px!important}.brz-ed.brz-ed--mobile .brz-ls-im-13_5{letter-spacing:13.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-14{letter-spacing:14px!important}.brz-ed.brz-ed--mobile .brz-ls-im-14_5{letter-spacing:14.5px!important}.brz-ed.brz-ed--mobile .brz-ls-im-15{letter-spacing:15px!important}.brz-ed.brz-ed--mobile .brz-ls-im-15_5{letter-spacing:15.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5{letter-spacing:-5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_5_5{letter-spacing:-5.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4{letter-spacing:-4px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_4_5{letter-spacing:-4.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3{letter-spacing:-3px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_3_5{letter-spacing:-3.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2{letter-spacing:-2px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_2_5{letter-spacing:-2.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1{letter-spacing:-1px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_1_5{letter-spacing:-1.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0{letter-spacing:0!important}.brz-ed.brz-ed--mobile .brz-ls-xs-m_0_5{letter-spacing:-.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-0{letter-spacing:0!important}.brz-ed.brz-ed--mobile .brz-ls-xs-0_5{letter-spacing:.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-1{letter-spacing:1px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-1_5{letter-spacing:1.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-2{letter-spacing:2px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-2_5{letter-spacing:2.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-3{letter-spacing:3px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-3_5{letter-spacing:3.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-4{letter-spacing:4px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-4_5{letter-spacing:4.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-5{letter-spacing:5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-5_5{letter-spacing:5.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-6{letter-spacing:6px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-6_5{letter-spacing:6.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-7{letter-spacing:7px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-7_5{letter-spacing:7.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-8{letter-spacing:8px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-8_5{letter-spacing:8.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-9{letter-spacing:9px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-9_5{letter-spacing:9.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-10{letter-spacing:10px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-10_5{letter-spacing:10.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-11{letter-spacing:11px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-11_5{letter-spacing:11.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-12{letter-spacing:12px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-12_5{letter-spacing:12.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-13{letter-spacing:13px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-13_5{letter-spacing:13.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-14{letter-spacing:14px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-14_5{letter-spacing:14.5px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-15{letter-spacing:15px!important}.brz-ed.brz-ed--mobile .brz-ls-xs-15_5{letter-spacing:15.5px!important}.brz-ed .brz-mt-lg-0{margin-top:0!important}.brz-ed .brz-mt-lg-1{margin-top:1px!important}.brz-ed .brz-mt-lg-2{margin-top:2px!important}.brz-ed .brz-mt-lg-3{margin-top:3px!important}.brz-ed .brz-mt-lg-4{margin-top:4px!important}.brz-ed .brz-mt-lg-5{margin-top:5px!important}.brz-ed .brz-mt-lg-6{margin-top:6px!important}.brz-ed .brz-mt-lg-7{margin-top:7px!important}.brz-ed .brz-mt-lg-8{margin-top:8px!important}.brz-ed .brz-mt-lg-9{margin-top:9px!important}.brz-ed .brz-mt-lg-10{margin-top:10px!important}.brz-ed .brz-mt-lg-11{margin-top:11px!important}.brz-ed .brz-mt-lg-12{margin-top:12px!important}.brz-ed .brz-mt-lg-13{margin-top:13px!important}.brz-ed .brz-mt-lg-14{margin-top:14px!important}.brz-ed .brz-mt-lg-15{margin-top:15px!important}.brz-ed .brz-mt-lg-16{margin-top:16px!important}.brz-ed .brz-mt-lg-17{margin-top:17px!important}.brz-ed .brz-mt-lg-18{margin-top:18px!important}.brz-ed .brz-mt-lg-19{margin-top:19px!important}.brz-ed .brz-mt-lg-20{margin-top:20px!important}.brz-ed .brz-mt-lg-21{margin-top:21px!important}.brz-ed .brz-mt-lg-22{margin-top:22px!important}.brz-ed .brz-mt-lg-23{margin-top:23px!important}.brz-ed .brz-mt-lg-24{margin-top:24px!important}.brz-ed .brz-mt-lg-25{margin-top:25px!important}.brz-ed .brz-mt-lg-26{margin-top:26px!important}.brz-ed .brz-mt-lg-27{margin-top:27px!important}.brz-ed .brz-mt-lg-28{margin-top:28px!important}.brz-ed .brz-mt-lg-29{margin-top:29px!important}.brz-ed .brz-mt-lg-30{margin-top:30px!important}.brz-ed .brz-mt-lg-31{margin-top:31px!important}.brz-ed .brz-mt-lg-32{margin-top:32px!important}.brz-ed .brz-mt-lg-33{margin-top:33px!important}.brz-ed .brz-mt-lg-34{margin-top:34px!important}.brz-ed .brz-mt-lg-35{margin-top:35px!important}.brz-ed .brz-mt-lg-36{margin-top:36px!important}.brz-ed .brz-mt-lg-37{margin-top:37px!important}.brz-ed .brz-mt-lg-38{margin-top:38px!important}.brz-ed .brz-mt-lg-39{margin-top:39px!important}.brz-ed .brz-mt-lg-40{margin-top:40px!important}.brz-ed .brz-mt-lg-41{margin-top:41px!important}.brz-ed .brz-mt-lg-42{margin-top:42px!important}.brz-ed .brz-mt-lg-43{margin-top:43px!important}.brz-ed .brz-mt-lg-44{margin-top:44px!important}.brz-ed .brz-mt-lg-45{margin-top:45px!important}.brz-ed .brz-mt-lg-46{margin-top:46px!important}.brz-ed .brz-mt-lg-47{margin-top:47px!important}.brz-ed .brz-mt-lg-48{margin-top:48px!important}.brz-ed .brz-mt-lg-49{margin-top:49px!important}.brz-ed .brz-mt-lg-50{margin-top:50px!important}.brz-ed .brz-mt-lg-51{margin-top:51px!important}.brz-ed .brz-mt-lg-52{margin-top:52px!important}.brz-ed .brz-mt-lg-53{margin-top:53px!important}.brz-ed .brz-mt-lg-54{margin-top:54px!important}.brz-ed .brz-mt-lg-55{margin-top:55px!important}.brz-ed .brz-mt-lg-56{margin-top:56px!important}.brz-ed .brz-mt-lg-57{margin-top:57px!important}.brz-ed .brz-mt-lg-58{margin-top:58px!important}.brz-ed .brz-mt-lg-59{margin-top:59px!important}.brz-ed .brz-mt-lg-60{margin-top:60px!important}.brz-ed .brz-mt-lg-61{margin-top:61px!important}.brz-ed .brz-mt-lg-62{margin-top:62px!important}.brz-ed .brz-mt-lg-63{margin-top:63px!important}.brz-ed .brz-mt-lg-64{margin-top:64px!important}.brz-ed .brz-mt-lg-65{margin-top:65px!important}.brz-ed .brz-mt-lg-66{margin-top:66px!important}.brz-ed .brz-mt-lg-67{margin-top:67px!important}.brz-ed .brz-mt-lg-68{margin-top:68px!important}.brz-ed .brz-mt-lg-69{margin-top:69px!important}.brz-ed .brz-mt-lg-70{margin-top:70px!important}.brz-ed .brz-mt-lg-71{margin-top:71px!important}.brz-ed .brz-mt-lg-72{margin-top:72px!important}.brz-ed .brz-mt-lg-73{margin-top:73px!important}.brz-ed .brz-mt-lg-74{margin-top:74px!important}.brz-ed .brz-mt-lg-75{margin-top:75px!important}.brz-ed .brz-mt-lg-76{margin-top:76px!important}.brz-ed .brz-mt-lg-77{margin-top:77px!important}.brz-ed .brz-mt-lg-78{margin-top:78px!important}.brz-ed .brz-mt-lg-79{margin-top:79px!important}.brz-ed .brz-mt-lg-80{margin-top:80px!important}.brz-ed .brz-mt-lg-81{margin-top:81px!important}.brz-ed .brz-mt-lg-82{margin-top:82px!important}.brz-ed .brz-mt-lg-83{margin-top:83px!important}.brz-ed .brz-mt-lg-84{margin-top:84px!important}.brz-ed .brz-mt-lg-85{margin-top:85px!important}.brz-ed .brz-mt-lg-86{margin-top:86px!important}.brz-ed .brz-mt-lg-87{margin-top:87px!important}.brz-ed .brz-mt-lg-88{margin-top:88px!important}.brz-ed .brz-mt-lg-89{margin-top:89px!important}.brz-ed .brz-mt-lg-90{margin-top:90px!important}.brz-ed .brz-mt-lg-91{margin-top:91px!important}.brz-ed .brz-mt-lg-92{margin-top:92px!important}.brz-ed .brz-mt-lg-93{margin-top:93px!important}.brz-ed .brz-mt-lg-94{margin-top:94px!important}.brz-ed .brz-mt-lg-95{margin-top:95px!important}.brz-ed .brz-mt-lg-96{margin-top:96px!important}.brz-ed .brz-mt-lg-97{margin-top:97px!important}.brz-ed .brz-mt-lg-98{margin-top:98px!important}.brz-ed .brz-mt-lg-99{margin-top:99px!important}.brz-ed .brz-mt-lg-100{margin-top:100px!important}.brz-ed .brz-mb-lg-0{margin-bottom:0!important}.brz-ed .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-0{margin-top:0!important}.brz-ed.brz-ed--desktop .brz-mt-lg-1{margin-top:1px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-2{margin-top:2px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-3{margin-top:3px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-4{margin-top:4px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-5{margin-top:5px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-6{margin-top:6px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-7{margin-top:7px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-8{margin-top:8px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-9{margin-top:9px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-10{margin-top:10px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-11{margin-top:11px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-12{margin-top:12px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-13{margin-top:13px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-14{margin-top:14px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-15{margin-top:15px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-16{margin-top:16px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-17{margin-top:17px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-18{margin-top:18px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-19{margin-top:19px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-20{margin-top:20px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-21{margin-top:21px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-22{margin-top:22px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-23{margin-top:23px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-24{margin-top:24px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-25{margin-top:25px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-26{margin-top:26px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-27{margin-top:27px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-28{margin-top:28px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-29{margin-top:29px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-30{margin-top:30px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-31{margin-top:31px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-32{margin-top:32px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-33{margin-top:33px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-34{margin-top:34px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-35{margin-top:35px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-36{margin-top:36px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-37{margin-top:37px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-38{margin-top:38px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-39{margin-top:39px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-40{margin-top:40px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-41{margin-top:41px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-42{margin-top:42px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-43{margin-top:43px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-44{margin-top:44px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-45{margin-top:45px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-46{margin-top:46px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-47{margin-top:47px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-48{margin-top:48px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-49{margin-top:49px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-50{margin-top:50px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-51{margin-top:51px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-52{margin-top:52px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-53{margin-top:53px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-54{margin-top:54px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-55{margin-top:55px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-56{margin-top:56px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-57{margin-top:57px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-58{margin-top:58px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-59{margin-top:59px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-60{margin-top:60px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-61{margin-top:61px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-62{margin-top:62px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-63{margin-top:63px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-64{margin-top:64px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-65{margin-top:65px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-66{margin-top:66px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-67{margin-top:67px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-68{margin-top:68px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-69{margin-top:69px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-70{margin-top:70px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-71{margin-top:71px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-72{margin-top:72px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-73{margin-top:73px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-74{margin-top:74px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-75{margin-top:75px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-76{margin-top:76px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-77{margin-top:77px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-78{margin-top:78px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-79{margin-top:79px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-80{margin-top:80px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-81{margin-top:81px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-82{margin-top:82px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-83{margin-top:83px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-84{margin-top:84px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-85{margin-top:85px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-86{margin-top:86px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-87{margin-top:87px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-88{margin-top:88px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-89{margin-top:89px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-90{margin-top:90px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-91{margin-top:91px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-92{margin-top:92px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-93{margin-top:93px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-94{margin-top:94px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-95{margin-top:95px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-96{margin-top:96px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-97{margin-top:97px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-98{margin-top:98px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-99{margin-top:99px!important}.brz-ed.brz-ed--desktop .brz-mt-lg-100{margin-top:100px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-0{margin-bottom:0!important}.brz-ed.brz-ed--desktop .brz-mb-lg-1{margin-bottom:1px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-2{margin-bottom:2px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-3{margin-bottom:3px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-4{margin-bottom:4px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-5{margin-bottom:5px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-6{margin-bottom:6px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-7{margin-bottom:7px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-8{margin-bottom:8px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-9{margin-bottom:9px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-10{margin-bottom:10px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-11{margin-bottom:11px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-12{margin-bottom:12px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-13{margin-bottom:13px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-14{margin-bottom:14px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-15{margin-bottom:15px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-16{margin-bottom:16px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-17{margin-bottom:17px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-18{margin-bottom:18px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-19{margin-bottom:19px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-20{margin-bottom:20px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-21{margin-bottom:21px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-22{margin-bottom:22px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-23{margin-bottom:23px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-24{margin-bottom:24px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-25{margin-bottom:25px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-26{margin-bottom:26px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-27{margin-bottom:27px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-28{margin-bottom:28px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-29{margin-bottom:29px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-30{margin-bottom:30px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-31{margin-bottom:31px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-32{margin-bottom:32px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-33{margin-bottom:33px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-34{margin-bottom:34px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-35{margin-bottom:35px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-36{margin-bottom:36px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-37{margin-bottom:37px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-38{margin-bottom:38px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-39{margin-bottom:39px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-40{margin-bottom:40px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-41{margin-bottom:41px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-42{margin-bottom:42px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-43{margin-bottom:43px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-44{margin-bottom:44px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-45{margin-bottom:45px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-46{margin-bottom:46px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-47{margin-bottom:47px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-48{margin-bottom:48px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-49{margin-bottom:49px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-50{margin-bottom:50px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-51{margin-bottom:51px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-52{margin-bottom:52px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-53{margin-bottom:53px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-54{margin-bottom:54px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-55{margin-bottom:55px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-56{margin-bottom:56px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-57{margin-bottom:57px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-58{margin-bottom:58px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-59{margin-bottom:59px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-60{margin-bottom:60px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-61{margin-bottom:61px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-62{margin-bottom:62px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-63{margin-bottom:63px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-64{margin-bottom:64px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-65{margin-bottom:65px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-66{margin-bottom:66px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-67{margin-bottom:67px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-68{margin-bottom:68px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-69{margin-bottom:69px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-70{margin-bottom:70px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-71{margin-bottom:71px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-72{margin-bottom:72px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-73{margin-bottom:73px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-74{margin-bottom:74px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-75{margin-bottom:75px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-76{margin-bottom:76px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-77{margin-bottom:77px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-78{margin-bottom:78px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-79{margin-bottom:79px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-80{margin-bottom:80px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-81{margin-bottom:81px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-82{margin-bottom:82px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-83{margin-bottom:83px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-84{margin-bottom:84px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-85{margin-bottom:85px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-86{margin-bottom:86px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-87{margin-bottom:87px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-88{margin-bottom:88px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-89{margin-bottom:89px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-90{margin-bottom:90px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-91{margin-bottom:91px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-92{margin-bottom:92px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-93{margin-bottom:93px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-94{margin-bottom:94px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-95{margin-bottom:95px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-96{margin-bottom:96px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-97{margin-bottom:97px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-98{margin-bottom:98px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-99{margin-bottom:99px!important}.brz-ed.brz-ed--desktop .brz-mb-lg-100{margin-bottom:100px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-0{margin-top:0!important}.brz-ed.brz-ed--mobile .brz-mt-xs-1{margin-top:1px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-2{margin-top:2px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-3{margin-top:3px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-4{margin-top:4px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-5{margin-top:5px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-6{margin-top:6px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-7{margin-top:7px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-8{margin-top:8px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-9{margin-top:9px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-10{margin-top:10px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-11{margin-top:11px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-12{margin-top:12px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-13{margin-top:13px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-14{margin-top:14px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-15{margin-top:15px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-16{margin-top:16px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-17{margin-top:17px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-18{margin-top:18px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-19{margin-top:19px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-20{margin-top:20px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-21{margin-top:21px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-22{margin-top:22px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-23{margin-top:23px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-24{margin-top:24px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-25{margin-top:25px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-26{margin-top:26px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-27{margin-top:27px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-28{margin-top:28px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-29{margin-top:29px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-30{margin-top:30px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-31{margin-top:31px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-32{margin-top:32px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-33{margin-top:33px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-34{margin-top:34px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-35{margin-top:35px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-36{margin-top:36px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-37{margin-top:37px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-38{margin-top:38px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-39{margin-top:39px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-40{margin-top:40px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-41{margin-top:41px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-42{margin-top:42px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-43{margin-top:43px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-44{margin-top:44px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-45{margin-top:45px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-46{margin-top:46px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-47{margin-top:47px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-48{margin-top:48px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-49{margin-top:49px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-50{margin-top:50px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-51{margin-top:51px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-52{margin-top:52px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-53{margin-top:53px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-54{margin-top:54px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-55{margin-top:55px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-56{margin-top:56px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-57{margin-top:57px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-58{margin-top:58px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-59{margin-top:59px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-60{margin-top:60px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-61{margin-top:61px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-62{margin-top:62px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-63{margin-top:63px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-64{margin-top:64px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-65{margin-top:65px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-66{margin-top:66px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-67{margin-top:67px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-68{margin-top:68px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-69{margin-top:69px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-70{margin-top:70px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-71{margin-top:71px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-72{margin-top:72px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-73{margin-top:73px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-74{margin-top:74px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-75{margin-top:75px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-76{margin-top:76px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-77{margin-top:77px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-78{margin-top:78px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-79{margin-top:79px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-80{margin-top:80px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-81{margin-top:81px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-82{margin-top:82px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-83{margin-top:83px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-84{margin-top:84px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-85{margin-top:85px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-86{margin-top:86px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-87{margin-top:87px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-88{margin-top:88px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-89{margin-top:89px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-90{margin-top:90px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-91{margin-top:91px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-92{margin-top:92px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-93{margin-top:93px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-94{margin-top:94px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-95{margin-top:95px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-96{margin-top:96px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-97{margin-top:97px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-98{margin-top:98px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-99{margin-top:99px!important}.brz-ed.brz-ed--mobile .brz-mt-xs-100{margin-top:100px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-0{margin-bottom:0!important}.brz-ed.brz-ed--mobile .brz-mb-xs-1{margin-bottom:1px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-2{margin-bottom:2px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-3{margin-bottom:3px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-4{margin-bottom:4px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-5{margin-bottom:5px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-6{margin-bottom:6px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-7{margin-bottom:7px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-8{margin-bottom:8px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-9{margin-bottom:9px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-10{margin-bottom:10px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-11{margin-bottom:11px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-12{margin-bottom:12px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-13{margin-bottom:13px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-14{margin-bottom:14px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-15{margin-bottom:15px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-16{margin-bottom:16px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-17{margin-bottom:17px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-18{margin-bottom:18px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-19{margin-bottom:19px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-20{margin-bottom:20px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-21{margin-bottom:21px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-22{margin-bottom:22px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-23{margin-bottom:23px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-24{margin-bottom:24px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-25{margin-bottom:25px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-26{margin-bottom:26px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-27{margin-bottom:27px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-28{margin-bottom:28px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-29{margin-bottom:29px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-30{margin-bottom:30px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-31{margin-bottom:31px!important}.brz-ed .brz-ed-sidebar-option__color-palette-editor,.brz-ed.brz-ed--mobile .brz-mb-xs-32{margin-bottom:32px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-33{margin-bottom:33px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-34{margin-bottom:34px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-35{margin-bottom:35px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-36{margin-bottom:36px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-37{margin-bottom:37px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-38{margin-bottom:38px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-39{margin-bottom:39px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-40{margin-bottom:40px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-41{margin-bottom:41px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-42{margin-bottom:42px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-43{margin-bottom:43px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-44{margin-bottom:44px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-45{margin-bottom:45px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-46{margin-bottom:46px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-47{margin-bottom:47px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-48{margin-bottom:48px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-49{margin-bottom:49px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-50{margin-bottom:50px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-51{margin-bottom:51px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-52{margin-bottom:52px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-53{margin-bottom:53px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-54{margin-bottom:54px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-55{margin-bottom:55px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-56{margin-bottom:56px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-57{margin-bottom:57px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-58{margin-bottom:58px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-59{margin-bottom:59px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-60{margin-bottom:60px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-61{margin-bottom:61px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-62{margin-bottom:62px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-63{margin-bottom:63px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-64{margin-bottom:64px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-65{margin-bottom:65px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-66{margin-bottom:66px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-67{margin-bottom:67px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-68{margin-bottom:68px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-69{margin-bottom:69px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-70{margin-bottom:70px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-71{margin-bottom:71px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-72{margin-bottom:72px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-73{margin-bottom:73px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-74{margin-bottom:74px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-75{margin-bottom:75px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-76{margin-bottom:76px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-77{margin-bottom:77px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-78{margin-bottom:78px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-79{margin-bottom:79px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-80{margin-bottom:80px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-81{margin-bottom:81px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-82{margin-bottom:82px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-83{margin-bottom:83px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-84{margin-bottom:84px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-85{margin-bottom:85px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-86{margin-bottom:86px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-87{margin-bottom:87px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-88{margin-bottom:88px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-89{margin-bottom:89px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-90{margin-bottom:90px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-91{margin-bottom:91px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-92{margin-bottom:92px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-93{margin-bottom:93px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-94{margin-bottom:94px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-95{margin-bottom:95px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-96{margin-bottom:96px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-97{margin-bottom:97px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-98{margin-bottom:98px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-99{margin-bottom:99px!important}.brz-ed.brz-ed--mobile .brz-mb-xs-100{margin-bottom:100px!important}.brz-ed .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed .brz-text-lg-justify{text-align:justify!important}.brz-ed.brz-ed--desktop .brz-text-lg-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--desktop .brz-text-lg-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--desktop .brz-text-lg-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--desktop .brz-text-lg-justify{text-align:justify!important}.brz-ed.brz-ed--mobile .brz-text-xs-left{text-align:left!important;-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.brz-ed.brz-ed--mobile .brz-text-xs-right{text-align:right!important;-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.brz-ed.brz-ed--mobile .brz-text-xs-center{text-align:center!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.brz-ed.brz-ed--mobile .brz-text-xs-justify{text-align:justify!important}.brz-ed .brz-ed-arrow{position:absolute;top:-6px;height:12px;left:50%;margin-left:-6px}.brz-ed .brz-ed-arrow:after{content:"";display:block;position:absolute;bottom:6px;border-bottom:6px solid rgba(3,8,15,.92);border-left:6px solid transparent;border-right:6px solid transparent}.brz-ed .brz-ed-arrow--top-center,.brz-ed .brz-ed-arrow--top-left,.brz-ed .brz-ed-arrow--top-right{top:auto;bottom:-6px}.brz-ed .brz-ed-arrow--top-center:after,.brz-ed .brz-ed-arrow--top-left:after,.brz-ed .brz-ed-arrow--top-right:after{border-top:6px solid rgba(3,8,15,.92);border-bottom:6px solid transparent;bottom:-6px}.brz-ed .brz-ed-animated{-webkit-animation-duration:.15s;animation-duration:.15s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.brz-ed .brz-ed-animated--fadeInDown{-webkit-animation-name:brz-ed-fadeInDown;animation-name:brz-ed-fadeInDown}.brz-ed .brz-ed-animated--fadeInUp{-webkit-animation-name:brz-ed-fadeInUp;animation-name:brz-ed-fadeInUp}.brz-ed .brz-ed-animated--fadeIn{-webkit-animation-name:brz-ed-fadeIn;animation-name:brz-ed-fadeIn}.brz-ed .brz-ed-animated--fadeInLeft{-webkit-animation-name:brz-ed-fadeInLeft;animation-name:brz-ed-fadeInLeft}.brz-ed .brz-ed-animated--spin{-webkit-animation-name:brz-ed-spin;animation-name:brz-ed-spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz-ed .brz-ed-fade-enter{opacity:.01}.brz-ed .brz-ed-fade-enter.brz-ed-fade-enter-active{opacity:1;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-ed-fade-exit{opacity:1}.brz-ed .brz-ed-fade-exit.brz-ed-fade-exit-active{opacity:.01;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.brz-ed .brz-animated{-webkit-animation-fill-mode:none;animation-fill-mode:none}.brz-ed .brz-ed-btn{display:inline-block;border:1px solid transparent;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;white-space:nowrap;-webkit-transition:all .3s ease;transition:all .3s ease;text-decoration:none;font-family:pn,"Open Sans",Arial,sans-serif;font-size:14px;padding:12px 18px;line-height:1;outline:0}.brz-ed .brz-ed-btn-default,.brz-ed .brz-ed-btn-default:hover{border-color:transparent;background-color:transparent}.brz-ed .brz-ed-btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.1);box-shadow:inset 0 3px 5px rgba(0,0,0,.1)}.brz-ed .brz-ed-btn-icon .brz-icon-svg{margin-left:10px;vertical-align:middle}.brz-ed .brz-ed-btn-icon span{display:inline-block;vertical-align:middle}.brz-ed .brz-ed-btn-icon--left .brz-icon-svg{margin-left:0;margin-right:10px}.brz-ed .brz-ed-btn--loading .brz-icon-svg{-webkit-animation-name:spin;animation-name:spin;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.brz-ed .brz-ed-btn-rounded{border-radius:3px}.brz-ed .brz-ed-btn-sm{padding:10px 17px 11px;font-size:14px}.brz-ed .brz-ed-btn-sm.brz-ed-btn-icon .brz-icon-svg{font-size:12px}.brz-ed .brz-ed-btn-sm.brz-ed-btn--loading{font-size:16px;padding-top:8px;padding-bottom:8px}.brz-ed .brz-ed-btn-full{width:100%}.brz-ed .brz-ed-btn-width-1{min-width:130px}.brz-ed .brz-ed-btn-width-2{min-width:176px}.brz-ed .brz-ed-btn-width-3{min-width:102px}.brz-ed .brz-ed-btn-default{color:#626b70}.brz-ed .brz-ed-btn-dark{border-color:#3b474b;background-color:#3b474b;color:#fff}.brz-ed .brz-ed-btn-dark:hover{border-color:#283337;background-color:#283337}.brz-ed .brz-ed-btn-dark-outline{color:#3b474b;border-color:#3b474b;background-color:#fff}.brz-ed .brz-ed-btn-dark-outline:hover{background-color:#3b474b;color:#fff!important}.brz-ed .brz-ed-btn-teal{border-color:#34beea;background-color:#34beea;color:#fff!important}.brz-ed .brz-ed-btn-teal:hover{border-color:#35a9d6;background-color:#35a9d6}.brz-ed .brz-ed-btn-teal-outline{color:#34beea;border-color:#34beea;background-color:transparent}.brz-ed .brz-ed-btn-teal-outline:focus,.brz-ed .brz-ed-btn-teal-outline:hover{background-color:#34beea;color:#fff!important}.brz-ed .brz-ed-btn-green,.brz-ed .brz-ed-btn-green:focus,.brz-ed .brz-ed-btn-green:hover{background-color:#8dc63f;border-color:#8dc63f}.brz-ed .brz-ed-btn-green{color:#fff!important}.brz-ed .brz-ed-btn-green-outline{color:#8dc63f;border-color:#8dc63f;background-color:transparent}.brz-ed .brz-ed-btn-green-outline:hover{background-color:#8dc63f;color:#fff!important}.brz-ed .brz-ed-btn-gray,.brz-ed .brz-ed-btn-gray:focus,.brz-ed .brz-ed-btn-gray:hover{border-color:transparent;background-color:rgba(41,46,55,.5)}.brz-ed .brz-ed-btn-gray{color:#fff!important}.brz-ed .brz-ed-btn-gray-outline{color:rgba(41,46,55,.5);border-color:rgba(41,46,55,.5);background-color:transparent}.brz-ed .brz-ed-btn-gray-outline:hover{background-color:rgba(41,46,55,.5);color:#fff!important}.brz-ed .brz-ed-btn-red,.brz-ed .brz-ed-btn-red:focus,.brz-ed .brz-ed-btn-red:hover{border-color:transparent;background-color:#df3c3c}.brz-ed .brz-ed-btn-red{color:#fff!important}.brz-ed .brz-ed-btn-red-outline{color:#df3c3c;border-color:#df3c3c;background-color:transparent}.brz-ed .brz-ed-btn-red-outline:hover{background-color:#df3c3c;color:#fff!important}.brz-ed .brz-ed-alert{font:600 14px/18px pn,"Open Sans",Arial,sans-serif;background-color:#f2f2f2;padding:12px 15px;margin:0 0 20px}.brz-ed .brz-control__select,.brz-ed .brz-ed-control__stepper--value,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left),.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option,.brz-ed .popup-icon-info{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-alert-error{border-left:4px solid #df3c3c;color:#df3c3c;background-color:rgba(223,60,60,.1)}.brz-ed .brz-ed-alert-success{border-left:4px solid #6ab504;color:#6ab504;background-color:#eff5e8}.brz-ed .brz-ed-alert-info{border-left:4px solid #47a9c8;color:#656b6f;background-color:#eff9fd}.brz-ed .brz-ed-alert-info .popup-icon-info{float:left;margin:0 15px 5px 0;color:#47a9c8;border-color:#47a9c8}.brz-ed .popup-icon-info{display:inline-block;border:2px solid #ccc;color:#ccc;width:32px;height:32px;text-align:center;line-height:32px;font-size:18px;border-radius:50%;margin-bottom:10px}.brz-ed .brz-ed-rotate--180{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.brz-ed .brz-ed-rotate--90{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.brz-ed .brz-icon-svg{display:inline-block;width:1em;height:1em;position:relative;color:currentColor}.brz-ed .brz-icon-svg use{fill:inherit}.brz-ed .brz-icon-svg.grid-16{height:16px;width:16px}.brz-ed .brz-icon-svg.grid-24{height:24px;width:24px}.brz-ed .brz-icon-svg.glyph{fill:currentColor;stroke:none}.brz-ed .brz-icon-svg.outline{stroke:currentColor;fill:none}.brz-ed .brz-icon-svg.outline.stroke-2{stroke-width:2px}.brz-ed .brz-control__select{position:relative;width:112px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}.brz-ed .brz-control__select--dark .brz-control__select-current,.brz-ed .brz-control__select--dark .brz-control__select-current:hover,.brz-ed .brz-control__select--dark .brz-control__select-options{background-color:#383e48}.brz-ed .brz-control__select .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}.brz-ed .brz-control__select.opened .brz-control__select-options{visibility:visible;opacity:1}.brz-ed .brz-control__select .brz-ed-scroll-pane-content{border-right:none!important}.brz-ed .brz-control__select--top-left .brz-control__select-options,.brz-ed .brz-control__select--top-right .brz-control__select-options{bottom:100%;margin-bottom:3px}.brz-ed .brz-control__select--bottom-left .brz-control__select-options,.brz-ed .brz-control__select--bottom-right .brz-control__select-options{margin-top:3px}.brz-ed .brz-control__select--bottom-left .brz-control__select-options,.brz-ed .brz-control__select--top-left .brz-control__select-options{left:0}.brz-ed .brz-control__select--bottom-right .brz-control__select-options,.brz-ed .brz-control__select--top-right .brz-control__select-options{right:0}.brz-ed .brz-control__select--active .brz-control__select-current{color:#3dbfe8}.brz-ed .brz-control__select__auto{width:auto}.brz-ed .brz-control__select-current{line-height:30px;height:30px;border-radius:4px;overflow:hidden}.brz-ed .brz-control__select-current .brz-control__select-option{border-bottom-color:transparent!important;padding-right:20px;text-overflow:ellipsis;overflow:hidden}.brz-ed .brz-icon-svg.brz-control__select--arrow{position:absolute;top:50%;right:12px;margin-top:-.5em;font-size:8px}.brz-ed .brz-control__select-current__icon{width:auto;height:auto;font-size:0;line-height:1;cursor:pointer}.brz-ed .brz-control__select-current__icon .brz-icon-svg{font-size:14px}.brz-ed .brz-control__select-options{position:absolute;z-index:12;min-width:100%;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);overflow:hidden;visibility:hidden;opacity:0}.brz-ed .brz-control__select-options .brz-control__select-option.active,.brz-ed .brz-control__select-options .brz-control__select-option:hover{-webkit-transition:color .15s linear;transition:color .15s linear;color:#3dbfe8}.brz-ed .brz-control__select-optgroup-label,.brz-ed .brz-control__select-option{position:relative;cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;border-bottom:1px solid rgba(255,255,255,.07);line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz-ed .brz-control__select-optgroup-label:last-child,.brz-ed .brz-control__select-option:last-child{border-bottom-color:transparent!important}.brz-ed .brz-control__select-optgroup-label--icon .brz-control__select-option .brz-icon-svg,.brz-ed .brz-control__select-option--icon .brz-control__select-option .brz-icon-svg{width:100%}.brz-ed .brz-control__select-optgroup-label--icon--bottom .brz-control__select-option__bg,.brz-ed .brz-control__select-option--icon--bottom .brz-control__select-option__bg{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.brz-ed .brz-control__select-optgroup-label{cursor:auto}.brz-ed .brz-control__select-optgroup .brz-control__select-option{padding-left:20px;border-bottom-color:rgba(255,255,255,.07)!important}.brz-ed .brz-control__select-optgroup:last-child .brz-control__select-option:last-child{border-bottom-color:transparent!important}.brz-ed .brz-control__select--dark .brz-control__select-current{color:rgba(255,255,255,.85)}.brz-ed .brz-control__select--dark.brz-control__select--active .brz-control__select-current{color:#3dbfe8}.brz-ed .brz-control__select--dark .brz-control__select-option{color:rgba(255,255,255,.85)}.brz-ed .brz-control__select--dark .brz-control__select-current__icon,.brz-ed .brz-control__select--dark .brz-control__select-current__icon:hover{background-color:transparent}.brz-ed .brz-control__select--dark .brz-control__select-optgroup-label{color:#9da8b1}.brz-ed .brz-control__select--light .brz-control__select-current,.brz-ed .brz-control__select--light .brz-control__select-options{background-color:#f2f2f2}.brz-ed .brz-control__select--light .brz-control__select-current__icon,.brz-ed .brz-control__select--light .brz-control__select-current__icon:hover{background-color:transparent}.brz-ed .brz-control__select--light .brz-control__select-current{color:#656b6f}.brz-ed .brz-control__select--light .brz-control__select-current:hover{background-color:#f2f2f2}.brz-ed .brz-control__select--light .brz-control__select-option{color:#656b6f;border-bottom-color:#e6e6e6}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current .brz-control__select-option{color:#3dbfe8}.brz-ed .brz-control__select--small .brz-control__select{width:62px}.brz-ed .brz-control__select--medium .brz-control__select-current,.brz-ed .brz-control__select--medium .brz-control__select-option{line-height:37px;height:37px}.brz-ed .brz-control__select--medium .brz-control__select-option{font-size:14px;padding-left:15px;padding-right:15px}.brz-ed .brz-control__select--medium .brz-control__select--arrow{font-size:10px;right:14px}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current,.brz-ed .brz-ed-popup-control__select--light .brz-control__select-options{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-current:hover{background-color:#fff}.brz-ed .brz-ed-popup-control__select--light .brz-control__select-option{color:#292e37}.brz-ed .brz-ed-popup-control-select-light{-webkit-box-shadow:0 0 10px -2px rgba(0,0,0,.2);box-shadow:0 0 10px -2px rgba(0,0,0,.2);border-radius:4px}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current{border-bottom-left-radius:0;border-bottom-right-radius:0}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-current .brz-control__select-option{border-bottom:1px solid #f4f4f4!important}.brz-ed .brz-ed-popup-control-select-light.opened .brz-control__select-options{-webkit-box-shadow:0 5px 10px -2px rgba(0,0,0,.2);box-shadow:0 5px 10px -2px rgba(0,0,0,.2);border-radius:0 0 4px 4px}.brz-ed .brz-ed-popup-control-select-light.brz-control__select{width:300px}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current{background-color:#fff;height:40px;color:#3dbfe8;font-size:14px;font-weight:400}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current:after{border-style:solid;border-width:6px 4px 0;border-color:#3dbfe8 transparent}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option{border-bottom:0;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-current .brz-control__select-option:hover{background-color:#fff;color:#3dbfe8}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-options{background-color:#fff;top:100%;border-top-left-radius:0;border-top-right-radius:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option{font-size:14px;height:40px;line-height:41px;padding-left:15px;padding-right:15px;letter-spacing:.1px;color:rgba(41,46,55,.8);border-bottom:0}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:not(:first-child){border-top:1px solid #f4f4f4}.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option.active,.brz-ed .brz-ed-popup-control-select-light .brz-control__select-option:hover{background-color:#fbfbfb;color:#292e37}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb{width:5px;background-color:#d4d5d7;border-radius:2.5px}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-thumb:after{opacity:0}.brz-ed .brz-ed-popup-control-select-light .brz-ed-scroll-pane .brz-ed-tall-track{width:5px;right:4px}.brz-ed .brz-control__select-population .brz-control__select-current{color:#fff;font-size:0;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-control__select-population .brz-control__select-current:hover{color:#3dbfe8!important;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-control__select-population.brz-control__select--active .brz-control__select-current{color:#fff}.brz-ed .brz-control__select-population.opened .brz-control__select-current{color:#3dbfe8}.brz-ed .brz-control__select-population .brz-control__select-options{width:120px}.brz-ed .brz-ed-control__switch-label{position:relative;display:inline-block;vertical-align:middle;width:50px;height:28px;border-radius:18px;cursor:pointer;margin:0;line-height:1}.brz-ed .brz-ed-control__switch-arrows{position:relative;display:block;height:inherit;font-size:18px;text-transform:uppercase;background:#383e48;border-radius:inherit;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset;box-shadow:0 1px 1px 0 rgba(0,0,0,.38) inset}.brz-ed .brz-ed-control__switch--check,.brz-ed .brz-ed-control__switch--un-check{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin:0;-webkit-transition:inherit;transition:inherit;color:rgba(18,20,25,.7)}.brz-ed .brz-ed-control__switch--check{left:5px;opacity:0}.brz-ed .brz-ed-control__switch--un-check{right:5px}.brz-ed .brz-ed-control__switch--handle{width:20px;height:20px;position:absolute;top:50%;left:4px;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#fff;border-radius:50%;-webkit-box-shadow:0 0 10px 1px rgba(255,255,255,.35);box-shadow:0 0 10px 1px rgba(255,255,255,.35);-webkit-transition:left .15s ease-out;transition:left .15s ease-out}.brz-ed .brz-ed-control__switch--handle:after,.brz-ed .brz-ed-control__switch--handle:before{content:"";position:absolute;width:7px;border-top:1px solid #34beea;top:7px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__switch--handle:before{top:10px}.brz-ed .brz-ed-control__switch--handle:after{height:7px;border-bottom:1px solid #34beea}.brz-ed .brz-ed-control__switch-input{position:absolute;top:0;left:0;opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows{background:#3dbfe8}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--check{opacity:1}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch-arrows .brz-ed-control__switch--un-check{opacity:0}.brz-ed .brz-ed-control__switch-input:checked~.brz-ed-control__switch--handle{left:25px}.brz-ed .brz-ed-control__slider .brz-ed-control__slider--value{position:relative;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical{width:4px;height:63px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);border:none;cursor:pointer}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after,.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{content:"";position:absolute;left:0;display:block;width:4px;height:8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:before{bottom:-8px}.brz-ed .brz-ed-control__slider .ui-slider-vertical:after{top:-8px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal{display:block;width:calc(100% - 18px);height:4px;background-color:#3dbfe8;border-radius:4px;max-width:100%;padding:0;top:0;left:9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{content:"";position:absolute;top:0;width:13px;height:4px;border-radius:4px;background-color:#3dbfe8}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:before{left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal:after{right:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:before{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .brz-ed-control__slider .ui-slider-horizontal .ui-slider-handle:after{top:6px}.brz-ed .brz-ed-control__slider .ui-slider-handle{position:absolute;display:block;outline:0;width:18px;height:18px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin-bottom:-9px;cursor:pointer;background:#fff;border-radius:50%!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .brz-ed-control__slider .ui-slider-handle:after,.brz-ed .brz-ed-control__slider .ui-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control__slider .ui-slider-handle:after{height:7px;border-bottom:1px solid #3dbfe8}.brz-ed .brz-ed-control__slider .ui-state-default,.brz-ed .brz-ed-control__slider .ui-widget-content{border:0}.brz-ed .brz-ed-option__slider--brightness .brz-icon-svg,.brz-ed .brz-ed-option__slider--contrast .brz-icon-svg,.brz-ed .brz-ed-option__slider--hue .brz-icon-svg,.brz-ed .brz-ed-option__slider--saturation .brz-icon-svg{color:#fff}.brz-ed .brz-ed-option__slider--hue .rc-slider-rail{background-image:-webkit-gradient(linear,right top,left top,color-stop(0,#e1451d),color-stop(17%,#fdff47),color-stop(50%,#86f9fe),color-stop(65%,#2900f8),color-stop(74%,#6e00f8),color-stop(83%,#e33df9),to(#e14423));background-image:linear-gradient(to left,#e1451d 0,#fdff47 17%,#86f9fe 50%,#2900f8 65%,#6e00f8 74%,#e33df9 83%,#e14423 100%)}.brz-ed .brz-ed-option__slider--saturation .rc-slider-rail{background-image:-webkit-gradient(linear,left top,right top,color-stop(30%,#40444d),to(#0fe6a2));background-image:linear-gradient(to right,#40444d 30%,#0fe6a2 100%)}.brz-ed .brz-ed-option__slider--brightness .rc-slider-rail{background-image:-webkit-gradient(linear,left top,right top,from(#40444d),to(#f8f9fc));background-image:linear-gradient(to right,#40444d 0,#f8f9fc 100%)}.brz-ed .brz-ed-option__slider--contrast .rc-slider-rail{background-color:#454a50}.brz-ed .rc-slider{position:relative;height:14px;padding:5px 0;width:calc(100% - 18px);margin-left:9px;border-radius:4px;-ms-touch-action:none;touch-action:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *,.brz-ed .rc-slider-tooltip{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider *{box-sizing:border-box}.brz-ed .rc-slider-rail{position:relative;display:block;width:calc(100% + 18px);height:4px;background-color:#3dbfe8;border-radius:4px;left:-9px}.brz-ed .rc-slider-track{display:none}.brz-ed .rc-slider-handle{position:absolute;display:inline-block;outline:0;top:50%;width:18px;height:18px;left:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);margin-left:-9px;cursor:pointer;background:#fff;border-radius:50%;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.45);box-shadow:0 2px 2px rgba(0,0,0,.45);z-index:1}.brz-ed .rc-slider-handle:after,.brz-ed .rc-slider-handle:before{content:"";position:absolute;width:7px;border-top:1px solid #3dbfe8;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.brz-ed .rc-slider-handle:before{top:6px}.brz-ed .rc-slider-handle:after{height:4px;border-bottom:1px solid #3dbfe8;top:9px}.brz-ed .rc-slider-handle:hover{border-color:#57c5f7}.brz-ed .rc-slider-handle:active{border-color:#57c5f7;-webkit-box-shadow:0 0 5px #57c5f7;box-shadow:0 0 5px #57c5f7;cursor:-webkit-grabbing;cursor:grabbing}.brz-ed .rc-slider-dot,.brz-ed .rc-slider-mark-text{cursor:pointer;position:absolute;vertical-align:middle}.brz-ed .rc-slider-handle:focus{border-color:#57c5f7;-webkit-box-shadow:0 0 0 5px #96dbfa;box-shadow:0 0 0 5px #96dbfa;outline:0}.brz-ed .rc-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}.brz-ed .rc-slider-mark-text{display:inline-block;text-align:center;color:#999}.brz-ed .rc-slider-mark-text-active{color:#666}.brz-ed .rc-slider-step{position:absolute;width:100%;height:4px;background:0 0}.brz-ed .rc-slider-dot{bottom:-2px;margin-left:-4px;width:8px;height:8px;border:2px solid #e9e9e9;background-color:#fff;border-radius:50%}.brz-ed .rc-slider-dot-active{border-color:#96dbfa}.brz-ed .rc-slider-disabled{background-color:#e9e9e9}.brz-ed .rc-slider-disabled .rc-slider-track{background-color:#ccc}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-handle{border-color:#ccc;-webkit-box-shadow:none;box-shadow:none;background-color:#fff;cursor:not-allowed}.brz-ed .rc-slider-disabled .rc-slider-dot,.brz-ed .rc-slider-disabled .rc-slider-mark-text{cursor:not-allowed!important}.brz-ed .rc-slider-vertical{width:14px;height:100px;padding:0 5px}.brz-ed .rc-slider-vertical .rc-slider-rail,.brz-ed .rc-slider-vertical .rc-slider-step{width:4px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-track{left:5px;bottom:0;width:4px}.brz-ed .rc-slider-vertical .rc-slider-handle{margin-left:-5px;margin-bottom:-7px;-ms-touch-action:pan-y;touch-action:pan-y}.brz-ed .rc-slider-vertical .rc-slider-mark{top:0;left:18px;height:100%}.brz-ed .rc-slider-vertical .rc-slider-dot{left:2px;margin-bottom:-4px}.brz-ed .rc-slider-vertical .rc-slider-dot:first-child,.brz-ed .rc-slider-vertical .rc-slider-dot:last-child{margin-bottom:-4px}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter,.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:block!important;-webkit-animation-play-state:paused;animation-play-state:paused}.brz-ed .rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active,.brz-ed .rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active{-webkit-animation-name:rcSliderTooltipZoomDownIn;animation-name:rcSliderTooltipZoomDownIn;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active{-webkit-animation-name:rcSliderTooltipZoomDownOut;animation-name:rcSliderTooltipZoomDownOut;-webkit-animation-play-state:running;animation-play-state:running}.brz-ed .rc-slider-tooltip-zoom-down-appear,.brz-ed .rc-slider-tooltip-zoom-down-enter{-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-animation-timing-function:cubic-bezier(.23,1,.32,1);animation-timing-function:cubic-bezier(.23,1,.32,1)}.brz-ed .rc-slider-tooltip-zoom-down-leave{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}@-webkit-keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}100%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}@keyframes rcSliderTooltipZoomDownOut{0%{-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(1,1);transform:scale(1,1)}100%{opacity:0;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:scale(0,0);transform:scale(0,0)}}.brz-ed .rc-slider-tooltip{position:absolute;left:-9999px;top:-9999px;visibility:visible;box-sizing:border-box}.brz-ed .rc-slider-tooltip *{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-tap-highlight-color:transparent}.brz-ed .rc-slider-tooltip-hidden{display:none}.brz-ed .rc-slider-tooltip-placement-top{padding:4px 0 8px}.brz-ed .rc-slider-tooltip-inner{padding:6px 2px;min-width:24px;height:24px;font-size:12px;line-height:1;color:#fff;text-align:center;text-decoration:none;background-color:#6c6c6c;border-radius:6px;-webkit-box-shadow:0 0 4px #d9d9d9;box-shadow:0 0 4px #d9d9d9}.brz-ed .rc-slider-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.brz-ed .rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow{bottom:4px;left:50%;margin-left:-4px;border-width:4px 4px 0;border-top-color:#6c6c6c}.brz-ed .brz-ed-control__stepper{position:relative;width:62px;height:30px;border-radius:4px;overflow:hidden;background:#383e48;color:rgba(255,255,255,.85);text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-control__stepper--arrows,.brz-ed .brz-ed-control__stepper--value{position:relative}.brz-ed .brz-ed-control__stepper--value{font-size:13px;letter-spacing:.25px;line-height:1;width:65%;-ms-flex-preferred-size:65%;flex-basis:65%;padding-left:10px;padding-top:2px}.brz-ed .brz-ed-control__stepper--arrows{width:35%;-ms-flex-preferred-size:35%;flex-basis:35%;height:30px}.brz-ed .brz-ed-control__stepper--down,.brz-ed .brz-ed-control__stepper--up{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;height:15px;line-height:15px;font-size:8px;position:absolute;right:0;cursor:pointer;color:rgba(255,255,255,.85);-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg,.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{position:absolute;right:10px;top:auto}.brz-ed .brz-ed-control__stepper--down:hover,.brz-ed .brz-ed-control__stepper--up:hover{color:#3dbfe8}.brz-ed .brz-ed-control__stepper--up{top:0}.brz-ed .brz-ed-control__stepper--up .brz-icon-svg{bottom:1px}.brz-ed .brz-ed-control__stepper--down{bottom:0}.brz-ed .brz-ed-control__stepper--down .brz-icon-svg{top:1px}.brz-ed .brz-ed-control-radio-check{width:22px;height:22px;border:1px solid #34beea;border-radius:50%;display:block;position:relative}.brz-ed .brz-ed-control-radio-check:before{content:'';position:absolute;top:50%;left:50%;width:6px;height:6px;margin:-3px 0 0 -3px;background:#34beea;border-radius:50%;-webkit-transform:scale(0,0);transform:scale(0,0);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .brz-ed-control-radio-check.active:before{-webkit-transform:scale(1,1);transform:scale(1,1)}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left){display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:17px;padding-right:17px;border-bottom:1px solid rgba(255,255,255,.1);color:#9da8b1;font-size:13px;float:none}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab{cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear;border-bottom:2px solid transparent;height:34px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:-1px;padding-top:2px;width:auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active,.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab.active{border-bottom-color:#3dbfe8}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab:not(:last-child){margin-right:15px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon{height:42px}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg{font-size:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.brz-ed .brz-ed-control__tabs:not(.brz-ed-control__tabs__left) .brz-ed-control__tab__icon .brz-icon-svg+.brz-span:not(:empty){margin-left:10px}.brz-ed .brz-ed-control__tabs__left{position:absolute;z-index:0;left:-38px;top:34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab{width:38px;height:41px;background-color:rgba(139,147,154,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-top-left-radius:20px;border-bottom-left-radius:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:16px;color:#fff;font-size:14px;cursor:pointer;margin-bottom:1px}.brz-ed .brz-ed-control__tabs__left .brz-ed-control__tab.active{color:#3dbfe8;background-color:rgba(3,8,15,.92)}.brz-ed .brz-ed-input__search,.brz-ed .brz-ed-input__search:active,.brz-ed .brz-ed-input__search:focus{background:0 0;color:rgba(255,255,255,.6)}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor{width:144px;margin-left:10px;margin-right:10px;padding:0}.brz-ed .brz-ed-control__tabs__editor.brz-ed-control__tabs__editor+.brz-ed-control__tab__content{margin-bottom:-9px}.brz-ed .brz-ed-input__search{position:absolute;border:none;outline:0;font-size:13px;text-indent:10px;padding:0 35px 0 0;width:100%}.brz-ed .brz-ed-input__search::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em;letter-spacing:.25px}.brz-ed .brz-ed-input__search--auto-complete{color:#fff}.brz-ed .brz-ed-input__search__icon{position:absolute;right:10px;top:50%;color:#818487;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:color .2s ease-in;transition:color .2s ease-in;cursor:pointer;font-size:16px;height:16px;line-height:1}.brz-ed .brz-ed-control__radio-group--active,.brz-ed .brz-ed-input__search__icon.active{color:#3dbfe8}.brz-ed .brz-ed-control-multiPicker--body{margin-top:20px}.brz-ed .brz-ed-sidebar-row .brz-ed-options--multi-picker{display:block}.brz-ed .brz-ed-control__radio-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-tooltip__content{position:relative;z-index:1}.brz-ed .brz-ed-tooltip__overlay{position:absolute;top:0;left:0;z-index:1070}.brz-ed .brz-ed-tooltip--auto{width:auto}.brz-ed .brz-ed-tooltip--medium{width:255px}.brz-ed .brz-ed-tooltip--big{width:305px}.brz-ed .brz-ed-popover__inner.brz-ed-tooltip--large,.brz-ed .brz-ed-tooltip--large{width:385px}.brz-ed .brz-ed-tooltip__static{position:relative}.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{left:auto;right:-15px}.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left{left:-15px}.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--top-right{bottom:calc(100% + 9px);top:auto}.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-left,.brz-ed .brz-ed-tooltip__static .brz-ed-tooltip--bottom-right{top:calc(100% + 9px)}.brz-ed .brz-ed-control__focal-point{position:relative;text-align:center}.brz-ed .brz-ed-control__focal-point:after{display:inline-block;height:100%;vertical-align:middle;content:""}.brz-ed .brz-ed-control__focal-point__setter{text-align:center;display:inline-block;vertical-align:middle;position:relative;width:100%}.brz-ed .brz-ed-control__focal-point__setter:before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.3)}.brz-ed .brz-ed-control__focal-point__setter .brz-img{max-width:140px;max-height:140px}.brz-ed .brz-ed-control__focal-point__point{position:absolute;z-index:10;width:18px;height:18px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#2eb0d8;border:2px solid #fff;border-radius:18px;cursor:pointer}.brz-ed .brz-ed-control__focal-point__upload{width:140px;height:93px;border:1px dashed #444952;background-color:#2d323b;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;font-size:24px;color:rgba(94,100,111,.6);-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__focal-point__upload:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__focal-point__upload .brz-icon-svg{font-size:inherit!important}.brz-ed .brz-ed-control__focal-point__upload--loading{cursor:progress}.brz-ed .brz-ed-control__focal-point__delete{position:absolute;right:-4px;top:-4px;z-index:11;font-size:16px;width:16px;height:16px;background-color:#2d323b;border-radius:50%;color:#fff;cursor:pointer}.brz-ed .brz-ed-control__focal-point__delete .brz-icon-svg{font-size:inherit!important}.brz-ed .brz-ed-control__focal-point__label--disable .brz-ed-control__focal-point__upload{cursor:no-drop}.brz-ed .brz-ed-control__icon-setter{position:relative}.brz-ed .brz-ed-control__icon-setter__box{width:48px;height:48px;border:1px dashed #444952;background-color:#2d323b;font-size:16px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-transition:all .2s linear;transition:all .2s linear}.brz-ed .brz-ed-control__input,.brz-ed .brz-ed-control__textarea,.brz-ed .brz-ed-option__input__population{width:auto;font-family:pn,"Open Sans",Arial,sans-serif;outline:0}.brz-ed .brz-ed-control__icon-setter__box:hover{border-color:#5e6470;color:#5e646f}.brz-ed .brz-ed-control__icon-setter--active{color:#fff;display:inline-block;font-size:0}.brz-ed .brz-ed-control__input,.brz-ed .brz-ed-option__input__population{font-size:13px;font-style:normal;font-weight:400;letter-spacing:0;background:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:30px;text-indent:5px;padding:0 5px;border-radius:4px;border:0;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;text-align:left;-moz-appearance:textfield}.brz-ed .brz-ed-control__input:active,.brz-ed .brz-ed-control__input:focus,.brz-ed .brz-ed-option__input__population:active,.brz-ed .brz-ed-option__input__population:focus{background-color:#383e48;color:#fff}.brz-ed .brz-ed-control__input::-webkit-inner-spin-button,.brz-ed .brz-ed-control__input::-webkit-outer-spin-button,.brz-ed .brz-ed-option__input__population::-webkit-inner-spin-button,.brz-ed .brz-ed-option__input__population::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-control__input::-webkit-input-placeholder,.brz-ed .brz-ed-option__input__population::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-moz-placeholder,.brz-ed .brz-ed-option__input__population:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input::-moz-placeholder,.brz-ed .brz-ed-option__input__population::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input:-ms-input-placeholder,.brz-ed .brz-ed-option__input__population:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__input--large{max-width:136px}.brz-ed .brz-ed-control__input--medium{max-width:112px}.brz-ed .brz-ed-control__input--small{max-width:62px}.brz-ed .brz-ed-control__input--auto,.brz-ed .brz-ed-option__prompt-popup__image .brz-img{max-width:100%}.brz-ed .brz-ed-control__textarea{font-size:13px;letter-spacing:.25px;line-height:22px;background-color:#383e48;color:#fff;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;height:136px;padding:5px 10px;border-radius:4px;border:0;resize:none}.brz-ed .brz-ed-control__textarea::-webkit-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea::-moz-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .brz-ed-control__textarea:-ms-input-placeholder{color:rgba(234,241,255,.2);font-style:italic;font-size:1em}.brz-ed .color-picker-body{margin-bottom:2px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .color-picker-body .color-picker-saturation{width:153px;height:153px;position:relative;cursor:move}.brz-ed .color-picker-body .color-picker-saturation>div{border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-black{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:3px;background:-webkit-gradient(linear,left bottom,left top,from(#000),to(rgba(0,0,0,0)));background:linear-gradient(to top,#000,rgba(0,0,0,0))}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-white{position:absolute;top:0;right:0;bottom:0;left:0;border-bottom-left-radius:4px;border-top-left-radius:3px;background:-webkit-gradient(linear,left top,right top,from(#fff),to(rgba(255,255,255,0)));background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .color-picker-pointer{width:16px;height:16px;-webkit-transform:translate(-8px,-8px);transform:translate(-8px,-8px);cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-pointer{position:absolute;cursor:move}.brz-ed .color-picker-body .color-picker-saturation .color-picker-saturation-body .saturation-circle{width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;cursor:move;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.brz-ed .color-picker-body .color-picker-alpha,.brz-ed .color-picker-body .color-picker-hue{position:relative;height:153px;width:12px;margin-left:10px;cursor:ns-resize}.brz-ed .color-picker-body .color-picker-alpha .hue-vertical,.brz-ed .color-picker-body .color-picker-hue .hue-vertical{border-radius:3px}.brz-ed .color-picker-body .color-picker-hue .hue{position:absolute;top:0;right:0;bottom:0;left:0}.brz-ed .color-picker-body .color-picker-hue .hue-container{padding:0 2px;position:relative;height:100%}.brz-ed .color-picker-body .color-picker-hue .hue-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-hue .color-picker-pointer{-webkit-transform:translate(-1px,-7px);transform:translate(-1px,-7px)}.brz-ed .color-picker-body .color-picker-hue .hue-slider{margin-top:1px;width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-hue .hue-horizontal{background:-webkit-gradient(linear,left top,right top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to right,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-hue .hue-vertical{background:-webkit-gradient(linear,left bottom,left top,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%);background:-webkit-linear-gradient(to top,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red 100%)}.brz-ed .color-picker-body .color-picker-alpha{background-color:#fff;border-radius:3px 3px 4px 4px}.brz-ed .color-picker-body .color-picker-alpha div:not(.color-picker-pointer){border-radius:3px}.brz-ed .color-picker-body .color-picker-alpha div>div>div:not(.color-picker-pointer){background-size:8px!important}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer{-webkit-transform:translate(-4px,-7px);transform:translate(-4px,-7px);position:relative}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip{position:absolute;left:18px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:42px;height:27px;font-size:12px;line-height:2.2;border-radius:2px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);text-align:center;font-family:pn,"Open Sans",Arial,sans-serif;color:rgba(255,255,255,.85)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-pointer .color-picker-pointer-tooltip:before{content:'';position:absolute;top:50%;left:-6px;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:0;height:0;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid rgba(3,8,15,.92)}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body,.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-gradient{position:absolute;left:0;top:0;bottom:0;right:0}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-checkboard{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container{position:relative;height:100%;margin:0 3px}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer{position:absolute}.brz-ed .color-picker-body .color-picker-alpha .color-picker-alpha-body .color-picker-alpha-container .color-picker-alpha-pointer .color-picker-alpha-slider{width:4px;border-radius:1px;height:8px;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);background:#fff;margin-top:1px;-webkit-transform:translateX(-2px);transform:translateX(-2px)}.brz-ed .color-picker-body .color-picker-pointer{width:14px;height:14px;-webkit-box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);box-shadow:0 0 3px rgba(0,0,0,.5),inset 0 0 2px rgba(0,0,0,.5);-webkit-transform:translate(-7px,-7px);transform:translate(-7px,-7px);border-radius:50%;background:0 0;border:3px solid #fff;cursor:ns-resize}.brz-ed .color-picker-preset-colors{margin:0 -10px;padding:10px 0 0 10px;border-top:1px solid #eee;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}.brz-ed .color-picker-preset-colors .color-picker-swatch-wrap{width:20px;height:20px;margin-left:2px}.brz-ed .brz-ed-listbox{position:absolute;background-color:#383e48;z-index:1070;border-radius:4px;-webkit-box-shadow:0 2px 13px 0 rgba(0,0,0,.1);box-shadow:0 2px 13px 0 rgba(0,0,0,.1);color:#fff}.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb{width:8px;background-color:transparent;border-radius:4px}.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-thumb:after{content:"";display:block;position:absolute;left:3px;top:0;bottom:0;width:3px;min-height:3px;background-color:#7b7b7b;border-radius:2px}.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-wide-thumb{height:3px;background-color:#7b7b7b;border-radius:2px;top:3px}.brz-ed .brz-ed-listbox .brz-ed-scroll-pane .brz-ed-tall-track{border-radius:0 4px 4px 0}.brz-ed .brz-ed-listbox__item{position:relative;cursor:pointer;padding-left:10px;padding-right:10px;font-size:13px;letter-spacing:.25px;border-bottom:1px solid rgba(255,255,255,.07);line-height:30px;height:30px;-webkit-transition:color .15s linear;transition:color .15s linear;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.brz-ed .brz-ed-listbox__item:last-child{border-bottom-color:transparent!important}.brz-ed .brz-ed-listbox__item--active{color:#3dbfe8;-webkit-transition:color .15s linear;transition:color .15s linear}.brz-ed .brz-ed-listbox__item--disable{cursor:default}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option,.brz-ed .brz-ed-sidebar__right__option{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;line-height:normal;min-height:51px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:-1px}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child,.brz-ed .brz-ed-sidebar__right__option:last-child{border-bottom-color:transparent}.brz-ed .brz-ed-popover__inner--icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-popover__inner--icon:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-grid__option,.brz-ed .brz-ed-popover__option{padding:10px 17px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:last-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:last-child{padding-bottom:15px}.brz-ed .brz-ed-grid__option:first-child,.brz-ed .brz-ed-popover__option:first-child{padding-top:15px;border-top-color:transparent}.brz-ed .brz-ed-grid__option:last-child,.brz-ed .brz-ed-popover__option:last-child{padding-bottom:15px;min-height:56px}.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-popover__option:first-child{padding-top:15px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:first-child,.brz-ed .brz-ed-tabs__option--inline:first-child:last-child .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:first-child{padding-top:10px}.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-grid__option:last-child,.brz-ed .brz-ed-control__tabs__top+.brz-ed-control__tab__content .brz-ed-popover__option:last-child{padding-bottom:10px}.brz-ed .brz-ed-tabs__option--inline+.brz-ed-option__advanced{border-top:1px solid rgba(255,255,255,.1)}.brz-ed .brz-ed-option__inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;text-align:left}.brz-ed .brz-ed-option__block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;text-align:left}.brz-ed .brz-ed-option__block .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__block .brz-ed-option__label{-ms-flex-preferred-size:auto;flex-basis:auto;margin-bottom:6px;margin-right:0}.brz-ed .brz-ed-option__block.brz-ed-option__slider{padding-top:15px!important}.brz-ed .brz-ed-option__advanced{padding-top:15px;min-height:initial!important;color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear;font-size:0}.brz-ed .brz-ed-option__advanced .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__advanced .brz-ed-option__label{-ms-flex-preferred-size:100%;flex-basis:100%;color:inherit;margin:0 0 0 9px;cursor:pointer;font-size:13px}.brz-ed .brz-ed-option__advanced:hover{color:#fff}.brz-ed .brz-ed-option__font-style-editor__title,.brz-ed .brz-ed-option__label{font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;color:#9da8b1;-ms-flex-preferred-size:auto;flex-basis:auto;margin-right:17px;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.3}.brz-ed .brz-ed-option__slider__label{-ms-flex-preferred-size:65px;flex-basis:65px}.brz-ed .brz-ed-grid__options,.brz-ed .brz-ed-popover__options{height:100%;width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.brz-ed .brz-ed-grid__options .brz-ed-option__advanced .brz-icon-svg,.brz-ed .brz-ed-popover__options .brz-ed-option__advanced .brz-icon-svg{font-size:14px}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced{border:none;color:inherit;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced:hover{color:#3dbfe8;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-toolbar__item>.brz-ed-option__advanced .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__button{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__button:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .floating-action-button{position:relative;width:54px;height:54px;border-radius:50%;background:#3dbfe8;cursor:pointer;z-index:10;-webkit-transition:background .2s linear;transition:background .2s linear}.brz-ed .floating-action-button:after,.brz-ed .floating-action-button:before{content:"";position:absolute;top:50%;left:50%;background:#fff;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear}.brz-ed .floating-action-button:before{width:16px;height:2px}.brz-ed .floating-action-button:after{width:2px;height:16px}.brz-ed .floating-action-button:hover{background:#03080f}.brz-ed .floating-action-button--icon{color:#fff;font-size:16px}.brz-ed .floating-action-button--icon .brz-icon-svg{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .floating-action-button--icon:after,.brz-ed .floating-action-button--icon:before{display:none}.brz-ed .brz-ed-option-tools{width:30px;height:30px;border-radius:30px;font-size:15px;text-align:center;color:#fff;cursor:pointer;visibility:hidden;position:absolute;z-index:100}.brz-ed .brz-ed-option-tools:after,.brz-ed .brz-ed-option-tools:before{content:'';position:absolute}.brz-ed .brz-ed-option-tools:after{top:15px;width:22px;height:1px}.brz-ed .brz-ed-option-tools:before{top:32px;width:1px;height:22px}.brz-ed .brz-ed-option-tools i{position:absolute;top:8px;left:7px}.brz-ed .brz-ed-control-tabs-options{position:relative}.brz-ed .brz-ed-control-tabs-options>.brz-ed-options-tabs--label{position:absolute;top:7px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs{border-bottom:0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab{position:relative;width:37px;height:30px;line-height:30px;background-color:#383e48;color:#fff;text-align:center;-webkit-transition:.2s linear background-color,.2s linear color;transition:.2s linear background-color,.2s linear color}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab .brz-icon-svg{margin:0;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:after{width:1px;height:100%;background-color:#4c525b;margin:0;border-right:0;display:block;position:absolute;top:0;right:0}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input,.brz-ed .brz-ed-tabs__option--inline{position:relative}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab.active{background-color:#3dbfe8}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:first-child{border-radius:3px 0 0 3px}.brz-ed .brz-ed-control-tabs-options>.brz-ed-control__tabs>.brz-ed-control__tab:last-child{border-radius:0 3px 3px 0}.brz-ed .brz-ed-tabs__option--inline .brz-ed-control__tabs{margin-bottom:0}.brz-ed .brz-ed-option__slider__icon{font-size:16px;line-height:1;margin-right:18px;display:-webkit-box;display:-ms-flexbox;display:flex}.brz-ed .brz-ed-option__slider .brz-ed-option-field__text-box{min-height:initial}.brz-ed .brz-ed-option__slider .brz-ed-control__slider{width:auto;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.brz-ed .brz-ed-option__slider__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box{width:65px;border-color:transparent}.brz-ed .brz-ed-option__slider-suffix .brz-ed-option__text-box__input:after{content:"";position:absolute;bottom:-2px;left:0;width:calc(100% + 3px);height:1px;background-color:rgba(255,255,255,.1)}.brz-ed .brz-ed-option__slider__suffix{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-option__slider__suffix-item{padding-left:5px;cursor:pointer}.brz-ed .brz-ed-option__slider__suffix-item--active{color:#3dbfe8}.brz-ed .brz-ed-option__text-box{width:44px;border-bottom:1px solid rgba(255,255,255,.1);margin-left:17px;padding:0 0 4px}.brz-ed .brz-ed-option__text-box .brz-label{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;color:#9da8b1;font-family:pn,"Open Sans",Arial,sans-serif;font-size:13px;font-weight:400;font-style:normal;letter-spacing:0;text-transform:lowercase;padding:0;margin:0}.brz-ed .brz-ed-option__text-box__helper,.brz-ed .brz-ed-option__text-box__input{position:relative;font-weight:400}.brz-ed .brz-ed-option__text-box__helper{font-family:inherit;font-size:inherit;margin-left:3px}.brz-ed .brz-ed-fixed-bottom-panel__item,.brz-ed .brz-ed-option__helper__content{font-family:pn,"Open Sans",Arial,sans-serif}.brz-ed .brz-ed-option__text-box__helper--active{color:#3dbfe8}.brz-ed .brz-ed-option__text-box--auto{width:57px;margin-left:13px;border-bottom-color:transparent}.brz-ed .brz-ed-option__text-box--auto .brz-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__input{margin-right:2px}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__input:after{content:"";width:100%;height:1px;background-color:rgba(255,255,255,.1);position:absolute;bottom:-3px;left:0}.brz-ed .brz-ed-control__text-box--resizer,.brz-ed .brz-ed-control__text-box--resizer:active,.brz-ed .brz-ed-control__text-box--resizer:focus{background-color:transparent;color:#9da8b1}.brz-ed .brz-ed-option__text-box--auto .brz-ed-option__text-box__helper{cursor:pointer;margin-left:5px}.brz-ed .brz-ed-option__text-box--auto .brz-ed-control__text-box--resizer{position:relative}.brz-ed .brz-ed-control__text-box--resizer{font-weight:400;border:none;outline:0;padding:0;line-height:1;-moz-appearance:textfield;position:absolute;top:0;left:0;width:105%;height:100%}.brz-ed .brz-ed-option__check-group--boxed:first-child,.brz-ed .brz-ed-option__radio-group--boxed:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.brz-ed .brz-ed-control__text-box--resizer::-webkit-inner-spin-button,.brz-ed .brz-ed-control__text-box--resizer::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.brz-ed .brz-ed-sidebar-row .brz-ed-options__switch--tab{display:block}.brz-ed .brz-ed-option__select__after{margin-left:8px;margin-bottom:0;font-size:16px;color:#9da8b1;line-height:1;display:-webkit-box;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__check-group-option,.brz-ed .brz-ed-option__radio-group-option{margin-left:5px;margin-right:5px}.brz-ed .brz-ed-option__select__after:hover{color:#3dbfe8}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option{border-bottom:none}.brz-ed .brz-ed-option__select .brz-control__select-current .brz-control__select-option span{top:1px}.brz-ed .brz-ed-option__select .brz-control__select-option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg,.brz-ed .brz-ed-option__select .brz-control__select-option span{line-height:1}.brz-ed .brz-ed-option__select .brz-control__select-option span{position:relative;top:.5px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.brz-ed .brz-ed-option__select .brz-control__select-option .brz-icon-svg{font-size:12px;margin-left:5px;margin-right:5px}.brz-ed .brz-ed-option__select .brz-control__select-option__bg{background-size:100%;background-repeat:no-repeat;background-position:center;width:100%;height:12px;-webkit-filter:invert(100%) sepia(100%) saturate(0) hue-rotate(125deg) brightness(103%) contrast(103%);filter:invert(100%) sepia(100%) saturate(0) hue-rotate(125deg) brightness(103%) contrast(103%)}.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--40,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--42,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--5,.brz-ed .brz-ed-option__select .brz-control__select-option__bg.brz-ed-shape--6{height:8px}.brz-ed .brz-ed-option__select .brz-control__select-option.active .brz-control__select-option__bg,.brz-ed .brz-ed-option__select .brz-control__select-options .brz-control__select-option__bg:hover{-webkit-filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%);filter:invert(73%) sepia(61%) saturate(2312%) hue-rotate(160deg) brightness(97%) contrast(87%)}.brz-ed .brz-ed-option__select-taxonomy .brz-control__select-options{width:140px}.brz-ed .brz-ed-option__radio-group--boxed{width:37px;height:30px;border-right:1px solid rgba(255,255,255,.07);background-color:#383e48;color:#fff;overflow:hidden}.brz-ed .brz-ed-option__radio-group--boxed:nth-last-child(2){border-right:none;border-top-right-radius:4px;border-bottom-right-radius:4px}.brz-ed .brz-ed-option__radio-group--boxed .brz-ed-option__radio-group__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;font-size:16px;cursor:pointer;-webkit-transition:background-color .2s linear;transition:background-color .2s linear}.brz-ed .brz-ed-option__radio-group--boxed.active .brz-ed-option__radio-group__icon{background-color:#3dbfe8}.brz-ed .brz-ed-option__check-group--boxed{width:37px;height:30px;border-right:1px solid rgba(255,255,255,.07);background-color:#383e48;color:#fff;overflow:hidden;display:inline-block}.brz-ed .brz-ed-option__check-group--boxed:last-child{border-right:transparent;border-top-right-radius:4px;border-bottom-right-radius:4px}.brz-ed .brz-ed-option__check-group--boxed .brz-ed-option__check-group__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;font-size:16px;cursor:pointer;-webkit-transition:background-color .2s linear;transition:background-color .2s linear}.brz-ed .brz-ed-option__check-group--boxed.active .brz-ed-option__check-group__icon{background-color:#3dbfe8}.brz-ed .brz-ed-popover__inner{background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px;position:relative}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__overlay{width:215px;margin-top:25px;margin-bottom:25px;background-color:rgba(3,8,15,.92);-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);border-radius:8px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-tooltip__content{padding-left:17px}.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--bottom-left:after,.brz-ed .brz-ed-tooltip__anchor .brz-ed-arrow--top-left:after{left:29px}.brz-ed .brz-ed-option__multiPicker.brz-ed-option__inline{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:unset;-ms-flex-align:unset;align-items:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;justify-content:unset}.brz-ed .brz-ed-multiPicker__head__option,.brz-ed .brz-ed-multiPicker__option{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-multiPicker__option:first-child{margin-top:10px}.brz-ed .brz-ed-multiPicker__option:not(:last-child){margin-bottom:10px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option.brz-ed-option__slider:not(:last-child){margin-bottom:15px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:first-child{margin-top:20px}.brz-ed .brz-ed-sidebar__right .brz-ed-multiPicker__option:not(:last-child){margin-bottom:20px}.brz-ed .brz-ed-popover__typography{padding:11px 7px 14px}.brz-ed .brz-ed-popover__typography .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography .brz-ed-popover__option{border-bottom:0;margin-bottom:0;padding:6px 10px}.brz-ed .brz-ed-popover__typography--mobile .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile .brz-ed-popover__option{padding-right:10px;padding-left:17px}.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-grid__option,.brz-ed .brz-ed-popover__typography--mobile:last-child .brz-ed-popover__option{padding-left:10px;padding-right:17px}.brz-ed .brz-ed-popover__typography .brz-control__select,.brz-ed .brz-ed-popover__typography .brz-control__select-current,.brz-ed .brz-ed-popover__typography .brz-ed-control__stepper,.brz-ed .brz-ed-popover__typography--mobile .brz-control__select,.brz-ed .brz-ed-popover__typography--mobile .brz-control__select-current,.brz-ed .brz-ed-popover__typography--mobile .brz-ed-control__stepper{width:62px}.brz-ed .brz-ed-popover__typography .brz-control__select-options,.brz-ed .brz-ed-popover__typography--mobile .brz-control__select-options{width:95px}.brz-ed .brz-ed-popover__font-style .brz-control__select,.brz-ed .brz-ed-popover__font-style .brz-control__select-current,.brz-ed .brz-ed-popover__font-style .brz-control__select-options{width:120px}.brz-ed .brz-ed-option__helper{margin-left:7px;cursor:pointer;color:rgba(157,168,177,.35);-webkit-transition:color .3s ease-out;transition:color .3s ease-out;position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.brz-ed .brz-ed-option__helper:hover{color:rgba(157,168,177,.6)}.brz-ed .brz-ed-option__helper:hover .brz-ed-option__helper__content:not(:empty){visibility:visible;opacity:1}.brz-ed .brz-ed-option__helper svg{overflow:visible}.brz-ed .brz-ed-option__helper__content{font-size:13px;line-height:1;visibility:hidden;width:auto;white-space:nowrap;background-color:#03080f;color:#fff;text-align:center;padding:10px;border-radius:2px;position:absolute;z-index:1;bottom:calc(100% + 6px);left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);will-change:transform,opacity;opacity:0;-webkit-transition:opacity .4s linear;transition:opacity .4s linear;-webkit-transition-delay:.6s;transition-delay:.6s}.brz-ed .brz-ed-option__helper__content:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border:5px solid transparent;border-top-color:#03080f}.brz-ed .brz-ed-option__prompt-icon{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__prompt-icon:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__prompt-popup__image{position:relative;cursor:pointer}.brz-ed .brz-ed-option__prompt-popup-remove{position:absolute;right:-4px;top:-4px;z-index:11;font-size:16px;width:16px;height:16px;background-color:#2d323b;border-radius:50%;color:#fff;cursor:pointer}.brz-ed .brz-ed-option__prompt-popup .brz-ed-control__focal-point__upload{font-size:16px}.brz-ed .brz-ed-option__toggle{-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__toggle:hover{-webkit-transition:color .2s linear;transition:color .2s linear;color:#3dbfe8}.brz-ed .brz-ed-option__colorPicker{border-bottom:0}.brz-ed .brz-ed-option__colorPicker__fields{padding-top:0}.brz-ed .brz-ed-option__colorPicker__fields:last-child{min-height:100%}.brz-ed .brz-ed-option__color-palette{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:0;border-bottom:0;min-height:100%}.brz-ed .brz-ed-option__color-palette__item{width:18px;height:18px;border-radius:2px;margin-left:2px;cursor:pointer;border:1px solid #3a3d43}.brz-ed .brz-ed-option__color-palette__item:first-child{margin-left:0}.brz-ed .brz-ed-option__color-palette__item.active{border:2px solid #fff}.brz-ed .brz-ed-option__color-palette__icon{cursor:pointer;font-size:16px;margin-left:10px;display:-webkit-box;display:-ms-flexbox;display:flex;color:#9da8b1;-webkit-transition:color .2s linear;transition:color .2s linear}.brz-ed .brz-ed-option__color-palette__icon:hover{color:#3dbfe8}.brz-ed .brz-ed-option__color-palette-editor{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.brz-ed .brz-ed-option__color-palette-editor__item{width:23px;height:23px;border:1px solid #1e232a;border-radius:2px;margin-left:3px;cursor:pointer;-webkit-transition:border .2s linear;transition:border .2s linear}.brz-ed .brz-ed-option__color-palette-editor__item.active,.brz-ed .brz-ed-option__color-palette-editor__item:hover{border:2px solid #3dbfe8}.brz-ed .brz-ed-option__color-palette-editor__item:first-child{margin-left:0}.brz-ed .brz-ed-option__font-style-editor{position:relative;cursor:pointer;margin:0 30px 16px}.brz-ed .brz-ed-option__font-style-editor:last-child{margin-bottom:0}.brz-ed .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-styles--add{border:2px solid #3c424d;border-radius:3px;padding:16px 20px 18px;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-styles--add,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor__container,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-styles--add{border-color:#3dbfe8;-webkit-transition:border-color .2s linear;transition:border-color .2s linear}.brz-ed .brz-ed-option__font-style-editor.active .brz-ed-option__font-style-editor--delete,.brz-ed .brz-ed-option__font-style-editor:hover .brz-ed-option__font-style-editor--delete{opacity:1;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor__title{line-height:1;margin-bottom:3px;margin-right:0}.brz-ed .brz-ed-option__font-style-editor__title .brz-span{display:block;line-height:1.5}.brz-ed .brz-ed-option__font-style-editor__sample{color:#fff;line-height:1;font-size:21px}.brz-ed .brz-ed-option__font-style-editor--delete{position:absolute;top:-7px;right:-6px;color:#fff;font-size:16px;opacity:0;-webkit-transition:.2s linear opacity;transition:.2s linear opacity}.brz-ed .brz-ed-option__font-style-editor--delete .brz-icon-svg{background-color:#fff;color:#15191f;border-radius:16px}.brz-ed .brz-ed-option__font-styles{position:relative;height:calc(100% - 354px);margin-right:-30px;margin-left:-30px}.brz-ed .brz-ed-option__font-styles--add{font-size:0;margin-bottom:0;padding-top:33px;padding-bottom:30px;color:#9da8b1;text-align:center;cursor:pointer;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear;position:absolute;bottom:-20px;left:30px;right:30px;-webkit-transform:translateY(100%);transform:translateY(100%)}.brz-ed .brz-ed-option__font-styles--add:hover{border-color:#3dbfe8;color:#3dbfe8;-webkit-transition:border-color .2s linear,color .2s linear;transition:border-color .2s linear,color .2s linear}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg,.brz-ed .brz-ed-option__font-styles--add .brz-span{display:inline-block;vertical-align:middle;font-size:13px;line-height:1}.brz-ed .brz-ed-option__font-styles--add .brz-icon-svg{font-size:16px}.brz-ed .brz-ed-option__font-styles--add .brz-span{margin-left:10px}.brz-ed .brz-ed-option__font-styles--scroll-pane{position:absolute;top:-10px;bottom:0;left:0;right:0}.brz-ed .brz-ed-option__font-styles--scroll-pane .brz-ed-scroll-inner{padding-top:10px}.brz-ed .brz-ed-option__font-adder .brz-control__select{width:100%}.brz-ed .brz-ed-option__font-adder__label{margin-bottom:7px;margin-right:0}.brz-ed .brz-ed-fixed-bottom-panel{position:fixed;bottom:25px;right:30px;border-radius:50px;-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);background-color:rgba(3,8,15,.92);z-index:1059;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.brz-ed .brz-ed-fixed-bottom-panel .brz-ul{padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.brz-ed .brz-ed-fixed-bottom-panel__item{color:#9da8b1;font-size:12px;letter-spacing:.25px;font-weight:400;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px;border-right:1px solid rgba(255,255,255,.15)}.brz-ed .brz-ed-fixed-bottom-panel__item.active{color:#fff;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__item.active:hover{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__item:first-child{padding-left:18px}.brz-ed .brz-ed-fixed-bottom-panel__item:last-child{border-right:none}.brz-ed .brz-ed-fixed-bottom-panel__item .brz-icon-svg{width:1.2em;height:1.2em}.brz-ed .brz-ed-fixed-bottom-panel__preview{cursor:pointer;padding:0}.brz-ed .brz-ed-fixed-bottom-panel__preview .brz-a{color:#fff;-webkit-transition:color 150ms linear;transition:color 150ms linear;padding:14px}.brz-ed .brz-ed-fixed-bottom-panel__preview:hover .brz-a{color:#3dbfe8}.brz-ed .brz-ed-fixed-bottom-panel__btn{padding:8px 13px;cursor:pointer}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span{font-size:13px;line-height:1;color:#fff;padding:8px 14px 5px;border-bottom:2px solid #006799;background-color:#0085ba;border-radius:15px;height:28px;min-width:75px;text-align:center;-webkit-transition:background-color 150ms linear;transition:background-color 150ms linear}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a:hover,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span:hover{background-color:#0092cc;color:#fff}.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-a .brz-icon-svg,.brz-ed .brz-ed-fixed-bottom-panel__btn .brz-span .brz-icon-svg{width:1em;height:1em}.brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-a,.brz-ed .brz-ed-fixed-bottom-panel__btn--download .brz-span{min-width:97px}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-scroll-inner{max-height:240px;border-right-style:none!important}.brz-ed .brz-ed-option__block-thumbnail .brz-ed-scroll-pane .brz-ed-tall-track{right:-10px}.brz-ed .brz-ed-option__block-thumbnail .brz-figure{margin-bottom:5px;max-width:140px;position:relative;cursor:pointer}.brz-ed .brz-ed-option__block-thumbnail .brz-figure img{max-width:100%;position:relative}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border:2px solid transparent;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure.active:after,.brz-ed .brz-ed-option__block-thumbnail .brz-figure:hover:after{border-color:#3dbfe8;-webkit-transition:.2s linear border-color;transition:.2s linear border-color}.brz-ed .brz-ed-option__block-thumbnail .brz-figure:last-child{margin-bottom:0}.brz-ed .brz-ed-option__block-thumbnail-loading{position:absolute;top:0;left:0;width:100%;height:100%;font-size:24px;color:rgba(94,100,111,.6);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:progress}.brz-ed .brz-portal__form-apps{position:absolute;top:0;right:0;left:0;bottom:0;width:100%;height:100%;z-index:1080}.brz-ed .brz-portal__form-apps .brz-iframe{width:100%;height:100%;position:relative;z-index:2}.brz-ed .brz-portal__form-apps--loading{position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(3,8,15,.75);color:#fff;font-size:25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.brz-ed .brz-ed-option__input .brz-control__select{margin-left:10px}.brz-ed .brz-ed-option__input-container{position:relative}.brz-ed .brz-ed-option__input-container .brz-icon-svg{cursor:pointer;position:absolute;right:10px;font-size:16px;top:50%;-webkit-transform:translateY(-.5em);transform:translateY(-.5em);color:#fff;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-option__input-container .brz-icon-svg:hover{color:#3dbfe8;-webkit-transition:.2s linear color;transition:.2s linear color}.brz-ed .brz-ed-option__input__population{width:136px;line-height:30px;padding-right:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.brz-ed .brz-ed-option__focal-point .brz-ed-control__focal-point+.brz-control__select{margin-left:8px}.brz-ed .brz-ed-option__focal-point .brz-control__select{margin-left:4px}.brz-ed .brz-ed-shape--1{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%200.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%221%22%20transform%3D%22translate(1.000000%2C%200.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%221920%200.0234587866%200%20200%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--2{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%20-400.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%222%22%20transform%3D%22translate(1.000000%2C%20400.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%220%20200%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Shape%22%20opacity%3D%220.250613839%22%20points%3D%220%20240%200%200%201920%200%20137.195192%20222.850601%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--3{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%20-840.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%223%22%20transform%3D%22translate(1.000000%2C%20840.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%221920%20200%201374.256%2011.5183246%200%20200%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--4{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20250%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%20-1240.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%224%22%20transform%3D%22translate(1.000000%2C%201240.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20opacity%3D%220.25%22%20points%3D%221920%20240%201374.256%2011.5183246%200%20250%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%221920%20200%201374.256%2011.5183246%200%20200%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--5{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%2069%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-1690.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%225%22%20transform%3D%22translate(0.000000%2C%201690.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%221920%2032.3318446%201872.00302%2069%201824.00403%2032.3318446%201776.00806%2069%201728.01108%2032.3318446%201680.01007%2069%201632.0131%2032.3318446%201584.01612%2069%201536.01914%2032.3318446%201488.02015%2069%201440.02115%2032.3318446%201392.02216%2069%201344.02115%2032.3318446%201296.02216%2069%201248.02216%2032.3318446%201200.02518%2069%201152.02619%2032.3318446%201104.02518%2069%201056.02619%2032.3318446%201008.02518%2069%20960.026191%2032.3318446%20912.027198%2069%20864.027198%2032.3318446%20816.032235%2069%20768.035257%2032.3318446%20720.033242%2069%20672.035257%2032.3318446%20624.035257%2069%20576.037272%2032.3318446%20528.039286%2069%20480.039286%2032.3318446%20432.036264%2069%20384.032235%2032.3318446%20336.031228%2069%20288.027198%2032.3318446%20240.026191%2069%20192.024176%2032.3318446%20144.020147%2069%2096.0181322%2032.3318446%2048.0090661%2069%200%2032.3318446%200%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--6{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201919%20100%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-1959.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%226%22%20transform%3D%22translate(0.000000%2C%201959.000000)%22%3E%20%3Cpath%20d%3D%22M1865.68729%2C100%20C1839.03017%2C100%201839.03017%2C66.6858475%201812.37206%2C66.6858475%20C1785.71794%2C66.6858475%201785.71794%2C100%201759.06382%2C100%20C1732.4097%2C100%201732.4097%2C66.6858475%201705.75459%2C66.6858475%20C1679.10147%2C66.6858475%201679.10147%2C100%201652.44835%2C100%20C1625.79523%2C100%201625.79523%2C66.6858475%201599.14211%2C66.6858475%20C1572.487%2C66.6858475%201572.487%2C100%201545.83288%2C100%20C1519.17976%2C100%201519.17976%2C66.6858475%201492.52664%2C66.6858475%20C1465.87252%2C66.6858475%201465.87252%2C100%201439.21741%2C100%20C1412.56429%2C100%201412.56429%2C66.6858475%201385.91017%2C66.6858475%20C1359.25805%2C66.6858475%201359.25805%2C100%201332.60493%2C100%20C1305.95282%2C100%201305.95282%2C66.6858475%201279.3007%2C66.6858475%20C1252.64958%2C66.6858475%201252.64958%2C100%201225.99846%2C100%20C1199.34534%2C100%201199.34534%2C66.6858475%201172.69322%2C66.6858475%20C1146.0431%2C66.6858475%201146.0431%2C100%201119.39198%2C100%20C1092.73887%2C100%201092.73887%2C66.6858475%201066.08475%2C66.6858475%20C1039.43463%2C66.6858475%201039.43463%2C100%201012.78351%2C100%20C986.13039%2C100%20986.13039%2C66.6858475%20959.478272%2C66.6858475%20C932.826153%2C66.6858475%20932.825154%2C100%20906.173035%2C100%20C879.520916%2C100%20879.519917%2C66.6858475%20852.867798%2C66.6858475%20C826.215679%2C66.6858475%20826.215679%2C100%20799.563561%2C100%20C772.910442%2C100%20772.910442%2C66.6858475%20746.258324%2C66.6858475%20C719.606205%2C66.6858475%20719.606205%2C100%20692.954086%2C100%20C666.300968%2C100%20666.300968%2C66.6858475%20639.64785%2C66.6858475%20C612.995731%2C66.6858475%20612.995731%2C100%20586.343613%2C100%20C559.691494%2C100%20559.691494%2C66.6858475%20533.040375%2C66.6858475%20C506.389256%2C66.6858475%20506.388256%2C100%20479.736137%2C100%20C453.084019%2C100%20453.084019%2C66.6858475%20426.430901%2C66.6858475%20C399.777782%2C66.6858475%20399.777782%2C100%20373.125664%2C100%20C346.472546%2C100%20346.472546%2C66.6858475%20319.820427%2C66.6858475%20C293.168308%2C66.6858475%20293.168308%2C100%20266.516189%2C100%20C239.864071%2C100%20239.864071%2C66.6858475%20213.211952%2C66.6858475%20C186.560833%2C66.6858475%20186.560833%2C100%20159.909714%2C100%20C133.258594%2C100%20133.258594%2C66.6858475%20106.607475%2C66.6858475%20C79.9563561%2C66.6858475%2079.9563561%2C100%2053.3052369%2C100%20C26.6521187%2C100%2026.6521187%2C66.6858475%200%2C66.6858475%20L0%2C0%20L1919.00252%2C0%20L1919.00052%2C66.6858475%20C1892.3444%2C66.6858475%201892.3444%2C100%201865.68729%2C100%20Z%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--7{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%20-2259.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%227%22%20transform%3D%22translate(1.000000%2C%202259.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C111.220438%20C39.9240388%2C169.082573%2043.6350505%2C30.1007527%2086.0567492%2C61.8432382%20C109.017177%2C79.0237926%20114.479794%2C201.637975%20149.726803%2C193.420367%20C179.417937%2C186.500642%20196.650168%2C148.736814%20211.855078%2C121.664124%20C243.724569%2C71.6250636%20292.188699%2C146.349742%20346.574635%2C126.141125%20C390.262396%2C109.908642%20381.994979%2C89.8749306%20417.417351%2C125.742617%20C455.501596%2C164.306443%20482.759945%2C66.3619784%20510.046676%2C74.4782202%20C562.581667%2C90.1044949%20576.570184%2C250.390084%20617.432873%2C157.920381%20C638.828208%2C109.506159%20686.30706%2C36.1101704%20720.85667%2C112.045279%20C766.005116%2C211.274708%20775.19395%2C127.055407%20794.792065%2C75.0526279%20C822.077783%2C2.65141828%20842.350996%2C125.880754%20885.788382%2C136.454626%20C911.308303%2C142.666775%20929.52784%2C112.013478%20942.184407%2C89.1802749%20C992.373787%2C21.5333326%201014.40672%2C127.697392%201047.98828%2C132.092903%20C1081.56984%2C136.488414%201091.93959%2C91.1598946%201126.15875%2C100.836379%20C1164.8147%2C111.768013%201170.88653%2C200.461334%201201.86298%2C199.420841%20C1233.92912%2C198.343578%201212.33815%2C86.1293551%201260.12617%2C67.4372537%20C1297.17952%2C52.9448876%201305.12155%2C113.941421%201347.40641%2C113.152356%20C1389.69126%2C112.363291%201400.54655%2C-24.5733208%201442.48778%2C68.2660704%20C1451.8611%2C89.0153066%201458.80974%2C171.887035%201485.92111%2C177.671857%20C1520.98363%2C185.152076%201529.78018%2C96.3077007%201576.84444%2C95.9578884%20C1645.17125%2C101.035136%201638.77708%2C178.059433%201673.55375%2C166.293019%20C1703.42329%2C156.18722%201722.74062%2C34.7466974%201746.33256%2C43.4910113%20C1772.76376%2C53.2877434%201775.54727%2C163.374273%201824.2486%2C114.115333%20C1847.37121%2C90.7295857%201858.61981%2C31.9313046%201893.59921%2C77.7587044%20C1914.76242%2C105.485305%201897.60215%2C85.5579287%201920%2C112.960555%20L1920%2C0%20L0%2C0%20L0%2C111.220438%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--8{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(-1.000000%2C%20-2659.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%228%22%20transform%3D%22translate(1.000000%2C%202659.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C111.220438%20C39.9240388%2C169.082573%2043.6350505%2C30.1007527%2086.0567492%2C61.8432382%20C109.017177%2C79.0237926%20114.479794%2C201.637975%20149.726803%2C193.420367%20C179.417937%2C186.500642%20196.650168%2C148.736814%20211.855078%2C121.664124%20C243.724569%2C71.6250636%20292.188699%2C146.349742%20346.574635%2C126.141125%20C390.262396%2C109.908642%20381.994979%2C89.8749306%20417.417351%2C125.742617%20C455.501596%2C164.306443%20482.759945%2C66.3619784%20510.046676%2C74.4782202%20C562.581667%2C90.1044949%20576.570184%2C250.390084%20617.432873%2C157.920381%20C638.828208%2C109.506159%20686.30706%2C36.1101704%20720.85667%2C112.045279%20C766.005116%2C211.274708%20775.19395%2C127.055407%20794.792065%2C75.0526279%20C822.077783%2C2.65141828%20842.350996%2C125.880754%20885.788382%2C136.454626%20C911.308303%2C142.666775%20929.52784%2C112.013478%20942.184407%2C89.1802749%20C992.373787%2C21.5333326%201014.40672%2C127.697392%201047.98828%2C132.092903%20C1081.56984%2C136.488414%201091.93959%2C91.1598946%201126.15875%2C100.836379%20C1164.8147%2C111.768013%201170.88653%2C200.461334%201201.86298%2C199.420841%20C1233.92912%2C198.343578%201212.33815%2C86.1293551%201260.12617%2C67.4372537%20C1297.17952%2C52.9448876%201305.12155%2C113.941421%201347.40641%2C113.152356%20C1389.69126%2C112.363291%201400.54655%2C-24.5733208%201442.48778%2C68.2660704%20C1451.8611%2C89.0153066%201458.80974%2C171.887035%201485.92111%2C177.671857%20C1520.98363%2C185.152076%201529.78018%2C96.3077007%201576.84444%2C95.9578884%20C1645.17125%2C101.035136%201638.77708%2C178.059433%201673.55375%2C166.293019%20C1703.42329%2C156.18722%201722.74062%2C34.7466974%201746.33256%2C43.4910113%20C1772.76376%2C53.2877434%201775.54727%2C163.374273%201824.2486%2C114.115333%20C1847.37121%2C90.7295857%201858.61981%2C31.9313046%201893.59921%2C77.7587044%20C1914.76242%2C105.485305%201897.60215%2C85.5579287%201920%2C112.960555%20L1920%2C0%20L0%2C0%20L0%2C111.220438%20Z%22%20id%3D%22Shape%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C111.220438%20C39.9240388%2C169.082573%20113.614041%2C-14.0509829%20101.201671%2C17.9378186%20C88%2C51.9607843%20135.128276%2C112.960555%20162%2C112.960555%20C188.871724%2C112.960555%20222.79509%2C45.0105085%20238%2C17.9378186%20C269.869491%2C-32.1012418%20307.614065%2C156.663243%20362%2C136.454626%20C405.687761%2C120.222142%20381.994979%2C89.8749306%20417.417351%2C125.742617%20C455.501596%2C164.306443%20482.759945%2C66.3619784%20510.046676%2C74.4782202%20C562.581667%2C90.1044949%20580.137311%2C214.133827%20621%2C121.664124%20C642.395336%2C73.249902%20686.30706%2C65.5219351%20720.85667%2C141.457044%20C737.289949%2C177.574896%20748.959161%2C189.388759%20758.100302%2C187.298421%20C774.073341%2C183.645808%20782.327336%2C137.539031%20794.792065%2C104.464393%20C822.077783%2C32.063183%20842.350996%2C125.880754%20885.788382%2C136.454626%20C911.308303%2C142.666775%20929.52784%2C112.013478%20942.184407%2C89.1802749%20C992.373787%2C21.5333326%201017.41844%2C132.059115%201051%2C136.454626%20C1084.58156%2C140.850136%201091.93959%2C91.1598946%201126.15875%2C100.836379%20C1164.8147%2C111.768013%201162.02354%2C179.471865%201193%2C178.431373%20C1225.06614%2C177.35411%201212.33815%2C86.1293551%201260.12617%2C67.4372537%20C1297.17952%2C52.9448876%201309.71515%2C172.357693%201352%2C171.568627%20C1394.28485%2C170.779562%201385%2C27.4509804%201422%2C67.4372537%20C1441.13259%2C88.1140368%201450.88863%2C152.135558%201478%2C157.920381%20C1513.06252%2C165.4006%201537.93574%2C101.186191%201585%2C100.836379%20C1653.32681%2C105.913626%201641.32681%2C141.457044%201680%2C141.457044%20C1718.67319%2C141.457044%201728.40806%2C104.216241%201752%2C112.960555%20C1778.4312%2C122.757287%201777.7514%2C206.968242%201814%2C149.514948%20C1828.79518%2C126.064884%201858.61981%2C31.9313046%201893.59921%2C77.7587044%20C1914.76242%2C105.485305%201897.60215%2C85.5579287%201920%2C112.960555%20L1920%2C0%20L0%2C0%20L0%2C111.220438%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.25%22%20transform%3D%22translate(960.000000%2C%2093.764937)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-93.764937)%20%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--9{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-3059.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%229%22%20transform%3D%22translate(0.000000%2C%203059.000000)%22%3E%20%3Cpolygon%20id%3D%22Shape%22%20points%3D%221000.5211%200.0234587866%200%20200%200%200%201000.5211%200%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Shape%22%20transform%3D%22translate(1419.739448%2C%20100.000000)%20scale(-1%2C%201)%20translate(-1419.739448%2C%20-100.000000)%20%22%20points%3D%221920%200.0234587866%20919.478895%20200%20919.478895%200%201920%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--10{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-3459.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2210%22%20transform%3D%22translate(0.000000%2C%203459.000000)%22%3E%20%3Cpolygon%20id%3D%22Combined-Shape%22%20opacity%3D%220.25%22%20points%3D%221920%200%201920%20240%20959.943696%209.73350602%200%20240%200%200%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Combined-Shape%22%20points%3D%221920%200%201920%20198.347107%20959.943696%208.04421985%200%20198.347107%200%200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--11{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-3899.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2211%22%20transform%3D%22translate(0.000000%2C%203899.000000)%22%3E%20%3Cpath%20d%3D%22M1920%2C5.20607375%20C1600%2C7.20173536%201280%2C26.637744%20960%2C63.5140998%20C640%2C100.390456%20320%2C159.219089%200%2C240%20L0%2C5.20607375%20L0%2C0%20L1920%2C0%20L1920%2C5.20607375%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--12{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-4339.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2212%22%20transform%3D%22translate(0.000000%2C%204339.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C240%20L0%2C0%20L1920%2C0%20L1920%2C4.53798851%20C1607.33333%2C3.71056176%201287.33333%2C19.4756508%20960%2C51.8332556%20C632.666667%2C84.1908604%20312.666667%2C146.913109%200%2C240%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.15%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C210.704225%20L0%2C0%20L1920%2C0%20L1920%2C4.50704225%20C1588%2C5.70702586%201268%2C21.2421031%20960%2C51.1122739%20C652%2C80.9824447%20332%2C134.179762%200%2C210.704225%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C4.50704225%20L0%2C0%20L1920%2C0%20L1920%2C4.50704225%20C1600%2C6.0010618%201280%2C20.5515131%20960%2C48.1583961%20C640%2C75.765279%20320%2C119.806377%200%2C180.28169%20L0%2C4.50704225%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--13{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-4779.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2213%22%20transform%3D%22translate(0.000000%2C%204779.000000)%22%3E%20%3Cpath%20d%3D%22M1920%2C5.20607375%20L1920%2C240%20C1760%2C159.219089%201600%2C100.390456%201440%2C63.5140998%20C1280%2C26.637744%201120%2C7.20173536%20960%2C5.20607375%20C800%2C7.20173536%20640%2C26.637744%20480%2C63.5140998%20C320%2C100.390456%20160%2C159.219089%200%2C240%20L0%2C5.20607375%20L0%2C0%20L960%2C0%20L1920%2C0%20L1920%2C5.20607375%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--14{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-5219.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2214%22%20transform%3D%22translate(0.000000%2C%205219.000000)%22%3E%20%3Cg%20id%3D%22Group%22%3E%20%3Cpath%20d%3D%22M0%2C240%20L0%2C0%20L960%2C0.0308814777%20L960%2C4%20C754%2C7.84856978%20600%2C23.1819031%20498%2C50%20C354.33366%2C87.7731159%20188.33366%2C151.106449%200%2C240%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.15%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C211%20L0%2C0%20L960%2C0%20L960%2C5%20C794%2C1.66666667%20634%2C17.1868879%20480%2C51.5606638%20C326%2C85.9344397%20166%2C139.080885%200%2C211%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C4.5%20L0%2C0%20L960%2C0%20L960%2C5%20C800%2C6.15835181%20640%2C20.5194013%20480%2C48.0831486%20C320%2C75.6468958%20160%2C119.61918%200%2C180%20L0%2C4.5%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate(1440.000000%2C%20120.000000)%20scale(-1%2C%201)%20translate(-1440.000000%2C%20-120.000000)%20translate(960.000000%2C%200.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C240%20L0%2C0%20L960%2C0.0308814777%20L960%2C4%20C754%2C7.84856978%20600%2C23.1819031%20498%2C50%20C354.33366%2C87.7731159%20188.33366%2C151.106449%200%2C240%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.15%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C211%20L0%2C0%20L960%2C0%20L960%2C5%20C794%2C1.66666667%20634%2C17.1868879%20480%2C51.5606638%20C326%2C85.9344397%20166%2C139.080885%200%2C211%20Z%22%20id%3D%22Shape%22%20opacity%3D%220.3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C4.5%20L0%2C-1.84741111e-13%20L960%2C-1.84741111e-13%20L960%2C5%20C800%2C6.15835181%20640%2C20.5194013%20480%2C48.0831486%20C320%2C75.6468958%20160%2C119.61918%200%2C180%20L0%2C4.5%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--15{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20200%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-5659.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2215%22%20transform%3D%22translate(0.000000%2C%205659.000000)%22%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20points%3D%220%200%201920%200%201920%20200%201760%20184.166667%201438%2070%20707%20184.166667%20211%2090%200%20200%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--16{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-6059.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2216%22%20transform%3D%22translate(0.000000%2C%206059.000000)%22%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20points%3D%220%200%201920%200%201920%20198.347107%201760%20182%201438%2070%20707%20183%20211%2089%200%20198.347107%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20opacity%3D%220.2%22%20points%3D%220%200%201920%200%201920%20228.099174%201721%20240%201438%2070%201155%20192.396694%20807.652628%20167.357637%20707%20183%20625.0803%20167.48277%20383%20192.396694%20211%2089%200%20228.099174%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20opacity%3D%220.25%22%20transform%3D%22translate(960.000000%2C%20119.008264)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-119.008264)%20%22%20points%3D%220%200%201920%200%201920%20228.099174%201727%20238.016529%201530%20123%201213%20183%201146%20171.570248%20669%20147.768595%20398%20192.396694%20304%20132%20160%20182%2050%20194%200%20228.099174%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--17{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-6501.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2217%22%20transform%3D%22translate(960.000000%2C%206621.000000)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-6621.000000)%20translate(0.000000%2C%206501.000000)%22%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20points%3D%221.66533454e-15%200%201920%200%201920%20144.418783%201280%20240%20640%2050.8034454%200%20144.418783%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--18{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-6941.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2218%22%20transform%3D%22translate(960.000000%2C%207061.000000)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-7061.000000)%20translate(0.000000%2C%206941.000000)%22%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20opacity%3D%220.25%22%20transform%3D%22translate(960.000000%2C%20120.000000)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-120.000000)%20%22%20points%3D%221.66533454e-15%200%201920%200%201920%20144.418783%201277%20221%20991%20136%20640%20240%200%20144.418783%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20opacity%3D%220.2%22%20points%3D%221.14751958e-15%202.49800181e-15%201920%200%201920%20144.418783%201280%20240%201112.18877%20190.109472%20882%20240%20489%2073%200%20144.418783%22%3E%3C%2Fpolygon%3E%20%3Cpolygon%20id%3D%22Rectangle-2%22%20points%3D%221.66533454e-15%200%201920%200%201920%20144.418783%201280%20240%20640%2050.8034454%200%20144.418783%22%3E%3C%2Fpolygon%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--19{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-7381.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2219%22%20transform%3D%22translate(960.000000%2C%207501.000000)%20scale(1%2C%20-1)%20translate(-960.000000%2C%20-7501.000000)%20translate(0.000000%2C%207381.000000)%22%3E%20%3Cpath%20d%3D%22M-4.26769731e-13%2C67.9569892%20C160%2C22.6523297%20320%2C1.8189894e-12%20480%2C1.8189894e-12%20C720%2C1.8189894e-12%201200%2C138.494624%201440%2C136.774194%20C1600%2C135.62724%201760%2C112.688172%201920%2C67.9569892%20L1920%2C240%20L-4.26769731e-13%2C240%20L-4.26769731e-13%2C67.9569892%20Z%22%20id%3D%22Rectangle-3%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--20{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-7821.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2220%22%20transform%3D%22translate(960.000000%2C%207941.000000)%20scale(1%2C%20-1)%20translate(-960.000000%2C%20-7941.000000)%20translate(0.000000%2C%207821.000000)%22%3E%20%3Cpath%20d%3D%22M-4.54747351e-13%2C110.248848%20C160%2C48.0829493%20320%2C17%20480%2C17%20C632.892149%2C17%20879.531834%2C48.3838333%201100.4752%2C70.7840671%20C1233%2C49%201362.89215%2C34.5352249%201450%2C34%20C1612%2C36%201768.66667%2C55.3333333%201920%2C92%20L1920%2C240%20L-4.54747351e-13%2C240%20L-4.54747351e-13%2C110.248848%20Z%22%20id%3D%22Rectangle-3%22%20opacity%3D%220.203180804%22%20transform%3D%22translate(960.000000%2C%20128.500000)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-128.500000)%20%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M230%2C50%20C390%2C16.6666667%20550%2C1.8189894e-12%20710%2C1.8189894e-12%20C950%2C1.8189894e-12%201486%2C105%201633%2C115%20C1731%2C121.666667%201826.66667%2C114%201920%2C92%20L1920%2C240%20L0%2C240%20L0%2C92%20C45.0728707%2C81.5837946%2081.0728707%2C73.917128%20108%2C69%20C134.927129%2C64.082872%20175.593796%2C57.7495387%20230%2C50%20Z%22%20id%3D%22Rectangle-3%22%20opacity%3D%220.3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M-4.54747351e-13%2C92%20C160%2C53.5238095%20320%2C34.2857143%20480%2C34.2857143%20C720%2C34.2857143%201200%2C152.995392%201440%2C151.520737%20C1600%2C150.537634%201760%2C130.697389%201920%2C92%20L1920%2C240%20L-4.54747351e-13%2C240%20L-4.54747351e-13%2C92%20Z%22%20id%3D%22Rectangle-3%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--21{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-8261.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2221%22%20transform%3D%22translate(960.000000%2C%208381.000000)%20scale(1%2C%20-1)%20translate(-960.000000%2C%20-8381.000000)%20translate(0.000000%2C%208261.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C168.988943%20C80.5473907%2C217.603736%20160.512186%2C220.954929%20239.894386%2C179.042522%20C358.967686%2C116.173913%20359.812598%2C59.826087%20443.76887%2C59.826087%20C527.725143%2C59.826087%20547.8693%2C208.397586%20697.791216%2C199.354108%20C847.713131%2C190.310629%20776.750091%2C26.8323684%20937.666281%2C1.78889015%20C1098.58247%2C-23.2545881%201239.52127%2C223.162118%201417.41641%2C209.093238%20C1553.34561%2C198.343244%201504.21655%2C68.173913%201615.15877%2C45.2173913%20C1689.12025%2C29.9130435%201790.45236%2C71.3046335%201919.15509%2C169.392161%20L1919.15509%2C239.701934%20L0%2C239.701934%20L0%2C168.988943%20Z%22%20id%3D%22Rectangle-3%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--22{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20255%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-8701.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2222%22%20transform%3D%22translate(960.000000%2C%208828.500000)%20scale(1%2C%20-1)%20translate(-960.000000%2C%20-8828.500000)%20translate(0.000000%2C%208701.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C184%20C55.2272449%2C222.607421%20122.531967%2C220.954929%20201.914167%2C179.042522%20C320.987468%2C116.173913%20321.832379%2C59.826087%20405.788652%2C59.826087%20C489.744925%2C59.826087%20509.889081%2C208.397586%20659.810997%2C199.354108%20C809.732913%2C190.310629%20738.769873%2C26.8323684%20899.686062%2C1.78889015%20C1060.60225%2C-23.2545881%201201.54105%2C223.162118%201379.43619%2C209.093238%20C1515.3654%2C198.343244%201466.23634%2C68.173913%201577.17855%2C45.2173913%20C1651.14003%2C29.9130435%201765.08051%2C76.173913%201919%2C184%20L1919%2C255%20L0%2C255%20L0%2C184%20Z%22%20id%3D%22Rectangle-3%22%20opacity%3D%220.3%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C183.988943%20C80.5473907%2C232.603736%20160.512186%2C235.954929%20239.894386%2C194.042522%20C358.967686%2C131.173913%20359.812598%2C74.826087%20443.76887%2C74.826087%20C527.725143%2C74.826087%20547.8693%2C223.397586%20697.791216%2C214.354108%20C847.713131%2C205.310629%20776.750091%2C41.8323684%20937.666281%2C16.7888902%20C1098.58247%2C-8.25458811%201239.52127%2C238.162118%201417.41641%2C224.093238%20C1553.34561%2C213.343244%201504.21655%2C83.173913%201615.15877%2C60.2173913%20C1689.12025%2C44.9130435%201790.45236%2C86.1702275%201919.15509%2C183.988943%20L1919.15509%2C255%20L0%2C255%20L0%2C183.988943%20Z%22%20id%3D%22Rectangle-3%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--23{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20240%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-9156.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2223%22%20transform%3D%22translate(0.000000%2C%209156.000000)%22%3E%20%3Cpath%20d%3D%22M1920%2C-1.8189894e-12%20C1920%2C73.6794582%201920%2C117.394063%201920%2C131.143816%20C1824.02089%2C131.143816%201823.6642%2C240%201727.6815%2C240%20C1631.69879%2C240%201631.69879%2C131.143816%201535.71249%2C131.143816%20C1439.72618%2C131.143816%201439.72618%2C185.823928%201343.74348%2C185.823928%20C1247.75717%2C185.823928%201247.75717%2C60.7149218%201151.77447%2C60.7149218%20C1055.79176%2C60.7149218%201055.79176%2C234.582393%20959.809056%2C234.582393%20C863.826351%2C234.582393%20863.826351%2C131.143816%20767.843646%2C131.143816%20C671.86454%2C131.143816%20671.86454%2C202.076749%20575.885434%2C202.076749%20C479.906328%2C202.076749%20479.906328%2C104.05578%20383.927222%2C104.05578%20C287.948116%2C104.05578%20287.948116%2C185.823928%20191.96901%2C185.823928%20C95.9827054%2C185.823928%2095.9827054%2C131.143816%200%2C131.143816%20L0%2C-1.8189894e-12%20L1920%2C-1.8189894e-12%20Z%22%20id%3D%226%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--24{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20398%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-9596.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2224%22%20transform%3D%22translate(0.000000%2C%209596.000000)%22%3E%20%3Cpath%20d%3D%22M1920%2C1.8189894e-12%20C1920%2C117.670429%201920%2C183.752909%201920%2C198.247439%20C1824.02089%2C198.247439%201823.6642%2C313%201727.6815%2C313%20C1631.69879%2C313%201631.69879%2C198.247439%201535.71249%2C198.247439%20C1439.72618%2C198.247439%201439.72618%2C255.889391%201343.74348%2C255.889391%20C1247.75717%2C255.889391%201247.75717%2C124.003647%201151.77447%2C124.003647%20C1055.79176%2C124.003647%201055.79176%2C307.288939%20959.809056%2C307.288939%20C863.826351%2C307.288939%20863.826351%2C198.247439%20767.843646%2C198.247439%20C671.86454%2C198.247439%20671.86454%2C273.022573%20575.885434%2C273.022573%20C479.906328%2C273.022573%20479.906328%2C169.692134%20383.927222%2C169.692134%20C287.948116%2C169.692134%20287.948116%2C255.889391%20191.96901%2C255.889391%20C95.9827054%2C255.889391%2095.9827054%2C198.247439%200%2C198.247439%20L0%2C1.8189894e-12%20L1920%2C1.8189894e-12%20Z%22%20id%3D%226%22%20opacity%3D%220.25%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M1920%2C0%20C1920%2C95.2595937%201920%2C148.045548%201920%2C158.357862%20C1824.02089%2C158.357862%201823.6642%2C240%201727.6815%2C240%20C1631.69879%2C240%201631.69879%2C158.357862%201535.71249%2C158.357862%20C1439.72618%2C158.357862%201439.72618%2C199.367946%201343.74348%2C199.367946%20C1247.75717%2C199.367946%201247.75717%2C105.536191%201151.77447%2C105.536191%20C1055.79176%2C105.536191%201055.79176%2C235.936795%20959.809056%2C235.936795%20C863.826351%2C235.936795%20863.826351%2C158.357862%20767.843646%2C158.357862%20C671.86454%2C158.357862%20671.86454%2C211.557562%20575.885434%2C211.557562%20C479.906328%2C211.557562%20479.906328%2C138.041835%20383.927222%2C138.041835%20C287.948116%2C138.041835%20287.948116%2C199.367946%20191.96901%2C199.367946%20C95.9827054%2C199.367946%2095.9827054%2C158.357862%200%2C158.357862%20L0%2C0%20L1920%2C0%20Z%22%20id%3D%226%22%20opacity%3D%220.35%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M1920%2C1.8189894e-12%20C1920%2C143.765237%201920%2C225.329973%201920%2C244.694207%20C1824.02089%2C244.694207%201823.6642%2C398%201727.6815%2C398%20C1631.69879%2C398%201631.69879%2C244.694207%201535.71249%2C244.694207%20C1439.72618%2C244.694207%201439.72618%2C321.702032%201343.74348%2C321.702032%20C1247.75717%2C321.702032%201247.75717%2C145.506848%201151.77447%2C145.506848%20C1055.79176%2C145.506848%201055.79176%2C390.370203%20959.809056%2C390.370203%20C863.826351%2C390.370203%20863.826351%2C244.694207%20767.843646%2C244.694207%20C671.86454%2C244.694207%20671.86454%2C344.591422%20575.885434%2C344.591422%20C479.906328%2C344.591422%20479.906328%2C206.545223%20383.927222%2C206.545223%20C287.948116%2C206.545223%20287.948116%2C321.702032%20191.96901%2C321.702032%20C95.9827054%2C321.702032%2095.9827054%2C244.694207%200%2C244.694207%20L0%2C1.8189894e-12%20L1920%2C1.8189894e-12%20Z%22%20id%3D%226%22%20opacity%3D%220.134263393%22%20transform%3D%22translate(960.000000%2C%20199.000000)%20scale(-1%2C%201)%20translate(-960.000000%2C%20-199.000000)%20%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M1920%2C-1.8189894e-12%20C1920%2C73.6794582%201920%2C117.394063%201920%2C131.143816%20C1824.02089%2C131.143816%201823.6642%2C240%201727.6815%2C240%20C1631.69879%2C240%201631.69879%2C131.143816%201535.71249%2C131.143816%20C1439.72618%2C131.143816%201439.72618%2C185.823928%201343.74348%2C185.823928%20C1247.75717%2C185.823928%201247.75717%2C60.7149218%201151.77447%2C60.7149218%20C1055.79176%2C60.7149218%201055.79176%2C234.582393%20959.809056%2C234.582393%20C863.826351%2C234.582393%20863.826351%2C131.143816%20767.843646%2C131.143816%20C671.86454%2C131.143816%20671.86454%2C202.076749%20575.885434%2C202.076749%20C479.906328%2C202.076749%20479.906328%2C104.05578%20383.927222%2C104.05578%20C287.948116%2C104.05578%20287.948116%2C185.823928%20191.96901%2C185.823928%20C95.9827054%2C185.823928%2095.9827054%2C131.143816%200%2C131.143816%20L0%2C-1.8189894e-12%20L1920%2C-1.8189894e-12%20Z%22%20id%3D%226%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--25{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20788%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-10194.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2225%22%20transform%3D%22translate(0.000000%2C%2010194.000000)%22%3E%20%3Cpath%20d%3D%22M1.42108547e-13%2C788%20L1920%2C788%20L1920%2C615%20C1872%2C653.666667%201824.33333%2C690.333333%201777%2C725%20C1706%2C776%201667%2C783%201571%2C765%20C1205%2C681%20417%2C522%20278%2C468%20C220%2C446%20190%2C424%20157%2C367%20C133.666667%2C315%2081.3333333%2C192.666667%201.42108547e-13%2C0%20L1.42108547e-13%2C788%20Z%22%20id%3D%22Rectangle-4%22%20transform%3D%22translate(960.000000%2C%20394.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-394.000000)%20%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--26{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20798%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-11247.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2226%22%20transform%3D%22translate(0.000000%2C%2011247.000000)%22%3E%20%3Cpath%20d%3D%22M-2.27373675e-13%2C798%20L1920%2C798%20L1920%2C609%20C1896%2C627%201859.6533%2C650.754743%201810.9599%2C680.264228%20C1712.63229%2C740.227642%201658.62135%2C747.085366%201525.67135%2C719.45122%20C1018%2C626%20571%2C528%20385.001042%2C478.487805%20C304.677083%2C456.934959%20263.130208%2C425.382114%20217.428646%2C369.54065%20C185.11441%2C318.597561%20112.638194%2C195.417344%20-2.27373675e-13%2C1.13686838e-13%20L-2.27373675e-13%2C798%20Z%22%20id%3D%22Rectangle-4%22%20opacity%3D%220.25%22%20transform%3D%22translate(960.000000%2C%20399.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-399.000000)%20%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M0%2C788%20L1920%2C788%20L1920%2C615%20C1872%2C653.666667%201824.33333%2C690.333333%201777%2C725%20C1706%2C776%201667%2C783%201571%2C765%20C1205%2C681%20417%2C522%20278%2C468%20C220%2C446%20190%2C424%20157%2C367%20C133.666667%2C315%2081.3333333%2C192.666667%200%2C0%20L0%2C788%20Z%22%20id%3D%22Rectangle-4%22%20transform%3D%22translate(960.000000%2C%20394.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-394.000000)%20%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--27{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20800%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-12245.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2227%22%20transform%3D%22translate(0.000000%2C%2012245.000000)%22%3E%20%3Cpath%20d%3D%22M4.54747351e-13%2C800%20L1920%2C800%20L1920%2C787.01623%20C890.28125%2C656.512692%20332.708333%2C573.283396%20247.28125%2C537.32834%20C193.8125%2C515.355805%20166.15625%2C493.383271%20135.734375%2C436.454432%20C114.223958%2C384.519351%2068.9791667%2C239.03454%204.54747351e-13%2C0%20L4.54747351e-13%2C800%20Z%22%20id%3D%22Rectangle-4%22%20transform%3D%22translate(960.000000%2C%20400.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-400.000000)%20%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--28{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20800%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-13245.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2228%22%20transform%3D%22translate(0.000000%2C%2013245.000000)%22%3E%20%3Cpath%20d%3D%22M4.54747351e-13%2C800%20L1920%2C800%20L1920%2C787.01623%20C890.28125%2C656.512692%20332.708333%2C573.283396%20247.28125%2C537.32834%20C193.8125%2C515.355805%20166.15625%2C493.383271%20135.734375%2C436.454432%20C114.223958%2C384.519351%2068.9791667%2C239.03454%204.54747351e-13%2C0%20L4.54747351e-13%2C800%20Z%22%20id%3D%22Rectangle-4%22%20transform%3D%22translate(960.000000%2C%20400.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-400.000000)%20%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M-1.02318154e-12%2C800%20L1920%2C800%20L1920%2C787%20C923.212305%2C627.173949%20383.083767%2C529.283396%20299.614388%2C493.32834%20C247.370964%2C471.355805%20220.348503%2C449.383271%20190.623796%2C392.454432%20C63.5412652%2C130.818144%20-1.02318154e-12%2C0%20-1.02318154e-12%2C0%20L-1.02318154e-12%2C800%20Z%22%20id%3D%22Rectangle-4%22%20opacity%3D%220.25%22%20transform%3D%22translate(960.000000%2C%20400.000000)%20scale(-1%2C%20-1)%20translate(-960.000000%2C%20-400.000000)%20%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--29{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20144%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-14245.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2229%22%20transform%3D%22translate(0.000000%2C%2014245.000000)%22%3E%20%3Cpath%20d%3D%22M0%2C0%20L1920%2C0%20C1920%2C16%201920%2C39.3333333%201920%2C70%20C1824%2C39%201736%2C71.6388589%201631%2C91%20C1486%2C119%201386%2C132%201258%2C141%20C1192%2C145%201108%2C148%20931%2C111%20C760%2C80%20630%2C28%20532%2C28%20C418%2C32%20274%2C98%20170%2C105%20C126%2C105.666667%2069.3333333%2C94%200%2C70%20L0%2C0%20Z%22%20id%3D%22Rectangle-5%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--30{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%2099%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-14589.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2231%22%20transform%3D%22translate(0.000000%2C%2014589.000000)%22%3E%20%3Cpath%20d%3D%22M781.658982%2C67.6789686%20C787.052703%2C67.3820603%20799.746799%2C68.8378602%20804.31854%2C66.1527621%20C801.473186%2C67.8199519%20785.088216%2C66.4730887%20782.364685%2C66.5466974%20C776.410557%2C66.7109895%20770.462093%2C66.7449808%20764.462641%2C67.0792264%20C754.066992%2C67.6570761%20743.778981%2C67.8553595%20733.439985%2C68.7787874%20C703.097153%2C71.4924177%20672.833633%2C72.6877764%20642.45681%2C73.4809036%20C641.680677%2C73.7415018%20636.01547%2C73.4129209%20633.34716%2C74.5799529%20C634.315909%2C74.1040772%20635.409294%2C73.8378111%20636.559332%2C73.656525%20C623.880604%2C73.9681118%20611.184882%2C74.22871%20598.438171%2C74.4779788%20C579.86763%2C74.8405543%20561.093144%2C75.3844126%20542.545265%2C76.6534187%20C529.351005%2C77.5598493%20516.236058%2C77.9564129%20503.058792%2C78.8571788%20C494.504334%2C79.4406964%20474.642128%2C83.6839342%20467.736245%2C79.9505634%20C481.338398%2C76.0529006%20497.393586%2C78.1716872%20511.437626%2C77.2086%20C521.045809%2C76.5457704%20530.546357%2C76.4437963%20540.131882%2C75.7866313%20C559.733487%2C74.4439779%20579.125482%2C72.9936857%20598.868717%2C72.3138588%20C635.987134%2C71.0391881%20673.887349%2C67.0962045%20710.875465%2C66.9319125%20C734.204776%2C66.8299384%20758.191249%2C63.9576776%20781.378929%2C63.4308133%20C798.051626%2C63.0512438%20815.024577%2C62.6150241%20831.515985%2C61.1987233%20C867.552347%2C58.1055235%20904.217547%2C60.2696308%20940.310562%2C57.3463845%20C952.898646%2C56.3266472%20966.013593%2C59.1365869%20978.669659%2C57.1424364%20C985.847472%2C56.0093957%20992.640052%2C55.0972972%201000.54301%2C55.1029619%20C1012.33797%2C55.1086266%201023.94597%2C54.2531814%201035.89955%2C54.2305195%20C1044.41435%2C54.2135254%201053.76761%2C54.9330052%201062.06713%2C52.6895858%20C1046.12525%2C50.5028166%201030.09272%2C53.0804847%201014.05453%2C52.9275253%20C993.688119%2C52.7292419%20973.219736%2C52.6272678%20952.79101%2C53.5393663%20C918.442876%2C55.0689738%20883.749168%2C54.8310343%20849.282066%2C56.5532573%20C732.56753%2C62.3770847%20615.728361%2C68.4671814%20498.940178%2C72.7784019%20C437.189452%2C75.0558158%20375.189458%2C80.2281461%20313.659675%2C83.2533665%20C286.438369%2C84.5960199%20259.573971%2C87.1906821%20232.369663%2C88.6126508%20C222.024999%2C89.1508477%20135.194417%2C99.5181703%20133.806443%2C94.7877243%20C148.349023%2C90.0062897%20166.862911%2C91.8248188%20182.204284%2C90.8390729%20C193.228772%2C90.1309225%20204.236262%2C88.8562517%20215.255085%2C87.9554858%20C244.668825%2C85.5534391%20274.683076%2C83.9501875%20304.289431%2C82.1826438%20C381.489168%2C77.5711691%20458.326329%2C70.6256304%20535.594049%2C68.093283%20C571.233847%2C66.926251%20606.930299%2C64.8924412%20642.58143%2C63.6574265%20C668.528065%2C62.7566606%20694.401049%2C60.0543565%20720.364681%2C59.4255181%20C736.601155%2C59.0346192%20753.596765%2C59.6294662%20769.765259%2C56.9158327%20C742.311682%2C53.9869217%20712.524041%2C59.1026019%20684.917501%2C60.0203651%20C663.151786%2C60.7455128%20639.635525%2C65.5835976%20618.090755%2C63.3571723%20C620.668423%2C62.2071344%20625.846418%2C64.1276375%20627.868895%2C62.1561489%20C627.857563%2C62.1618136%20613.156358%2C61.2780418%20611.632418%2C61.4140072%20C607.417507%2C61.7935735%20603.208261%2C62.4564032%20598.925367%2C62.7339986%20C584.977636%2C63.6404293%20571.126211%2C63.5894438%20557.184145%2C64.529869%20C537.837474%2C65.8385311%20517.861962%2C66.8356063%20498.418981%2C67.4644447%20C428.193113%2C69.7418586%20357.553684%2C76.0075735%20287.265494%2C80.9079763%20C253.665167%2C83.2533697%20220.302779%2C83.6555979%20186.662799%2C86.7544657%20C181.371498%2C87.2416739%20130.701913%2C90.1592555%2097.6567771%2C93.1958052%20C101.662075%2C92.731259%20104.783605%2C92.3120334%20105.73536%2C91.9664584%20C99.5772834%2C91.320626%20112.522274%2C90.5161663%20115.530497%2C90.3405448%20C123.195519%2C89.8929926%20130.826549%2C88.7712813%20138.497236%2C88.3010704%20C144.270081%2C87.9498275%20149.867301%2C87.5022785%20155.594823%2C86.8224515%20C167.463426%2C85.4174833%20189.217812%2C88.2727437%20199.307539%2C82.1090028%20C198.627712%2C82.1033381%20197.970547%2C81.9730374%20197.341709%2C81.7124392%20C202.202452%2C79.4746846%20209.181986%2C81.4971617%20214.269339%2C79.8599188%20C200.078004%2C76.5117822%20184.442039%2C82.5338962%20171.066493%2C83.3043647%20C158.229141%2C84.0465064%20145.006555%2C85.1738824%20132.203194%2C86.6921572%20C118.935287%2C88.2670854%20105.780684%2C89.6437302%2092.3881406%2C90.8844096%20C82.6836444%2C91.7851755%2073.3190617%2C93.7113433%2063.4729387%2C94.6347712%20C53.496515%2C95.5695285%2043.5200912%2C96.4986242%2033.5436675%2C97.4333815%20C30.7450572%2C97.6939797%2017.1712281%2C97.1274594%2014.3272971%2C98.6513989%20C16.7973264%2C96.4079796%2030.116222%2C96.6629131%2032.982815%2C95.6545052%20C27.4025885%2C94.9576874%2020.1737896%2C96.0284101%2014.5142511%2C96.5949304%20C12.0247182%2C96.8458915%204.1010717%2C96.2341543%200.95537214%2C96.761157%20C0.342120843%2C96.9256773%200.0236634627%2C64.6719583%200%2C0%20L1920%2C0%20L1920%2C25%20C1918.81344%2C25.4020388%201919.29347%2C25.5371098%201919.75467%2C25.6868852%20C1916.63924%2C24.9183052%201906.95746%2C27.7733991%201902.97039%2C28.2102628%20C1892.67105%2C29.331974%201881.66922%2C29.2016733%201871.42087%2C29.2243353%20C1856.18147%2C29.2583266%201841.06671%2C33.0823389%201825.4874%2C34.0170961%20C1811.31305%2C34.8668766%201796.84412%2C36.0509027%201782.82274%2C36.4474663%20C1776.85728%2C36.617423%201770.25165%2C35.8582872%201764.2692%2C36.8270358%20C1762.69427%2C37.0819693%201746.27651%2C39.8635855%201752.95578%2C38.1753539%20C1720.65846%2C36.3284982%201687.13178%2C39.9938862%201654.81745%2C40.305473%20C1640.81873%2C40.4414384%201626.61607%2C41.5801438%201612.69666%2C41.0929387%20C1599.6497%2C40.6340571%201579.32295%2C37.586178%201567.27306%2C42.6791963%20C1572.84195%2C40.3281382%201588.38727%2C43.4043439%201595.52543%2C43.1380779%20C1605.1846%2C42.7755024%201614.60017%2C42.3676063%201624.20836%2C42.1976495%20C1645.5945%2C41.8180832%201666.91267%2C41.6821178%201688.37246%2C41.0532795%20C1716.69282%2C40.2204931%201744.6506%2C43.619615%201773.24855%2C42.6112072%20C1784.38634%2C42.2146436%201794.65735%2C42.2769584%201805.87446%2C41.9427128%20C1812.72637%2C41.7401925%201826.82354%2C37.8899104%201833.19445%2C41.7355928%20C1830.74413%2C40.5532857%201809.87188%2C42.9634199%201806.91119%2C43.007774%20C1802.40736%2C43.0757567%201774.84047%2C41.2968804%201772.97096%2C43.9028752%20C1773.75842%2C42.9511207%201780.35838%2C45.2851847%201780.87958%2C45.5117915%20C1778.69848%2C45.8120458%201772.84632%2C46.9054304%201771.03345%2C46.1236326%20C1773.10692%2C47.1433698%201775.70725%2C47.6305781%201778.57384%2C47.8231936%20C1777.11789%2C48.0667977%201775.78656%2C48.2480838%201774.65919%2C48.3217312%20C1778.61916%2C48.4520319%201784.78857%2C47.896841%201785.87063%2C47.7778728%20C1789.12115%2C47.5205176%201792.09542%2C47.2079102%201795.01168%2C46.8564214%20C1795.04889%2C46.855644%201795.08563%2C46.8549769%201795.1219%2C46.8544226%20C1795.52413%2C46.8034372%201795.92069%2C46.7581133%201796.32292%2C46.7071278%20C1796.32006%2C46.704367%201796.3172%2C46.7016131%201796.31433%2C46.6988662%20C1801.05161%2C46.1266562%201804.63123%2C45.7127264%201807.56269%2C45.6760836%20C1816.07182%2C45.5684448%201823.86714%2C44.8829564%201832.15534%2C45.9423497%20C1812.94463%2C52.1060906%201788.23867%2C49.8173473%201768.10454%2C50.6218071%20C1750.82%2C51.3129634%201733.42783%2C51.2846367%201716.06964%2C52.0041165%20C1687.89658%2C53.1711485%201659.6782%2C52.751923%201631.45415%2C53.8792989%20C1621.39275%2C54.2815304%201611.1104%2C54.2588685%201600.99801%2C54.7517414%20C1586.22185%2C55.4696336%201565.7152%2C59.9270009%201551.53281%2C55.8158733%20C1553.35642%2C56.2053222%201564.79691%2C55.867404%201572.20178%2C55.0236722%20C1564.01556%2C55.3012676%201550.47572%2C53.6980128%201546.82733%2C53.9359523%20C1543.71147%2C54.1398971%201527.22572%2C55.9017761%201532.36972%2C54.428822%20C1516.43917%2C51.7945006%201497.50039%2C55.1652991%201481.32057%2C55.1426371%20C1464.4156%2C55.1199751%201448.07715%2C56.6325821%201431.22883%2C56.6552441%20C1415.31528%2C56.677906%201399.62832%2C56.9101808%201383.69777%2C57.295415%20C1362.48725%2C57.8109499%201341.28239%2C58.3151522%201320.07186%2C58.9043345%20C1308.48652%2C59.221586%201296.90684%2C59.5614995%201285.33283%2C59.918407%20C1282.77782%2C59.9977223%201264.04299%2C58.8816757%201260.0207%2C60.0600371%20C1263.74274%2C58.2698315%201275.10147%2C58.6550657%201278.65355%2C57.7882879%20C1275.44138%2C51.7095238%201220.115%2C56.802542%201214.05323%2C57.3520683%20C1195.13712%2C59.0686266%201176.95181%2C59.5728289%201158.29629%2C59.2045919%20C1094.95365%2C57.9469153%201030.71024%2C60.3659561%20967.140982%2C62.6660287%20C935.058933%2C63.827396%20902.801259%2C63.9803555%20870.628565%2C65.5779424%20C856.289932%2C66.2860928%20842.268551%2C66.4220582%20827.873268%2C67.2095207%20C822.271511%2C67.5153781%20782.53931%2C70.4375093%20781.64574%2C67.6813969%20C781.649335%2C67.6808338%20781.652932%2C67.6802671%20781.656528%2C67.6796966%20C781.657397%2C67.6794552%20781.658215%2C67.6792125%20781.658982%2C67.6789686%20Z%20M222.211998%2C79.1291128%20C230.556843%2C76.3531612%20242.159181%2C76.3248346%20251.076211%2C75.865953%20C251.32548%2C75.888615%20224.614044%2C79.3840463%20222.211998%2C79.1291128%20Z%20M270.462541%2C74.5459615%20C275.527236%2C73.554551%20280.875188%2C73.3845942%20285.973871%2C73.8151492%20C281.453038%2C75.2767707%20275.181655%2C75.1578026%20270.462541%2C74.5459615%20Z%20M630.33896%2C61.8219065%20C631.234061%2C64.0709938%20641.374777%2C60.7795105%20642.836398%2C61.2383921%20C641.408768%2C60.6718718%20637.902007%2C61.0741033%20636.525363%2C60.9098112%20C636.16279%2C60.8984787%20630.106685%2C61.2440568%20630.33896%2C61.8219065%20Z%20M648.767871%2C60.8701552%20C648.78021%2C60.8621761%20648.79264%2C60.8542326%20648.805162%2C60.8463244%20C648.792452%2C60.8541827%20648.78002%2C60.8621261%20648.767871%2C60.8701552%20Z%20M663.010194%2C60.4169383%20C668.108874%2C60.2583173%20674.346262%2C60.9777971%20679.541255%2C59.8107651%20C677.184532%2C59.9070713%20673.655109%2C59.3405509%20672.510739%2C59.2045856%20C667.472392%2C59.5208944%20653.00677%2C58.1927791%20648.805162%2C60.8463244%20C650.837209%2C59.5899985%20659.99815%2C60.5070195%20663.010194%2C60.4169383%20Z%20M802.10228%2C55.4655533%20C803.495919%2C55.5788567%20803.252315%2C55.7091542%20801.3828%2C55.8621169%20C799.983494%2C55.7601429%20800.227098%2C55.6241775%20802.10228%2C55.4655533%20Z%20M814.922635%2C54.6327701%20C814.895522%2C54.6377748%20814.868391%2C54.6428025%20814.844369%2C54.6450004%20C814.870457%2C54.6417381%20814.896546%2C54.6377873%20814.922635%2C54.6327701%20Z%20M846.755412%2C53.7376657%20C842.602819%2C53.4940615%20837.957353%2C53.669683%20833.850081%2C54.3948307%20C836.75633%2C55.001007%20839.940174%2C54.2418712%20842.903076%2C54.6780908%20C844.183409%2C54.366504%20845.469412%2C54.0492525%20846.755412%2C53.7376657%20Z%20M857.049087%2C53.7320042%20C855.060598%2C54.1568944%20853.208078%2C54.3778366%20851.752124%2C53.4884%20C853.995544%2C53.0351831%20855.457165%2C53.5337208%20857.049087%2C53.7320042%20Z%20M812.114812%2C65.4419802%20C811.063208%2C65.4618083%20810.02506%2C65.569447%20810.039223%2C65.9065265%20C810.594414%2C65.9745092%20811.557499%2C65.8300468%20812.429232%2C65.6905414%20L812.114812%2C65.4419802%20Z%20M832.654715%2C64.7055%20C831.272406%2C63.7367514%20821.012722%2C64.0879942%20819.913673%2C65.362665%20C819.709728%2C65.7252372%20828.303842%2C65.4533096%20829.091305%2C65.5552837%20C830.898504%2C66.2407689%20832.08253%2C65.9575088%20832.654715%2C64.7055%20Z%20M860.640828%2C63.7084247%20C855.666778%2C62.943621%20842.835091%2C62.47341%20838.302928%2C64.6941706%20C841.061882%2C63.4081705%20849.089476%2C64.4335724%20852.335639%2C64.869792%20C855.258882%2C64.9717693%20857.847882%2C64.4788931%20860.640828%2C63.7084247%20Z%20M1069.28463%2C52.4686596%20C1068.54815%2C52.8765558%201066.06113%2C51.8171625%201064.93942%2C52.4856537%20C1065.43796%2C53.0691713%201068.82008%2C52.7802464%201069.28463%2C52.4686596%20Z%20M1116.06222%2C51.2619684%20C1107.09986%2C48.7806096%201091.39592%2C50.185581%201082.21262%2C51.188321%20C1082.85279%2C52.3043676%201082.15597%2C52.7349225%201080.1165%2C52.4743243%20C1081.65176%2C54.4571455%201113.33158%2C53.3920875%201116.06222%2C51.2619684%20Z%20M1141.49332%2C50.3158817%20C1140.08269%2C49.3924539%201128.42936%2C51.7265179%201130.46884%2C51.8964746%20C1131.13733%2C51.8738126%201141.66328%2C50.4291852%201141.49332%2C50.3158817%20Z%20M1198.10004%2C49.3357942%20C1197.69781%2C47.5965771%201186.67899%2C48.2820688%201185.7329%2C49.5850662%20C1186.89427%2C49.8060115%201188.05564%2C50.0269537%201189.217%2C50.247899%20C1189.97048%2C50.219566%201198.28699%2C50.1345892%201198.10004%2C49.3357942%20Z%20M1226.14281%2C48.3783781%20C1226.20512%2C49.2224939%201234.58962%2C49.1545112%201235.38275%2C49.3074707%20C1239.18977%2C48.6389763%201225.88787%2C45.8063747%201226.14281%2C48.3783781%20Z%20M1261.85625%2C47.7212131%20C1257.18246%2C46.7637939%201249.86302%2C46.8884299%201245.33085%2C47.9025025%20C1245.26287%2C47.9081672%201241.0253%2C48.4860201%201242.06203%2C48.831595%20C1246.50355%2C50.32154%201257.59602%2C49.5284129%201261.85625%2C47.7212131%20Z%20M1279.93392%2C47.1150336%20C1276.73308%2C45.9423369%201275.41876%2C47.188681%201272.49551%2C47.8515075%20C1273.19233%2C49.9476352%201281.42954%2C46.7354641%201279.93392%2C47.1150336%20Z%20M1299.82444%2C47.2056719%20C1297.85295%2C47.2396632%201297.52437%2C47.1320245%201298.8387%2C46.877091%20C1300.78753%2C46.8374349%201301.11611%2C46.9450737%201299.82444%2C47.2056719%20Z%20M1306.13548%2C55.2162717%20C1300.50427%2C55.068977%201293.92697%2C54.0888958%201288.42605%2C55.8451101%20C1288.42605%2C57.340723%201294.39718%2C56.0830463%201295.12232%2C55.9300868%20C1298.70273%2C55.9130927%201302.81567%2C56.5079397%201306.13548%2C55.2162717%20Z%20M1328.38273%2C54.8536963%20C1326.4509%2C54.8933523%201326.12232%2C54.7857136%201327.39699%2C54.5307801%20C1329.38548%2C54.5081181%201329.71406%2C54.6157569%201328.38273%2C54.8536963%20Z%20M1341.22009%2C54.7233956%20C1339.36757%2C54.8197049%201339.12963%2C54.9443409%201340.51194%2C55.0973004%20C1342.39279%2C54.9896617%201342.63072%2C54.8650257%201341.22009%2C54.7233956%20Z%20M1359.649%2C45.9933191%20C1357.91545%2C43.5062925%201350.39772%2C44.8319486%201347.7634%2C45.4551223%20C1334.16691%2C45.7893679%201319.14846%2C44.4807058%201305.79557%2C46.8317638%20C1313.76651%2C48.4633421%201322.32664%2C47.3926195%201330.36556%2C46.9507352%20C1340.09272%2C46.4125415%201350.08047%2C47.919487%201359.649%2C45.9933191%20Z%20M1366.99677%2C45.5797615%20C1365.25189%2C45.7043975%201362.42495%2C45.8516922%201361.80178%2C45.17753%20C1361.49586%2C44.8432844%201364.61172%2C45.2908366%201366.99677%2C45.5797615%20Z%20M1367.58595%2C45.4784935%20C1367.44432%2C45.4905322%201367.38767%2C45.5146095%201367.38767%2C45.5457669%20C1367.59162%2C45.5287712%201367.77999%2C45.5146087%201367.93649%2C45.503987%20L1367.58595%2C45.4784935%20Z%20M1368.52142%2C45.8382386%20C1368.93003%2C45.8757704%201369.34783%2C45.8658556%201369.58577%2C45.7553829%20C1369.51496%2C45.7950405%201369.26427%2C45.7964575%201368.89745%2C45.7723806%20L1368.52142%2C45.8382386%20Z%20M1378.44616%2C46.2765857%20C1374.57115%2C44.384406%201395.07353%2C45.1095537%201394.96022%2C45.166207%20C1390.85295%2C47.2906582%201382.94999%2C46.1689469%201378.44616%2C46.2765857%20Z%20M1397.96845%2C53.4487376%20C1396.74476%2C53.2277923%201395.51542%2C53.0125148%201394.29173%2C52.7915694%20C1393.90083%2C52.7689107%201387.81074%2C52.7859048%201387.98636%2C53.4713932%20C1388.34326%2C54.8820325%201396.94871%2C53.8169746%201397.96845%2C53.4487376%20Z%20M1401.81512%2C53.5790319%20C1400.42714%2C53.4260725%201400.67075%2C53.3014365%201402.54593%2C53.2051271%20C1403.95656%2C53.3580866%201403.7073%2C53.4827226%201401.81512%2C53.5790319%20Z%20M1419.77948%2C52.1570664%20C1424.19834%2C53.312769%201414.26724%2C54.825376%201413.72904%2C53.3014365%20C1413.47411%2C52.5762888%201419.06567%2C52.1457338%201419.77948%2C52.1570664%20Z%20M1421.79629%2C44.7186548%20C1424.62322%2C44.1238078%201427.69943%2C43.5742815%201430.58302%2C44.1804579%20C1424.69687%2C45.653412%201420.16471%2C45.5004494%201414.19925%2C44.9056024%20C1416.72593%2C44.8432908%201419.26961%2C44.7129901%201421.79629%2C44.7186548%20Z%20M1434.20309%2C53.1541417%20C1432.63949%2C53.7773153%201424.70254%2C54.7573933%201423.91508%2C52.8595489%20C1427.41618%2C52.0041038%201431.29118%2C51.261962%201434.20309%2C53.1541417%20Z%20M1439.1998%2C45.0472357%20C1437.59088%2C44.7923022%201436.20291%2C44.2654379%201433.90284%2C44.6450074%20C1435.35313%2C45.591094%201437.18299%2C45.4041432%201439.1998%2C45.0472357%20Z%20M1449.07992%2C52.3723439%20C1448.40576%2C51.9247917%201447.63529%2C51.8284855%201446.77418%2C52.0720896%20C1446.17603%2C52.008352%201445.5906%2C52.054937%201445.0179%2C52.2045006%20C1445.99402%2C52.0640768%201448.05326%2C52.8856718%201449.07992%2C52.3723439%20Z%20M1444.7517%2C52.2817024%20C1444.84013%2C52.2534976%201444.92886%2C52.2277544%201445.0179%2C52.2045006%20C1444.91676%2C52.2190518%201444.82724%2C52.2439327%201444.7517%2C52.2817024%20Z%20M1460.89329%2C52.4842333%20C1460.61286%2C52.5281383%201460.35084%2C52.5904554%201460.16673%2C52.6726013%20C1460.42733%2C52.627279%201460.68792%2C52.5833736%201460.94852%2C52.5394683%20L1460.89329%2C52.4842333%20Z%20M1461.90028%2C52.3780118%20C1462.04191%2C52.3553498%201462.18354%2C52.332691%201462.31951%2C52.3100291%20C1462.2062%2C52.3156938%201462.13822%2C52.3156938%201462.04191%2C52.3156938%20C1461.99092%2C52.332691%201461.95127%2C52.3553498%201461.90028%2C52.3780118%20Z%20M1460.96552%2C52.8142346%20C1461.20346%2C52.6669398%201461.53204%2C52.5423038%201461.83796%2C52.4120063%20C1462.55178%2C52.4006769%201462.80671%2C52.542307%201460.96552%2C52.8142346%20Z%20M1467.07828%2C51.9134655%20C1465.73562%2C51.3582777%201463.70748%2C51.6755292%201462.17221%2C52.2533758%20C1463.91709%2C52.1570664%201467.28789%2C51.9984423%201467.07828%2C51.9134655%20Z%20M1474.58467%2C44.4750538%20C1470.31877%2C46.2199356%201458.38785%2C39.8239199%201454.46753%2C43.6422674%20C1454.33156%2C43.7612355%201462.59143%2C44.673334%201463.71881%2C44.8602849%20C1465.9339%2C44.820632%201472.22794%2C45.5571091%201474.58467%2C44.4750538%20Z%20M1497.75535%2C44.0048397%20C1497.20016%2C44.2824351%201495.30232%2C43.9085303%201495.58558%2C43.7669034%20C1496.76961%2C43.8802069%201497.80067%2C43.9878456%201497.75535%2C44.0048397%20Z%20M1494.62249%2C43.4836401%20C1494.26558%2C43.4213253%201493.89168%2C43.443984%201493.54044%2C43.34201%20C1493.47812%2C43.2513653%201494.07863%2C43.3590041%201494.62249%2C43.4836401%20Z%20M1493.21752%2C51.5225634%20C1496.35038%2C52.6329453%201501.28477%2C52.2760377%201504.5366%2C51.5282313%20C1506.66519%2C51.4885972%201515.64453%2C50.1648091%201518.02036%2C50.937383%20C1510.5654%2C48.511081%201500.40502%2C53.7881278%201493.21752%2C51.5225634%20Z%20M1528.69869%2C43.3873243%20C1526.56858%2C41.6084513%201520.58046%2C42.7358272%201518.12176%2C42.9341074%20C1520.15557%2C44.7809632%201526.50626%2C43.9765066%201528.69869%2C43.3873243%20Z%20M1533.66708%2C42.9850961%20C1533.25352%2C42.163639%201542.58411%2C41.7670754%201543.09964%2C41.8010668%20C1545.15611%2C44.3730702%201534.33557%2C44.3107522%201533.66708%2C42.9850961%20Z%20M1771.3847%2C45.217186%20C1769.99107%2C45.0415646%201770.229%2C44.9225965%201772.09852%2C44.8716079%20C1773.50916%2C45.0358999%201773.27122%2C45.1492033%201771.3847%2C45.217186%20Z%20M1700.40658%2C47.2806159%20C1700.2049%2C47.3486536%201700.02237%2C47.434455%201699.86151%2C47.5399175%20C1700.03509%2C47.4491892%201700.21691%2C47.3628096%201700.40658%2C47.2806159%20Z%20M1700.40658%2C47.2806159%20C1703.62835%2C46.1937269%201711.7367%2C49.6400647%201714.46641%2C49.8853108%20C1720.58483%2C50.4405018%201726.70891%2C49.4207646%201732.79334%2C49.2678051%20C1740.38471%2C49.0808543%201748.70123%2C49.5284065%201756.37192%2C48.5313312%20C1748.44063%2C48.1291029%201739.05905%2C47.0923684%201735.71658%2C47.1150304%20C1726.73765%2C47.1702462%201707.72553%2C44.1089367%201700.40658%2C47.2806159%20Z%20M1633.26703%2C48.6842875%20C1635.80503%2C48.4973367%201639.06819%2C47.9761371%201641.18132%2C49.2394784%20C1639.12485%2C49.7153541%201634.09981%2C51.1203255%201633.26703%2C48.6842875%20Z%20M1612.78165%2C49.086519%20C1618.20324%2C47.6532209%201625.30741%2C48.2877239%201630.81399%2C49.3924379%20C1624.89952%2C50.1175856%201618.62247%2C49.9872849%201612.78165%2C49.086519%20Z%20M1612.80997%2C53.0464966%20C1610.62886%2C53.0691585%201606.59524%2C53.7206556%201604.37448%2C52.9728492%20C1604.41413%2C52.9785139%201615.06472%2C52.7405744%201612.80997%2C53.0464966%20Z%20M1602.7719%2C49.4505085%20C1601.72597%2C49.4250177%201600.68926%2C49.4887543%201600.68643%2C49.8286639%20C1601.25862%2C49.9334701%201602.20612%2C49.8272481%201603.0651%2C49.7203172%20L1602.7719%2C49.4505085%20Z%20M1590.07554%2C53.175834%20C1588.5137%2C53.3067398%201587.04807%2C53.3703763%201586.46677%2C53.1824556%20C1587.55577%2C53.4776071%201588.81811%2C53.5080034%201590.15445%2C53.4155468%20L1590.07554%2C53.175834%20Z%20M1556.73578%2C50.0382671%20C1557.63655%2C49.9646197%201558.65062%2C49.8739751%201559.67602%2C49.8173218%20C1555.4951%2C50.2705387%201550.58336%2C52.0210883%201547.05394%2C50.5594667%20C1548.84415%2C51.0580075%201555.03622%2C50.0722617%201556.73578%2C50.0382671%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--31{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20359%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-14888.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2232%22%20transform%3D%22translate(0.000000%2C%2014888.000000)%22%3E%20%3Cpath%20d%3D%22M1900.8211%2C32.686487%20C1892.65951%2C38.3317439%201883.53662%2C44.278583%201875.10172%2C48.9813931%20C1867.47733%2C53.2318324%201863.6133%2C58.0288893%201856.51667%2C62.9578875%20C1850.5981%2C67.0669566%201845.51832%2C72.0619254%201839.63745%2C76.2558124%20C1826.20758%2C85.8499209%201812.18397%2C96.3016583%201797.91532%2C103.822385%20C1792.88271%2C106.470629%201787.31292%2C108.412054%201782.23319%2C111.418398%20C1776.27683%2C114.943268%201777.26636%2C117.742329%201770.57502%2C120.965486%20C1769.80221%2C120.070157%201770.34883%2C119.278504%201772.2243%2C118.581093%20C1754.14817%2C125.083979%201736.93909%2C136.327369%201719.43785%2C145.431401%20C1705.64986%2C152.612846%201691.67337%2C157.965944%201677.53667%2C163.809113%20C1664.29529%2C169.284729%201652.34506%2C177.210703%201638.75498%2C180.801425%20C1631.62065%2C182.686319%201625.59842%2C185.777547%201619.03899%2C188.915893%20C1615.41999%2C190.649993%201611.86696%2C191.243734%201608.35164%2C193.401939%20C1605.42063%2C195.192585%201599.07796%2C197.567555%201597.11767%2C200.347772%20C1596.79723%2C200.809571%201608.40818%2C196.653384%201609.63337%2C196.229284%20C1614.25136%2C194.636549%201619.30287%2C192.883597%201623.87374%2C190.725392%20C1632.73274%2C186.5315%201641.19592%2C182.337613%201649.94183%2C178.190849%20C1668.75307%2C169.265876%201689.19474%2C163.72429%201707.88347%2C153.969964%20C1717.04405%2C149.191759%201725.05485%2C144.008302%201734.54529%2C140.210239%20C1750.88732%2C133.669659%201766.94661%2C129.59829%201783.26036%2C121.766557%20C1788.67001%2C119.165405%201794.78649%2C116.912953%201799.838%2C113.68036%20C1802.39203%2C112.040502%201804.77643%2C108.55345%201807.41528%2C107.281145%20C1808.80068%2C106.61201%201812.98514%2C106.329274%201814.60615%2C105.763804%20C1818.80946%2C104.284164%201822.5604%2C101.456823%201826.21709%2C99.176106%20C1831.40997%2C95.9340894%201842.72876%2C84.5776051%201849.54265%2C86.6604105%20C1851.32387%2C87.4991868%201840.05221%2C93.4271787%201839.21343%2C93.9172493%20C1835.02897%2C96.3487605%201830.69371%2C99.2514949%201826.31133%2C101.645312%20C1823.45176%2C103.209138%201797.96891%2C115.177983%201795.35997%2C118.01287%20C1796.78101%2C116.983113%201802.95341%2C116.98229%201803.768%2C117.318201%20C1802.42973%2C118.345465%201796.09649%2C122.76554%201794.89958%2C122.586476%20C1796.93527%2C123.067123%201801.75117%2C120.993741%201806.69902%2C118.430283%20C1801.56268%2C121.81367%201796.7939%2C125.234751%201796.30383%2C124.791799%20C1797.51958%2C125.894457%201808.64045%2C119.542366%201810.1201%2C118.515101%20C1811.08139%2C117.478413%201819.34665%2C112.294956%201819.74248%2C112.587114%20C1818.23457%2C111.965102%201819.45975%2C111.248844%201820.21371%2C110.824744%20C1823.53112%2C108.949274%201826.75429%2C106.470639%201830.21307%2C104.576322%20C1838.13905%2C100.222218%201843.31308%2C95.9058132%201851.57834%2C93.3517845%20C1848.76043%2C97.4514299%201839.43963%2C104.114528%201835.30229%2C107.563885%20C1829.46855%2C112.417489%201822.10804%2C116.290947%201815.49206%2C119.966487%20C1807.24565%2C124.546779%201798.98039%2C129.259013%201790.82822%2C133.792182%20C1775.73022%2C142.179961%201759.58611%2C148.541477%201744.41272%2C156.966956%20C1718.39175%2C171.414663%201690.75921%2C182.365895%201663.92775%2C195.164325%20C1654.61638%2C199.593824%201644.4191%2C202.30807%201635.24909%2C207.020304%20C1629.07606%2C210.19635%201622.95958%2C213.06139%201616.44727%2C215.78506%20C1610.57583%2C218.235423%201604.73266%2C220.742334%201598.79524%2C223.03248%20C1598.10726%2C223.305786%201588.35293%2C226.444138%201588.56027%2C226.114279%20C1591.66092%2C221.204134%201610.1423%2C219.686793%201613.70475%2C214.003836%20C1610.43446%2C216.670959%201589.37077%2C222.664922%201586.35494%2C223.824133%20C1580.51177%2C226.067156%201574.31048%2C232.400395%201567.18558%2C231.966872%20C1567.76047%2C231.439101%201568.33536%2C230.920754%201568.91025%2C230.392984%20C1562.94456%2C230.722843%201555.70657%2C235.086371%201549.81628%2C236.773352%20C1544.83074%2C238.20587%201539.45879%2C240.232128%201534.85022%2C242.069903%20C1526.65094%2C245.330772%201518.13122%2C248.045019%201510.06387%2C250.966606%20C1486.06918%2C259.646544%201462.42318%2C269.193529%201437.42007%2C275.027274%20C1419.70206%2C279.164614%201402.07831%2C284.432894%201384.4734%2C289.616351%20C1376.08563%2C292.076139%201367.73555%2C294.696143%201359.31007%2C297.01456%20C1348.33998%2C300.039812%201337.19084%2C302.518447%201326.11709%2C305.147875%20C1324.0814%2C305.628522%201312.20657%2C307.711328%201303.38526%2C309.577374%20C1310.63268%2C306.74061%201317.40887%2C301.029383%201304.71411%2C302.999094%20C1294.36604%2C304.610676%201283.59388%2C306.976216%201273.54739%2C309.398304%20C1262.04011%2C312.178526%201250.91924%2C314.704284%201239.45909%2C317.607019%20C1234.92592%2C318.756806%201230.95822%2C320.151624%201225.9821%2C320.538029%20C1218.49907%2C321.112923%201214.14496%2C324.091052%201207.48186%2C324.722493%20C1176.52248%2C327.64408%201143.17871%2C333.072572%201111.40883%2C337.370129%20C1103.41688%2C338.453941%201097.00824%2C341.243581%201088.70528%2C341.337828%20C1084.15326%2C341.394381%201080.66621%2C342.412222%201076.34037%2C342.968263%20C1071.61871%2C343.571433%201067.15151%2C341.846757%201062.59007%2C342.129492%20C1044.32544%2C343.279279%201026.38126%2C348.726624%201007.69253%2C348.830289%20C990.511728%2C348.915107%20972.473293%2C351.648201%20955.330187%2C353.071294%20C941.240604%2C354.239929%20926.293398%2C353.467124%20912.439426%2C354.598064%20C896.766537%2C355.879793%20880.471631%2C356.285046%20865.024925%2C357.613898%20C862.150461%2C357.858933%20795.048243%2C359.772103%20794.313137%2C355.681881%20C799.27983%2C355.540511%20814.264731%2C357.924904%20818.128765%2C354.579217%20C819.759194%2C353.165547%20811.003862%2C354.221087%20811.211203%2C354.221087%20C805.170122%2C354.287058%20798.563566%2C354.051446%20792.371692%2C353.900652%20C786.424852%2C353.749859%20780.336643%2C353.476553%20774.220163%2C353.646194%20C763.645913%2C353.938352%20753.344969%2C353.56137%20742.836685%2C354.456699%20C729.350267%2C355.606487%20715.9204%2C352.552958%20702.471682%2C352.46814%20C690.172751%2C352.383323%20680.965042%2C352.609511%20668.939423%2C351.629364%20C658.110709%2C350.752888%20647.545877%2C349.612529%20636.641769%2C349.989506%20C623.720821%2C350.441882%20611.129731%2C347.793606%20598.274753%2C346.116049%20C577.908473%2C343.458349%20557.38198%2C341.168203%20536.912034%2C339.613168%20C525.499003%2C338.746116%20514.4441%2C337.077987%20503.040493%2C336.20151%20C494.954301%2C335.579493%20471.044427%2C336.380575%20466.511258%2C330.40546%20C474.031984%2C328.935243%20485.19998%2C331.696612%20492.767831%2C332.752153%20C498.601576%2C333.562658%20503.898122%2C334.288341%20509.618778%2C334.910358%20C517.98771%2C335.824534%20526.243543%2C336.484246%20534.452257%2C337.709427%20C560.803072%2C341.620579%20587.16331%2C342.63842%20613.796859%2C345.003966%20C625.539744%2C346.040654%20637.800975%2C344.824901%20649.609836%2C346.728642%20C658.214374%2C348.104612%20667.770783%2C347.162166%20676.488415%2C347.369507%20C698.230666%2C347.887853%20718.82313%2C349.801023%20740.706746%2C349.216706%20C763.796696%2C348.604117%20785.812259%2C348.792606%20808.534651%2C348.161165%20C816.404084%2C347.934977%20823.510134%2C348.114041%20831.407837%2C348.4062%20C841.671081%2C348.792606%20852.424401%2C347.331812%20862.734768%2C347.642818%20C897.614727%2C348.698359%20932.570085%2C342.770372%20967.063638%2C341.941019%20C980.088251%2C341.630013%20992.57567%2C341.875049%201004.46935%2C337.860221%20C1010.17115%2C335.937628%201018.86051%2C335.824534%201025.53304%2C334.938634%20C1037.62463%2C333.33647%201049.28269%2C332.836976%201061.84551%2C332.365753%20C1069.51703%2C332.083018%201079.85567%2C331.272518%201086.67899%2C327.766613%20C1070.98725%2C325.391649%201055.64421%2C330.085036%201039.9242%2C330.838994%20C1019.17151%2C331.828564%20997.335017%2C332.233817%20976.610612%2C335.494681%20C961.597435%2C337.860221%20945.915117%2C336.964898%20930.553234%2C338.19008%20C912.213217%2C339.650873%20893.562194%2C339.386991%20875.193901%2C340.027855%20C820.352914%2C341.941025%20764.918192%2C342.563042%20709.851022%2C341.111672%20C681.634162%2C340.367137%20652.851836%2C339.405843%20624.484182%2C337.304185%20C598.246461%2C335.353321%20572.291471%2C331.743752%20545.978356%2C329.73634%20C531.766255%2C328.652529%20516.281849%2C327.776053%20502.116872%2C325.551877%20C433.52559%2C314.77971%20364.547902%2C303.112215%20296.578632%2C290.624795%20C268.946088%2C285.545008%20241.671674%2C279.503922%20214.265319%2C273.151831%20C203.775887%2C270.720314%20127.371714%2C250.551951%20127.82409%2C247.583245%20C136.485176%2C246.584252%20149.057418%2C252.276632%20157.548863%2C254.321738%20C163.005631%2C255.631743%20167.953477%2C257.52606%20173.259451%2C258.97743%20C182.627372%2C261.531458%20192.19321%2C263.520022%20201.63653%2C265.791321%20C226.290939%2C271.719308%20250.719165%2C278.542623%20276.005015%2C283.19831%20C361.30588%2C298.918328%20446.587898%2C317.710715%20533.085673%2C324.288995%20C568.832684%2C327.012665%20604.108472%2C332.997204%20640.072242%2C334.165839%20C672.077737%2C335.202533%20704.790067%2C339.754549%20736.852109%2C338.284332%20C751.346939%2C337.615191%20767.613575%2C340.037279%20782.32517%2C337.012027%20C766.963287%2C333.430728%20750.112339%2C336.729291%20734.788151%2C336.13555%20C720.453532%2C335.579509%20705.892726%2C335.937639%20691.463866%2C334.486269%20C682.161916%2C333.553245%20672.662049%2C334.476845%20663.331823%2C333.826557%20C652.201527%2C333.044328%20635.671009%2C334.787856%20624.634954%2C331.54584%20C627.179565%2C330.151017%20633.060433%2C333.129151%20634.907627%2C330.810734%20C636.472091%2C329.076634%20613.061705%2C328.11534%20610.5171%2C328.190734%20C596.634858%2C328.586558%20583.101322%2C325.014688%20569.492391%2C323.591595%20C548.937627%2C321.452237%20527.600629%2C320.161084%20507.281477%2C317.607056%20C488.01786%2C315.184968%20468.405543%2C314.063457%20449.924161%2C309.209853%20C432.234432%2C304.56359%20413.197009%2C302.72582%20394.951238%2C300.369703%20C377.082445%2C298.060709%20360.674439%2C297.080563%20343.625575%2C294.705599%20C326.378798%2C292.302358%20309.838857%2C284.527173%20292.667474%2C282.661127%20C252.933912%2C278.344722%20216.923018%2C262.172333%20177.736074%2C254.632759%20C166.83196%2C252.540525%20156.003246%2C248.035627%20145.249926%2C245.000946%20C137.484164%2C242.805041%20128.549767%2C242.418636%20120.567241%2C239.958848%20C114.846926%2C238.196576%2065.1572114%2C223.100248%2064.783873%2C223.899413%20C65.8783189%2C221.543857%2097.6847219%2C232.061134%20102.491106%2C231.533375%20C101.199954%2C231.222363%20100.464848%2C230.524952%20100.266936%2C229.44114%20C103.801111%2C227.330059%20114.535579%2C233.927186%20118.164001%2C234.897909%20C126.919333%2C237.235173%20135.750059%2C239.751507%20144.37345%2C242.069925%20C152.22403%2C244.190424%20160.583533%2C245.066901%20168.63203%2C246.998917%20C176.011387%2C248.770717%20190.892623%2C255.707126%20197.725362%2C252.521657%20C197.018527%2C252.220074%20196.453057%2C251.767703%20196.010104%2C251.145686%20C201.06162%2C249.637769%20207.969753%2C255.25475%20213.266304%2C254.651585%20C208.054571%2C250.061869%20197.018516%2C248.242946%20190.317718%2C247.206253%20C182.570804%2C246.009347%20178.405188%2C245.820859%20170.460361%2C243.822871%20C157.464018%2C240.552584%20143.864511%2C236.62258%20130.604286%2C234.247616%20C124.186223%2C233.097828%20117.485426%2C232.570058%20111.350098%2C231.118688%20C104.027289%2C229.384583%2097.4961323%2C226.133142%2090.4843287%2C223.927819%20C79.9289262%2C220.619827%2069.0719361%2C219.328674%2058.0735811%2C216.039534%20C49.7800486%2C213.5609%2041.4865162%2C211.072842%2033.1929838%2C208.594207%20C32.0055017%2C208.245501%2012.2329673%2C201.271392%2011.7805912%2C201.704916%20C13.5052672%2C199.688081%2028.7446326%2C205.267367%2031.7793137%2C205.012909%20C27.7644914%2C202.044203%2018.8018237%2C199.640963%2013.9387961%2C198.236717%20C11.450738%2C197.520458%208.4537567%2C197.82204%206.0882109%2C196.813623%20C6.13570382%2C196.827195%201.78298474%2C194.24936%200%2C193%20L0%2C0%20L1920%2C0%20L1920%2C14%20L1912.0134%2C22.7126546%20C1914.33605%2C21.6412272%201915.88036%2C20.9553808%201915.86254%2C21.0189914%20C1915.54441%2C22.4603263%201912.71264%2C23.4678119%201910.47618%2C24.3896259%20L1909%2C26%20L1906.11826%2C27.5886524%20C1904.57214%2C29.278289%201903.02294%2C31.1631554%201900.8211%2C32.686487%20Z%20M258.347062%2C249.410415%20L258.357668%2C249.452828%20C259.191734%2C249.623647%20260.0258%2C249.793288%20260.859865%2C249.948791%20C260.021086%2C249.755588%20259.182307%2C249.576522%20258.347062%2C249.410415%20Z%20M258.347062%2C249.410415%20C257.511818%2C249.244308%20256.680108%2C249.09116%20255.855467%2C248.949792%20C256.689534%2C249.11001%20257.523601%2C249.282008%20258.357668%2C249.452828%20L258.347062%2C249.410415%20Z%20M1795.35997%2C118.01287%20C1795.21741%2C118.167782%201795.14315%2C118.295419%201795.14461%2C118.392594%20C1795.14975%2C118.239621%201795.24525%2C118.102753%201795.41255%2C117.980784%20L1795.35997%2C118.01287%20Z%20M257.646188%2C237.19742%20C256.458706%2C236.565985%20255.2618%2C235.774332%20254.017771%2C235.265409%20C246.044668%2C233.738645%20234.923796%2C234.134468%20227.46904%2C230.666264%20C232.068179%2C233.974251%20240.616176%2C234.172168%20246.082368%2C235.340803%20C248.674097%2C235.896839%20255.384318%2C238.205838%20257.646188%2C237.19742%20Z%20M298.849978%2C245.754846%20C293.364934%2C242.371459%20287.09766%2C241.363042%20281.075426%2C240.656207%20C277.484704%2C240.24153%20272.6311%2C240.307501%20269.360807%2C238.064478%20C267.636131%2C237.753467%20262.443245%2C235.783755%20260.831663%2C236.820449%20C260.124828%2C237.367067%20276.777863%2C241.589224%20278.445992%2C241.985054%20C284.110107%2C243.323329%20292.714651%2C246.489952%20298.849978%2C245.754846%20Z%20M236.959483%2C247.554922%20C237.920777%2C247.35701%20238.759559%2C247.545498%20239.466388%2C248.148663%20C238.514518%2C248.356003%20237.675742%2C248.158091%20236.959483%2C247.554922%20Z%20M267.871743%2C265.46142%20C267.381667%2C262.652933%20253.113019%2C262.681203%20250.888843%2C261.559692%20C246.883445%2C260.277963%20241.935599%2C259.985799%20237.854806%2C259.147023%20C232.633655%2C258.07263%20226.818757%2C255.791912%20221.296018%2C256.527018%20C224.443788%2C258.402493%20267.947137%2C266.158832%20267.871743%2C265.46142%20Z%20M301.177814%2C259.721917%20C300.970473%2C259.844434%20281.556068%2C256.33853%20281.273333%2C256.055795%20C282.913191%2C257.723924%20287.785642%2C257.752195%20289.981542%2C258.873706%20C291.941835%2C259.486305%20299.321191%2C260.702063%20301.177814%2C259.721917%20Z%20M493.62547%2C288.287483%20C493.804535%2C288.174389%20492.890359%2C287.910506%20491.646325%2C287.59949%20C491.250501%2C287.63719%20492.296618%2C289.079136%20493.62547%2C288.287483%20Z%20M520.098792%2C291.067695%20C519.316562%2C290.577624%20518.468362%2C290.521072%20517.554192%2C290.88863%20C518.345845%2C291.35043%20519.194045%2C291.4164%20520.098792%2C291.067695%20Z%20M637.48998%2C330.584487%20C637.961203%2C333.71341%20649.402511%2C330.509093%20650.467475%2C331.206504%20C649.242293%2C330.235782%20645.726965%2C330.471393%20644.002289%2C329.858805%20C643.502795%2C329.745711%20637.292068%2C329.265064%20637.48998%2C330.584487%20Z%20M690.625132%2C333.08198%20C687.505633%2C332.742698%20684.404987%2C332.601333%20681.360882%2C331.63061%20C676.818289%2C331.526939%20660.089854%2C328.454564%20656.631073%2C331.357298%20C657.356756%2C330.735281%20670.089216%2C332.328016%20671.399215%2C332.422263%20C677.091596%2C332.846368%20685.102393%2C335.428673%20690.625132%2C333.08198%20Z%20M833.518935%2C335.94703%20C831.916776%2C335.824513%20829.824542%2C336.144942%20828.844396%2C336.173213%20C827.698865%2C336.200703%20820.948186%2C337.288632%20820.065023%2C337.028079%20C823.328993%2C338.364275%20829.941138%2C335.722246%20833.518935%2C335.94703%20Z%20M820.004245%2C337.002566%20C820.019599%2C337.012194%20820.039946%2C337.02068%20820.065023%2C337.028079%20C820.044635%2C337.019732%20820.024377%2C337.01123%20820.004245%2C337.002566%20Z%20M862.414365%2C336.182647%20C858.022561%2C335.852789%20853.338603%2C336.1261%20849.003346%2C336.917753%20C851.821263%2C337.973294%20855.468532%2C337.059118%20858.427814%2C337.747106%20C859.75666%2C337.219341%20861.085513%2C336.700994%20862.414365%2C336.182647%20Z%20M873.111138%2C336.154371%20C871.650344%2C334.759548%20870.010486%2C334.985736%20867.607246%2C335.758542%20C867.673216%2C336.050701%20867.739187%2C336.333436%20867.814581%2C336.616171%20C869.633509%2C337.096818%20871.405309%2C336.946024%20873.111138%2C336.154371%20Z%20M828.533406%2C354.145682%20C828.241247%2C353.957194%20824.075631%2C353.533094%20824.094483%2C354.541512%20C825.027506%2C354.777123%20828.816141%2C354.371871%20828.533406%2C354.145682%20Z%20M847.825298%2C353.966618%20C846.581269%2C352.515248%20835.375573%2C352.637766%20834.461397%2C354.249348%20C833.905356%2C355.728988%20843.179035%2C354.918488%20844.083782%2C355.1541%20C843.659682%2C355.1918%20848.852563%2C355.1918%20847.825298%2C353.966618%20Z%20M877.116547%2C352.760294%20C873.111148%2C351.789571%20857.117824%2C351.836694%20853.734438%2C354.305905%20C855.364872%2C353.212665%20865.967398%2C353.910076%20868.446033%2C354.692305%20C871.706902%2C354.852528%20874.19496%2C354.051446%20877.116547%2C352.760294%20Z%20M1142.46247%2C319.623864%20C1136.75124%2C317.918035%201128.70274%2C320.547458%201123.18%2C320.698252%20C1118.15676%2C320.839617%201112.21935%2C322.319258%201107.39402%2C323.846022%20C1105.20754%2C326.286956%201115.10324%2C320.406088%201105.47143%2C326.239833%20C1107.55424%2C329.48185%201121.57784%2C324.581128%201125.46073%2C323.864869%20C1129.0326%2C323.205163%201140.45506%2C322.922428%201142.46247%2C319.623864%20Z%20M1227.04708%2C305.901834%20C1226.34967%2C303.762481%201214.97433%2C305.392916%201214.28635%2C307.909245%20C1215.54922%2C308.126004%201216.82153%2C308.333345%201218.0844%2C308.550109%20C1218.85722%2C308.408744%201227.57485%2C307.513416%201227.04708%2C305.901834%20Z%20M1271.86984%2C295.685713%20C1272.39762%2C294.950607%201288.48519%2C294.639596%201291.97224%2C291.143121%20C1287.60871%2C290.577651%201278.69316%2C292.500244%201275.08359%2C294.611325%20C1274.41445%2C294.780966%201272.30337%2C294.960031%201271.86984%2C295.685713%20Z%20M1285.23374%2C234.162776%20C1289.17316%2C233.220324%201302.61245%2C232.899895%201303.41354%2C228.140538%20C1303.78035%2C227.021278%201281.84445%2C233.035886%201280.88517%2C233.078773%20C1282.76613%2C232.996382%201283.54848%2C234.087459%201285.23374%2C234.162776%20Z%20M1302.95174%2C289.314764%20C1304.21461%2C292.142104%201308.95512%2C287.57124%201310.34052%2C286.685341%20C1310.20857%2C286.402605%201310.07663%2C286.11987%201309.94469%2C285.837135%20C1305.11936%2C285.997353%201305.97699%2C287.524117%201302.95174%2C289.314764%20Z%20M1462.7813%2C186.540934%20C1468.81296%2C186.352446%201477.99239%2C184.476976%201482.55384%2C180.537543%20C1476.77663%2C180.471572%201467.72914%2C183.487406%201462.7813%2C186.540934%20Z%20M1425.23422%2C197.388501%20C1425.84681%2C197.586413%201426.44998%2C197.78433%201427.05314%2C197.982242%20C1428.99934%2C197.676408%201438.66449%2C194.709494%201439.69372%2C193.060441%20C1438.40779%2C195.083974%201425.72695%2C193.567509%201425.23422%2C197.388501%20Z%20M1336.69134%2C221.109887%20C1340.02759%2C224.474421%201345.32414%2C222.382187%201348.35883%2C219.413482%20C1355.59682%2C216.642688%201364.06941%2C215.747365%201371.43935%2C213.532613%20C1373.69179%2C212.854049%201391.94699%2C209.725126%201389.67569%2C206.784692%20C1388.34685%2C204.946922%201362.97617%2C213.438366%201359.21581%2C214.324266%20C1355.98322%2C215.087653%201336.08817%2C220.440752%201336.69134%2C221.109887%20Z%20M1340.19724%2C294.771537%20C1334.41061%2C295.619737%201326.97471%2C295.478373%201322.13053%2C299.229307%20C1322.84679%2C301.453483%201327.89831%2C298.739236%201329.08579%2C298.070101%20C1333.05349%2C296.59046%201336.9458%2C297.806219%201340.19724%2C294.771537%20Z%20M1391.13649%2C267.035324%20C1388.7521%2C263.944096%201381.37274%2C267.478271%201378.90353%2C269.193523%20C1373.36195%2C270.823958%201367.83921%2C272.47324%201362.60863%2C274.018851%20C1354.21142%2C276.497486%201344.44767%2C277.449356%201336.77616%2C281.247419%20C1345.8048%2C282.359507%201355.43661%2C278.542597%201363.81496%2C275.489068%20C1372.87187%2C272.181081%201382.78641%2C272.237628%201391.13649%2C267.035324%20Z%20M1422.66135%2C198.905841%20C1420.80472%2C200.668217%201409.1655%2C199.509006%201405.47111%2C203.043181%20C1406.78112%2C203.099728%201408.09112%2C203.146852%201409.39169%2C203.193975%20C1413.91544%2C201.855704%201419.11774%2C202.430593%201422.66135%2C198.905841%20Z%20M1410.29644%2C262.690648%20C1414.10393%2C261.569137%201424.02789%2C260.13662%201426.53481%2C256.687262%20C1426.77984%2C256.357404%201403.23752%2C259.618267%201410.29644%2C262.690648%20Z%20M1433.18848%2C269.212381%20C1431.85021%2C269.18411%201430.50251%2C269.146416%201429.16424%2C269.108716%20C1428.46683%2C269.193534%201422.53884%2C270.673175%201423.03833%2C271.813533%20C1423.85826%2C273.67958%201432.29315%2C270.088857%201433.18848%2C269.212381%20Z%20M1456.60828%2C262.0498%20C1456.00511%2C261.889582%201455.41137%2C261.719941%201454.80821%2C261.5503%20C1453.83748%2C261.691665%201448.49381%2C263.670805%201449.16294%2C264.933682%20C1450.27504%2C267.016498%201457.1549%2C263.086493%201456.60828%2C262.0498%20Z%20M1484.56125%2C253.784544%20C1483.77902%2C253.322744%201482.96852%2C253.407562%201482.11089%2C254.039002%20C1481.3612%2C254.160827%201480.72332%2C254.487654%201480.19726%2C255.010214%20C1480.43595%2C254.772585%201483.91899%2C254.706058%201484.56125%2C253.784544%20Z%20M1491.31624%2C251.697024%20C1491.62254%2C251.640478%201491.89349%2C251.447276%201492.1291%2C251.117421%20C1491.75683%2C250.905371%201491.41755%2C250.829975%201491.11126%2C250.8877%20L1491.31624%2C251.697024%20Z%20M1497.51165%2C250.282176%20C1497.5199%2C250.330477%201497.64242%2C250.203248%201497.89688%2C249.807421%20C1497.93929%2C249.750875%201497.93693%2C249.724958%201497.91455%2C249.713176%20L1497.51165%2C250.282176%20Z%20M1495.97076%2C250.574332%20C1495.8612%2C250.641483%201495.78581%2C250.693318%201495.76696%2C250.721592%20C1495.89418%2C250.698025%201495.99314%2C250.622629%201496.08739%2C250.542522%20L1495.97076%2C250.574332%20Z%20M1502.31696%2C247.309934%20C1502.86358%2C247.460728%201500.04566%2C248.582239%201498.0948%2C249.326769%20C1498.88645%2C248.261804%201500.44149%2C246.782164%201502.31696%2C247.309934%20Z%20M1506.14329%2C233.088404%20C1503.93797%2C235.830927%201487.32263%2C232.805675%201485.75817%2C238.158773%20C1485.30579%2C239.563019%201494.36271%2C237.216326%201495.54077%2C237.159779%20C1497.95343%2C236.292721%201504.60711%2C235.17121%201506.14329%2C233.088404%20Z%20M1794.55088%2C121.05032%20C1791.75181%2C121.568666%201795.9457%2C120.023055%201795.92686%2C120.060749%20C1795.46506%2C120.390608%201795.01268%2C120.720466%201794.55088%2C121.05032%20Z%20M1728.42881%2C156.184758%20C1728.481%2C156.076607%201728.53813%2C155.969765%201728.60004%2C155.864199%20C1728.52679%2C155.965833%201728.4693%2C156.072587%201728.42881%2C156.184758%20Z%20M1743.84724%2C153.291442%20C1750.22761%2C151.491367%201755.81632%2C147.043015%201761.50869%2C143.904669%20C1768.79381%2C139.889842%201780.15972%2C136.440489%201785.75785%2C130.314586%20C1787.27519%2C129.588898%201792.98642%2C127.98674%201793.57074%2C126.243211%20C1794.10793%2C124.490259%201782.35562%2C129.984722%201781.86555%2C130.220333%20C1775.57%2C133.236162%201769.27446%2C136.251996%201762.97891%2C139.267824%20C1758.89812%2C141.218688%201755.1566%2C143.819841%201751.33027%2C145.827252%20C1746.03839%2C148.597885%201731.624%2C150.707843%201728.60004%2C155.864199%20C1730.38538%2C153.387016%201741.52966%2C153.952316%201743.84724%2C153.291442%20Z%20M1684.34116%2C176.240023%20C1683.05943%2C176.767793%201680.12842%2C177.465204%201678.53569%2C178.530169%20C1681.54182%2C176.871613%201690.14508%2C176.503977%201691.80499%2C173.762099%20C1691.73667%2C173.874819%201684.67969%2C176.098967%201684.34116%2C176.240023%20Z%20M1633.38306%2C203.910266%20C1632.05421%2C204.400336%201630.69708%2C205.126018%201629.73579%2C205.521848%20C1629.52944%2C205.60626%201622.12612%2C209.433849%201621.78595%2C209.442568%20C1625.3007%2C209.552012%201629.88804%2C205.35161%201633.38306%2C203.910266%20Z%20M1639.16969%2C202.25156%20C1641.29019%2C202.506024%201645.78566%2C199.829473%201647.47265%2C199.141485%20C1649.78164%2C197.614721%201639.16026%2C202.25156%201639.16969%2C202.25156%20Z%20M1524.85795%2C225.104716%20C1524.54459%2C225.131811%201524.33254%2C225.186002%201524.40794%2C225.266111%20C1524.6624%2C225.294385%201524.9145%2C225.266111%201525.16543%2C225.224879%20L1524.85795%2C225.104716%20Z%20M1526.43419%2C225.322664%20C1526.45303%2C225.303811%201526.39649%2C225.303811%201526.39649%2C225.284964%20C1525.7085%2C225.388629%201525.04879%2C225.492299%201524.5493%2C225.567693%20C1525.19016%2C225.595975%201525.84044%2C225.633669%201526.43419%2C225.322664%20Z%20M1528.93167%2C224.973958%20C1528.3662%2C225.822158%201526.27396%2C225.633669%201526.93368%2C225.200146%20C1528.0175%2C225.039928%201528.96937%2C224.917411%201528.93167%2C224.973958%20Z%20M1528.23426%2C238.328424%20C1531.32548%2C238.950442%201537.10268%2C237.027848%201539.54362%2C234.718855%20C1541.8691%2C233.899757%201550.89121%2C229.177433%201552.7041%2C229.47792%20C1545.19328%2C228.230866%201534.96168%2C239.402549%201528.23426%2C238.328424%20Z%20M1824.45987%2C54.3061178%20C1824.25821%2C54.4369797%201824.04525%2C54.5790157%201823.82329%2C54.7303523%20C1824.04781%2C54.6064797%201824.27304%2C54.4847272%201824.49839%2C54.3639338%20L1824.45987%2C54.3061178%20Z%20M1824.45987%2C54.3061178%20L1824.49839%2C54.3639338%20C1825.09601%2C54.0435962%201825.69451%2C53.7300035%201826.28308%2C53.4015053%20C1826.35848%2C53.4203526%201826.74488%2C53.1847409%201827.27265%2C52.8266116%20C1826.94279%2C53.0056762%201826.63179%2C53.2035881%201826.30193%2C53.3920764%20C1826.07738%2C53.3378762%201825.38845%2C53.7035304%201824.45987%2C54.3061178%20Z%20M1855.1785%2C31.8948553%20C1853.12397%2C30.0476616%201844.06705%2C40.1978167%201841.69209%2C41.9507636%20C1840.39151%2C42.9120576%201830.43927%2C50.7060958%201827.27265%2C52.8360246%20C1837.68669%2C47.0494028%201847.12058%2C40.8198285%201855.1785%2C31.8948553%20Z%20M151.140309%2C216.228044%20C153.758338%2C218.603837%20171.472257%2C222.287511%20175.609677%2C221.251399%20C173.068009%2C221.837621%20165.736584%2C217.912017%20162.100964%2C218.254302%20C161.478947%2C218.103508%20151.790597%2C216.727538%20151.140309%2C216.228044%20Z%20M175.747595%2C221.213589%20C175.703464%2C221.226828%20175.657476%2C221.239428%20175.609677%2C221.251399%20C175.657354%2C221.240402%20175.703345%2C221.227818%20175.747595%2C221.213589%20Z%20M1425.54761%2C188.44353%20C1424.94209%2C188.546021%201424.35777%2C188.576651%201423.82058%2C188.49183%20C1424.28709%2C188.642621%201424.83135%2C188.647333%201425.43452%2C188.54602%20L1425.54761%2C188.44353%20Z%20M1425.54761%2C188.44353%20L1425.43452%2C188.54602%20C1426.03769%2C188.444707%201426.69975%2C188.237369%201427.40188%2C187.96406%20C1426.77986%2C188.166686%201426.15313%2C188.341039%201425.54761%2C188.44353%20Z%20M1430.98318%2C186.710607%20C1431.26592%2C186.61636%201439.88931%2C183.26125%201440.3134%2C183.355497%20C1436.87347%2C182.469597%201431.46383%2C186.380749%201427.40188%2C187.973483%20C1428.69303%2C187.549383%201429.96534%2C187.012189%201430.98318%2C186.710607%20Z%20M1224.12553%2C243.945405%20C1226.09524%2C244.54857%201230.86402%2C242.644829%201232.56043%2C242.239582%20C1235.42547%2C240.910729%201223.08883%2C243.70037%201224.12553%2C243.945405%20Z%20M1236.81086%2C240.910729%20C1238.21511%2C241.344253%201244.82166%2C239.10123%201242.38072%2C238.978712%20C1241.13669%2C239.129506%201237.46115%2C241.033247%201236.81086%2C240.910729%20Z%20M1179.86823%2C250.420009%20C1180.41484%2C251.145692%201183.8265%2C250.467127%201184.26945%2C249.882815%20C1184.42967%2C249.60008%201180.2829%2C249.882815%201179.86823%2C250.420009%20Z%20M192.76822%2C224.776035%20C190.657139%2C224.248265%20188.536633%2C223.682795%20186.43497%2C223.164448%20C185.4454%2C222.570707%20183.315471%2C223.532006%20184.851659%2C223.597977%20C185.8695%2C224.050353%20186.39727%2C223.908983%20186.43497%2C223.164453%20C186.717705%2C223.550859%20189.394257%2C224.1446%20192.76822%2C224.776035%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--32{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20221%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-15447.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2233%22%20transform%3D%22translate(0.000000%2C%2015447.000000)%22%3E%20%3Cpath%20d%3D%22M3.74726773%2C220.063183%20L0%2C221%20L0%2C0%20L1920%2C0%20L1920%2C63%20L1887%2C18%20L1485%2C24%20L1152%2C47%20L801%2C78%20L452%2C128%20L303%2C154%20L56%2C208%20L12%2C218%20L3.74726773%2C220.063183%20C2.13166415%2C220.041688%200.682692245%2C220.11538%200%2C220.505491%20C8.34272914%2C215.688835%2020.4419895%2C215.742609%2029.506833%2C213.11534%20C37.8649249%2C210.695489%2046.368976%2C209.066886%2054.7885276%2C206.82372%20C73.6633775%2C201.791963%2091.8237945%2C196.414514%20111.136522%2C193.72579%20C119.095148%2C192.619572%20126.4008%2C188.962907%20134.136644%2C187.426493%20C137.616624%2C186.735108%20141.096604%2C185.820942%20144.599628%2C185.29088%20C151.697857%2C184.215392%20158.627087%2C183.185996%20165.709958%2C181.741767%20C181.826942%2C178.453839%20198.950278%2C173.137845%20212.778004%2C168.1445%20C221.620066%2C164.956442%20232.666883%2C163.535258%20241.931464%2C162.667184%20C247.001632%2C162.190895%20286.641115%2C156.536891%20286.986807%2C153.494793%20C286.948396%2C153.90194%20258.778239%2C154.908292%20253.861712%2C157.38192%20C257.410829%2C154.593329%20271.745573%2C154.101673%20275.909257%2C153.318104%20C284.328808%2C151.727916%20293.447426%2C148.916276%20301.989888%2C148.824091%20C300.599433%2C148.916276%20299.523945%2C149.469387%20298.763419%2C150.48342%20C300.906718%2C153.702207%20315.287556%2C148.063565%20318.229787%2C147.556547%20C324.298625%2C146.504103%20330.451963%2C146.57324%20336.359474%2C144.406896%20C330.597922%2C144.568218%20325.281928%2C145.443978%20319.612556%2C146.511784%20C317.476939%2C146.918932%20311.25446%2C147.087939%20308.519643%2C147.871509%20C312.399089%2C146.012447%20318.659979%2C145.997084%20322.616248%2C145.251921%20C331.18944%2C143.638685%20339.754951%2C142.025453%20348.328143%2C140.412216%20C367.948151%2C136.724822%20387.652664%2C133.459942%20407.318765%2C130.03374%20C443.601187%2C123.719077%20479.937384%2C116.651573%20516.434907%2C112.426435%20C539.842176%2C109.722343%20563.149579%2C103.922379%20586.779631%2C101.940406%20C615.518257%2C99.5359188%20643.78828%2C93.6821811%20672.242669%2C89.5799532%20C684.134515%2C87.8591689%20696.05709%2C85.6390516%20708.010392%2C84.4176044%20C722.967388%2C82.8888718%20737.955106%2C81.1911358%20752.927466%2C79.2475699%20C759.7261%2C78.3641335%20766.524733%2C77.4883743%20773.323367%2C76.6049379%20C777.218181%2C76.0979237%20783.847807%2C76.6279821%20787.996127%2C75.3911677%20C784.431648%2C76.0134156%20777.802017%2C75.2989826%20775.55117%2C75.5755338%20C770.066169%2C76.2438786%20764.604216%2C77.0812223%20759.119219%2C77.7188329%20C757.959227%2C77.8571107%20752.835285%2C77.6573776%20751.967212%2C78.2565769%20C754.479247%2C75.7061302%20765.917853%2C76.1516891%20769.582199%2C75.6600376%20C775.896862%2C74.8150082%20781.996426%2C74.131305%20788.095994%2C72.25688%20C777.809699%2C71.0892068%20767.569496%2C72.2645657%20757.206383%2C73.6242908%20C740.743706%2C75.790634%20724.296392%2C77.0120812%20707.82603%2C79.332065%20C687.460863%2C82.1974742%20666.872914%2C84.1948142%20646.722839%2C87.4596939%20C620.765118%2C91.6617884%20594.016146%2C93.8050875%20568.050744%2C98.4220109%20C549.559998%2C101.702253%20530.523826%2C104.890311%20511.894802%2C106.603414%20C487.926739%2C108.800487%20463.082922%2C113.271451%20439.583468%2C118.241753%20C424.465153%2C121.437496%20408.901276%2C122.443847%20393.683095%2C125.109527%20C379.225435%2C127.636926%20364.752413%2C130.110554%20350.302439%2C132.699412%20C339.93164%2C134.550793%20329.591571%2C136.578858%20319.24382%2C138.530106%20C312.283864%2C139.843743%20305.277816%2C141.541478%20298.256405%2C142.494056%20C295.00247%2C142.935612%20290.384907%2C142.542173%20287.351922%2C143.863536%20C295.628921%2C139.821865%20309.091189%2C138.999951%20318.414162%2C137.239518%20C323.845385%2C136.217799%20329.291975%2C135.265222%20334.707835%2C134.166685%20C336.920271%2C133.713445%20341.944347%2C131.600876%20345.831474%2C130.556113%20C336.398868%2C131.892656%20314.554592%2C135.533344%20314.258256%2C136.785885%20C314.751874%2C134.696521%20331.343215%2C132.860671%20333.302022%2C131.846701%20C310.686004%2C132.722461%20288.116082%2C140.949956%20265.907211%2C143.907555%20C276.600654%2C140.204793%20287.555285%2C137.938583%20298.678924%2C135.841377%20C399.6828%2C116.766794%20501.378056%2C98.268366%20603.219272%2C83.5648806%20C648.773953%2C76.9890285%20694.31327%2C68.9843102%20739.852588%2C64.9512234%20C751.544701%2C63.921828%20762.837348%2C61.2023779%20774.468005%2C60.3803969%20C784.708208%2C59.6582825%20794.979136%2C57.7300836%20805.034968%2C56.5470433%20C811.572409%2C55.7711549%20816.880721%2C53.9812338%20822.634592%2C53.1822969%20C827.597212%2C52.4985937%20832.943936%2C53.5587191%20838.037152%2C53.0901161%20C843.337783%2C52.5984603%20848.630728%2C51.8686645%20853.923674%2C51.2617794%20C867.421075%2C49.7100027%20880.91079%2C48.1582216%20894.408191%2C46.6064448%20C917.047253%2C44.0022197%20939.893735%2C41.6515061%20962.678761%2C40.3916477%20C975.661462%2C39.6772146%20988.697937%2C37.9026563%201001.79587%2C37.203586%20C1027.62299%2C35.8208125%201054.15686%2C33.6851948%201079.76121%2C29.9978003%20C1101.27101%2C26.9019238%201124.18662%2C27.885231%201146.00371%2C26.0108061%20C1175.17253%2C23.5064476%201204.51036%2C23.1914808%201233.59468%2C19.7960047%20C1255.85733%2C17.1917839%201278.44261%2C19.0277977%201300.66685%2C16.085566%20C1324.61186%2C12.9128714%201349.38654%2C14.2034597%201373.53129%2C12.836049%20C1421.64411%2C10.1089133%201469.4189%2C10.0781834%201517.56244%2C8.04243658%20C1535.76895%2C7.27422958%201554.05996%2C7.91952589%201572.27416%2C7.40482598%20C1588.92888%2C6.93621867%201604.63104%2C6.06814509%201620.84789%2C6.05278234%20C1631.9869%2C6.04510096%201643.55609%2C7.60456344%201654.64132%2C6.49834552%20C1670.67381%2C4.90815753%201687.03662%2C6.49834552%201703.29188%2C5.62259057%20C1716.80464%2C4.90047616%201730.70151%2C6.89781611%201743.93772%2C5.73782422%20C1751.02827%2C5.11557637%201758.15723%2C5.74550559%201765.3246%2C6.17570169%20C1772.55343%2C6.60589779%201779.39816%2C3.67134754%201786.43493%2C3.90181051%20C1790.75993%2C4.04776967%201795.90692%2C5.33067658%201800.6314%2C5.39213193%20C1806.20858%2C5.46127298%201811.92404%2C4.76988408%201817.56268%2C4.70842873%20C1823.3857%2C4.64697338%201829.46221%2C5.56113955%201835.31595%2C6.24484275%20C1840.05579%2C6.79795387%201842.28359%2C6.01438411%201846.6931%2C5.53041404%20C1849.23586%2C5.25385848%201860.01381%2C6.03743257%201858.85382%2C3.37175217%20C1867.75733%2C1.63560503%201879.63382%2C2.07348251%201888.45283%2C4.11691505%20C1883.25975%2C5.07717381%201888.11482%2C5.46895869%201890.50395%2C6.20643586%20C1893.21572%2C7.04377959%201895.95053%2C6.86709059%201898.66999%2C6.89013473%20C1903.8938%2C6.92854594%201909.53244%2C7.47397136%201914.33373%2C7.71211571%20C1914.32605%2C7.48933412%201914.24923%2C6.28324963%201914.18777%2C5.11557637%20C1914.48737%2C8.66469309%201916.43094%2C6.66735747%201917.85212%2C9.99369259%20C1920.01078%2C15.0408164%201918.35914%2C25.2502891%201918.54351%2C30.6891935%20C1918.83543%2C39.5619853%201919.13503%2C48.4347771%201919.43463%2C57.3075689%20L1919.43463%2C57.3076035%20C1919.54218%2C60.4726168%201921.76998%2C67.3480686%201916.56922%2C66.2725805%20C1916.48471%2C66.6797282%201916.43862%2C67.248202%201916.40021%2C67.8550871%20C1916.35412%2C67.3787984%201916.30034%2C66.8948284%201916.28498%2C66.4569509%20C1912.04448%2C65.9499324%201906.02173%2C68.4926977%201901.68136%2C69.1456754%20C1897.10425%2C69.833689%201892.4179%2C70.0847356%201887.80254%2C70.5167399%20C1888.76336%2C70.5041924%201889.62239%2C70.8228352%201890.37335%2C71.4656592%20C1888.06873%2C74.6844464%201877.08337%2C70.2672561%201874.29478%2C71.5578444%20C1874.86325%2C71.2044664%201875.73901%2C70.966322%201876.76841%2C70.8050001%20C1870.00818%2C71.3504255%201863.27101%2C72.4412764%201856.91025%2C72.2108134%20C1849.15136%2C71.9265765%201840.73181%2C74.1620564%201832.85%2C74.4847046%20C1825.58276%2C74.7843043%201818.15419%2C74.7612602%201810.92537%2C75.921252%20C1802.33681%2C77.2963398%201792.94932%2C76.7048218%201784.62964%2C79.5779167%20C1792.40389%2C80.154072%201799.90928%2C79.155402%201807.66817%2C78.4102391%20C1813.71523%2C77.8286496%201823.68484%2C74.685101%201829.61826%2C76.3342208%20C1827.80269%2C76.2221228%201821.63121%2C77.7397769%201819.98253%2C77.9032249%20C1814.44376%2C78.440969%201808.8973%2C78.978713%201803.35853%2C79.516457%20C1792.58826%2C80.568901%201781.87177%2C80.9990971%201771.13992%2C81.928626%20C1759.97019%2C82.8965661%201748.80814%2C84.0488766%201737.64609%2C85.109002%20C1735.22624%2C85.3394649%201719.10925%2C85.8311207%201712.57949%2C86.4994612%20C1715.94424%2C85.7773511%201720.98368%2C84.5482181%201720.47666%2C84.2562998%20C1713.85471%2C83.5725923%201709.89076%2C84.7786768%201704.3059%2C86.4533686%20C1706.15728%2C86.5916463%201708.00097%2C86.7836981%201709.83699%2C87.0295238%20C1681.3365%2C89.7643409%201652.45192%2C91.6694957%201623.85156%2C94.3274904%20C1593.20778%2C97.1775368%201562.54864%2C99.1825581%201531.98168%2C101.479498%20C1533.47968%2C101.172217%201534.77795%2C100.665198%201535.51543%2C99.628117%20C1535.53079%2C99.6050729%201525.11391%2C99.751032%201523.76186%2C99.9661279%20C1520.8455%2C100.431269%201514.1257%2C100.186815%201511.45216%2C101.701565%20C1514.57451%2C99.9335316%201521.78423%2C101.601697%201527.64899%2C101.809823%20C1517.63157%2C102.57803%201507.61414%2C103.369285%201497.61977%2C104.252722%20C1479.81273%2C105.827547%201461.99033%2C107.655879%201444.1756%2C108.29349%20C1430.83185%2C108.769779%201417.8261%2C112.119162%201404.52075%2C112.449492%20C1395.37908%2C112.672273%201386.35265%2C113.95518%201377.99455%2C116.559401%20C1379.64238%2C116.636042%201385.6335%2C116.934441%201385.37889%2C116.935818%20C1401.41839%2C116.851178%201417.78827%2C114.930775%201433.82016%2C114.193325%20C1441.40236%2C113.847632%201448.94615%2C112.718366%201456.52068%2C112.226715%20C1459.24781%2C112.042344%201461.75217%2C112.142211%201464.47931%2C112.096118%20C1470.31035%2C111.990375%201482.16424%2C108.468473%201487.7739%2C110.351008%20C1484.63233%2C109.417649%201474.85703%2C112.051427%201471.7235%2C112.334262%20C1466.99135%2C112.764459%201462.45124%2C112.848962%201457.7575%2C112.964192%20C1445.09745%2C113.271473%201432.32216%2C114.777157%201419.69284%2C115.430135%20C1403.96764%2C116.244434%201388.37304%2C117.888401%201372.6632%2C118.794885%20C1355.83178%2C119.770507%201338.63163%2C121.353013%201321.75412%2C121.621888%20C1310.78412%2C121.798572%201299.64511%2C122.113539%201288.69816%2C122.93552%20C1273.23415%2C124.103198%201257.24776%2C126.515367%201241.79911%2C126.776555%20C1224.74492%2C127.068473%201207.44489%2C128.159324%201190.42911%2C129.534416%20C1170.20221%2C131.170697%201148.62328%2C133.567503%201128.45016%2C131.163016%20C1132.53702%2C129.511372%201138.04506%2C130.709775%201142.46993%2C130.486994%20C1146.97931%2C130.256531%201151.47332%2C129.649646%201155.98269%2C129.419183%20C1163.47272%2C129.035079%201171.03188%2C128.620246%201178.55262%2C128.343695%20C1203.58849%2C127.414161%201228.56291%2C125.808611%201253.59109%2C123.680679%20C1258.13888%2C123.296575%201360.75599%2C119.962554%201360.82513%2C116.989593%20C1360.78671%2C117.220056%201338.00937%2C118.326274%201334.75218%2C118.410773%20C1326.31726%2C118.63355%201318.35095%2C116.743763%201309.9314%2C116.820585%20C1288.16041%2C117.012637%201266.55075%2C120.692346%201244.9334%2C121.491283%20C1179.22096%2C123.9265%201114.01554%2C133.54445%201048.23396%2C135.687749%20C1023.60524%2C136.494368%20999.253076%2C140.489048%20974.701177%2C140.527459%20C962.678735%2C140.550503%20950.42583%2C141.019106%20938.44948%2C142.509427%20C933.509913%2C143.131675%20928.723982%2C144.138026%20923.692225%2C144.291667%20C914.673474%2C144.560541%20899.639659%2C146.995759%20891.112559%2C144.03816%20C890.198393%2C143.723193%20894.730817%2C142.171416%20894.354395%2C141.95632%20C890.083164%2C139.498059%20880.657261%2C142.939623%20875.917423%2C143.423593%20C867.874293%2C144.245574%20859.931035%2C144.791%20851.887905%2C144.107297%20C865.231661%2C140.757913%20879.389717%2C139.897521%20892.994666%2C138.975669%20C899.171052%2C138.553154%20905.516441%2C138.814343%20911.700508%2C137.946269%20C919.705226%2C136.824689%20930.698269%2C137.339384%20938.165243%2C134.205101%20C932.70329%2C131.186047%20921.833158%2C133.636627%20915.602998%2C134.089867%20C908.38185%2C134.612248%20900.976335%2C135.657011%20893.732143%2C135.680055%20C886.11921%2C135.695422%20878.682965%2C136.025752%20871.039306%2C136.578863%20C866.230331%2C136.932236%20852.525516%2C135.595556%20848.86117%2C137.815673%20C855.09133%2C134.043774%20865.907687%2C137.723488%20872.883006%2C134.581519%20C855.306425%2C131.416505%20836.539128%2C139.605594%20818.770496%2C137.823354%20C825.499993%2C135.918204%20819.884399%2C136.3484%20817.433819%2C135.741515%20C815.636217%2C135.295952%20813.446829%2C134.612248%20812.263789%2C134.220463%20C809.628838%2C133.344709%20805.680255%2C131.877431%20802.269416%2C131.370413%20C792.766695%2C129.956914%20784.316414%2C131.216776%20774.590911%2C131.90048%20C761.039737%2C132.853057%20746.920092%2C133.605897%20733.44574%2C135.434229%20C728.237294%2C136.133295%20723.743281%2C136.348391%20718.450336%2C136.455943%20C714.931949%2C136.52508%20699.775223%2C139.859101%20697.06345%2C137.37011%20C696.748484%2C137.085873%20707.76457%2C135.787603%20708.179404%2C135.718466%20C712.166398%2C135.080856%20715.32373%2C133.383115%20719.425957%2C132.745505%20C734.590369%2C130.394791%20750.17729%2C130.824987%20765.318653%2C128.251492%20C774.01476%2C126.768852%20783.294704%2C128.190037%20791.913985%2C125.831642%20C802.077369%2C123.050732%20813.585111%2C121.952195%20824.578154%2C119.762804%20C842.638704%2C116.167594%20861.329184%2C114.400717%20879.63556%2C112.219007%20C895.668045%2C110.313852%20912.038536%2C107.855591%20927.932743%2C107.156521%20C934.946477%2C106.849239%20942.121533%2C105.835207%20949.08917%2C104.95177%20C953.337353%2C104.406341%20957.862096%2C103.415356%20961.641675%2C102.378275%20C963.343732%2C101.911339%20970.99677%2C101.326271%20973.612936%2C100.586876%20C972.330258%2C100.948346%20971.053626%2C101.309937%20969.77699%2C101.671528%20C996.618147%2C101.072329%201023.32871%2C96.4784492%201050.23132%2C94.4119726%20C1085.59189%2C91.7001996%201120.7681%2C90.0331935%201155.99807%2C86.0999733%20C1174.69623%2C84.0104481%201192.62619%2C82.0361566%201211.44726%2C81.629009%20C1231.25933%2C81.1988129%201250.99457%2C76.5204298%201269.98465%2C74.661372%20C1266.81963%2C74.2081317%201273.25721%2C74.661372%201273.6029%2C73.8470724%20C1273.53376%2C74.0083986%201251.1943%2C75.3373938%201249.73471%2C75.5832195%20C1250.8625%2C75.4374551%201254.60304%2C75.9123113%201255.16375%2C75.6916404%20C1251.82982%2C77.0044851%201243.67472%2C77.5036085%201240.15723%2C76.8095011%20C1241.43183%2C76.8663019%201244.87229%2C75.8428521%201246.36228%2C75.8213638%20C1232.33481%2C75.5371269%201218.62232%2C78.2949925%201204.80995%2C80.0234583%20C1188.13986%2C82.1052977%201171.16249%2C81.9593385%201154.35411%2C83.3805232%20C1125.59244%2C85.8080593%201096.4313%2C87.0064624%201067.70035%2C90.839816%20C1027.2696%2C96.2326278%20986.439395%2C93.4209883%20945.547731%2C97.2389792%20C939.286841%2C97.8228158%20932.964496%2C97.9457308%20926.718973%2C98.7293006%20C921.817809%2C99.3438671%20916.617048%2C101.679218%20911.746614%2C101.863588%20C906.069565%2C102.078684%20899.93159%2C101.410344%20893.931893%2C101.748355%20C883.315273%2C102.347554%20872.5911%2C104.014564%20862.028254%2C105.297467%20C844.198167%2C107.46381%20826.199072%2C108.869628%20808.253755%2C111.204979%20C802.807165%2C111.911726%20797.322168%2C112.941122%20791.844848%2C113.332906%20C782.864504%2C113.970521%20768.214792%2C118.687311%20759.8567%2C115.568391%20C775.950641%2C110.590408%20794.879265%2C110.997556%20811.541679%2C109.222997%20C818.570776%2C108.477834%20825.52305%2C107.45612%20832.613602%2C106.588047%20C836.208811%2C106.142488%20838.574888%2C104.782763%20842.008775%2C104.268063%20C846.141728%2C103.645815%20850.512826%2C104.360248%20854.76869%2C103.799456%20C881.917128%2C100.242658%20909.142389%2C99.2900801%20936.206323%2C96.0943371%20C932.71098%2C94.0355418%20926.48082%2C97.9073023%20923.308126%2C94.9112967%20C926.442413%2C94.3428228%20933.602102%2C92.5836272%20937.727374%2C92.7526349%20C932.227014%2C91.7846947%20923.899648%2C93.84349%20918.844847%2C94.2122308%20C914.873216%2C94.5041491%20910.863177%2C94.6885195%20906.853135%2C94.9266638%20C910.66344%2C94.4426937%20914.489112%2C93.7513092%20915.994796%2C93.6437569%20C923.2774%2C93.1136942%20930.237356%2C92.1841653%20937.435456%2C91.2162252%20C937.857971%2C91.1086729%20938.280485%2C91.001125%20938.703%2C90.8935727%20C936.321556%2C88.3047147%20917.477436%2C92.1611125%20914.08196%2C92.6220385%20C911.347147%2C92.9907749%20899.009738%2C96.0712886%20897.358095%2C94.6501039%20C897.911206%2C95.3030816%20899.678083%2C95.4413594%20901.859793%2C95.364537%20C899.754906%2C95.5335446%20897.642336%2C95.6410968%20895.560497%2C95.9176481%20C890.436555%2C96.5936699%20885.504665%2C97.2927402%20880.288538%2C97.6691623%20C866.245711%2C98.6908764%20853.070958%2C100.749672%20839.32005%2C100.273383%20C847.701191%2C97.3926067%20857.833841%2C97.8458513%20866.560674%2C95.5335446%20C846.502788%2C95.0726186%20825.692057%2C101.041586%20805.695627%2C102.501177%20C798.582031%2C103.015877%20791.514527%2C103.953087%20784.416294%2C104.874939%20C769.290298%2C106.833868%20754.256483%2C108.039953%20739.122801%2C109.998881%20C740.958819%2C110.167889%20748.187645%2C111.066692%20754.110524%2C111.443114%20C740.728356%2C111.896359%20727.392282%2C111.519937%20713.994752%2C112.53397%20C691.793567%2C114.208661%20669.730659%2C118.810222%20647.560204%2C120.746102%20C612.944787%2C123.765156%20578.90553%2C132.660997%20544.336211%2C135.657002%20C524.908254%2C137.339375%20505.342019%2C141.111274%20486.006244%2C144.230194%20C466.009813%2C147.456667%20446.259208%2C150.206847%20426.431781%2C153.656097%20C392.453979%2C159.57129%20358.645185%2C164.77205%20324.774936%2C171.171214%20C312.09952%2C173.56802%20299.293508%2C175.450126%20286.533589%2C177.639518%20C276.685175%2C179.329577%20267.044176%2C180.627846%20257.126622%2C182.46386%20C253.162672%2C183.19366%20218.086334%2C190.821956%20217.010846%2C188.486605%20C233.519615%2C181.64956%20254.507034%2C180.773806%20272.052885%2C177.455147%20C279.166481%2C176.110785%20286.272396%2C175.457807%20293.393678%2C174.113445%20C310.947209%2C170.794787%20328.470011%2C167.214941%20346.069636%2C164.15748%20C423.028623%2C150.806038%20500.694362%2C139.643988%20578.075864%2C127.321946%20C641.283947%2C117.258432%20705.198778%2C111.735024%20768.629639%2C103.277066%20C764.473637%2C103.123425%20770.795982%2C102.616407%20771.579552%2C102.524221%20C773.83808%2C102.24767%20776.119657%2C102.355222%20778.370504%2C102.24767%20C779.484408%2C102.193896%20780.506122%2C102.339855%20782.134721%2C102.263033%20C794.249348%2C101.709922%20806.65589%2C99.2977528%20818.724425%2C98.2068977%20C839.343103%2C96.3401541%20859.877278%2C93.2750075%20880.472912%2C91.6233642%20C916.348183%2C88.7502693%20952.20041%2C84.8400932%20987.991176%2C81.2372025%20C1054.0954%2C74.5845322%201120.74505%2C69.4913158%201186.98755%2C64.1522779%20C1158.02614%2C63.7451303%201128.00461%2C67.9472247%201099.09697%2C70.3901235%20C1083.9172%2C71.6730304%201068.5761%2C73.0097113%201053.56534%2C73.9930185%20C1037.50213%2C75.0454625%201020.95495%2C78.9633199%201004.87637%2C78.3794833%20C1008.98628%2C76.6433362%201017.42887%2C78.9633199%201020.83971%2C75.9673143%20C1019.75654%2C76.796981%201009.83898%2C74.8226895%201006.86602%2C74.9916972%20C1002.98658%2C75.206793%20998.96117%2C75.5985779%20995.120135%2C76.1747332%20C990.295793%2C76.8968476%20985.625096%2C77.8110094%20980.731617%2C78.3257093%20C959.943931%2C80.4997383%20939.064059%2C81.2986708%20918.360877%2C83.6801143%20C889.676021%2C86.9757195%20860.929709%2C88.2355823%20832.352405%2C92.837143%20C803.521589%2C97.4771149%20773.315686%2C97.0315517%20745.130167%2C103.415352%20C738.270078%2C104.967133%20731.240981%2C103.9531%20724.319436%2C104.667534%20C718.742254%2C105.243689%20713.211165%2C106.465136%20707.618615%2C106.918376%20C682.536654%2C108.946446%20657.600652%2C112.71834%20632.63392%2C116.321231%20C600.737957%2C120.922791%20569.80994%2C126.054415%20538.190537%2C132.200071%20C521.981368%2C135.349721%20505.395776%2C134.904158%20489.140514%2C137.139642%20C468.69852%2C139.958963%20448.241164%2C144.683439%20427.945133%2C147.587264%20C416.345206%2C149.246593%20404.806733%2C151.620355%20393.26058%2C153.625376%20C382.73614%2C155.453708%20372.711038%2C155.307749%20362.094418%2C156.805756%20C338.618007%2C160.12441%20315.272193%2C166.162518%20291.826512%2C170.034283%20C273.489411%2C173.061019%20254.115228%2C175.450143%20236.093089%2C179.828922%20C224.208924%2C182.709699%20211.986749%2C185.060412%20199.948944%2C187.203711%20C184.746125%2C189.915484%20169.889%2C193.357053%20154.624726%2C196.468292%20C152.235601%2C196.952263%20112.350288%2C204.949299%20112.327244%2C205.463999%20C112.480884%2C201.799653%20165.156842%2C193.042091%20171.018266%2C190.476277%20C170.250059%2C190.514688%20166.370613%2C190.652966%20166.493528%2C190.353362%20C167.883983%2C186.865705%20184.7154%2C186.689016%20188.932857%2C185.828624%20C200.156363%2C183.539365%20211.387549%2C181.250112%20222.611055%2C178.960853%20C232.582383%2C176.932783%20242.438482%2C175.573058%20252.332988%2C173.107116%20C264.086556%2C170.180247%20276.377868%2C168.56701%20288.277395%2C166.316163%20C298.125809%2C164.457105%20313.543727%2C164.311146%20322.101552%2C158.749327%20C321.336669%2C158.776451%20320.571784%2C158.799745%20319.806898%2C158.819207%20C322.373021%2C158.70169%20327.788913%2C156.663292%20330.46733%2C156.152783%20C335.514449%2C155.184843%20341.391236%2C154.785372%20346.215578%2C152.903266%20C325.827358%2C151.290034%20304.617161%2C161.584006%20286.541248%2C163.15115%20C278.98977%2C163.804123%20269.318042%2C165.647823%20261.889479%2C167.675888%20C248.553404%2C171.309509%20234.687267%2C174.505252%20221.028544%2C177.040336%20C205.664404%2C179.890382%20190.69973%2C184.023336%20175.343271%2C187.157619%20C159.856216%2C190.322632%20143.739231%2C192.005005%20128.66701%2C196.283922%20C111.297848%2C201.208131%2093.5906715%2C204.933932%2075.8834991%2C208.805697%20C65.4128379%2C211.094955%2054.9421724%2C213.384209%2044.4715113%2C215.673468%20C41.1605389%2C216.403268%2024.1985251%2C217.96273%2022.8618442%2C220.01384%20C23.7990588%2C218.031863%2034.6230936%2C216.387901%2037.342548%2C215.788701%20C42.9811898%2C214.559573%2048.089769%2C213.537854%2053.3596701%2C211.194822%20C43.3115194%2C211.540514%2030.6130553%2C214.559568%2020.818416%2C217.156108%20C17.0388363%2C218.154778%2013.6817713%2C219.583644%209.76391383%2C220.121388%20C8.46115345%2C220.298633%205.94941747%2C220.092483%203.74726773%2C220.063183%20Z%20M253.444973%2C157.661348%20L253.384477%2C157.664228%20C253.264445%2C157.758334%20253.178022%2C157.85436%20253.131929%2C157.950386%20C253.197227%2C157.846678%20253.314378%2C157.752573%20253.444973%2C157.661348%20Z%20M253.444973%2C157.661348%20C253.575568%2C157.570123%20253.719606%2C157.481778%20253.838681%2C157.389593%20C253.658151%2C157.477938%20253.50451%2C157.570123%20253.384477%2C157.664228%20L253.444973%2C157.661348%20Z%20M433.2381%2C137.10896%20C429.865672%2C134.059181%20408.394283%2C141.003773%20403.731263%2C141.602973%20C398.192487%2C142.30972%20392.868812%2C143.915271%20387.37613%2C144.806393%20C377.996319%2C146.327444%20368.124858%2C147.003466%20359.083058%2C150.491127%20C371.58947%2C150.314443%20384.963956%2C146.319763%20397.29368%2C144.214875%20C408.501822%2C142.302039%20419.648505%2C140.297017%20430.956515%2C138.330407%20C432.047378%2C138.3765%20432.807904%2C137.969352%20433.2381%2C137.10896%20Z%20M462.545196%2C132.438245%20C454.117963%2C132.737845%20445.498682%2C133.882474%20437.317275%2C136.102591%20C445.383453%2C136.117954%20453.065523%2C134.450948%20460.985738%2C133.006719%20C461.508114%2C132.814667%20462.022814%2C132.622616%20462.545196%2C132.438245%20Z%20M1031.63302%2C75.3988708%20C1034.56757%2C75.2221818%201037.52517%2C74.8764895%201040.4674%2C74.5384786%20C1035.46637%2C74.3464268%201029.35912%2C72.5949126%201025.04948%2C75.1453593%20C1024.77293%2C75.3066899%201031.00309%2C75.437282%201031.63302%2C75.3988708%20Z%20M1055.0566%2C72.568697%20C1055.09839%2C72.5443958%201055.14065%2C72.5204209%201055.18339%2C72.4967677%20C1055.13986%2C72.5202044%201055.09752%2C72.5440791%201055.0566%2C72.568697%20Z%20M1076.26585%2C71.2044664%20C1085.06182%2C70.3517556%201094.05753%2C69.9676521%201102.97641%2C69.2993116%20C1099.66544%2C69.2224892%201095.96269%2C68.6847452%201093.86548%2C68.715475%20C1086.95162%2C68.8230229%201079.87643%2C69.890834%201073.00097%2C70.5361259%20C1068.3656%2C70.9761437%201059.43721%2C70.142491%201055.18339%2C72.4967677%20C1058.90166%2C70.4948115%201071.28436%2C71.6889881%201076.26585%2C71.2044664%20Z%20M940.354652%2C94.4043258%20C939.878363%2C94.3275034%20939.394393%2C94.2814108%20938.910423%2C94.2737294%20C938.388042%2C94.3582289%20937.873342%2C94.4504141%20937.350961%2C94.5349135%20C938.457179%2C94.4657811%20939.985911%2C94.550285%20940.354652%2C94.4043258%20Z%20M1055.80851%2C82.8658406%20C1055.66423%2C82.940954%201055.51634%2C83.0137686%201055.36498%2C83.0843496%20C1055.53418%2C83.0194818%201055.68276%2C82.9468448%201055.80851%2C82.8658406%20Z%20M1038.73126%2C82.4740514%20C1030.75727%2C81.6751189%201021.98435%2C81.7135301%201013.51102%2C82.7967039%20C1004.78419%2C83.9106075%20995.788484%2C84.1948445%20987.069333%2C85.4854327%20C978.934019%2C86.6838359%20970.645063%2C86.8758876%20962.494386%2C88.0512466%20C957.516403%2C88.7656796%20947.42216%2C87.9667428%20943.519669%2C90.4403714%20C942.64391%2C91.024208%20954.005693%2C90.8628861%20955.910848%2C90.716927%20L974.048217%2C89.3572063%20C986.086022%2C88.4584029%20998.385019%2C88.2279399%201010.346%2C86.6377519%20C1016.03842%2C85.8772263%201021.33136%2C85.0936565%201027.10828%2C85.0014713%20C1034.40729%2C84.8811847%201048.4733%2C86.2982022%201055.36498%2C83.0843496%20C1052.16465%2C84.3113511%201041.59143%2C82.7586116%201038.73126%2C82.4740514%20Z%20M1129.82526%2C76.6510478%20C1131.70736%2C76.5050887%201134.40377%2C76.6049552%201137.03104%2C76.497403%20C1131.49227%2C76.4897216%201124.77814%2C75.0685369%201120.11512%2C76.7509101%20C1122.50424%2C76.3053512%201127.95851%2C76.797007%201129.82526%2C76.6510478%20Z%20M1164.74027%2C73.7011305%20C1160.56122%2C74.2542416%201155.48337%2C75.3988708%201151.72684%2C73.8624524%20C1154.11596%2C73.2325232%201163.41127%2C71.0354501%201164.74027%2C73.7011305%20Z%20M1168.68885%2C72.4566348%20C1178.34521%2C70.781943%201188.51628%2C70.244199%201198.24946%2C70.7896287%20C1189.42276%2C73.3861681%201177.84588%2C73.3477568%201168.68885%2C72.4566348%20Z%20M1199.27887%2C63.1920581%20C1198.04206%2C63.0921916%201196.79756%2C63.0000064%201195.56074%2C62.9078212%20C1194.38538%2C63.1997395%201193.21003%2C63.4839764%201192.03467%2C63.7758948%20C1194.44685%2C63.583843%201196.8667%2C63.3917913%201199.27887%2C63.1920581%20Z%20M1207.32969%2C62.5467618%20C1205.14798%2C62.0627918%201203.02004%2C62.2317994%201200.94589%2C63.0614661%20C1203.07382%2C62.8847771%201205.20176%2C62.7157694%201207.32969%2C62.5467618%20Z%20M1305.85994%2C61.4405482%20C1304.60008%2C62.0167035%201297.88595%2C61.578826%201295.96543%2C61.7401479%20L1288.98242%2C62.3163032%20C1294.94371%2C62.6773626%201301.37361%2C63.4993435%201305.85994%2C61.4405482%20Z%20M1482.87022%2C56.1322359%20C1485.07497%2C57.561102%201488.80846%2C56.6469358%201491.58169%2C56.0784619%20C1489.36157%2C54.6111846%201485.64345%2C55.5253508%201482.87022%2C56.1322359%20Z%20M1438.13753%2C61.1563156%20C1443.04637%2C61.0641304%201447.77852%2C61.0180378%201452.70273%2C60.5955231%20C1451.12022%2C60.8643973%201459.62428%2C60.1960569%201458.18005%2C59.2050683%20C1455.90616%2C57.6379244%201446.87972%2C59.2818907%201443.90676%2C59.3663902%20C1438.62149%2C59.5123493%201429.8332%2C58.8516903%201424.98582%2C61.0871746%20C1426.96011%2C60.2421495%201435.3643%2C61.2024082%201438.13753%2C61.1563156%20Z%20M1472.60698%2C104.682931%20C1462.10559%2C103.953135%201449.4148%2C103.868631%201439.3052%2C106.82623%20C1449.05375%2C107.748078%201459.68573%2C106.173252%201469.4266%2C105.305179%20C1470.48673%2C105.097764%201471.54685%2C104.890345%201472.60698%2C104.682931%20Z%20M1498.05%2C103.154198%20C1494.67757%2C99.8432259%201485.19789%2C102.770095%201480.97276%2C103.937768%20C1483.32347%2C104.106776%201485.68186%2C104.268098%201488.03258%2C104.437105%20C1491.32819%2C103.761083%201494.82353%2C104.260416%201498.05%2C103.154198%20Z%20M1568.59447%2C96.7704022%20C1562.59477%2C96.3017992%201556.57203%2C96.6551728%201550.57233%2C96.8472246%20C1549.71194%2C96.8779544%201538.95703%2C98.3529088%201539.58696%2C99.1287972%20C1542.27569%2C102.40904%201563.14787%2C97.6768826%201566.96587%2C97.323509%20C1567.5113%2C97.1391429%201568.05672%2C96.9470912%201568.59447%2C96.7704022%20Z%20M1683.05733%2C87.9821185%20C1677.49551%2C84.118035%201670.14377%2C86.9834485%201664.09029%2C88.3892661%20C1657.92159%2C89.8181322%201650.83872%2C89.1113806%201644.60856%2C89.2650211%20C1636.02001%2C89.480117%201627.73874%2C91.4467271%201619.19628%2C91.8154678%20C1610.50017%2C92.19189%201603.07161%2C92.0689749%201594.55219%2C94.4196886%20C1595.03616%2C97.1929169%201672.52521%2C89.8104465%201680.8449%2C89.0345581%20C1681.95111%2C89.2035657%201682.68859%2C88.8501921%201683.05733%2C87.9821185%20Z%20M1695.18732%2C87.4520472%20C1695.17676%2C87.4549132%201695.16619%2C87.4577751%201695.15966%2C87.4620009%20C1695.17025%2C87.4591546%201695.1795%2C87.4558482%201695.18732%2C87.4520472%20Z%20M1774.91187%2C80.5996481%20C1774.88223%2C80.6081878%201774.8526%2C80.6166617%201774.8283%2C80.6278537%20C1774.85794%2C80.6194576%201774.88582%2C80.6100693%201774.91187%2C80.5996481%20Z%20M270.939037%2C147.764005%20C271.515193%2C147.533542%20272.160485%2C147.364534%20272.682866%2C147.087983%20C272.191214%2C147.349171%20271.599692%2C147.571953%20270.939037%2C147.764005%20Z%20M233.004967%2C155.031254%20C233.435163%2C155.545954%20234.042048%2C155.60741%20234.810255%2C155.207935%20C241.608889%2C153.925032%20248.484345%2C152.826496%20255.252249%2C151.351541%20C260.015132%2C150.31446%20266.222243%2C149.638438%20270.939037%2C147.764013%20C266.53721%2C149.054602%20258.893547%2C149.000828%20254.629997%2C150.01486%20C249.237185%2C151.290086%20237.537391%2C151.866241%20233.004967%2C155.031254%20Z%20M262.527137%2C144.491443%20C259.223846%2C146.13541%20253.723486%2C146.926665%20250.143635%2C146.82679%20C253.446926%2C145.205872%20258.954972%2C144.383891%20262.527137%2C144.491443%20Z%20M308.934528%2C137.193468%20C306.460895%2C138.192138%20303.687667%2C138.706838%20300.630206%2C138.768293%20C303.096153%2C137.769623%20305.854015%2C137.254924%20308.934528%2C137.193468%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--33{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20358%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-15868.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2234%22%20transform%3D%22translate(0.000000%2C%2015868.000000)%22%3E%20%3Cpath%20d%3D%22M1917.45248%2C7.0614651%20C1917.13908%2C8.55935183%201912.87648%2C8.94852435%201911.42187%2C9.87347387%20C1908.6819%2C11.6065254%201906.37761%2C14.2206351%201902.94055%2C15.992416%20C1893.61691%2C20.7946223%201883.14112%2C25.2676474%201873.63352%2C28.8112148%20C1870.42882%2C30.0020867%201867.49521%2C31.0864568%201864.65842%2C32.8679187%20C1862.8382%2C34.0200285%201862.96406%2C35.8692629%201860.88246%2C37.2440902%20C1857.75521%2C39.3644199%201853.31123%2C39.9259723%201849.96131%2C41.6687103%20C1843.62936%2C44.9508634%201838.32369%2C50.2662118%201831.71098%2C53.2095027%20C1818.11763%2C59.2606724%201804.38873%2C66.2703482%201791.03743%2C71.6921985%20C1784.93785%2C74.1707578%201778.45099%2C76.4944048%201772.23523%2C79.3311938%20C1765.75806%2C82.2841657%201766.09692%2C85.421093%201758.98075%2C87.9867867%20C1758.29333%2C86.9895511%201758.93233%2C86.2343678%201760.90744%2C85.7212312%20C1741.98906%2C90.3975736%201723.09973%2C99.6824915%201704.4718%2C107.050397%20C1690.375%2C112.636835%201676.12328%2C117.245405%201661.93933%2C122.154119%20C1647.92966%2C127.004741%201634.13299%2C134.159643%201619.79414%2C136.793114%20C1612.40687%2C138.148574%201606.06524%2C140.791727%201599.15238%2C143.473604%20C1595.34741%2C144.945246%201591.69734%2C145.255066%201587.96014%2C147.181759%20C1584.8813%2C148.76959%201578.2008%2C150.705964%201576.06111%2C153.358798%20C1575.74161%2C153.755757%201586.54658%2C151.228787%201587.873%2C150.802785%20C1592.47188%2C149.302094%201597.30314%2C148.169313%201601.94076%2C146.368484%20C1609.57008%2C143.415512%201617.07353%2C140.046219%201624.60603%2C137.693524%20C1639.70007%2C132.968771%201655.09424%2C128.369882%201670.02369%2C122.715666%20C1686.95728%2C116.306266%201704.13293%2C108.386495%201721.53125%2C103.535878%20C1735.09556%2C99.7502694%201748.33068%2C98.4335335%201761.8272%2C93.6990997%20C1774.8106%2C89.1486211%201788.87836%2C82.3713111%201800.58374%2C78.5372919%20C1807.78706%2C76.1749155%201814.79673%2C73.6479457%201821.55468%2C70.2980201%20C1826.21166%2C67.9840487%201837.60723%2C60.5483761%201843.09685%2C63.1624804%20C1844.82023%2C64.2855799%201832.55329%2C68.5843306%201831.6432%2C68.9425603%20C1827.82854%2C70.4432515%201823.88802%2C72.3699448%201819.89909%2C73.8028635%20C1815.83055%2C75.2612211%201786.78197%2C84.6422531%201784.21689%2C87.6671555%20C1785.67195%2C86.7249305%201792.05073%2C87.423423%201792.83825%2C87.8609392%20C1791.40533%2C88.7516729%201784.47312%2C92.5953785%201783.32097%2C92.2855593%20C1784.87007%2C92.8471063%201788.23936%2C92.0047831%201792.10243%2C90.6493232%20C1788.859%2C92.2565163%201786.12872%2C93.6894296%201785.17989%2C94.1541612%20C1783.06924%2C95.2094828%201809.77185%2C85.1016036%201809.44267%2C84.7821034%20C1807.76771%2C84.065644%201809.23935%2C83.3879141%201810.13008%2C83.0200034%20C1813.35414%2C81.6645436%201816.43298%2C79.8927627%201819.87973%2C78.6534803%20C1828.76768%2C75.4584616%201835.28359%2C71.6341234%201844.25868%2C70.2399341%20C1840.91844%2C73.8996789%201830.4717%2C79.2634377%201825.86313%2C82.0421353%20C1820.79951%2C85.0919226%201813.7027%2C88.0739375%201808.2518%2C90.4750434%20C1800.10935%2C94.0573403%201791.81198%2C96.623034%201783.72762%2C100.273098%20C1761.79818%2C110.167968%201738.77468%2C119.123699%201715.95451%2C127.091881%20C1691.59492%2C135.602248%201667.46769%2C144.6548%201643.43728%2C153.823535%20C1633.99745%2C157.425194%201623.82181%2C159.322839%201614.51753%2C163.243998%20C1609.48295%2C165.364327%201604.76788%2C167.416885%201599.46221%2C169.140261%20C1591.20357%2C171.831824%201574.74439%2C180.942462%201566.27275%2C179.645093%20C1566.4083%2C179.664455%201588.31838%2C171.512318%201592.14272%2C168.607756%20C1588.4152%2C171.086316%201565.79834%2C175.830436%201562.54523%2C177.36017%20C1557.44289%2C179.770957%201550.85922%2C185.367082%201544.33363%2C184.660303%20C1544.93391%2C184.156848%201545.54387%2C183.643711%201546.14414%2C183.130575%20C1540.47057%2C183.208034%201535.60058%2C186.964599%201530.31428%2C188.523382%20C1526.67389%2C189.598071%201522.86892%2C189.801388%201519.10267%2C191.079395%20C1511.57986%2C193.645088%201503.88277%2C196.026827%201496.176%2C198.089065%20C1476.00866%2C203.481872%201458.31988%2C212.137465%201438.01699%2C216.707311%20C1419.75698%2C220.812426%201401.9617%2C226.127779%201383.62424%2C231.46249%20C1363.13739%2C237.416844%201342.55373%2C243.051693%201321.94102%2C248.589726%20C1311.62983%2C251.358742%201301.31863%2C254.098716%201290.99775%2C256.838684%20C1288.84304%2C257.415683%201269.36925%2C261.207999%201266.51141%2C262.594976%20C1268.37095%2C261.335544%201277.57455%2C257.965794%201278.87605%2C257.284059%20C1291.46248%2C250.748796%201280.15406%2C252.181709%201272.42792%2C254.272996%20C1261.3809%2C257.274378%201249.75298%2C259.830391%201238.3671%2C262.221816%20C1216.10847%2C266.888477%201193.54971%2C273.78197%201173.0435%2C277.470763%20C1139.92182%2C283.425112%201104.26348%2C288.972826%201071.78079%2C298.306149%20C1056.25107%2C302.769493%201039.68539%2C302.498403%201024.02011%2C305.567558%20C1003.42677%2C309.595219%20982.087921%2C313.303374%20961.329984%2C315.965889%20C927.375655%2C320.31305%20892.58869%2C324.456894%20858.556909%2C330.217607%20C843.327323%2C332.792987%20828.823878%2C333.925767%20813.478109%2C336.094507%20C807.136482%2C336.994922%20763.277598%2C342.784683%20762.386864%2C339.715528%20C767.402074%2C339.00875%20782.815615%2C339.705847%20786.349496%2C335.871828%20C785.729857%2C336.539877%20766.14343%2C337.440292%20764.361968%2C337.566156%20C752.879267%2C338.369749%20741.144838%2C339.763939%20729.69118%2C340.461036%20C719.089532%2C341.109723%20709.068793%2C344.779149%20698.505868%2C344.87597%20C685.880706%2C344.982466%20674.088186%2C346.851068%20661.70507%2C348.100031%20C649.46718%2C349.339314%20639.698169%2C349.591042%20626.598594%2C350.017044%20C617.303995%2C350.317182%20608.367626%2C352.369739%20599.18921%2C353.124923%20C588.703739%2C353.996294%20577.985902%2C352.97001%20567.452027%2C353.105561%20C542.588974%2C353.41538%20517.774338%2C354.509431%20492.746698%2C355.216209%20C482.997049%2C355.487299%20473.363588%2C355.361435%20463.546171%2C355.864891%20C455.916857%2C356.26185%20432.496404%2C359.970005%20427.71356%2C355.235571%20C440.619499%2C350.665725%20457.930685%2C354.296427%20471.330398%2C353.628378%20C480.450722%2C353.173328%20489.338681%2C352.979691%20498.323461%2C353.163647%20C518.665077%2C353.570281%20538.11596%2C351.83723%20558.360756%2C350.162264%20C610.730008%2C345.815103%20662.528026%2C343.472089%20714.461589%2C337.585512%20C726.389659%2C336.230047%20738.472637%2C334.254949%20750.100564%2C333.131849%20C759.317709%2C332.241121%20768.709123%2C331.950664%20778.236088%2C330.082062%20C785.923494%2C328.57169%20793.213946%2C328.842779%20801.065945%2C327.76809%20C811.047955%2C326.393263%20821.89165%2C324.408478%20832.076982%2C324.224523%20C850.89854%2C323.87598%20869.826606%2C318.705857%20888.60944%2C316.740435%20C904.855623%2C315.036426%20921.295437%2C309.963124%20937.415756%2C308.530206%20C943.515337%2C307.997702%20949.556825%2C308.220386%20955.704816%2C307.397425%20C960.013248%2C306.826197%20965.793328%2C307.019834%20969.782259%2C305.102821%20C970.895678%2C304.570317%20973.935784%2C301.452752%20973.693737%2C301.549573%20C980.054732%2C299.061333%20989.775333%2C298.170604%20996.339644%2C297.105596%20C1008.15153%2C295.188584%201019.53741%2C294.142943%201031.76562%2C292.932709%20C1039.58857%2C292.148478%201049.97722%2C290.512241%201056.63835%2C286.329668%20C1039.34652%2C285.138796%201023.46825%2C291.974198%201006.37006%2C293.310296%20C988.332733%2C294.723852%20970.159862%2C297.647776%20952.141897%2C300.271561%20C938.751865%2C302.217616%20925.971796%2C304.773629%20912.50431%2C306.284001%20C896.054804%2C308.123555%20879.140572%2C310.11802%20862.95248%2C312.867675%20C801.124042%2C323.382189%20737.68841%2C326.741801%20675.230647%2C333.799887%20C613.73139%2C340.751466%20551.75772%2C340.441647%20489.909915%2C343.636666%20C435.071785%2C346.473455%20379.691475%2C345.97968%20325.037306%2C343.18162%20C306.186699%2C342.213433%20286.735817%2C343.18162%20268.408033%2C340.509419%20C246.207496%2C337.275671%20223.987601%2C334.574427%20201.922614%2C330.624225%20C177.098292%2C326.180243%20151.896377%2C319.064071%20128.766382%2C309.266016%20C122.492527%2C306.603501%2073.918571%2C286.542661%2076.2519044%2C281.333815%20C84.8494113%2C282.718323%2094.1924152%2C290.744596%20102.179959%2C294.43339%20C121.214521%2C303.214846%20139.823081%2C310.718297%20160.213102%2C316.391875%20C194.361067%2C325.889791%20230.106544%2C334.264613%20266.035976%2C337.062673%20C355.641709%2C344.043306%20445.586309%2C340.644964%20535.114589%2C339.376639%20C575.981772%2C338.795724%20617.158775%2C334.729339%20657.871051%2C332.086187%20C672.577813%2C331.127681%20687.633125%2C329.065442%20702.184981%2C327.545389%20C716.978883%2C325.996293%20733.370298%2C326.083427%20748.231973%2C321.997675%20C735.171127%2C320.448579%20720.793546%2C324.263236%20708.429792%2C325.454108%20C694.836442%2C326.761163%20681.020408%2C328.561992%20667.243103%2C329.230041%20C651.374512%2C330.004592%20634.770099%2C332.095879%20619.250056%2C332.5122%20C609.44232%2C332.773609%20597.281884%2C336.249403%20587.687147%2C334.496984%20C590.078566%2C332.802657%20596.449242%2C335.184395%20598.008024%2C332.628383%20C599.489354%2C330.537096%20576.349677%2C332.115241%20573.842075%2C332.5122%20C557.925078%2C335.010121%20541.252893%2C334.293662%20525.258438%2C334.55507%20C503.774359%2C334.9133%20481.254322%2C336.278446%20459.721838%2C336.326857%20C441.461827%2C336.365586%20423.104996%2C337.372503%20404.719115%2C336.249403%20C385.694234%2C335.087575%20366.727445%2C335.203757%20347.537971%2C335.571668%20C329.965371%2C335.910536%20313.816008%2C336.84968%20296.737183%2C337.12077%20C278.816034%2C337.401546%20261.349936%2C331.418149%20243.574018%2C330.411232%20C227.531152%2C329.501136%20212.408069%2C325.492837%20196.694389%2C322.39464%20C186.751109%2C320.438898%20179.751114%2C317.011519%20170.63079%2C313.651907%20C158.876994%2C309.324108%20146.019471%2C305.005995%20133.742857%2C301.433384%20C121.059603%2C297.744591%20109.499449%2C293.0392%2098.0070669%2C286.029524%20C89.5741533%2C280.88845%2079.8438713%2C277.383613%2071.6045995%2C271.274351%20C61.2256306%2C263.58694%2049.5686554%2C256.4514%2039.8964648%2C247.360124%20C39.0057366%2C246.527488%2023.8536044%2C231.288221%2024.5507017%2C230.8719%20C25.6544338%2C230.203851%2051.6696285%2C255.028174%2056.3847003%2C256.519184%20C55.2712873%2C255.696223%2054.8452852%2C254.718354%2055.0970129%2C253.595255%20C58.2436212%2C253.217658%2060.9448653%2C258.426504%2062.8812396%2C260.024011%20C68.157864%2C264.371177%2074.6737652%2C268.108381%2080.4732072%2C271.671311%20C88.1025215%2C276.357339%2095.2574232%2C280.772273%20103.39988%2C284.102837%20C113.304436%2C288.14986%20137.005659%2C303.205171%20146.890853%2C299.680971%20C146.213124%2C299.303379%20145.670939%2C298.770875%20145.283666%2C298.093145%20C150.502193%2C297.066867%20157.182688%2C303.059945%20162.691673%2C302.633943%20C157.434416%2C297.560641%20144.28643%2C293.978345%20137.334846%2C292.167834%20C132.997371%2C291.035054%20131.81618%2C292.884293%20127.798206%2C291.461056%20C125.85215%2C290.763958%20121.756722%2C288.207946%20119.11357%2C286.997712%20C105.907493%2C280.936855%2091.7332288%2C275.089009%2079.0499749%2C267.595239%20C61.245009%2C257.071044%2045.2021485%2C243.593878%2030.6793412%2C229.129162%20C20.1648274%2C218.663058%2012.7775599%2C204.256434%206.14547573%2C191.20527%20C5.41933536%2C189.772351%20-0.351058103%2C174.900995%200.0168525783%2C174.968767%20C1.79831454%2C175.08495%208.8273524%2C191.534456%2010.6475438%2C193.161011%20C10.121876%2C189.138204%207.76288381%2C183.573864%205.83317711%2C178.846845%20L3.2324466%2C172.561746%20C2.79988325%2C171.757022%202.32155201%2C170.955562%201.88852823%2C170.147547%20L0%2C167%20L0%2C-5.9596772e-13%20L1920%2C-5.9596772e-13%20L1920%2C6%20L1917.45248%2C7.0614651%20Z%20M218.236543%2C314.039109%20C217.752449%2C311.715462%20199.027707%2C310.021134%20196.432964%2C309.333723%20C189.500747%2C307.503851%20177.950274%2C304.173287%20170.814734%2C304.870385%20C176.972406%2C308.878678%20187.148052%2C308.704404%20194.128685%2C310.718231%20C201.515958%2C312.848242%20208.748318%2C313.467886%20216.503497%2C314.784622%20C217.345809%2C315.007296%20217.917043%2C314.755568%20218.236543%2C314.039109%20Z%20M600.670512%2C332.134526%20C601.183648%2C333.983766%20612.501756%2C332.047392%20612.995536%2C332.008657%20C615.687099%2C331.737567%20599.925009%2C329.491374%20600.670512%2C332.134526%20Z%20M632.853059%2C331.040475%20C639.523873%2C330.759699%20646.620683%2C329.762463%20653.475446%2C328.978232%20C656.283187%2C328.678099%20647.162863%2C328.019731%20645.265218%2C328.106865%20C640.328939%2C328.339162%20623.191129%2C327.661907%20620.182184%2C330.834308%20C620.994526%2C329.977873%20631.005768%2C331.117847%20632.853059%2C331.040475%20Z%20M829.433819%2C312.383505%20C824.999523%2C312.257641%20820.071447%2C312.857918%20815.859831%2C314.281155%20C818.832165%2C315.084755%20822.414462%2C313.709927%20825.51266%2C314.23275%20C826.819714%2C313.613101%20828.126764%2C312.993463%20829.433819%2C312.383505%20Z%20M840.335611%2C311.647689%20C838.670326%2C312.606195%20836.879178%2C312.886972%20834.981533%2C312.499693%20C835.930358%2C310.766636%20838.360507%2C310.243819%20840.335611%2C311.647689%20Z%20M792.41033%2C334.845468%20C793.262334%2C334.1871%20798.258177%2C334.342012%20796.350857%2C334.845462%20C795.169666%2C335.019737%20791.606736%2C335.523198%20792.41033%2C334.845468%20Z%20M816.130915%2C332.715463%20C814.959411%2C333.780471%20802.760251%2C334.1387%20802.876434%2C333.673963%20C804.299671%2C330.449902%20816.508513%2C332.376595%20816.130915%2C332.715463%20Z%20M845.999491%2C328.261799%20C842.010565%2C327.651842%20825.406152%2C328.784622%20822.385408%2C331.534277%20C825.493287%2C328.871762%20838.157179%2C331.214771%20842.678614%2C330.111039%20C843.792022%2C329.491395%20844.895759%2C328.871757%20845.999491%2C328.261799%20Z%20M1064.19986%2C284.857965%20C1062.86377%2C285.642197%201061.41148%2C285.971378%201059.8527%2C285.845515%20C1058.22615%2C285.516333%201065.23582%2C283.58964%201064.19986%2C284.857965%20Z%20M1099.51934%2C277.393239%20C1096.78905%2C277.732107%201094.95918%2C276.870421%201092.04493%2C277.189922%20C1084.75448%2C277.993515%201080.08782%2C280.210666%201075.60511%2C283.173319%20C1078.09335%2C286.678157%201106.93565%2C277.596562%201112.28973%2C276.415371%20C1114.67147%2C272.039161%201100.8748%2C277.238327%201099.51934%2C277.393239%20Z%20M1139.19564%2C270.18024%20C1136.41695%2C272.697529%201128.75858%2C271.777747%201127.12235%2C273.481761%20C1129.13618%2C271.351745%201139.40865%2C269.996285%201139.19564%2C270.18024%20Z%20M1197.26752%2C258.281213%20C1193.01718%2C259.317172%201189.8028%2C260.295041%201185.4169%2C259.791585%20C1186.34636%2C255.734881%201199.90099%2C255.986609%201197.26752%2C258.281213%20Z%20M1226.90373%2C248.996295%20C1227.01022%2C246.546779%201241.78476%2C247.195466%201237.16651%2C249.509437%20C1235.4625%2C249.325482%201226.78754%2C251.74595%201226.90373%2C248.996295%20Z%20M1264.10147%2C241.124923%20C1260.46109%2C240.727969%201245.64783%2C242.954801%201243.76954%2C246.275683%20C1243.54686%2C246.614551%201257.84699%2C244.290904%201260.7225%2C242.412621%20C1261.94241%2C242.228655%201263.07519%2C241.792972%201264.10147%2C241.124923%20Z%20M1277.50117%2C239.633924%20C1279.21486%2C238.462419%201280.93824%2C237.281228%201282.66162%2C236.109724%20C1282.51639%2C235.819267%201282.38085%2C235.53849%201282.2453%2C235.248033%20C1277.33659%2C235.519123%201278.237%2C237.077905%201275.20658%2C238.985237%20C1275.53576%2C239.692015%201276.76535%2C240.195471%201277.50117%2C239.633924%20Z%20M1313.04334%2C243.748741%20C1307.18581%2C244.755658%201299.64363%2C244.794387%201294.83173%2C248.744589%20C1295.21901%2C249.906418%201306.75012%2C246.08208%201309.38359%2C246.188576%20C1310.78747%2C245.656067%201312.00738%2C244.842792%201313.04334%2C243.748741%20Z%20M1364.78327%2C215.700362%20C1362.49835%2C212.69898%201342.71828%2C219.631202%201338.87458%2C220.686524%20C1335.3407%2C221.654711%201331.68095%2C223.532994%201327.92438%2C224.530229%20C1322.1443%2C226.059963%201314.80545%2C227.037832%201309.40296%2C229.893983%20C1318.17474%2C230.784711%201327.36284%2C227.037826%201335.58274%2C224.355949%20C1344.11247%2C221.577252%201352.3227%2C220.715561%201360.87179%2C218.120819%20C1362.16917%2C217.307555%201363.47622%2C216.503956%201364.78327%2C215.700362%20Z%20M1374.93956%2C212.795795%20C1375.22033%2C212.331063%201371.41536%2C213.231478%201372.44163%2C212.970069%20C1375.1332%2C212.195519%201365.77083%2C212.853886%201366.67124%2C213.793031%20C1367.52325%2C214.683764%201372.30609%2C213.42512%201373.35173%2C213.434801%20C1373.87455%2C213.221803%201374.40705%2C213.008799%201374.93956%2C212.795795%20Z%20M1384.29225%2C211.420973%20C1388.17468%2C210.30756%201398.28255%2C208.913371%201400.84825%2C205.408527%20C1401.10966%2C205.059984%201377.09862%2C208.177544%201384.29225%2C211.420973%20Z%20M1397.17882%2C220.918889%20C1397.86623%2C222.516396%201406.09582%2C219.282653%201406.57992%2C219.147108%20C1410.3849%2C217.975598%201395.96859%2C218.101462%201397.17882%2C220.918889%20Z%20M1413.08613%2C216.813775%20C1412.56331%2C217.075184%201412.04049%2C217.336598%201411.51767%2C217.588326%20C1408.71962%2C217.452775%201413.05709%2C216.862185%201413.08613%2C216.813775%20Z%20M1411.6629%2C202.145736%20C1413.1055%2C201.051685%201414.82887%2C200.557911%201416.9008%2C200.635364%20C1415.41947%2C201.739096%201413.69609%2C202.232871%201411.6629%2C202.145736%20Z%20M1430.31987%2C212.34075%20C1429.57436%2C212.911978%201424.83992%2C216.329681%201423.71683%2C214.122212%20C1422.40977%2C211.556518%201434.06675%2C209.523323%201430.31987%2C212.34075%20Z%20M1420.57022%2C200.122238%20C1424.22029%2C199.831781%201428.14144%2C199.667193%201431.66564%2C198.747411%20C1433.48584%2C197.430675%201435.31571%2C196.104253%201437.14559%2C194.787517%20C1432.5467%2C194.400239%201425.35307%2C198.7474%201420.57022%2C200.122238%20Z%20M1444.82332%2C208.690686%20C1441.41529%2C206.425131%201437.39732%2C208.438964%201434.05707%2C210.811021%20C1435.26731%2C212.950713%201442.30603%2C209.842834%201442.97408%2C209.649198%20C1443.59372%2C209.329687%201444.20368%2C209.000505%201444.82332%2C208.690686%20Z%20M1446.38209%2C193.964556%20C1444.83299%2C195.126385%201443.09994%2C195.639522%201441.17325%2C195.513652%20C1441.89939%2C193.509505%201444.21335%2C192.860824%201446.38209%2C193.964556%20Z%20M1459.64229%2C203.298684%20C1459.02029%2C203.394091%201455.98063%2C203.519974%201455.27973%2C204.343525%20C1456.13174%2C204.701755%201456.9547%2C204.663025%201457.75829%2C204.217661%20C1458.40203%2C203.909788%201459.04577%2C203.610903%201459.68085%2C203.303684%20L1459.64229%2C203.298684%20Z%20M1477.76104%2C197.808262%20C1477.48027%2C198.021265%201472.82328%2C198.728038%201471.25482%2C200.63537%20C1472.73615%2C199.580048%201473.02661%2C199.580048%201472.14555%2C200.645056%20C1473.58815%2C199.851132%201476.36685%2C198.921675%201477.76104%2C197.808262%20Z%20M1481.6241%2C183.595268%20C1480.10405%2C184.069681%201460.88553%2C188.71698%201461.36963%2C187.361515%20C1462.75414%2C183.091807%201481.37238%2C183.672722%201481.6241%2C183.595268%20Z%20M1720.70827%2C117.806925%20C1724.70688%2C117.448695%201728.17299%2C117.739152%201732.62666%2C116.58701%20C1739.29746%2C114.863634%201746.67505%2C111.271662%201753.05541%2C108.463921%20C1758.33203%2C106.140274%201763.67642%2C104.097398%201769.03049%2C101.754389%20C1771.4316%2C100.699067%201780.79397%2C97.7170524%201781.60725%2C95.9355904%20C1782.33339%2C94.2122144%201771.19923%2C98.065601%201770.44405%2C98.3366908%20C1763.80228%2C100.728116%201757.15083%2C103.109854%201750.50907%2C105.501279%20C1737.93232%2C110.022715%201726.06234%2C114.127834%201713.35005%2C118.494358%20C1711.14258%2C119.268892%201719.72072%2C117.903746%201720.70827%2C117.806925%20Z%20M1652.7028%2C140.356006%20C1650.38883%2C140.907872%201648.15232%2C141.701784%201646.01262%2C142.747425%20C1647.40681%2C145.225984%201652.9158%2C142.176197%201654.30031%2C141.082146%20C1654.04858%2C140.394735%201653.51607%2C140.152688%201652.7028%2C140.356006%20Z%20M1626.30033%2C149.1181%20C1626.0486%2C149.205235%201635.09147%2C148.207999%201638.49949%2C146.891263%20C1640.34873%2C146.174804%201642.15924%2C145.661668%201643.89229%2C144.69348%20C1637.87985%2C144.219073%201631.85772%2C147.239818%201626.30033%2C149.1181%20Z%20M1619.44556%2C157.899563%20C1621.79826%2C157.134693%201625.59355%2C154.917548%201628.08179%2C155.401641%20C1629.17585%2C155.575916%201616.67655%2C159.468026%201619.44556%2C157.899563%20Z%20M1613.42344%2C154.44313%20C1612.83285%2C155.159589%201618.73878%2C153.465262%201617.68346%2C153.077984%20C1616.12468%2C153.087665%201614.71112%2C153.542715%201613.42344%2C154.44313%20Z%20M1526.47055%2C182.162338%20C1523.45948%2C182.530249%201520.14828%2C184.108394%201517.24372%2C184.999127%20C1515.07498%2C185.667176%201506.63239%2C189.830382%201504.62825%2C189.423742%20C1510.99892%2C191.021249%201523.4498%2C184.011573%201529.0072%2C182.297883%20C1533.15104%2C180.952105%201524.05008%2C182.452796%201526.47055%2C182.162338%20Z%20M1536.38479%2C166.613253%20C1533.59641%2C167.562078%201528.72642%2C170.456958%201526.13168%2C168.288218%20C1528.22297%2C167.407165%201538.23402%2C165.974252%201536.38479%2C166.613253%20Z%20M1551.52724%2C161.927224%20C1550.14273%2C162.382274%201543.19114%2C165.712838%201542.04868%2C163.979781%20C1539.73472%2C160.494305%201556.87163%2C158.296522%201551.52724%2C161.927224%20Z%20M1574.60882%2C166.613247%20C1569.48711%2C167.300658%201563.4069%2C172.974236%201559.2921%2C172.403003%20C1563.52308%2C173.710057%201570.31975%2C167.591115%201574.60882%2C166.613247%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--34{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20381%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-16426.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2235%22%20transform%3D%22translate(0.000000%2C%2016426.000000)%22%3E%20%3Cpath%20d%3D%22M0.025282891%2C367.839875%20L0%2C368%20L0%2C3.63797881e-12%20L1920%2C3.63797881e-12%20L1909.68608%2C7.05689021%20C1909.57874%2C9.10384247%201904.07893%2C11.2606586%201902.85771%2C12.6697631%20C1900.41332%2C15.4813338%201900.39234%2C19.0062886%201896.29038%2C21.4611643%20C1891.63241%2C29.0671496%201878.59218%2C37.5857875%201871.40589%2C42.7368381%20C1864.63924%2C47.5521795%201862.88726%2C52.5353726%201856.78153%2C57.7388731%20C1846.90956%2C66.1421093%201838.44338%2C75.6573846%201828.38257%2C83.955715%20C1817.55593%2C92.8730078%201805.93197%2C100.793663%201795.15778%2C108.556957%20C1790.90895%2C111.620311%201785.47464%2C114.117153%201781.77134%2C117.809959%20C1777.34416%2C122.22664%201778.43522%2C123.726844%201771.85741%2C127.524562%20C1770.98666%2C126.622346%201771.47974%2C125.720124%201773.35761%2C124.817909%20C1755.41812%2C132.686108%201738.16053%2C144.918538%201720.6092%2C154.989836%20C1708.09351%2C162.165638%201695.6093%2C167.138341%201682.60054%2C173.296519%20C1666.09831%2C181.122752%201650.04718%2C190.774415%201632.3175%2C195.610737%20C1625.49839%2C197.467636%201619.56052%2C200.929645%201613.17154%2C203.741215%20C1607.59036%2C206.196091%201596.24967%2C208.650967%201592.46244%2C213.959379%20C1591.97986%2C214.641287%201604.52702%2C210.654732%201605.76495%2C210.224601%20C1612.65749%2C207.853651%201619.3612%2C205.08404%201625.98098%2C201.989216%20C1634.82483%2C197.855789%201642.88187%2C194.330834%201651.82015%2C190.732443%20C1675.84439%2C181.070291%201699.12378%2C169.90794%201721.67928%2C156.710342%20C1732.01285%2C150.657076%201744.24528%2C145.988606%201755.42862%2C141.939104%20C1772.59179%2C135.71798%201790.90895%2C126.842648%201805.18711%2C115.029858%20C1811.67051%2C109.66899%201820.1367%2C105.608999%201827.85803%2C100.059299%20C1833.30282%2C96.1461852%201843.98259%2C83.5780459%201851.18986%2C85.2356116%20C1852.13405%2C85.6027907%201832.39011%2C100.122245%201830.48076%2C101.3287%20C1826.7238%2C103.709146%201798.02261%2C120.782486%201797.4926%2C123.336756%20C1797.78837%2C121.918167%201805.52557%2C121.416936%201806.48799%2C121.765045%20C1805.34448%2C122.919044%201798.7247%2C128.16451%201797.66511%2C128.038618%20C1799.46956%2C128.384823%201802.83714%2C126.790198%201806.57192%2C124.51367%20C1803.55053%2C126.863639%201800.96976%2C128.940846%201799.98361%2C129.6857%20C1797.88543%2C131.25934%201823.46233%2C115.627847%201822.57059%2C115.050844%20C1821.99359%2C114.589249%201820.56682%2C115.08232%201818.75189%2C116.047487%20C1820.46191%2C114.778087%201821.94114%2C113.666048%201822.83287%2C113.047085%20C1826.12702%2C110.760061%201829.21135%2C107.96947%201832.77827%2C105.713922%20C1840.73039%2C100.678273%201845.90242%2C95.8524479%201854.27419%2C92.3694589%20C1852.13404%2C96.4923962%201843.44754%2C103.762613%201839.72326%2C107.214132%20C1835.10725%2C111.483941%201829.75687%2C114.788583%201824.87859%2C118.754158%20C1817.89163%2C124.440246%201810.29619%2C129.266071%201802.98401%2C134.543013%20C1783.324%2C148.726758%201761.29304%2C159.794694%201740.52099%2C172.373323%20C1716.03515%2C187.197016%201688.76921%2C198.611151%201663.15035%2C210.885541%20C1653.50917%2C215.501549%201643.0707%2C218.501957%201633.48199%2C223.222877%20C1627.84836%2C225.992482%201622.58191%2C228.573255%201616.5706%2C230.786843%20C1608.19884%2C233.860687%201592.06378%2C243.764133%201583.4717%2C242.610128%20C1583.48219%2C242.610128%201606.53077%2C233.000431%201610.12917%2C229.905607%20C1606.59372%2C232.559816%201582.80028%2C238.518667%201579.47465%2C240.176233%20C1574.21869%2C242.798966%201567.36811%2C248.631925%201560.51753%2C247.876575%20C1561.14699%2C247.320558%201561.76595%2C246.775031%201562.38491%2C246.219015%20C1554.61114%2C246.313431%201541.8017%2C252.461119%201533.8181%2C254.97894%20C1524.96375%2C257.780021%201516.0045%2C260.413244%201506.75149%2C262.584866%20C1488.2245%2C266.928111%201471.7957%2C272.834506%201453.34215%2C277.083335%20C1435.9272%2C281.101366%201419.15219%2C283.503786%201401.53792%2C286.787448%20C1377.74447%2C291.214624%201353.85662%2C294.959886%201329.82189%2C297.855389%20C1318.72247%2C299.198231%201307.60208%2C300.383706%201296.4712%2C301.453779%20C1294.54846%2C301.638857%201265.63862%2C302.801439%201264.22149%2C303.479767%20C1265.0159%2C302.81445%201276.8766%2C300.774713%201278.33238%2C300.29978%20C1290.40744%2C296.386661%201283.75619%2C295.411003%201274.8389%2C295.610331%20C1263.152%2C295.872604%201251.43363%2C295.421493%201239.76771%2C296.659424%20C1232.44504%2C297.435754%201225.33218%2C296.040461%201217.93607%2C296.617464%20C1213.44595%2C296.974153%201208.1795%2C298.74712%201203.73135%2C298.75761%20C1199.95462%2C298.7681%201195.9156%2C298.28552%201192.11789%2C297.876369%20C1183.96643%2C296.995133%201179.33993%2C299.156265%201172.00677%2C298.935958%20C1153.49027%2C298.379941%201131.59569%2C295.064804%201111.91469%2C292.788276%20C1100.56351%2C291.476909%201088.48844%2C292.221763%201077.21068%2C290.690089%20C1067.90523%2C289.431178%201058.327%2C289.441668%201049.06351%2C287.322502%20C1043.63969%2C286.074081%201038.72994%2C286.315375%201033.45299%2C285.780338%20C1028.49078%2C285.276771%201024.45178%2C282.202927%201019.76233%2C281.416107%20C1013.83495%2C280.419464%201006.28147%2C279.926387%201000.17575%2C279.150057%20C979.319767%2C276.485364%20958.631639%2C272.131624%20937.985483%2C269.0368%20C904.855113%2C264.064096%20871.8926%2C256.290313%20838.447501%2C251.086812%20C824.074919%2C248.852244%20810.677994%2C245.683984%20796.085103%2C243.428436%20C789.989871%2C242.484249%20747.522568%2C235.182556%20747.522568%2C232.150677%20C752.474236%2C232.885034%20767.329153%2C238.004514%20771.60962%2C235.235094%20C771.123363%2C235.548844%20749.442334%2C230.430152%20748.676561%2C230.272804%20C743.420604%2C229.213221%20738.416431%2C227.912344%20732.940162%2C227.136014%20C722.11352%2C225.60434%20711.800929%2C222.362639%20700.858885%2C221.628275%20C688.605475%2C220.809985%20677.53754%2C217.526323%20665.200204%2C216.120541%20C656.251435%2C215.102918%20646.064736%2C215.658934%20637.525118%2C214.305602%20C628.754697%2C212.920799%20617.25663%2C209.972847%20606.944039%2C209.102101%20C595.005358%2C208.084478%20582.699492%2C208.441167%20570.550988%2C205.965305%20C545.939256%2C200.950637%20519.449645%2C198.88392%20494.334346%2C198.86294%20C479.825382%2C198.85245%20465.547221%2C198.170542%20451.006787%2C198.883926%20C444.271606%2C199.209145%20423.489068%2C202.230533%20419.303185%2C198.04465%20C430.927137%2C192.55789%20450.702553%2C196.334623%20463.291673%2C196.471004%20C477.748181%2C196.638856%20491.87947%2C196.124799%20506.314993%2C197.110947%20C525.859606%2C198.443293%20546.66313%2C198.390837%20566.690324%2C201.097496%20C578.587045%2C202.702612%20591.20764%2C202.282977%20603.114851%2C204.737853%20C612.220982%2C206.615726%20621.98804%2C206.269527%20631.230552%2C207.444512%20C640.179315%2C208.577537%20648.446175%2C211.042908%20657.447394%2C210.896031%20C668.746133%2C210.707193%20680.852671%2C214.190182%20692.560555%2C215.606461%20C706.125331%2C217.232556%20720.560854%2C218.071832%20733.800412%2C220.28542%20C743.882199%2C221.963972%20752.95686%2C225.247633%20763.584174%2C226.53802%20C772.050362%2C227.566127%20779.373035%2C229.664314%20787.818237%2C231.206484%20C797.53284%2C232.979451%20808.317516%2C233.923633%20817.990159%2C236.441454%20C836.380767%2C241.225314%20856.250593%2C242.347843%20874.557276%2C247.624785%20C890.765772%2C252.293255%20908.453486%2C251.474965%20924.661981%2C255.430045%20C931.103413%2C257.003685%20937.817613%2C259.500527%20944.437392%2C260.906309%20C949.01144%2C261.881966%20954.424764%2C263.109401%20959.072248%2C262.62682%20C960.719324%2C262.458963%20962.681129%2C260.539124%20962.943402%2C260.528634%20C969.699562%2C260.182435%20979.456131%2C262.458963%20985.929038%2C263.518546%20C998.088033%2C265.511821%201009.61757%2C268.15554%201022.0808%2C270.725817%20C1029.7182%2C272.299457%201040.40846%2C273.925553%201047.98291%2C271.869332%20C1034.51255%2C266.183245%201018.27259%2C265.364955%201003.71117%2C263.675914%20C984.858965%2C261.493801%20965.471719%2C256.909263%20946.58804%2C253.164001%20C919.783706%2C247.845093%20892.444329%2C243.208099%20865.482627%2C237.438086%20C752.663122%2C213.298445%20636.024914%2C194.572127%20521.170168%2C187.595654%20C484.630245%2C185.371575%20446.065571%2C184.374932%20409.63056%2C187.690069%20C364.760831%2C191.781531%20319.272145%2C192.998482%20275.420039%2C204.685379%20C245.258601%2C212.721436%20216.293129%2C223.159913%20186.44642%2C233.441029%20C168.611835%2C239.578221%20151.029026%2C248.338152%20134.03371%2C256.909246%20C128.798734%2C259.552959%20123.542772%2C262.931042%20118.70645%2C265.375428%20C115.559171%2C266.959558%2089.0905394%2C284.384998%2086.8979371%2C282.832338%20C85.6495163%2C281.940607%20128.211236%2C256.699416%20133.152463%2C253.950791%20C146.475946%2C246.554683%20160.481344%2C240.900065%20173.689432%2C234.720907%20C202.035936%2C221.460364%20231.903624%2C213.644614%20261.834258%2C205.335794%20C334.903615%2C185.056823%20408.319176%2C183.70349%20483.549664%2C182.297708%20C520.383336%2C181.615799%20557.720569%2C187.081573%20594.365404%2C190.218363%20C627.160065%2C193.019444%20660.059631%2C198.841913%20692.7284%2C203.195647%20C707.258345%2C205.125976%20723.781564%2C210.308497%20739.035382%2C209.511187%20C727.673698%2C204.486028%20712.409389%2C203.510371%20700.764452%2C202.26195%20C687.923549%2C200.887638%20675.313444%2C198.516688%20662.210268%2C196.995498%20C645.152006%2C195.012707%20626.824344%2C192.327028%20610.280139%2C189.756751%20C600.52357%2C188.235561%20587.881995%2C189.977058%20578.712919%2C186.598975%20C581.346142%2C185.161717%20587.315483%2C188.634216%20589.245812%2C186.24228%20C591.312528%2C183.955256%20566.312631%2C182.150812%20563.438115%2C182.192778%20C547.785641%2C182.413086%20532.500347%2C179.370718%20516.963275%2C178.583898%20C496.77872%2C177.566274%20475.272308%2C176.013614%20455.056276%2C177.041728%20C445.436089%2C177.524314%20435.952284%2C178.930097%20426.227185%2C178.39506%20C416.040486%2C177.828548%20408.801739%2C179.17139%20398.688481%2C178.772735%20C381.535804%2C178.090821%20363.271087%2C180.493247%20346.212825%2C183.210396%20C327.297671%2C186.221294%20310.113523%2C189.641337%20292.834954%2C194.666496%20C276.280259%2C199.471341%20257.155287%2C201.003016%20240.799919%2C206.217012%20C226.899428%2C210.644188%20214.006069%2C214.462887%20200.61964%2C219.288718%20C183.456472%2C225.478372%20167.856449%2C229.370506%20151.826301%2C237.375093%20C128.13777%2C249.198378%20104.617092%2C261.514734%2082.9533119%2C276.904934%20C76.8980036%2C281.203585%2031.2298695%2C316.199123%2032.7158968%2C320.34764%20C31.2322337%2C316.979619%2055.8336361%2C294.871008%2057.5127999%2C291.749613%20C54.3864942%2C291.49783%2055.1103683%2C290.606098%2056.0860257%2C289.661917%20C51.0818527%2C293.123926%2046.004238%2C296.533479%2041.6924632%2C300.666906%20C33.5934602%2C308.4302%2026.2707873%2C317.714678%2019.8818059%2C327.555172%20C18.0249127%2C330.429689%205.49873926%2C355.524002%205.98132004%2C363.528589%20C5.23646595%2C358.860125%207.15630499%2C348.641955%206.90452165%2C346.638185%20C3.97754929%2C350.194609%202.62421684%2C360.507201%202.86551018%2C365.19665%20C2.89698014%2C365.910035%204.43915009%2C380.681266%204.05098511%2C380.366537%20C1.01822327%2C377.918541%200.172250745%2C372.917201%200.025282891%2C367.839875%20Z%20M1830.68008%2C44.1635591%20C1838.10766%2C38.2466744%201843.42657%2C33.399863%201848.95528%2C25.3113442%20C1847.7803%2C24.4301084%201830.55418%2C42.4010757%201823.95539%2C48.9159488%20C1826.56763%2C47.1220014%201829.03301%2C45.4749257%201830.68008%2C44.1635591%20Z%20M1823.95539%2C48.9264447%20C1820.40945%2C51.3498504%201816.56977%2C54.0460194%201813.8736%2C56.6897325%20C1816.75861%2C54.8538193%201819.5387%2C52.9234903%201821.84671%2C50.9302154%20C1822.27684%2C50.5525463%201823.0112%2C49.8496522%201823.95539%2C48.9264447%20Z%20M181.190499%2C182.045954%20C168.958069%2C182.937686%20161.047904%2C192.599838%20149.728185%2C195.432389%20C158.477626%2C195.012754%20166.010117%2C185.476493%20174.61268%2C185.161764%20C177.057072%2C184.637217%20179.249674%2C183.598614%20181.190499%2C182.045954%20Z%20M224.497085%2C168.113998%20C225.493728%2C167.809759%20216.21974%2C167.883195%20213.565531%2C168.753941%20C208.792155%2C170.31709%20204.595782%2C172.541169%20199.874863%2C173.863025%20C197.000346%2C174.670825%20185.344918%2C176.821468%20183.949626%2C179.811386%20C183.844714%2C180.115625%20200.284008%2C176.171029%20202.46612%2C175.552067%20C209.47407%2C173.569282%20217.205888%2C170.568874%20224.497085%2C168.113998%20Z%20M242.363146%2C163.382582%20C245.573372%2C161.18998%20250.567055%2C160.203833%20254.501155%2C160.340214%20C250.640491%2C161.515199%20246.465098%2C163.204241%20242.363146%2C163.382582%20Z%20M153.893094%2C226.286201%20C146.559931%2C225.730185%20136.478143%2C231.751981%20130.603219%2C235.728047%20C123.836568%2C240.312585%20120.479471%2C243.05072%20113.030906%2C247.215623%20C101.858059%2C253.457732%2089.0276468%2C261.011203%2078.8514432%2C269.03677%20C74.0361018%2C272.834488%2070.458697%2C278.331744%2065.9895547%2C282.244858%20C64.8775156%2C283.220515%2063.6710607%2C284.091267%2062.4855857%2C285.003978%20C66.2518339%2C282.654009%2070.1229879%2C280.587298%2071.0566795%2C279.884404%20C78.2219849%2C274.48157%2085.7544753%2C270.232741%2093.1505841%2C265.574767%20C99.6339812%2C261.493795%20105.068285%2C256.447657%20111.813956%2C252.450611%20C118.244903%2C248.642403%20137.202023%2C242.033114%20140.034574%2C234.867809%20C139.27923%2C235.109102%20138.52388%2C235.130082%20137.75804%2C234.930754%20C140.307332%2C230.388159%20150.389119%2C229.958028%20153.893094%2C226.286201%20Z%20M207.040174%2C202.93338%20C205.382602%2C200.929609%20188.429252%2C209.511193%20186.079282%2C210.308503%20C178.976923%2C212.700439%20166.660567%2C217.043683%20161.603932%2C222.540933%20C169.262314%2C221.628221%20178.693664%2C215.438568%20185.995357%2C212.511595%20C192.499734%2C209.909848%20199.098527%2C207.213679%20205.886163%2C204.49653%20C206.767405%2C204.276222%20207.15557%2C203.762166%20207.040174%2C202.93338%20Z%20M233.917944%2C180.587686%20C236.100056%2C179.70645%20228.242347%2C181.500398%20226.448399%2C182.09838%20C224.360703%2C182.801274%20215.286043%2C187.228445%20214.111058%2C186.850776%20C219.713219%2C188.581777%20228.829839%2C182.318688%20233.917944%2C180.587686%20Z%20M591.942063%2C186.074452%20C591.65881%2C182.937662%20606.933608%2C188.214604%20604.174494%2C188.004781%20C603.660437%2C187.962815%20592.130901%2C188.067727%20591.942063%2C186.074452%20Z%20M638.364459%2C190.816352%20C636.035469%2C190.365241%20633.748445%2C189.945606%20631.314549%2C189.609897%20C627.768614%2C189.127316%20614.403165%2C185.791199%20611.507662%2C188.078223%20C611.822392%2C187.815949%20623.603711%2C190.176409%20625.271767%2C190.449172%20C631.52436%2C191.466796%20638.186099%2C192.295582%20644.711462%2C192.967%20C647.816788%2C193.334173%20639.738771%2C191.078625%20638.364459%2C190.816352%20Z%20M791.595046%2C218.827147%20C787.870764%2C218.260634%20780.348763%2C218.491438%20777.274919%2C216.309325%20C777.190994%2C216.225399%20794.67938%2C219.278258%20791.595046%2C218.827147%20Z%20M820.382171%2C223.82083%20C816.164812%2C222.341606%20811.160639%2C221.46037%20806.681013%2C221.659697%20C809.26178%2C223.380215%20813.19588%2C223.065486%20816.007451%2C224.54471%20C817.465689%2C224.303411%20818.923933%2C224.062123%20820.382171%2C223.82083%20Z%20M825.690578%2C225.635757%20C827.222252%2C224.072607%20829.614187%2C224.397826%20831.114392%2C226.443557%20C829.215532%2C226.863192%20827.411089%2C226.600919%20825.690578%2C225.635757%20Z%20M782.142705%2C236.934496%20C780.862808%2C237.66886%20777.610617%2C235.979818%20777.747004%2C235.916872%20C778.890513%2C235.434292%20782.027303%2C236.976462%20782.142705%2C236.934496%20Z%20M801.131296%2C240.86859%20C801.897136%2C240.49092%20790.346614%2C235.130052%20788.133031%2C237.868187%20C787.807812%2C238.434694%20799.736003%2C241.581974%20801.131296%2C240.86859%20Z%20M827.421579%2C246.260933%20C828.680496%2C245.99866%20829.928917%2C245.725897%20831.198317%2C245.463624%20C827.788764%2C243.61722%20811.024252%2C239.704101%20807.509787%2C241.519034%20C811.076702%2C239.819502%20822.879007%2C246.040626%20827.421579%2C246.260933%20Z%20M1055.79873%2C272.771525%20C1054.24607%2C273.13871%201052.72489%2C273.002328%201051.25616%2C272.35189%20C1049.75595%2C271.470654%201057.21501%2C271.806363%201055.79873%2C272.771525%20Z%20M1092.66388%2C276.107642%20C1089.85231%2C275.667021%201088.62487%2C274.198293%201085.79232%2C273.6108%20C1078.09197%2C271.995195%201072.94092%2C272.939382%201067.45416%2C274.691364%20C1068.75504%2C278.898227%201100.28029%2C278.541538%201105.54674%2C278.866757%20C1108.92484%2C275.268372%201094.20605%2C276.338445%201092.66388%2C276.107642%20Z%20M1121.07334%2C280.041742%20C1123.5492%2C278.468102%201134.4283%2C279.800448%201133.95621%2C280.041742%20C1130.54665%2C281.856675%201123.02465%2C278.824791%201121.07334%2C280.041742%20Z%20M1182.77052%2C281.762253%20C1184.66938%2C277.765208%201198.31808%2C281.258687%201195.04492%2C283.08411%20C1190.49185%2C283.136566%201187.0823%2C283.388349%201182.77052%2C281.762253%20Z%20M1227.00029%2C280.377451%20C1226.34985%2C283.03166%201235.58187%2C282.454657%201237.26043%2C282.989688%20C1242.63178%2C281.374088%201227.66122%2C277.649806%201227.00029%2C280.377451%20Z%20M1306.64747%2C276.841994%20C1307.27633%2C276.8944%201307.91565%2C276.946805%201308.54502%2C276.999088%20C1308.45069%2C276.991377%201304.28119%2C277.999079%201306.64747%2C276.841994%20Z%20M1266.2364%2C279.968282%20C1262.69047%2C278.761827%201247.13241%2C277.901572%201244.60409%2C280.89149%20C1244.09003%2C281.405546%201259.34385%2C281.888133%201262.55408%2C280.566276%20C1263.78152%2C280.356447%201265.00896%2C280.15712%201266.2364%2C279.968282%20Z%20M1285.99084%2C278.247765%20C1285.89643%2C277.912056%201285.8125%2C277.586836%201285.71808%2C277.251127%20C1280.62997%2C276.653145%201281.33287%2C278.489058%201277.91282%2C279.989262%20C1278.11215%2C280.776082%201279.25566%2C281.583882%201280.1264%2C281.101301%20C1282.07772%2C280.15712%201284.02904%2C279.202442%201285.99084%2C278.247765%20Z%20M1315.85853%2C291.844023%20C1309.98361%2C291.875493%201301.68528%2C290.710998%201296.28245%2C293.942204%20C1296.48178%2C295.264061%201308.945%2C293.20784%201311.69363%2C293.805822%20C1313.2358%2C293.480609%201314.6206%2C292.830171%201315.85853%2C291.844023%20Z%20M1372.8348%2C269.582255%20C1370.85202%2C266.0573%201349.80721%2C270.348095%201345.64231%2C270.956568%20C1341.92851%2C271.491604%201337.89999%2C273.044264%201333.94491%2C273.600281%20C1327.83918%2C274.460537%201320.20178%2C274.324155%201314.25342%2C276.401362%20C1323.12875%2C278.961149%201332.97974%2C276.202034%201341.78163%2C274.450053%20C1350.95071%2C272.614139%201359.32247%2C273.023284%201368.52302%2C271.554556%20C1369.96029%2C270.893622%201371.39755%2C270.232694%201372.8348%2C269.582255%20Z%20M1381.8675%2C268.218427%20C1382.43401%2C268.040085%201382.99002%2C267.872228%201383.55653%2C267.70437%20C1383.91322%2C267.221789%201379.8952%2C267.777806%201380.97577%2C267.609949%20C1383.65096%2C267.116872%201374.24059%2C266.823129%201374.98545%2C267.840752%20C1375.7303%2C268.858369%201380.83939%2C268.092535%201381.8675%2C268.218427%20Z%20M1410.88542%2C262.679211%20C1411.23162%2C262.280556%201386.09534%2C262.899519%201393.30262%2C267.284735%20C1397.44654%2C266.508405%201407.97944%2C266.09926%201410.88542%2C262.679211%20Z%20M1415.6588%2C278.079907%20C1415.11328%2C278.184819%201406.2904%2C280.72362%201405.72389%2C278.950653%20C1404.72724%2C275.782393%201419.71879%2C277.261617%201415.6588%2C278.079907%20Z%20M1422.62478%2C276.29645%20C1422.6038%2C276.338416%201418.02975%2C276.495777%201420.93575%2C276.957378%20C1421.49176%2C276.747561%201422.05827%2C276.527253%201422.62478%2C276.29645%20Z%20M1427.78633%2C259.248678%20C1425.67765%2C259.038861%201423.86272%2C259.38506%201422.28908%2C260.381691%20C1424.39775%2C260.727896%201426.21269%2C260.371207%201427.78633%2C259.248678%20Z%20M1433.88157%2C274.345117%20C1434.88869%2C276.810489%201440.07121%2C273.411426%201440.84755%2C272.865893%20C1444.89705%2C270.075302%201432.69609%2C271.449615%201433.88157%2C274.345117%20Z%20M1431.58405%2C258.944421%20C1435.36079%2C258.891965%201439.41029%2C258.986381%201443.07163%2C258.241527%20C1445.03344%2C256.940651%201446.98475%2C255.639774%201448.94656%2C254.338897%20C1444.34103%2C253.604533%201436.51479%2C257.811402%201431.58405%2C258.944421%20Z%20M1454.15005%2C270.809666%20C1454.81098%2C270.505427%201455.47191%2C270.201194%201456.12235%2C269.896955%20C1452.88065%2C267.305692%201448.44298%2C269.110135%201444.81312%2C271.460105%20C1445.92516%2C273.841545%201453.38421%2C270.988014%201454.15005%2C270.809666%20Z%20M1458.52477%2C254.17104%20C1456.32168%2C252.786237%201453.92974%2C253.279314%201453.059%2C255.408976%20C1455.03129%2C255.68174%201456.85672%2C255.272589%201458.52477%2C254.17104%20Z%20M1472.00563%2C265.322913%20C1471.97416%2C265.364873%201468.12399%2C265.197021%201467.27422%2C266.099237%20C1468.13448%2C266.560838%201468.99473%2C266.581823%201469.87597%2C266.172673%20C1470.58935%2C265.889425%201471.30274%2C265.606166%201472.00563%2C265.322913%20Z%20M1485.03538%2C263.298168%20C1486.65099%2C262.458892%201489.38912%2C261.693052%201490.97325%2C260.486597%20C1490.70049%2C260.675435%201485.79073%2C261.273417%201484.11218%2C263.256202%20C1485.68582%2C262.186129%201485.99006%2C262.196619%201485.03538%2C263.298168%20Z%20M1495.33748%2C245.274739%20C1493.67991%2C245.73634%201473.7891%2C249.806821%201474.34512%2C248.390549%20C1475.92925%2C243.942392%201495.09618%2C245.348175%201495.33748%2C245.274739%20Z%20M1758.15636%2C152.052291%20C1749.37545%2C157.581011%201740.16441%2C161.473145%201730.68061%2C166.393392%20C1732.09688%2C165.659028%201742.2626%2C164.840738%201746.30161%2C163.739189%20C1754.83074%2C161.399715%201765.4161%2C153.332188%201772.73877%2C148.516846%20C1776.30569%2C146.166876%201795.73489%2C136.116565%201796.70006%2C132.067063%20C1797.04626%2C130.346546%201781.64557%2C138.833714%201779.37952%2C140.14508%20C1772.40305%2C144.184086%201764.97547%2C147.761496%201758.15636%2C152.052291%20Z%20M1664.11563%2C199.051665%20C1665.76271%2C201.538017%201671.27045%2C198.180919%201672.61329%2C196.806607%20C1672.29856%2C196.114209%201671.71107%2C195.883405%201670.87179%2C196.135189%20C1668.51133%2C196.848567%201666.25579%2C197.813734%201664.11563%2C199.051665%20Z%20M1662.09088%2C201.254763%20C1655.83828%2C201.086906%201649.7955%2C204.800692%201644.2353%2C207.203118%20C1644.0045%2C207.30803%201653.26799%2C205.797336%201656.68804%2C203.971912%20C1658.49249%2C203.006745%201660.35987%2C202.377293%201662.09088%2C201.254763%20Z%20M1646.64822%2C213.864863%20C1644.05696%2C213.497684%201640.22777%2C216.172873%201637.8778%2C217.148524%20C1635.03476%2C219.089343%201647.89664%2C213.980258%201646.64822%2C213.864863%20Z%20M1635.65372%2C212.049929%20C1636.83919%2C212.406619%201630.77543%2C214.672663%201631.36292%2C213.812407%20C1632.60085%2C212.763314%201634.02762%2C212.175821%201635.65372%2C212.049929%20Z%20M1627.99534%2C215.58538%20C1627.95337%2C215.648326%201618.98362%2C218.365475%201618.93117%2C218.386455%20C1617.72472%2C218.879532%201626.41121%2C217.92486%201627.99534%2C215.58538%20Z%20M1517.69367%2C237.868122%20C1517.35796%2C237.24916%201516.71801%2C237.207194%201515.77383%2C237.731735%20C1516.06758%2C238.361193%201516.70752%2C238.403159%201517.69367%2C237.868122%20Z%20M1520.48426%2C237.941546%20C1519.57155%2C238.780822%201518.7008%2C238.822788%201517.86153%2C238.077934%20C1518.14478%2C237.38553%201520.36886%2C238.109404%201520.48426%2C237.941546%20Z%20M1532.34951%2C248.149243%20C1530.23034%2C248.810172%201521.12421%2C253.069491%201519.17289%2C252.576414%20C1525.86611%2C254.590675%201538.74897%2C247.110634%201544.53997%2C245.243245%20C1546.05067%2C244.718704%201534.80439%2C247.372913%201532.34951%2C248.149243%20Z%20M1541.37171%2C230.052384%20C1543.56431%2C229.087217%201553.86641%2C227.576523%201551.9151%2C228.279411%20C1549.00911%2C229.318014%201544.0469%2C232.391858%201541.37171%2C230.052384%20Z%20M1557.70608%2C225.46784%20C1555.23022%2C221.680612%201573.04383%2C219.592916%201567.50462%2C223.44309%20C1566.03589%2C223.915181%201558.92303%2C227.324734%201557.70608%2C225.46784%20Z%20M1591.73867%2C228.205975%20C1586.46173%2C229.055741%201580.11471%2C235.444717%201575.9603%2C234.804768%20C1580.29306%2C236.221047%201587.37444%2C229.38096%201591.73867%2C228.205975%20Z%20M77.9702902%2C240.291528%20C83.2801552%2C236.858783%2095.9715314%2C231.078305%2099.5376298%2C225.206435%20C98.1432335%2C226.441725%2089.8687405%2C230.656294%2087.7793147%2C232.213511%20C86.499418%2C233.168188%2074.8544803%2C242.337265%2077.9702902%2C240.291528%20Z%20M99.5957541%2C225.210147%20C99.6377258%2C225.142189%2099.6784816%2C225.074218%2099.7179957%2C225.00624%20C99.6887788%2C225.059592%2099.6274912%2C225.126827%2099.5376298%2C225.206435%20L99.5957541%2C225.210147%20Z%20M91.0839502%2C223.065409%20C90.0978028%2C224.859356%2085.429333%2C227.513565%2083.7402914%2C227.796819%20C84.7159488%2C226.034341%2089.4158886%2C223.327682%2091.0839502%2C223.065409%20Z%20M120.31172%2C208.902626%20C119.063293%2C210.41332%20117.353272%2C211.347018%20115.202629%2C211.735183%20C116.461546%2C210.234978%20118.161077%2C209.301287%20120.31172%2C208.902626%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--35{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20213%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-17007.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2236%22%20transform%3D%22translate(0.000000%2C%2017007.000000)%22%3E%20%3Cpath%20d%3D%22M1919.1732%2C80.2067009%20C1919.45113%2C80.3145228%201919.72675%2C80.4276818%201920%2C80.5463421%20C1918.26937%2C79.7990212%201907.45293%2C83.9997336%201904.1726%2C84.4717252%20C1894.47321%2C85.8719642%201883.8849%2C86.9890081%201874.09897%2C87.6183289%20C1858.01198%2C88.656706%201842.62511%2C92.361825%201826.03467%2C94.5644453%20C1810.99392%2C96.5625374%201795.11146%2C97.514382%201780.28311%2C98.5291618%20C1773.62019%2C98.9854219%201766.8786%2C98.3482354%201760.09768%2C99.3944784%20C1759.40542%2C99.4967425%201742.79925%2C103.225463%201751.3816%2C100.448587%20C1718.54683%2C97.5537154%201683.32852%2C101.321765%201650.43082%2C100.64525%20C1636.05086%2C100.354189%201621.90689%2C100.849778%201607.7472%2C99.9215306%20C1595.74292%2C99.1427466%201573.71672%2C94.8791034%201563.04188%2C100.314855%20C1566.18848%2C98.7100927%201582.09454%2C102.139887%201587.49096%2C102.234285%20C1595.92385%2C102.391614%201604.55339%2C101.707229%201612.73455%2C101.699363%20C1635.51593%2C101.683631%201658.01412%2C103.610922%201680.8427%2C103.146801%20C1706.1571%2C102.62761%201730.18925%2C106.765392%201755.56658%2C106.812591%20C1772.23569%2C106.844058%201787.77203%2C106.631664%201804.11075%2C105.939413%20C1790.33651%2C106.726063%201776.09814%2C107.77231%201772.49529%2C108.307233%20C1774.57991%2C108.44096%201779.44927%2C110.745849%201779.6066%2C110.785182%20C1777.71864%2C111.131308%201770.95345%2C112.389949%201769.59255%2C111.579698%20C1770.67026%2C112.319148%201772.29862%2C112.759672%201774.12365%2C113.082201%20C1774.48351%2C113.146247%201780.30094%2C114.565368%201784.64902%2C113.955388%20C1785.30195%2C113.735128%201795.26093%2C112.358491%201795.60706%2C112.932746%20C1800.21682%2C111.965166%201805.03899%2C111.272914%201808.20132%2C110.997585%20C1816.60274%2C110.266%201823.65113%2C109.746809%201831.70642%2C111.005451%20C1813.36175%2C119.406871%201785.8526%2C117.109852%201765.72223%2C117.802104%20C1748.88005%2C118.384225%201731.99068%2C118.628087%201714.96758%2C119.013546%20C1688.66987%2C119.619265%201662.4351%2C118.832615%201636.06659%2C119.107945%20C1623.43299%2C119.23381%201610.82299%2C118.927014%201598.10287%2C118.761819%20C1583.34531%2C118.565156%201559.07716%2C123.709848%201545.98731%2C117.558247%20C1546.4357%2C117.778507%201568.33603%2C117.70771%201572.74127%2C116.535601%20C1567.95844%2C117.526779%201540.42569%2C114.789241%201538.09721%2C114.852172%20C1537.53082%2C114.867903%201520.91678%2C116.370406%201526.75372%2C114.482449%20C1515.55969%2C111.209983%201498.41859%2C113.137279%201486.57165%2C112.586625%20C1475.50348%2C112.075304%201464.19146%2C111.107724%201452.95023%2C111.107724%20C1433.5593%2C111.107724%201412.70522%2C110.509871%201392.88951%2C109.172562%20C1369.8564%2C107.614994%201346.67383%2C106.238357%201323.51485%2C105.168513%20C1307.27053%2C104.41333%201291.03408%2C103.666014%201274.78976%2C102.918693%20C1273.83004%2C102.871494%201253.68393%2C100.62954%201250.60027%2C101.180194%20C1253.11755%2C99.9136869%201267.51324%2C100.000215%201270.00692%2C99.3944961%20C1266.21527%2C92.2281154%201217.34071%2C92.755172%201208.92356%2C92.6529079%20C1190.41368%2C92.4247779%201172.97366%2C92.7237044%201155.41563%2C91.2998681%20C1090.28888%2C86.0135794%201024.50135%2C81.4667413%20958.698083%2C80.9868883%20C925.532922%2C80.7430267%20892.060972%2C79.224792%20858.667685%2C78.8786663%20C848.354705%2C78.7764022%20771.35741%2C83.1108418%20769.807708%2C78.0605489%20C759.793655%2C77.5570941%20751.761958%2C76.9513752%20748.064704%2C77.0379033%20C735.871633%2C77.3132325%20724.032552%2C78.3752115%20711.863078%2C79.0831945%20C684.196599%2C80.6800959%20658.402351%2C81.4116808%20631.152798%2C83.9997602%20C601.441033%2C86.8238354%20571.453938%2C87.4452904%20541.514042%2C90.6548203%20C527.731939%2C92.1337215%20513.627303%2C93.6519562%20499.813733%2C95.2331215%20C491.152715%2C96.2242996%20462.927716%2C105.050508%20455.761336%2C100.582337%20C468.182537%2C94.5408656%20485.276439%2C95.8939054%20498.75962%2C93.8643502%20C510.339107%2C92.1179855%20521.808464%2C90.9065477%20533.443016%2C89.6007071%20C552.251814%2C87.4924851%20570.832483%2C85.2741332%20590.011009%2C83.2524438%20C672.357523%2C74.5914303%20755.577215%2C72.9315981%20838.175457%2C71.1852335%20C870.664094%2C70.492982%20904.670971%2C69.7928603%20936.884283%2C71.5470908%20C956.464%2C72.6169355%20973.919763%2C71.6493549%20993.058956%2C72.0505456%20C1010.23152%2C72.4124073%201035.17619%2C78.7764022%201052.49822%2C73.804776%20C1035.86058%2C69.3051371%201016.1786%2C70.138986%20999.108293%2C68.919678%20C980.102832%2C67.5587724%20960.774842%2C66.9766509%20941.722182%2C66.9687851%20C909.477406%2C66.9609193%20876.650505%2C65.5606803%20844.19333%2C65.1909528%20C721.86927%2C63.7907139%20597.059398%2C71.7122768%20476.143442%2C89.3411006%20C416.798578%2C97.9942483%20357.658237%2C108.810687%20299.705741%2C122.427596%20C270.961556%2C129.18492%20242.264566%2C136.673829%20214.141831%2C145.775366%20C205.323484%2C148.630905%20130.442282%2C175.274738%20129.065644%2C172.765325%20C145.923554%2C159.109084%20183.981675%2C152.422561%20205.354952%2C145.578708%20C220.631692%2C140.685744%20236.758013%2C136.052378%20252.553944%2C131.780869%20C338.062789%2C108.661229%20423.894162%2C94.281268%20511.346034%2C81.6240704%20C555.949081%2C75.1735429%20600.97692%2C73.773304%20645.815967%2C69.4939293%20C667.653369%2C67.4093091%20689.718897%2C66.4731961%20711.690031%2C65.0336282%20C726.636377%2C64.0581817%20742.802035%2C65.9540097%20757.85065%2C62.8152763%20C735.572724%2C59.0393564%20709.65261%2C63.7277876%20687.185887%2C65.3954855%20C670.650505%2C66.6226593%20653.509405%2C67.7082357%20637.139222%2C68.7938121%20C627.188104%2C69.4546004%20614.9085%2C72.0662771%20605.012442%2C70.7683068%20C607.348794%2C69.2815397%20613.209334%2C71.3110949%20614.806236%2C69.0062105%20C615.207426%2C68.5027557%20578.109016%2C71.3897617%20575.135477%2C71.6336233%20C563.681856%2C72.5776066%20551.984369%2C72.5697408%20540.554345%2C73.7261181%20C523.578439%2C75.448881%20505.784421%2C78.5325494%20488.847848%2C80.5463731%20C412.755203%2C89.6085817%20338.298789%2C106.851946%20263.936773%2C125.763009%20C207.101316%2C140.213771%20147.378854%2C157.048079%2093.6427974%2C181.009434%20C96.1758075%2C179.459732%2098.4964279%2C177.7999%20100.407987%2C175.990605%20C92.7302862%2C177.115514%20108.809412%2C171.546035%20111.586288%2C170.531255%20C118.626807%2C167.966778%20125.494262%2C164.930308%20132.534776%2C162.381562%20C137.498537%2C160.580133%20142.328565%2C158.707906%20147.190062%2C156.709814%20C156.496132%2C152.886695%20182.68371%2C148.709585%20188.662245%2C140.748689%20C190.211943%2C136.941301%20198.518965%2C137.578488%20202.703946%2C134.510555%20C191.486316%2C133.44071%20176.280377%2C142.408521%20167.878957%2C145.523652%20C155.095897%2C150.267148%20142.65896%2C155.160112%20129.899498%2C160.611596%20C116.188191%2C166.46427%20102.225153%2C172.143884%2088.1205217%2C177.878562%20C82.3150466%2C180.230646%2077.2254203%2C184.069497%2071.7267376%2C186.681173%20C67.3136312%2C188.773659%2043.9973279%2C196.734556%2028.5003234%2C203.366014%20C29.861229%2C202.69736%2030.9782685%2C202.099507%2031.4502602%2C201.666848%20C28.0943151%2C202.066198%207.3852384%2C208.667998%201.45613632%2C211.907898%20L0%2C213%20L0%2C0%20L1920%2C0%20L1920%2C80%20L1919.1732%2C80.2067009%20Z%20M177.806499%2C121.884807%20C172.614605%2C124.874082%20167.831775%2C127.092434%20164.834639%2C126.077654%20C169.153347%2C124.606618%20173.487791%2C123.300778%20177.806499%2C121.884807%20Z%20M180.095652%2C130.671696%20C183.360247%2C130.443566%20187.2227%2C129.483851%20191.447009%2C128.052149%20C192.682049%2C127.462161%20193.838426%2C126.848577%20194.782405%2C126.21139%20C190.149039%2C126.541784%20184.768352%2C129.892912%20180.095652%2C130.671696%20Z%20M178.734749%2C130.834924%20L178.71705%2C130.793625%20C178.260793%2C130.830991%20177.818303%2C130.852624%20177.421045%2C130.821159%20C177.849768%2C130.864423%20178.288326%2C130.864423%20178.734749%2C130.834924%20Z%20M178.734749%2C130.834924%20C179.181173%2C130.805425%20179.635464%2C130.746427%20180.095652%2C130.671696%20C179.64333%2C130.703161%20179.173307%2C130.75626%20178.71705%2C130.793625%20L178.734749%2C130.834924%20Z%20M233.084392%2C112.240486%20C236.522052%2C110.848117%20240.581163%2C109.652411%20244.569481%2C108.73203%20C240.746362%2C109.896268%20236.915377%2C111.068377%20233.084392%2C112.240486%20Z%20M1361.00662%2C89.9625644%20C1360.96729%2C89.9546986%201360.92796%2C89.9468328%201360.88863%2C89.9311012%20C1360.84929%2C89.9468328%201360.80996%2C89.9546986%201360.8021%2C89.9704302%20C1360.87289%2C89.9625644%201360.93583%2C89.9704302%201361.00662%2C89.9625644%20Z%20M233.501284%2C101.652173%20C232.132512%2C101.707237%20230.771607%2C101.762302%20229.402835%2C101.817367%20C220.584488%2C103.65026%20212.662925%2C109.51867%20203.820981%2C110.706511%20C207.463174%2C110.816645%20229.772563%2C105.671954%20233.501284%2C101.652173%20Z%20M274.359883%2C90.7020061%20C263.307452%2C90.159218%20254.764434%2C96.6726761%20244.412121%2C97.2233301%20C243.44454%2C97.4593259%20235.522977%2C100.700323%20236.522021%2C100.841921%20C243.633341%2C101.840969%20268.743204%2C93.8879387%20274.359883%2C90.7020061%20Z%20M301.074517%2C84.4953359%20C297.503125%2C84.5346693%20293.050685%2C85.4078516%20289.967017%2C87.2486058%20C293.758673%2C86.6979518%20297.455926%2C85.7775747%20301.074517%2C84.4953359%20Z%20M238.150386%2C122.238794%20C229.394974%2C125.967515%20218.122279%2C126.447373%20210.365911%2C131.914588%20C212.95257%2C131.81238%20254.412089%2C117.542434%20254.685355%2C117.85662%20C253.007976%2C115.923099%20240.541589%2C122.105075%20238.150386%2C122.238794%20Z%20M257.08505%2C116.803042%20C261.915079%2C114.600422%20267.146303%2C113.459776%20272.41686%2C113.263114%20C268.349879%2C115.898392%20262.017347%2C116.755839%20257.08505%2C116.803042%20Z%20M271.614478%2C103.97278%20C273.76509%2C103.404408%20280.047866%2C102.116087%20281.903021%2C100.283566%20C280.241934%2C101.118129%20262.716826%2C105.369865%20262.638863%2C105.349439%20C264.928029%2C105.955104%20269.112955%2C104.012113%20271.614478%2C103.97278%20Z%20M281.903021%2C100.283566%20C281.947884%2C100.23925%20281.990159%2C100.194615%20282.029722%2C100.149665%20C282.011895%2C100.172354%20281.972512%2C100.199644%20281.913073%2C100.231191%20L281.903021%2C100.283566%20Z%20M617.307782%2C68.4948722%20C618.212432%2C71.2009473%20628.611945%2C67.0238367%20629.886318%2C67.5508933%20C628.722075%2C66.9530402%20625.040553%2C67.228365%20623.498721%2C67.1654342%20C623.467254%2C67.1733%20616.945925%2C67.4092958%20617.307782%2C68.4948722%20Z%20M668.817612%2C64.8133506%20C665.820476%2C65.0021473%20662.721076%2C64.9785499%20659.731806%2C64.4593591%20C656.184017%2C64.7976191%20645.178785%2C64.3728266%20639.239578%2C65.670797%20C647.043146%2C64.1761686%20663.743722%2C67.244101%20668.817612%2C64.8133506%20Z%20M806.945479%2C60.9981018%20C805.65537%2C60.8879675%20804.349533%2C60.9115648%20803.012225%2C61.2340932%20C799.826293%2C60.2665125%20796.970754%2C60.5339715%20794.43774%2C62.0364746%20C797.222486%2C63.0355228%20803.311156%2C61.0688983%20806.945479%2C60.9981018%20Z%20M835.595274%2C61.2498248%20C831.528294%2C60.691305%20826.588131%2C60.8407683%20822.560483%2C61.6274181%20C825.368823%2C62.5477996%20828.759283%2C61.682483%20831.677752%2C62.3747345%20C832.983597%2C61.9971456%20834.281572%2C61.6274181%20835.595274%2C61.2498248%20Z%20M845.971194%2C61.7454138%20C844.570955%2C61.6431497%20843.131382%2C60.5890409%20840.637706%2C61.1554264%20C841.959278%2C62.4769986%20843.800037%2C62.2803362%20845.971194%2C61.7454138%20Z%20M802.618914%2C76.2433744%20C802.398654%2C76.1253787%20798.339543%2C75.7556512%20798.355275%2C76.6288291%20C799.322851%2C76.8412276%20802.681844%2C76.2984394%20802.618914%2C76.2433744%20Z%20M820.245547%2C76.6201418%20L820.394141%2C76.6362804%20C820.570557%2C76.6344491%20820.705067%2C76.6101573%20820.790535%2C76.5580281%20C820.608884%2C76.5789379%20820.427234%2C76.5996304%20820.245547%2C76.6201418%20Z%20M849.267256%2C75.7713784%20C845.208146%2C74.7172696%20829.962869%2C74.0879489%20826.784802%2C76.1096383%20C828.830093%2C74.8982005%20838.199094%2C76.3456341%20840.881572%2C76.9749548%20C844.232695%2C76.8018898%20845.963328%2C76.8569547%20849.267256%2C75.7713784%20Z%20M1059.79051%2C74.0486155%20C1059.39718%2C74.3082131%201056.43938%2C73.0181041%201055.41674%2C73.7339573%20C1055.82579%2C74.4812738%201059.27132%2C74.473408%201059.79051%2C74.0486155%20Z%20M1106.98164%2C76.2119024%20C1098.94994%2C72.4123807%201082.1471%2C72.6719783%201072.91183%2C73.4035632%20C1073.47822%2C74.7330012%201072.73877%2C75.2679235%201070.68561%2C75.0161961%20C1071.75545%2C77.2817428%201104.58235%2C78.4302543%201106.98164%2C76.2119024%20Z%20M1132.29603%2C77.6671974%20C1129.15729%2C79.0674364%201124.74419%2C78.8314406%201121.41666%2C78.2729164%20C1118.52966%2C77.6907948%201132.55562%2C77.5570631%201132.29603%2C77.6671974%20Z%20M1189.7608%2C80.7194027%20C1189.55628%2C78.5246526%201178.36225%2C78.2021243%201177.28454%2C79.9170213%20C1178.42518%2C80.3339436%201179.57369%2C80.7430001%201180.7222%2C81.1599223%20C1181.54818%2C81.3015243%201189.88667%2C82.0567109%201189.7608%2C80.7194027%20Z%20M1227.31547%2C83.8345343%20C1226.22203%2C83.4490752%201217.30142%2C83.0164169%201218.0566%2C81.0655284%20C1218.94551%2C78.7763756%201231.53978%2C83.1816162%201227.31547%2C83.8345343%20Z%20M1254.15596%2C83.9604002%20C1249.67992%2C82.2691049%201242.01795%2C81.7813817%201237.48685%2C82.7568282%20C1237.67565%2C82.7174948%201232.49162%2C82.8512265%201234.09639%2C83.755872%20C1237.39245%2C85.6280981%201250.63963%2C85.6202323%201254.15596%2C83.9604002%20Z%20M1272.4377%2C84.7155869%20C1269.18097%2C82.6702956%201268.07966%2C84.3694611%201264.86227%2C85.0774442%20C1265.34212%2C87.8936536%201273.25582%2C84.5031928%201272.4377%2C84.7155869%20Z%20M1297.98809%2C98.245958%20C1292.47368%2C97.5537065%201285.57476%2C95.6657488%201280.06821%2C97.5379749%20C1279.93448%2C99.5439328%201285.83435%2C98.4426249%201286.8098%2C98.2459624%20C1290.15306%2C98.8595427%201294.88083%2C99.575396%201297.98809%2C98.245958%20Z%20M1352.92772%2C89.9467974%20C1351.59041%2C86.6979341%201343.66885%2C87.5947182%201340.99424%2C88.2319047%20C1327.0548%2C88.7746929%201312.36018%2C84.5425173%201298.53088%2C86.6035402%20C1306.8379%2C89.726542%201316.1361%2C88.7432297%201324.81285%2C88.9634895%20C1334.05599%2C89.1994765%201343.71605%2C91.7167594%201352.92772%2C89.9467974%20Z%20M1362.91927%2C90.4682819%20C1362.94322%2C90.4579601%201362.96648%2C90.4467184%201362.98897%2C90.4345161%20C1362.98221%2C90.4395837%201362.97346%2C90.4436992%201362.96278%2C90.4469002%20L1362.91927%2C90.4682819%20Z%20M1371.87811%2C91.8819498%20C1366.27716%2C87.4531118%201388.75175%2C91.6380926%201388.65735%2C91.6852874%20C1385.04663%2C93.8407085%201375.5675%2C92.0550149%201371.87811%2C91.8819498%20Z%20M1380.77512%2C102.611856%20C1380.96392%2C104.381818%201389.79799%2C103.823294%201390.85997%2C103.390636%20C1389.64067%2C102.989445%201388.42922%2C102.588255%201387.20992%2C102.187064%20C1387.10765%2C102.187064%201380.64925%2C101.455479%201380.77512%2C102.611856%20Z%20M1413.0199%2C103.374909%20C1412.24111%2C103.422108%201406.55363%2C103.162515%201406.78963%2C104.476221%20C1407.15149%2C106.505776%201417.46447%2C105.365135%201413.0199%2C103.374909%20Z%20M1415.79678%2C93.2349896%20C1418.63658%2C92.652868%201421.90118%2C92.1258114%201424.72525%2C93.1956562%20C1418.12526%2C94.8948217%201414.50667%2C94.3048344%201408.10334%2C92.8888639%20C1410.65995%2C93.006864%201413.24016%2C93.0304614%201415.79678%2C93.2349896%20Z%20M1427.49426%2C105.900053%20C1425.82656%2C106.663105%201417.6454%2C106.954166%201417.12621%2C104.672879%20C1421.18533%2C103.658099%201424.41059%2C103.374909%201427.49426%2C105.900053%20Z%20M1428.02131%2C94.1003061%20C1430.59365%2C93.7305786%201431.91523%2C94.8712243%201433.3312%2C95.0757526%20C1431.10498%2C95.4376099%201429.27995%2C95.5320082%201428.02131%2C94.1003061%20Z%20M1456.01818%2C107.111495%20C1455.11353%2C107.677885%201455.20006%2C107.489089%201455.79792%2C107.135097%20C1456.01031%2C107.072166%201456.15191%2C107.040699%201456.01818%2C107.111495%20Z%20M1460.86394%2C106.584448%20C1461.23367%2C106.820443%201458.48039%2C106.804712%201456.49017%2C106.77324%20C1457.66228%2C106.222586%201459.50303%2C105.695534%201460.86394%2C106.584448%20Z%20M1469.15523%2C96.7749225%20C1465.6153%2C98.474088%201452.51758%2C90.1434642%201448.89899%2C94.2183107%20C1448.19888%2C94.9656271%201457.10375%2C96.2635975%201458.13426%2C96.5703943%20C1459.90422%2C96.6490566%201467.13354%2C97.8604989%201469.15523%2C96.7749225%20Z%20M1711.97832%2C116.000648%20C1718.06699%2C116.858094%201724.24219%2C115.764647%201730.24433%2C115.473587%20C1739.25934%2C115.040928%201749.58806%2C116.370366%201758.3356%2C114.128413%20C1759.30318%2C114.183478%201767.80686%2C113.388962%201766.84715%2C112.948438%20C1757.07696%2C108.433067%201733.63479%2C112.979906%201722.92849%2C112.806841%20C1717.37315%2C112.715408%201702.47197%2C109.759675%201697.65509%2C112.220888%20C1700.55055%2C111.074549%201709.64213%2C115.673283%201711.97832%2C116.000648%20Z%20M1599.93578%2C116.354644%20C1599.9424%2C116.35767%201599.9505%2C116.360641%201599.96436%2C116.363439%20C1599.95483%2C116.360516%201599.9453%2C116.357584%201599.93578%2C116.354644%20Z%20M1629.54528%2C111.768481%20C1636.279%2C111.406624%201635.12263%2C110.730104%201637.54551%2C112.869789%20C1636.05088%2C113.278845%201630.01727%2C114.089097%201629.54528%2C111.768481%20Z%20M1608.73053%2C111.36729%20C1614.4652%2C112.854057%201621.0416%2C113.357517%201627.00441%2C112.633798%20C1621.79678%2C110.934637%201613.96175%2C109.738926%201608.73053%2C111.36729%20Z%20M1596.41159%2C111.831412%20C1597.4185%2C112.130338%201600.71456%2C111.721282%201600.71456%2C111.721277%20C1600.50217%2C111.595416%201596.45879%2C110.950364%201596.41159%2C111.831412%20Z%20M1591.89622%2C111.217823%20C1595.57932%2C111.868241%201584.07122%2C110.941778%201583.42313%2C111.214623%20C1585.7207%2C110.16577%201589.4365%2C111.178534%201591.89622%2C111.217823%20Z%20M1581.7327%2C115.8276%20C1584.70624%2C117.078372%201590.57465%2C115.457873%201594.25617%2C115.615202%20C1592.96606%2C115.434271%201591.65236%2C115.379206%201590.29932%2C115.583734%20C1587.12125%2C114.262167%201584.26572%2C114.340833%201581.7327%2C115.8276%20Z%20M1512.52324%2C108.676956%20C1505.99404%2C105.207833%201493.42338%2C110.934641%201487.35831%2C107.803778%20C1490.37904%2C109.510805%201495.46866%2C109.33774%201498.8198%2C108.582557%20C1499.92897%2C108.629757%201511.15447%2C107.961102%201512.52324%2C108.676956%20Z%20M1513.30988%2C97.5930576%20C1515.82716%2C97.4907935%201522.17543%2C96.5782778%201523.96899%2C98.9067596%20C1521.64838%2C99.6068768%201514.99332%2C99.9844702%201513.30988%2C97.5930576%20Z%20M1538.67148%2C97.6087936%20C1538.07362%2C97.5301269%201528.57089%2C97.1210704%201529.03502%2C98.6629024%20C1529.38114%2C99.8114095%201540.83476%2C101.888168%201538.67148%2C97.6087936%20Z%20M1551.82427%2C109.888398%20C1552.91771%2C109.935597%201554.18422%2C109.841199%201555.44286%2C109.833333%20C1551.06909%2C110.08506%201545.14561%2C112.059551%201541.96755%2C109.998528%20C1542.99019%2C110.462649%201550.86455%2C109.849065%201551.82427%2C109.888398%20Z%20M1832.50883%2C71.7594715%20C1842.12169%2C70.3120378%201860.95409%2C64.0503026%201862.25206%2C66.921577%20C1853.13479%2C69.7849812%201842.49142%2C71.8224022%201832.50883%2C71.7594715%20Z%20M1827.26974%2C71.6572074%20C1825.48405%2C71.688675%201823.45449%2C71.7830733%201821.25187%2C71.9089392%20C1824.18607%2C71.5156143%201826.84495%2C71.3268177%201827.29334%2C71.6572118%20C1828.98464%2C71.8066751%201830.7546%2C71.7516101%201832.50883%2C71.7594759%20C1829.95222%2C72.1449306%201828.01706%2C72.2157271%201827.26974%2C71.6572074%20Z%20M154.277195%2C130.525085%20C154.465284%2C130.372096%20154.631351%2C130.224043%20154.773356%2C130.081699%20C154.633255%2C130.228341%20154.464898%2C130.367315%20154.271835%2C130.499763%20L154.277195%2C130.525085%20Z%20M131.527853%2C139.560835%20C135.058291%2C139.756551%20150.099561%2C133.923127%20154.271835%2C130.499763%20C151.678946%2C132.278586%20144.629961%2C132.880519%20141.730703%2C135.076927%20C140.629395%2C135.509586%20132.928092%2C139.552969%20131.527853%2C139.560835%20Z%20M147.693463%2C127.713889%20C145.388579%2C129.059063%20142.934231%2C129.97944%20140.322554%2C130.475033%20C142.588105%2C129.019729%20145.042453%2C128.099348%20147.693463%2C127.713889%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--36{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20219%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-17448.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2237%22%20transform%3D%22translate(0.000000%2C%2017448.000000)%22%3E%20%3Cpath%20d%3D%22M1497.46524%2C78.3714412%20L1497.46524%2C78.3836134%20L1497.40516%2C78.347568%20L1497.46524%2C78.3595831%20L1497.46524%2C78.3714412%20C1497.56873%2C78.2161346%201497.38679%2C78.0162275%201496.41975%2C77.8562641%20L1496.15568%2C77.8142738%20C1496.58597%2C77.8965344%201496.99554%2C78.1196769%201497.40512%2C78.3594275%20C1495.14607%2C78.0950679%201492.69476%2C77.9749032%201495.2422%2C78.1791804%20C1496.15544%2C78.7078928%201497.22488%2C78.6237803%201497.4652%2C78.3954728%20C1498.51061%2C79.032328%201499.44787%2C79.813378%201500.13279%2C78.9842607%20C1500.31303%2C78.7679707%201498.94321%2C78.5396726%201497.46524%2C78.3714412%20Z%20M1910.64224%2C7.23569476%20C1907.54206%2C8.23304396%201904.5981%2C10.2637809%201900.98121%2C11.1409655%20C1892.04116%2C13.2918603%201881.21457%2C14.8900194%201872.53888%2C15.935429%20C1856.85774%2C17.8219711%201842.79879%2C26.8221035%201826.60095%2C30.4029323%20C1812.27764%2C33.5752134%201796.74069%2C38.2735493%201782.97013%2C40.2081586%20C1777.10623%2C41.0372691%201770.30506%2C40.3163014%201764.46518%2C42.779623%20C1759.76685%2C44.7622928%201758.7695%2C49.0040138%201752.40092%2C48.0186864%20C1751.99236%2C46.841097%201752.74938%2C46.1441595%201754.67198%2C45.9398822%20C1735.16969%2C45.3390724%201714.65803%2C51.8158076%201694.33864%2C53.9426722%20C1681.42122%2C55.3005019%201668.27551%2C57.3312389%201655.33406%2C58.6410014%20C1640.57816%2C60.1430259%201626.56728%2C63.9882143%201612.08776%2C63.8320043%20C1604.84199%2C63.7599068%201598.72574%2C64.7572493%201591.63618%2C65.9588689%20C1585.8684%2C66.9321879%201573.93632%2C66.5116183%201569.52637%2C71.1138198%20C1568.26467%2C72.4235822%201581.31426%2C71.1138198%201582.25152%2C71.005677%20C1587.33438%2C70.4168823%201592.56142%2C70.66922%201597.89661%2C69.8040505%20C1607.06497%2C68.3260562%201615.30809%2C66.1511243%201624.41636%2C64.9134525%20C1644.6997%2C62.1737629%201665.40361%2C61.7531933%201685.99938%2C58.2925292%20C1696.57363%2C56.5141367%201705.05707%2C55.312517%201715.51116%2C54.9640449%20C1735.55417%2C54.2911376%201753.8188%2C57.1509919%201774.90722%2C53.6062152%20C1778.78845%2C52.9573381%201781.70839%2C52.0080629%201785.32527%2C51.4673354%20C1787.11568%2C50.7103156%201788.82198%2C49.7970857%201790.44417%2C48.7276458%20C1791.53764%2C49.3044254%201792.60708%2C49.9292655%201793.65249%2C50.6021728%20C1798.71131%2C50.0974906%201803.91433%2C49.8811983%201808.92508%2C49.0640961%20C1814.90915%2C48.0907839%201830.49416%2C40.3283165%201835.70919%2C46.1681897%20C1836.56236%2C47.3938193%201814.044%2C50.8304532%201811.821%2C50.9746481%20C1808.95481%2C51.2578685%201779.65373%2C54.2326384%201775.95837%2C55.9314731%20C1777.62864%2C55.521711%201783.29348%2C58.4610813%201783.73914%2C58.9173557%20C1782.48946%2C59.3980009%201774.48667%2C61.46479%201773.98199%2C61.0922876%20C1775.32781%2C62.2939073%201778.27178%2C62.5702752%201781.93672%2C62.3539829%20C1777.7671%2C63.3272951%201774.51071%2C64.25254%201774.54676%2C64.3606828%20C1775.11152%2C65.8026251%201787.88474%2C63.6517302%201789.08636%2C63.2672127%20C1789.61507%2C62.9187406%201799.56448%2C60.2992089%201799.73271%2C60.647681%20C1799.54045%2C60.155014%201798.55512%2C59.998804%201797.2814%2C59.9627586%20C1803.95039%2C58.5448466%201810.2589%2C56.9827397%201813.53932%2C56.4900726%20C1821.93864%2C55.2403925%201827.0215%2C52.9933632%201835.07235%2C54.9279725%20C1832.12837%2C57.3432269%201822.71969%2C59.4220311%201818.52604%2C60.9601078%20C1812.87843%2C63.0268969%201807.31493%2C64.2165015%201801.36691%2C65.5022337%20C1791.95823%2C67.5449858%201782.52552%2C69.1551532%201772.92457%2C70.7412903%20C1755.26076%2C73.6612269%201736.99613%2C75.4516413%201718.99587%2C78.5398031%20C1693.43741%2C82.9136971%201667.30219%2C84.295557%201641.63558%2C88.9097803%20C1629.91978%2C91.0126147%201617.71132%2C91.685522%201605.81529%2C93.8003715%20C1600.91268%2C94.665541%201596.52677%2C95.5667557%201591.64819%2C96.4920007%20C1585.51994%2C97.657575%201561.39141%2C102.932684%201555.73178%2C99.9887169%20C1555.25822%2C99.7400886%201580.58738%2C95.35043%201582.26445%2C93.6696232%20C1580.68282%2C94.5833322%201553.28225%2C95.8780296%201551.33385%2C96.3357907%20C1546.51536%2C97.4893431%201540.71153%2C102.620264%201534.46311%2C99.8685522%20C1535.11199%2C99.4119373%201535.76086%2C98.9433073%201536.40973%2C98.4866923%20C1531.12261%2C97.0567652%201525.41492%2C100.397271%201520.13981%2C100.913969%20C1513.83131%2C101.526794%201506.99409%2C100.962036%201500.78171%2C102.031476%20C1488.4531%2C104.146325%201476.10044%2C103.425351%201463.69973%2C106.056898%20C1443.7288%2C110.298619%201420.4294%2C111.211848%201399.48516%2C113.36275%20C1377.6998%2C115.597764%201355.95048%2C118.433588%201334.20116%2C120.981023%20C1329.63921%2C121.515798%201275.79246%2C125.073876%201265.40124%2C127.765942%20C1269.72773%2C126.260581%201277.70138%2C125.586862%201279.43133%2C123.828862%20C1286.20846%2C116.955594%201277.30447%2C118.529716%201270.5033%2C119.370848%20C1262.17607%2C120.404236%201253.13989%2C120.236011%201244.82468%2C121.161256%20C1232.31582%2C122.555138%201219.90308%2C125.619269%201207.75471%2C126.868956%20C1204.55839%2C127.193391%201200.7012%2C126.544514%201197.43279%2C126.556529%20C1191.05219%2C126.592582%201188.51677%2C129.176061%201184.14288%2C129.836953%20C1175.73154%2C131.11067%201164.95301%2C130.473815%201155.98892%2C129.86099%20C1148.82727%2C129.368323%201142.30247%2C131.651398%201135.47727%2C132.324305%20C1118.00572%2C134.042622%201099.86126%2C133.87439%201082.87035%2C136.361742%20C1067.81406%2C138.560704%201052.50543%2C138.969252%201037.88171%2C140.098774%20C1017.21385%2C141.684911%20996.209534%2C144.184285%20975.914173%2C145.746392%20C944.251492%2C148.185684%20912.024053%2C151.213763%20880.133058%2C153.881362%20C864.848452%2C155.155079%20850.933692%2C156.500894%20835.901431%2C158.531631%20C829.725107%2C159.360748%20785.733803%2C164.371504%20784.89267%2C160.970922%20C789.014227%2C160.406158%20804.935687%2C160.862772%20807.459091%2C157.330011%20C807.699414%2C156.981539%20785.926058%2C158.519615%20785.409361%2C158.555661%20C778.968678%2C159.000261%20772.624122%2C159.300666%20765.991184%2C160.20188%20C755.032412%2C161.69189%20744.398075%2C162.412864%20733.607528%2C164.539729%20C720.317614%2C167.159261%20706.69125%2C165.981678%20693.173022%2C167.964348%20C683.30772%2C169.418305%20677.311637%2C170.535812%20667.518433%2C171.521139%20C645.240402%2C173.756154%20624.176005%2C176.339633%20601.48942%2C177.43311%20C580.497121%2C178.45449%20559.096267%2C180.052642%20538.103969%2C183.092743%20C527.313422%2C184.65485%20516.835302%2C185.09945%20506.020725%2C186.661557%20C499.135442%2C187.658899%20474.706509%2C193.150307%20470.548907%2C188.860526%20C481.711957%2C181.903145%20501.46659%2C185.027359%20514.16771%2C183.188878%20C523.960914%2C181.770966%20533.213391%2C181.60274%20542.874415%2C180.196844%20C563.073642%2C177.264892%20582.383676%2C174.320925%20603.255811%2C172.590593%20C622.15729%2C171.016471%20641.251032%2C169.502431%20660.549044%2C166.798787%20C669.05651%2C165.609182%20678.609385%2C163.72264%20686.600159%2C163.217958%20C693.100918%2C162.797389%20697.667074%2C160.610442%20703.807352%2C159.589062%20C708.493666%2C158.808005%20715.198702%2C161.22326%20720.317608%2C160.550352%20C741.406034%2C157.774611%20763.527855%2C153.352649%20783.859262%2C151.97079%20C792.24657%2C151.39401%20800.994364%2C149.050853%20808.87699%2C148.450043%20C817.68486%2C147.789151%20825.291111%2C148.113593%20833.954793%2C146.371239%20C843.183233%2C144.508727%20854.009825%2C144.388569%20863.310362%2C143.583482%20C873.932684%2C142.658237%20884.951538%2C141.660888%20895.44168%2C140.399186%20C912.20428%2C138.368449%20929.050985%2C137.863774%20945.717458%2C136.049329%20C958.406562%2C134.667469%20972.008902%2C135.953201%20984.710021%2C131.939788%20C986.464384%2C131.387045%20989.276171%2C129.091949%20993.409742%2C128.791544%20C996.666129%2C128.551221%20999.634133%2C128.779529%201002.92657%2C128.671386%20C1014.79857%2C128.262838%201025.81743%2C126.075891%201038.32629%2C125.571209%20C1046.50932%2C125.246774%201057.13164%2C125.967748%201064.35338%2C121.389577%20C1048.33578%2C117.436253%201032.40231%2C123.360238%201016.13237%2C123.612576%20C994.467167%2C123.937011%20973.006238%2C125.799523%20951.581354%2C128.4551%20C918.452701%2C132.552626%20884.374765%2C131.747546%20851.017798%2C136.157492%20C826.865239%2C139.353803%20801.751384%2C140.988008%20777.478661%2C142.622212%20C748.21922%2C144.580852%20719.416393%2C150.348627%20690.289131%2C153.544939%20C627.384332%2C160.442237%20563.48219%2C168.396959%20499.784326%2C173.984495%20C439.703335%2C179.259604%20378.516853%2C187.791106%20318.892478%2C193.114282%20C292.216515%2C195.493484%20265.98516%2C200.336015%20239.201055%2C203.003614%20C223.435804%2C204.577736%20207.634502%2C207.870175%20191.845214%2C209.336154%20C183.746296%2C210.093174%20137.652157%2C219.381696%20135.59739%2C214.959735%20C135.921832%2C215.656673%20207.622487%2C203.376123%20217.511819%2C201.826031%20C239.525497%2C198.389398%20264.026527%2C196.899388%20286.785203%2C193.414694%20C324.720342%2C187.622888%20363.785004%2C181.554707%20402.10466%2C178.16614%20C445.435072%2C174.332974%20488.885643%2C168.036486%20532.552512%2C164.599852%20C569.346114%2C161.715967%20606.115678%2C156.669159%20643.029445%2C153.97753%20C669.164673%2C152.066958%20695.011511%2C146.383295%20721.278925%2C144.640941%20C736.948048%2C143.607546%20755.741385%2C144.256423%20771.013975%2C138.44058%20C755.404935%2C135.280321%20738.726447%2C141.781086%20723.477894%2C142.069476%20C709.707335%2C142.333836%20695.059585%2C145.806515%20680.964584%2C146.899992%20C670.306217%2C147.729109%20658.950912%2C149.711779%20649.03755%2C150.432753%20C640.061448%2C151.081631%20628.177431%2C155.623756%20619.285441%2C153.821327%20C621.304163%2C151.754538%20627.804928%2C153.989552%20628.922436%2C151.201795%20C630.857045%2C147.128306%20599.242424%2C152.751887%20597.11556%2C153.040277%20C583.056611%2C154.986901%20568.817415%2C154.470204%20554.902654%2C155.779966%20C534.991817%2C157.654493%20514.119676%2C161.812095%20494.292952%2C164.527754%20C491.216805%2C164.948317%20487.395654%2C164.371544%20483.370225%2C164.960339%20C476.460912%2C165.969697%20469.359337%2C164.287425%20461.945341%2C166.029779%20C457.259027%2C167.123256%20456.069423%2C167.471728%20449.400432%2C167.68802%20C445.519199%2C167.8202%20441.62595%2C169.033835%20437.756731%2C169.430368%20C420.42938%2C171.220782%20403.041941%2C171.220782%20385.534343%2C175.090001%20C353.787542%2C182.107463%20320.310417%2C184.967317%20285.499492%2C189.052822%20C270.839733%2C190.771139%20253.608503%2C195.79391%20238.311882%2C195.1931%20C233.721696%2C195.000844%20230.104815%2C193.426722%20224.793654%2C193.823255%20C219.602651%2C194.207772%20215.240773%2C195.445444%20210.04977%2C196.130367%20C202.275287%2C197.151739%20194.020159%2C197.536257%20186.005354%2C198.894086%20C166.479035%2C202.186525%20146.424003%2C205.02235%20125.900334%2C208.290758%20C120.541106%2C209.143906%2070.4575902%2C216.726126%2070.4936356%2C217.675408%20C70.3975079%2C215.152004%20103.117614%2C209.961008%20106.50618%2C207.329461%20C98.154925%2C205.262672%20113.055013%2C204.613795%20114.653165%2C204.4696%20C122.235386%2C203.796686%20129.673411%2C201.645791%20137.243616%2C200.888771%20C143.648254%2C200.239901%20149.355948%2C199.542957%20155.520256%2C198.125045%20C164.748696%2C195.99818%20193.827897%2C197.103665%20199.451478%2C189.19701%20C198.670428%2C189.124912%20197.985506%2C188.836523%20197.384696%2C188.30781%20C200.725202%2C184.871176%20210.23001%2C187.562805%20214.183341%2C184.859161%20C208.764031%2C182.179547%20193.7558%2C184.270366%20187.951979%2C186.084811%20C183.578085%2C187.454656%20182.316383%2C188.319825%20178.399097%2C189.329183%20C175.046576%2C190.194352%20169.651302%2C189.653625%20166.214668%2C190.614922%20C157.250581%2C193.114289%20149.464084%2C194.48414%20139.899187%2C195.938098%20C132.196802%2C197.115687%20124.626596%2C200.756598%20116.948248%2C202.583058%20C108.993525%2C204.481615%2099.6329058%2C203.976933%2091.4618907%2C204.78202%20C84.4804801%2C205.478964%2077.8475417%2C208.675269%2070.7099211%2C210.381571%20C65.0743252%2C211.727385%2015.4233944%2C215.957084%2014.7024199%2C218.840969%20C15.1350046%2C216.077242%2030.876225%2C214.382956%2033.4236592%2C212.496414%20C27.9562884%2C210.910276%2018.3553461%2C213.385613%2012.3232175%2C214.058521%20C12.68849%2C214.017932%202.2839728%2C215.785163%200.317972891%2C214.947005%20L0%2C0%20L1920%2C0%20L1920%2C5%20C1919.32019%2C5.80001588%201911.41349%2C6.9865221%201910.64224%2C7.23569476%20Z%20M262.368272%2C160.982903%20C255.218637%2C162.52098%20248.093031%2C165.621157%20240.462743%2C163.698569%20C246.146407%2C159.661126%20264.423046%2C158.471521%20270.875744%2C160.033628%20C269.37372%2C162.100404%20264.362964%2C161.415481%20262.368272%2C160.982903%20Z%20M232.868515%2C165.93357%20C233.745699%2C166.330109%20234.574817%2C166.185915%20235.355867%2C165.525016%20C234.490697%2C165.116468%20233.649565%2C165.260663%20232.868515%2C165.93357%20Z%20M267.667418%2C175.786857%20C266.405716%2C172.9991%20253.151854%2C177.901706%20250.772645%2C177.385009%20C243.899377%2C177.925737%20227.449204%2C179.824294%20222.16208%2C183.585363%20C224.805642%2C184.222232%20268.112018%2C176.976461%20267.667418%2C175.786857%20Z%20M285.703735%2C173.684029%20C282.086854%2C176.207433%20274.036004%2C176.051223%20270.142762%2C174.945731%20C274.97327%2C172.987092%20280.741046%2C172.746769%20285.703735%2C173.684029%20Z%20M296.097742%2C156.380702%20C296.205885%2C156.224492%20275.646171%2C158.783941%20276.51134%2C159.372736%20C278.241672%2C160.526295%20283.276459%2C159.036286%20285.511473%2C159.540968%20C287.638337%2C159.216526%20294.763943%2C158.219183%20296.097742%2C156.380702%20Z%20M643.942634%2C149.183006%20C643.329809%2C148.714376%20638.667525%2C148.582196%20637.513973%2C148.546151%20C636.82905%2C148.534135%20630.977162%2C148.83454%20631.445799%2C150.528827%20C632.371037%2C153.881335%20643.029404%2C148.618241%20643.942634%2C149.183006%20Z%20M682.586712%2C144.92927%20C679.63073%2C145.205644%20676.446441%2C145.325802%20673.490459%2C144.628865%20C669.537128%2C145.181614%20652.0055%2C145.049434%20649.854598%2C148.353888%20C649.698388%2C148.606226%20662.495642%2C147.392591%20664.129846%2C147.272427%20C669.152603%2C146.899924%20678.296931%2C148.365903%20682.586712%2C144.92927%20Z%20M802.760715%2C135.700836%20C801.342803%2C135.508574%20801.559095%2C135.2322%20803.409592%2C134.847682%20C804.827504%2C135.051959%20804.611211%2C135.340349%20802.760715%2C135.700836%20Z%20M815.738202%2C132.98517%20C814.704814%2C133.069283%20807.362916%2C134.907765%20807.338886%2C134.883734%20C809.885819%2C136.013031%20820.540545%2C131.809213%20821.733591%2C132.576169%20C820.279383%2C131.639734%20817.312073%2C132.828985%20815.738202%2C132.98517%20Z%20M848.073797%2C130.341615%20C844.156511%2C129.969113%20838.869387%2C130.569923%20835.192431%2C132.02388%20C837.848014%2C133.09332%20841.500934%2C131.651378%20844.360788%2C132.432428%20C845.598453%2C131.735497%20846.836125%2C131.038553%20848.073797%2C130.341615%20Z%20M853.060509%2C129.680723%20C856.292866%2C128.178698%20856.485128%2C129.164026%20858.431752%2C130.053225%20C856.148677%2C131.182748%20854.310196%2C131.543235%20853.060509%2C129.680723%20Z%20M817.480542%2C155.839988%20C818.165465%2C156.464828%20814.091969%2C156.957495%20813.286895%2C156.765233%20C813.16673%2C155.623689%20816.975867%2C155.491516%20817.480542%2C155.839988%20Z%20M835.841287%2C153.833288%20C834.759832%2C152.439406%20823.692911%2C153.749169%20823.128146%2C155.443455%20C822.707584%2C157.7025%20831.263116%2C155.407403%20832.40466%2C155.683778%20C832.452714%2C155.67177%20836.99484%2C155.323297%20835.841287%2C153.833288%20Z%20M863.839027%2C151.021501%20C860.750865%2C150.132301%20843.699876%2C151.165689%20841.536959%2C153.689093%20C842.594384%2C152.559571%20853.288803%2C153.040223%20855.680027%2C153.701115%20C858.984481%2C153.797243%20861.123368%2C152.751833%20863.839027%2C151.021501%20Z%20M1118.45026%2C116.174524%20C1114.28063%2C114.023629%201104.43936%2C115.321376%201100.25773%2C115.285331%20C1095.28303%2C115.237264%201089.23888%2C116.126463%201084.44441%2C117.53236%20C1078.46035%2C124.814176%201094.86245%2C120.512379%201099.48869%2C119.911569%20C1103.35791%2C119.406887%201116.6959%2C119.587127%201118.45026%2C116.174524%20Z%20M1143.82848%2C113.05031%20C1143.01138%2C112.064982%201130.71881%2C116.595093%201133.02592%2C116.883483%20C1133.44649%2C116.883483%201145.87124%2C115.489601%201143.82848%2C113.05031%20Z%20M1191.74908%2C110.767235%20C1192.93868%2C110.743198%201200.89341%2C110.394733%201200.50889%2C108.436093%20C1199.93211%2C105.444059%201188.85318%2C106.741806%201188.1322%2C109.517548%20C1189.34584%2C109.938118%201190.54746%2C110.346665%201191.74908%2C110.767235%20Z%20M1228.30235%2C103.857922%20C1228.61477%2C101.214353%201243.01018%2C104.170342%201237.91531%2C106.381326%20C1235.92062%2C105.708419%201227.92985%2C107.066248%201228.30235%2C103.857922%20Z%20M1264.20675%2C101.610893%20C1260.52979%2C100.265078%201250.86877%2C101.130247%201247.66045%2C102.88461%20C1246.96351%2C103.06485%201244.94479%2C102.848558%201244.47615%2C103.653645%20C1243.87534%2C104.518814%201261.15463%2C104.735106%201264.20675%2C101.610893%20Z%20M1281.96668%2C98.2223192%20C1276.99198%2C97.4893296%201278.03739%2C99.592164%201274.91318%2C101.322496%20C1275.76633%2C104.75913%201282.53145%2C101.622901%201281.96668%2C98.2223192%20Z%20M1301.18061%2C97.8497965%20C1303.11522%2C97.6935865%201303.46369%2C97.8978638%201302.22602%2C98.4866585%20C1300.27939%2C98.6428685%201299.93092%2C98.4385913%201301.18061%2C97.8497965%20Z%20M1309.91637%2C115.081013%20C1304.78546%2C115.081013%201296.63848%2C113.999558%201292.25257%2C117.364094%20C1292.66112%2C120.127821%201297.56373%2C117.916844%201298.98164%2C117.183861%20C1302.67061%2C116.95554%201307.20071%2C117.616432%201309.91637%2C115.081013%20Z%20M1362.01863%2C92.3463533%20C1360.27627%2C88.1166542%201352.93437%2C90.2555407%201350.01444%2C91.9498274%20C1344.24666%2C92.6107196%201338.73122%2C93.2355597%201333.46813%2C93.8844367%20C1325.54945%2C94.869764%201315.22754%2C94.2929844%201308.16202%2C97.3691311%20C1316.12876%2C100.228985%201325.95801%2C97.5734083%201334.06894%2C96.0713837%20C1343.34545%2C94.3410449%201353.41503%2C96.696217%201362.01863%2C92.3463533%20Z%20M1370.21367%2C90.7962614%20C1367.61817%2C90.0392416%201363.12411%2C88.7294791%201364.04936%2C90.4838346%20C1364.78235%2C91.8777164%201368.86786%2C91.0245689%201370.21367%2C90.7962614%20Z%20M1380.9201%2C91.7815752%20C1384.44085%2C91.3730275%201394.79881%2C91.5412526%201397.29818%2C88.3930086%20C1397.5385%2C88.1046188%201381.16043%2C88.1647011%201379.88671%2C88.9097058%20C1380.23518%2C89.8709962%201380.58365%2C90.8202781%201380.9201%2C91.7815752%20Z%20M1401.70813%2C105.708337%20C1400.43442%2C105.32382%201399.17271%2C104.939303%201397.91101%2C104.554785%20C1397.16601%2C104.51874%201391.35016%2C104.650913%201391.69864%2C106.381245%20C1392.16727%2C108.748439%201400.67475%2C106.609552%201401.70813%2C105.708337%20Z%20M1405.57735%2C105.74439%20C1404.17145%2C105.516082%201404.39976%2C105.239707%201406.25025%2C104.915272%20C1407.68018%2C105.14358%201407.45187%2C105.419954%201405.57735%2C105.74439%20Z%20M1432.85411%2C84.0791766%20C1426.64173%2C87.900328%201423.51752%2C87.6840356%201416.54813%2C86.638626%20C1419.05951%2C86.3502362%201421.60694%2C85.9056364%201424.13035%2C85.7614414%20C1426.66576%2C84.4276488%201429.92216%2C82.9856997%201432.85411%2C84.0791766%20Z%20M1423.3493%2C101.62282%20C1428.20384%2C103.893879%201418.15829%2C107.210355%201417.47338%2C104.422598%20C1417.01676%2C102.560087%201422.17171%2C101.694917%201423.3493%2C101.62282%20Z%20M1427.60302%2C102.848476%20C1430.95555%2C100.829755%201435.43758%2C98.7749874%201437.973%2C102.824446%20C1436.32678%2C104.410583%201428.38408%2C105.624218%201427.60302%2C102.848476%20Z%20M1441.63794%2C85.3649021%20C1439.29477%2C86.4103117%201437.48033%2C86.770799%201436.25469%2C84.8482116%20C1439.58317%2C83.4543298%201439.66728%2C84.3915899%201441.63794%2C85.3649021%20Z%20M1459.49251%2C99.7678174%20C1459.79141%2C99.7963566%201460.08882%2C99.6461542%201460.38321%2C99.3157081%20C1460.08882%2C98.9371982%201459.79141%2C98.7359264%201459.49251%2C98.708889%20L1459.49251%2C99.7678174%20Z%20M1465.10408%2C99.7587933%20C1464.94937%2C99.9255197%201464.81719%2C100.084736%201464.72106%2C100.228931%20C1465.53816%2C99.9104966%201465.91367%2C99.6641646%201466.0098%2C99.4974397%20L1465.10408%2C99.7587933%20Z%20M1464.7496%2C99.4283447%20C1464.45069%2C99.5440012%201464.15029%2C99.724245%201463.90395%2C99.9886018%20C1464.22238%2C100.024647%201464.51377%2C99.9495458%201464.79015%2C99.8113589%20L1464.7496%2C99.4283447%20Z%20M1465.7046%2C99.1923397%20L1465.70476%2C99.1778526%20C1467.04396%2C97.9589223%201469.21299%2C96.7846096%201470.70512%2C97.8977825%20C1471.11366%2C98.1981874%201466.16299%2C99.0393199%201465.99477%2C99.0753652%20C1465.9163%2C99.1734622%201465.79778%2C99.1514363%201465.7046%2C99.1923397%20Z%20M1477.0016%2C81.6158211%20C1475.34337%2C83.2860708%201458.72496%2C76.3887728%201456.70624%2C81.3034011%20C1455.81704%2C83.334138%201464.79315%2C82.8534929%201466.17501%2C83.2259952%20C1467.42469%2C83.0817936%201475.70386%2C83.0697785%201477.0016%2C81.6158211%20Z%20M1521.5697%2C92.1780537%20C1515.78991%2C88.76545%201501.67088%2C97.9458227%201496.81633%2C95.1820961%20C1499.41184%2C96.8283156%201505.55211%2C96.3476704%201508.15962%2C94.3890309%20C1509.68569%2C94.2208125%201520.83672%2C91.7454757%201521.5697%2C92.1780537%20Z%20M1531.03847%2C75.4394908%20C1529.11588%2C72.5796366%201523.13182%2C74.5743282%201520.3681%2C75.2472287%20C1521.82205%2C77.5903925%201528.55112%2C77.1097406%201531.03847%2C75.4394908%20Z%20M1545.20558%2C71.0655901%20C1547.75301%2C76.5089307%201536.52988%2C76.0523158%201535.95311%2C74.2498795%20C1535.14802%2C71.7625276%201544.13614%2C71.0175229%201545.20558%2C71.0655901%20Z%20M1566.29403%2C86.7546101%20C1564.37503%2C86.5222156%201561.68793%2C87.1261207%201560.22582%2C87.5037548%20C1560.34599%2C87.4917397%201550.43262%2C89.2100566%201550.60086%2C89.2941692%20C1553.7009%2C91.6245573%201562.81122%2C86.8605518%201566.44284%2C86.8464436%20L1566.29403%2C86.7546101%20Z%20M1591.35979%2C84.5357712%20C1590.50664%2C85.4129558%201603.90471%2C83.7667363%201599.66299%2C83.2740692%20C1597.71636%2C83.3581818%201592.82577%2C83.1779416%201591.35979%2C84.5357712%20Z%20M1608.37475%2C82.7333282%20C1607.87007%2C82.3728409%201604.09698%2C82.3728409%201604.1811%2C83.5384153%20C1605.03425%2C83.790753%201609.03564%2C83.2860708%201608.37475%2C82.7333282%20Z%20M1608.37476%2C89.8829571%20C1607.24523%2C89.2941624%201620.03047%2C88.1646402%201616.83416%2C89.3662666%20C1615.06778%2C89.7027169%201610.15315%2C90.9524038%201608.37476%2C89.8829571%20Z%20M1634.25764%2C80.1858804%20C1628.65809%2C82.1325048%201621.74878%2C82.324767%201616.16125%2C81.0029826%20C1620.17466%2C78.3113535%201629.78762%2C78.5396609%201634.25764%2C80.1858804%20Z%20M1644.3993%2C78.2632862%20C1645.02414%2C80.1618434%201637.36982%2C81.6398378%201636.6128%2C78.4916005%20C1636.86514%2C78.4315181%201643.87058%2C76.6050516%201644.3993%2C78.2632862%20Z%20M1664.41828%2C75.9802048%20C1662.12319%2C74.6704423%201659.59979%2C74.6944726%201656.86009%2C76.0523022%20C1655.35198%2C76.0163981%201650.8633%2C75.8731899%201649.80687%2C77.190257%20C1650.60279%2C76.2763911%201662.66173%2C78.03549%201664.41828%2C75.9802048%20Z%20M166.784648%2C162.041172%20L166.779847%2C161.937447%20C164.485721%2C162.787263%20156.512011%2C162.362168%20153.78987%2C164.155063%20C152.27583%2C164.395385%20143.732313%2C166.846685%20143.107472%2C166.594347%20C145.799728%2C167.940475%20162.928794%2C164.575414%20166.784648%2C162.041172%20Z%20M166.784648%2C162.041172%20C166.990267%2C161.90603%20167.158141%2C161.77325%20167.284068%2C161.643674%20C167.178928%2C161.7564%20167.007303%2C161.85319%20166.779847%2C161.937447%20L166.784648%2C162.041172%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--37{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20221%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-17867.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2238%22%20transform%3D%22translate(0.000000%2C%2017867.000000)%22%3E%20%3Cpath%20d%3D%22M1876.68283%2C56.7422952%20C1856.19787%2C54.8800255%201843.16198%2C54.8800255%201835.7129%2C58.6045648%20L1835.7129%2C53.0177559%20C1835.7129%2C49.2932166%201833.85063%2C47.430947%201830.12609%2C49.2932166%20C1809.64113%2C64.1913737%201779.84481%2C60.4668345%201738.87488%2C39.9818684%20L1740.73715%2C36.2573291%20C1738.87488%2C36.2573291%201737.01261%2C38.1195988%201731.4258%2C39.9818684%20C1727.70126%2C41.844138%201723.97672%2C43.7064077%201722.11445%2C43.7064077%20C1722.11445%2C41.844138%201722.11445%2C41.844138%201723.97672%2C39.9818684%20L1723.97672%2C38.1195988%20L1716.52764%2C41.844138%20C1712.8031%2C41.844138%201710.94083%2C43.7064077%201709.07856%2C45.5686773%20C1709.07856%2C43.7064077%201709.07856%2C41.844138%201707.21629%2C39.9818684%20C1705.35403%2C38.1195988%201705.35403%2C36.2573291%201705.35403%2C34.3950595%20L1701.62949%2C39.9818684%20C1699.76722%2C45.5686773%201696.04268%2C47.430947%201692.31814%2C49.2932166%20C1690.45587%2C49.2932166%201686.73133%2C49.2932166%201684.86906%2C47.430947%20C1679.28225%2C45.5686773%201677.41998%2C45.5686773%201675.55771%2C45.5686773%20C1671.83317%2C45.5686773%201668.10863%2C47.430947%201664.38409%2C49.2932166%20C1666.24636%2C45.5686773%201666.24636%2C43.7064077%201666.24636%2C43.7064077%20C1656.93501%2C47.430947%201645.7614%2C51.1554863%201632.72551%2C53.0177559%20C1610.37827%2C54.8800255%201597.34239%2C54.8800255%201595.48012%2C56.7422952%20C1597.34239%2C51.1554863%201599.20466%2C47.430947%201597.34239%2C43.7064077%20C1595.48012%2C49.2932166%201591.75558%2C54.8800255%201582.44423%2C56.7422952%20C1580.58196%2C54.8800255%201580.58196%2C54.8800255%201578.71969%2C54.8800255%20C1576.85742%2C54.8800255%201576.85742%2C54.8800255%201574.99515%2C56.7422952%20C1569.6819%2C60.2844623%201566.05301%2C62.142267%201564.10849%2C60.7138217%20C1563.52556%2C61.6556945%201563.07912%2C62.3291041%201561.95926%2C62.3291041%20C1560.09699%2C62.3291041%201560.09699%2C62.3291041%201558.23472%2C60.4668345%20C1554.51018%2C60.4668345%201554.51018%2C62.3291041%201552.64791%2C64.1913737%20L1548.92338%2C56.7422952%20C1547.06111%2C60.4668345%201547.06111%2C62.3291041%201547.06111%2C62.3291041%20C1545.19884%2C62.3291041%201545.19884%2C60.4668345%201543.33657%2C58.6045648%20C1541.4743%2C56.7422952%201541.4743%2C56.7422952%201539.61203%2C56.7422952%20C1538.37051%2C55.5007821%201537.129%2C56.7422952%201535.88749%2C60.4668345%20C1534.02522%2C60.4668345%201534.02522%2C60.4668345%201532.16295%2C58.6045648%20C1530.92144%2C57.3630517%201529.05917%2C56.7422952%201526.57614%2C56.7422952%20C1524.71387%2C58.6045648%201520.98933%2C58.6045648%201515.40252%2C58.6045648%20C1514.90353%2C58.1055712%201514.40453%2C57.8739874%201513.94137%2C57.8739874%20C1514.40453%2C57.6065775%201514.90353%2C57.2412888%201515.40252%2C56.7422952%20C1517.26479%2C54.8800255%201517.26479%2C53.0177559%201515.40252%2C47.430947%20C1500.50436%2C53.0177559%201470.70805%2C56.7422952%201424.15131%2C56.7422952%20C1420.42677%2C51.1554863%201418.5645%2C49.2932166%201418.5645%2C47.430947%20C1416.70223%2C47.430947%201414.83996%2C47.430947%201411.11542%2C49.2932166%20L1405.05828%2C53.8360742%20C1405.11586%2C53.1265534%201404.65188%2C52.1410198%201403.66634%2C51.1554863%20C1401.80407%2C49.2932166%201401.80407%2C49.2932166%201399.9418%2C49.2932166%20C1396.21726%2C49.2932166%201396.21726%2C51.1554863%201394.355%2C53.0177559%20C1392.49273%2C54.8800255%201390.63046%2C56.7422952%201388.76819%2C54.8800255%20C1390.63046%2C53.0177559%201392.49273%2C49.2932166%201390.63046%2C45.5686773%20C1388.76819%2C49.2932166%201385.04365%2C51.1554863%201381.31911%2C53.0177559%20C1375.7323%2C54.8800255%201375.7323%2C54.8800255%201373.87003%2C54.8800255%20C1375.7323%2C53.0177559%201375.7323%2C51.1554863%201375.7323%2C49.2932166%20C1373.87003%2C51.1554863%201370.14549%2C53.0177559%201366.42095%2C53.0177559%20C1360.83414%2C51.1554863%201358.97187%2C51.1554863%201357.1096%2C53.0177559%20L1358.97187%2C47.430947%20C1357.1096%2C45.5686773%201355.24733%2C45.5686773%201355.24733%2C45.5686773%20C1353.38506%2C47.430947%201353.38506%2C47.430947%201353.38506%2C49.2932166%20C1353.38506%2C51.1554863%201353.38506%2C53.0177559%201351.52279%2C54.8800255%20C1349.66052%2C54.8800255%201349.66052%2C53.0177559%201349.66052%2C49.2932166%20C1347.79825%2C53.0177559%201342.21145%2C54.8800255%201336.62464%2C56.7422952%20C1327.31329%2C58.6045648%201323.58875%2C58.6045648%201323.58875%2C60.4668345%20L1323.58875%2C56.7422952%20C1321.72648%2C58.6045648%201318.00194%2C58.6045648%201310.55286%2C58.6045648%20C1304.96605%2C58.6045648%201301.24151%2C58.6045648%201297.51697%2C60.4668345%20C1293.10703%2C57.8208678%201290.36796%2C55.5926195%201289.10193%2C53.7820898%20C1288.86566%2C54.1480684%201288.5716%2C54.5140469%201288.20563%2C54.8800255%20L1282.61882%2C58.6045648%20C1280.75655%2C58.6045648%201280.75655%2C58.6045648%201278.89428%2C60.4668345%20C1278.89428%2C62.3291041%201278.89428%2C64.1913737%201280.75655%2C67.915913%20C1271.4452%2C66.0536434%201267.72066%2C64.1913737%201267.72066%2C64.1913737%20C1262.13385%2C64.1913737%201258.40931%2C64.1913737%201256.54704%2C66.0536434%20C1258.40931%2C64.1913737%201258.40931%2C62.3291041%201256.54704%2C56.7422952%20C1251%2C63%201233%2C55.1377304%201233%2C57%20C1229.27546%2C62.5868089%201226.75073%2C64.1913737%201223.02619%2C66.0536434%20C1224.88846%2C64.1913737%201224.88846%2C62.3291041%201223.02619%2C56.7422952%20C1221.93986%2C55.6559712%201221.48723%2C54.5696473%201221.66828%2C53.4833233%20L1209.9903%2C73.5027219%20C1209.9903%2C73.5027219%201209.9903%2C71.6404523%201208.12803%2C69.7781827%20C1208.12803%2C67.915913%201206.26576%2C66.0536434%201204.40349%2C67.915913%20C1204.40349%2C69.7781827%201204.40349%2C71.6404523%201202.54122%2C75.3649916%20L1195.09214%2C75.3649916%20C1189.50533%2C73.5027219%201187.64306%2C71.6404523%201187.64306%2C67.915913%20C1185.7808%2C66.0536434%201187.64306%2C66.0536434%201189.50533%2C64.1913737%20C1191.3676%2C62.3291041%201191.3676%2C62.3291041%201189.50533%2C60.4668345%20C1187.64306%2C60.4668345%201185.7808%2C62.3291041%201183.91853%2C64.1913737%20C1182.05626%2C66.0536434%201180.19399%2C66.0536434%201178.33172%2C66.0536434%20L1178.33172%2C64.1913737%20C1176.46945%2C62.3291041%201172.74491%2C64.1913737%201170.88264%2C66.0536434%20C1169.02037%2C69.7781827%201169.02037%2C73.5027219%201170.88264%2C75.3649916%20C1172.74491%2C75.3649916%201172.74491%2C75.3649916%201172.74491%2C73.5027219%20C1170.88264%2C71.6404523%201172.74491%2C69.7781827%201174.60718%2C71.6404523%20C1172.74491%2C77.2272612%201167.1581%2C79.0895309%201159.70902%2C80.9518005%20C1159.70902%2C79.0895309%201159.70902%2C77.2272612%201161.57129%2C73.5027219%20C1156.04117%2C77.1894717%201148.68637%2C82.7008933%201137.70074%2C88.2308282%20C1137.59701%2C88.9394507%201138.02363%2C87.7390301%201139.22405%2C86.5386094%20C1140.72387%2C82.0391491%201141.01578%2C79.9555154%201142.04541%2C80.2877086%20C1138.49166%2C79.3285482%201133.0397%2C81.0713092%201124.3259%2C82.8140702%20C1119.60609%2C85.9606078%201114.88628%2C86.4489109%201111.28933%2C84.2789793%20C1111.28978%2C84.3666799%201111.29001%2C85.7406465%201111.29001%2C88.4008791%20C1109.42774%2C88.4008791%201107.56547%2C86.5386094%201105.7032%2C84.6763398%20C1103.84093%2C82.8140702%201103.84093%2C80.9518005%201101.97866%2C82.8140702%20C1096.39185%2C84.6763398%201094.52958%2C86.5386094%201094.52958%2C86.5386094%20C1094.52958%2C85.3876635%201094.52958%2C84.2367176%201094.96921%2C83.5253939%20L1081.4937%2C90.2631487%20C1072.18235%2C92.1254184%201066.59554%2C92.1254184%201061.00873%2C90.2631487%20C1061.00873%2C92.1254184%201059.14646%2C93.987688%201057.28419%2C97.7122273%20C1055.42192%2C99.5744969%201053.55965%2C101.436767%201051.69738%2C101.436767%20L1053.55965%2C93.987688%20C1052.29738%2C92.7254144%201051.0351%2C92.3187283%201049.77283%2C92.1877%20L1047.97284%2C93.987688%20L1047.97284%2C92.1254184%20C1044.26593%2C92.5571521%201042.66957%2C93.27242%201040.52376%2C93.987688%20C1038.66149%2C95.8499576%201034.93695%2C93.987688%201033.07468%2C92.1254184%20C1034.93695%2C90.2631487%201034.93695%2C90.2631487%201034.93695%2C88.4008791%20C1034.93695%2C84.6763398%201033.07468%2C82.8140702%201031.21242%2C82.8140702%20C1029.35015%2C84.6763398%201029.35015%2C84.6763398%201029.35015%2C86.5386094%20L1021.90107%2C93.987688%20C1021.90107%2C95.8499576%201020.0388%2C95.8499576%201018.17653%2C95.8499576%20C1016.31426%2C95.8499576%201016.31426%2C95.8499576%201016.31426%2C97.7122273%20C1016.31426%2C97.7122273%201014.45199%2C97.7122273%201012.58972%2C99.5744969%20C1008.86518%2C99.5744969%201007.00291%2C97.7122273%201007.00291%2C93.987688%20L1007.00291%2C86.2336975%20C1005.91981%2C88.1112484%201003.11519%2C91.7766282%20999.553831%2C97.7122273%20L999.553831%2C93.987688%20C999.553831%2C97.7122273%20999.553831%2C99.5744969%20997.691562%2C99.5744969%20C997.691562%2C100.81601%20995.208535%2C100.81601%20990.242483%2C99.5744969%20C990.242483%2C101.436767%20990.242483%2C103.299036%20988.380213%2C105.161306%20C986.517944%2C103.299036%20982.793404%2C103.299036%20977.206596%2C103.299036%20C971.619787%2C101.436767%20969.757517%2C99.5744969%20967.895247%2C97.7122273%20C964.170708%2C101.436767%20962.308438%2C103.299036%20960.446169%2C103.299036%20C958.583899%2C105.161306%20954.85936%2C107.023575%20951.134821%2C105.161306%20C952.99709%2C103.299036%20954.85936%2C101.436767%20954.85936%2C99.5744969%20C952.99709%2C97.7122273%20951.134821%2C97.7122273%20951.134821%2C97.7122273%20C951.134821%2C99.5744969%20951.134821%2C99.5744969%20949.272551%2C99.5744969%20L947.410281%2C101.436767%20C947.410281%2C103.299036%20943.685742%2C99.5744969%20934.374394%2C90.2631487%20C932.512124%2C92.1254184%20930.649855%2C93.987688%20930.649855%2C97.7122273%20C930.649855%2C99.5744969%20930.649855%2C101.436767%20932.512124%2C103.299036%20L932.512124%2C107.023575%20C930.649855%2C103.299036%20928.787585%2C101.436767%20926.925315%2C101.436767%20L915.751697%2C108.885845%20C913.889428%2C108.885845%20913.889428%2C107.023575%20912.027158%2C105.161306%20C913.889428%2C103.299036%20913.889428%2C101.436767%20913.889428%2C99.5744969%20C915.751697%2C97.7122273%20915.751697%2C95.8499576%20913.889428%2C93.987688%20C912.027158%2C92.1254184%20912.027158%2C90.2631487%20910.164888%2C90.2631487%20C908.302619%2C90.2631487%20908.302619%2C92.1254184%20906.440349%2C93.987688%20C904.57808%2C95.8499576%20902.71581%2C97.7122273%20902.71581%2C99.5744969%20C901.474297%2C100.81601%20900.14002%2C103.983969%20898.712981%2C109.078375%20C895.266731%2C108.885845%20895.266731%2C108.885845%20893.404462%2C110.748115%20C887.817653%2C110.748115%20887.817653%2C108.885845%20887.817653%2C105.161306%20C887.817653%2C107.023575%20885.955383%2C107.023575%20884.093113%2C107.023575%20C882.230844%2C107.023575%20880.368574%2C108.885845%20880.368574%2C114.472654%20C878.506305%2C112.610384%20871.057226%2C110.748115%20859.883608%2C112.610384%20C850.57226%2C114.472654%20844.985451%2C110.748115%20841.260912%2C103.299036%20C841.260912%2C103.299036%20839.398642%2C103.299036%20837.536372%2C105.161306%20C835.674103%2C107.023575%20835.674103%2C107.023575%20837.536372%2C108.885845%20C839.398642%2C110.748115%20839.398642%2C112.610384%20839.398642%2C110.748115%20L841.260912%2C108.885845%20L841.260912%2C114.472654%20C837.536372%2C112.610384%20835.674103%2C112.610384%20835.674103%2C110.748115%20C833.811833%2C108.885845%20833.811833%2C107.023575%20835.674103%2C101.436767%20C833.811833%2C99.5744969%20833.811833%2C101.436767%20831.949564%2C103.299036%20C830.087294%2C103.299036%20830.087294%2C105.161306%20828.225024%2C108.885845%20L824.500485%2C116.334924%20C822.638215%2C118.197193%20820.775946%2C118.197193%20818.913676%2C118.197193%20C818.913676%2C114.472654%20817.051406%2C112.610384%20813.326867%2C112.610384%20L807.740058%2C121.921733%20L802.153249%2C116.334924%20L802.153249%2C105.161306%20L796.56644%2C107.023575%20L792.841901%2C112.610384%20L788.595926%2C105.53376%20C788.819399%2C106.651122%20788.372454%2C107.768483%20787.255092%2C108.885845%20C785.392823%2C110.748115%20783.530553%2C110.748115%20783.530553%2C110.748115%20L785.392823%2C108.885845%20C783.530553%2C107.023575%20781.668283%2C107.023575%20777.943744%2C108.885845%20C777.943744%2C110.748115%20779.806014%2C114.472654%20785.392823%2C116.334924%20C785.392823%2C118.197193%20785.392823%2C118.197193%20783.530553%2C118.197193%20C781.668283%2C120.059463%20779.806014%2C120.059463%20779.806014%2C121.921733%20C779.806014%2C120.059463%20777.943744%2C118.197193%20776.081474%2C118.197193%20L768.632396%2C118.197193%20C766.770126%2C118.197193%20766.770126%2C118.197193%20766.770126%2C120.059463%20C764.907856%2C121.921733%20764.907856%2C123.784002%20764.907856%2C123.784002%20C764.907856%2C123.784002%20763.045587%2C123.784002%20761.183317%2C121.921733%20C759.321048%2C121.921733%20759.321048%2C120.059463%20761.183317%2C118.197193%20L763.045587%2C120.059463%20C764.907856%2C120.059463%20764.907856%2C120.059463%20766.770126%2C118.197193%20C764.907856%2C118.197193%20764.907856%2C118.197193%20764.907856%2C116.334924%20L763.045587%2C114.472654%20C761.183317%2C112.610384%20761.183317%2C114.472654%20759.321048%2C116.334924%20C757.458778%2C116.334924%20757.458778%2C118.197193%20757.458778%2C123.784002%20C757.458778%2C125.646272%20755.596508%2C127.508542%20753.734239%2C125.646272%20C755.596508%2C123.784002%20755.596508%2C123.784002%20755.596508%2C121.921733%20C757.458778%2C120.059463%20757.458778%2C118.197193%20757.458778%2C118.197193%20L750.009699%2C114.472654%20L750.009699%2C119.128328%20L750.009699%2C118.197193%20C750.009699%2C120.059463%20748.14743%2C121.921733%20744.42289%2C123.784002%20C742.560621%2C125.646272%20740.698351%2C127.508542%20740.698351%2C129.370811%20C738.836081%2C131.233081%20736.973812%2C129.370811%20735.111542%2C127.508542%20C731.387003%2C125.646272%20729.524733%2C125.646272%20729.524733%2C125.646272%20C727.662464%2C123.784002%20725.800194%2C121.921733%20723.937924%2C123.784002%20L718.351115%2C129.370811%20L718.351115%2C127.508542%20C716.488846%2C127.508542%20716.488846%2C127.508542%20714.626576%2C129.370811%20L709.039767%2C133.09535%20C707.177498%2C131.233081%20707.177498%2C127.508542%20705.315228%2C120.059463%20C703.452958%2C118.197193%20703.452958%2C116.334924%20703.452958%2C116.334924%20C701.590689%2C114.472654%20701.590689%2C116.334924%20699.728419%2C118.197193%20C697.866149%2C118.197193%20696.00388%2C120.059463%20696.00388%2C125.646272%20C694.14161%2C129.370811%20694.14161%2C133.09535%20696.00388%2C134.95762%20C694.14161%2C133.09535%20688.554801%2C134.95762%20681.105723%2C136.81989%20C675.518914%2C138.682159%20671.794374%2C136.81989%20668.069835%2C134.95762%20C666.207565%2C138.682159%20664.345296%2C140.544429%20664.345296%2C140.544429%20C662.483026%2C140.544429%20656.896217%2C142.406699%20643.86033%2C144.268968%20C636.411251%2C146.131238%20628.962173%2C146.131238%20623.375364%2C140.544429%20C625.237633%2C138.682159%20627.099903%2C136.81989%20625.237633%2C134.95762%20C623.375364%2C131.233081%20623.375364%2C129.370811%20623.375364%2C129.370811%20C621.513094%2C131.233081%20621.513094%2C133.09535%20619.650824%2C131.233081%20C619.650824%2C129.991568%20619.030068%2C131.233081%20617.788555%2C134.95762%20C619.650824%2C138.682159%20619.650824%2C140.544429%20619.650824%2C142.406699%20L623.375364%2C146.131238%20C619.650824%2C147.993508%20615.926285%2C149.855777%20610.339476%2C149.855777%20C604.752667%2C151.718047%20601.028128%2C149.855777%20599.165858%2C147.993508%20C601.028128%2C149.855777%20601.028128%2C151.718047%20599.165858%2C153.580317%20L593.579049%2C146.131238%20C591.71678%2C144.268968%20589.85451%2C146.131238%20587.992241%2C147.993508%20L587.992241%2C153.580317%20L584.267701%2C147.993508%20C584.267701%2C147.993508%20584.267701%2C149.855777%20582.405432%2C155.442586%20C581.163919%2C156.684099%20578.680892%2C154.82183%20574.956353%2C149.855777%20C571.231814%2C155.442586%20569.369544%2C157.304856%20569.369544%2C157.304856%20C565.645005%2C161.029395%20561.920466%2C161.029395%20560.058196%2C159.167125%20L554.471387%2C153.580317%20C552.609117%2C153.580317%20552.609117%2C153.580317%20552.609117%2C155.442586%20C552.609117%2C157.304856%20552.609117%2C159.167125%20554.471387%2C161.029395%20C552.609117%2C159.167125%20550.746848%2C159.167125%20548.884578%2C159.167125%20C547.022308%2C157.304856%20545.160039%2C157.304856%20543.297769%2C157.304856%20L535.848691%2C151.718047%20C526.537342%2C166.616204%20509.776916%2C174.065283%20483.705141%2C175.927552%20L483.705141%2C172.203013%20C481.842871%2C170.340743%20481.842871%2C172.203013%20481.842871%2C174.065283%20C481.842871%2C175.927552%20481.842871%2C175.927552%20479.980601%2C177.789822%20C479.980601%2C175.927552%20479.980601%2C174.065283%20478.118332%2C170.340743%20C476.256062%2C168.478474%20474.393792%2C164.753934%20476.256062%2C162.891665%20C474.393792%2C161.029395%20472.531523%2C162.891665%20470.669253%2C166.616204%20C468.806984%2C172.203013%20466.944714%2C174.065283%20465.082444%2C174.065283%20C465.082444%2C175.927552%20465.082444%2C177.789822%20466.944714%2C175.927552%20C468.806984%2C174.065283%20468.806984%2C175.927552%20468.806984%2C177.789822%20C459.495635%2C177.789822%20457.633366%2C179.652091%20459.495635%2C183.376631%20C457.633366%2C181.514361%20455.771096%2C175.927552%20457.633366%2C170.340743%20L453.908826%2C175.927552%20C452.046557%2C172.203013%20452.046557%2C166.616204%20453.908826%2C159.167125%20C455.771096%2C153.580317%20446.459748%2C159.167125%20444.597478%2C164.753934%20C444.597478%2C165.388393%20444.583969%2C165.995833%20444.556949%2C166.576253%20C442.681651%2C164.754031%20438.997256%2C164.767348%20437.1484%2C166.616204%20C435.28613%2C168.478474%20433.42386%2C170.340743%20431.561591%2C170.340743%20C433.42386%2C172.203013%20435.28613%2C174.065283%20433.42386%2C177.789822%20C433.42386%2C179.652091%20433.42386%2C181.514361%20431.561591%2C183.376631%20C429.699321%2C181.514361%20429.699321%2C179.652091%20429.699321%2C177.789822%20C429.699321%2C175.927552%20427.837051%2C175.927552%20425.974782%2C175.927552%20C425.974782%2C175.927552%20425.974782%2C177.789822%20424.112512%2C183.376631%20C422.250242%2C185.2389%20424.112512%2C187.10117%20425.974782%2C188.96344%20L425.974782%2C192.687979%20C424.733269%2C193.929492%20422.250242%2C193.929492%20418.525703%2C192.687979%20C416.663434%2C192.687979%20416.663434%2C192.687979%20416.663434%2C194.550249%20C414.801164%2C192.687979%20414.801164%2C188.96344%20416.663434%2C183.376631%20C416.663434%2C177.789822%20414.801164%2C174.065283%20412.938894%2C172.203013%20C412.938894%2C174.065283%20412.938894%2C177.789822%20411.076625%2C183.376631%20C409.214355%2C188.96344%20409.214355%2C192.687979%20411.076625%2C196.412518%20L407.352085%2C190.825709%20L407.352085%2C183.376631%20C407.352085%2C182.135118%20405.489816%2C183.376631%20401.765276%2C187.10117%20C401.765276%2C188.96344%20401.765276%2C190.825709%20399.903007%2C190.825709%20L396.178468%2C183.376631%20L396.178468%2C192.687979%20C396.178468%2C190.825709%20396.178468%2C190.825709%20394.316198%2C188.96344%20L390.591659%2C185.2389%20C390.591659%2C185.2389%20388.729389%2C187.10117%20383.14258%2C188.96344%20C381.28031%2C190.825709%20379.418041%2C190.825709%20377.555771%2C185.2389%20L377.555771%2C187.10117%20C375.693501%2C187.10117%20375.693501%2C187.10117%20373.831232%2C188.96344%20C371.968962%2C190.825709%20371.968962%2C192.687979%20373.831232%2C194.550249%20C381.28031%2C192.687979%20381.28031%2C194.550249%20383.14258%2C198.274788%20C381.28031%2C196.412518%20379.418041%2C194.550249%20377.555771%2C196.412518%20C377.555771%2C198.274788%20377.555771%2C198.274788%20375.693501%2C200.137058%20C373.831232%2C201.999327%20373.831232%2C203.861597%20373.831232%2C203.861597%20L371.968962%2C200.137058%20C370.106693%2C205.723866%20368.244423%2C209.448406%20368.244423%2C207.586136%20C368.244423%2C203.861597%20368.244423%2C201.999327%20366.382153%2C200.137058%20L364.519884%2C207.586136%20C360.795344%2C207.586136%20360.795344%2C205.723866%20358.933075%2C203.861597%20C358.933075%2C201.999327%20358.933075%2C200.137058%20357.070805%2C200.137058%20C357.070805%2C198.274788%20357.070805%2C198.274788%20355.208535%2C198.274788%20L358.016051%2C194.063514%20C357.300061%2C194.192253%20356.254298%2C193.733742%20355.208535%2C192.687979%20C353.346266%2C190.825709%20353.346266%2C188.96344%20351.483996%2C190.825709%20C351.483996%2C192.687979%20351.483996%2C196.412518%20349.621726%2C201.999327%20L349.621726%2C211.310675%20C347.759457%2C213.172945%20347.759457%2C211.310675%20345.897187%2C209.448406%20C345.897187%2C207.586136%20345.897187%2C209.448406%20344.034918%2C211.310675%20L347.759457%2C201.999327%20C347.759457%2C200.137058%20345.897187%2C198.274788%20344.034918%2C196.412518%20C342.172648%2C194.550249%20338.448109%2C192.687979%20336.585839%2C194.550249%20L332.8613%2C201.999327%20C332.8613%2C205.723866%20334.723569%2C207.586136%20336.585839%2C209.448406%20C334.723569%2C209.448406%20334.723569%2C209.448406%20332.8613%2C207.586136%20C330.99903%2C205.723866%20330.99903%2C203.861597%20330.99903%2C201.999327%20C329.13676%2C203.861597%20329.13676%2C205.723866%20329.13676%2C207.586136%20C330.99903%2C209.448406%20330.99903%2C211.310675%20329.13676%2C213.172945%20L321.687682%2C205.723866%20L312.376334%2C198.274788%20L316.100873%2C187.10117%20L312.376334%2C188.96344%20C314.238603%2C185.2389%20306.789525%2C188.96344%20304.927255%2C194.550249%20C303.064985%2C201.999327%20295.615907%2C205.723866%20293.753637%2C200.137058%20C291.891368%2C198.274788%20291.891368%2C196.412518%20290.029098%2C196.412518%20C288.166828%2C194.550249%20282.580019%2C198.274788%20280.71775%2C194.550249%20C280.71775%2C190.825709%20278.85548%2C188.96344%20276.99321%2C190.825709%20C273.268671%2C192.687979%20271.406402%2C192.687979%20271.406402%2C192.687979%20C269.544132%2C194.550249%20267.681862%2C196.412518%20269.544132%2C200.137058%20C269.544132%2C201.999327%20271.406402%2C203.861597%20273.268671%2C201.999327%20C275.130941%2C201.999327%20275.130941%2C203.861597%20275.130941%2C205.723866%20C273.268671%2C207.586136%20269.544132%2C207.586136%20265.819593%2C205.723866%20C263.957323%2C203.861597%20262.095053%2C213.172945%20260.232784%2C211.310675%20C258.370514%2C211.310675%20250.921435%2C209.448406%20245.334627%2C203.861597%20C244.174096%2C201.540536%20242.290345%2C200.665915%20240.584768%2C201.688432%20C241.268314%2C200.515731%20241.610087%2C198.805898%20241.610087%2C196.412518%20C239.747818%2C198.274788%20236.023278%2C196.412518%20234.161009%2C192.687979%20C232.298739%2C190.825709%20224.849661%2C188.96344%20226.71193%2C190.825709%20L230.436469%2C198.274788%20C224.849661%2C198.274788%20221.125121%2C200.137058%20219.262852%2C201.999327%20C215.538312%2C203.861597%20213.676043%2C207.586136%20211.813773%2C211.310675%20C209.951503%2C209.448406%20209.951503%2C207.586136%20209.951503%2C203.861597%20C209.951503%2C202.320574%20209.951503%2C200.779551%20211.006721%2C200.293746%20C202.046276%2C203.95038%20192.918055%2C205.678363%20182.017459%2C203.861597%20C183.879728%2C205.723866%20183.879728%2C207.586136%20183.879728%2C209.448406%20C183.879728%2C211.310675%20182.017459%2C211.310675%20180.155189%2C211.310675%20L178.292919%2C213.172945%20C177.994127%2C213.471737%20177.743275%2C213.77053%20177.540362%2C214.069322%20C175.960062%2C208.473022%20174.56838%2C205.471469%20174.56838%2C203.861597%20L172.706111%2C205.723866%20C170.843841%2C205.723866%20170.843841%2C203.861597%20170.843841%2C201.999327%20C170.843841%2C198.274788%20168.981571%2C196.412518%20167.119302%2C198.274788%20C161.532493%2C203.861597%20155.945684%2C209.448406%20148.496605%2C213.172945%20C142.909796%2C211.310675%20139.185257%2C211.310675%20133.598448%2C213.172945%20C131.736178%2C215.035215%20129.873909%2C215.035215%20124.2871%2C216.897484%20C122.42483%2C218.759754%20120.562561%2C220.622024%20118.700291%2C220.622024%20C116.838021%2C218.759754%20114.975752%2C216.897484%20113.113482%2C211.310675%20C111.251212%2C205.723866%20111.251212%2C203.861597%20109.388943%2C203.861597%20C107.526673%2C203.861597%20107.526673%2C205.723866%20109.388943%2C209.448406%20L109.388943%2C211.310675%20C109.388943%2C212.552188%20108.768186%2C211.931432%20107.526673%2C209.448406%20L98.2153249%2C209.448406%20C94.4907856%2C211.310675%2092.628516%2C215.035215%2092.628516%2C220.622024%20L92.628516%2C209.448406%20C92.628516%2C208.206893%2092.0077595%2C208.827649%2090.7662464%2C211.310675%20C88.9039767%2C211.310675%2088.9039767%2C211.310675%2088.9039767%2C213.172945%20L88.9039767%2C209.448406%20L87.0417071%2C207.586136%20L87.0417071%2C201.999327%20C85.1794374%2C200.137058%2081.4548982%2C200.137058%2079.5926285%2C201.999327%20C75.8680892%2C205.723866%2074.0058196%2C207.586136%2072.14355%2C207.586136%20L77.7303589%2C213.172945%20C75.8680892%2C215.035215%2072.14355%2C216.897484%2066.556741%2C216.897484%20C60.9699321%2C216.897484%2057.2453928%2C216.897484%2055.3831232%2C218.759754%20L53.5208535%2C213.172945%20L49.7963143%2C216.897484%20C49.7963143%2C215.035215%2047.9340446%2C213.172945%2046.071775%2C211.310675%20C44.2095053%2C209.448406%2044.2095053%2C211.310675%2042.3472357%2C213.172945%20L44.5469666%2C208.773483%20L43%2C208%20L33%2C211.310675%20L22%2C205%20L21%2C200.293746%20L10%2C201.999327%20L11%2C198.274788%20L0%2C194.063514%20L0%2C0%20L1920%2C0%20L1920%2C10%20C1917.16733%2C17.0816817%201915.16733%2C22.0816817%201914%2C25%20C1903.33767%2C42.9143995%201884.30561%2C57.5892703%201876.68283%2C56.7422952%20Z%22%20id%3D%22Combined-Shape%22%20fill-rule%3D%22nonzero%22%20opacity%3D%220.25%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M1914%2C25%20C1905.58487%2C34.7124516%201898.89428%2C40.1894339%201893.92823%2C41.430947%20C1884.61688%2C50.7422952%201873.44326%2C52.6045648%201856.68283%2C50.7422952%20C1836.19787%2C48.8800255%201823.16198%2C48.8800255%201815.7129%2C52.6045648%20L1815.7129%2C47.0177559%20C1815.7129%2C43.2932166%201813.85063%2C41.430947%201810.12609%2C43.2932166%20C1789.64113%2C58.1913737%201759.84481%2C54.4668345%201718.87488%2C33.9818684%20L1720.73715%2C30.2573291%20C1718.87488%2C30.2573291%201717.01261%2C32.1195988%201711.4258%2C33.9818684%20C1707.70126%2C35.844138%201703.97672%2C37.7064077%201702.11445%2C37.7064077%20C1702.11445%2C35.844138%201702.11445%2C35.844138%201703.97672%2C33.9818684%20L1703.97672%2C32.1195988%20L1696.52764%2C35.844138%20C1692.8031%2C35.844138%201690.94083%2C37.7064077%201689.07856%2C39.5686773%20C1689.07856%2C37.7064077%201689.07856%2C35.844138%201687.21629%2C33.9818684%20C1685.35403%2C32.1195988%201685.35403%2C30.2573291%201685.35403%2C28.3950595%20L1681.62949%2C33.9818684%20C1679.76722%2C39.5686773%201676.04268%2C41.430947%201672.31814%2C43.2932166%20C1670.45587%2C43.2932166%201666.73133%2C43.2932166%201664.86906%2C41.430947%20C1659.28225%2C39.5686773%201657.41998%2C39.5686773%201655.55771%2C39.5686773%20C1651.83317%2C39.5686773%201648.10863%2C41.430947%201644.38409%2C43.2932166%20C1646.24636%2C39.5686773%201646.24636%2C37.7064077%201646.24636%2C37.7064077%20C1636.93501%2C41.430947%201625.7614%2C45.1554863%201612.72551%2C47.0177559%20C1590.37827%2C48.8800255%201577.34239%2C48.8800255%201575.48012%2C50.7422952%20C1577.34239%2C45.1554863%201579.20466%2C41.430947%201577.34239%2C37.7064077%20C1575.48012%2C43.2932166%201571.75558%2C48.8800255%201562.44423%2C50.7422952%20C1560.58196%2C48.8800255%201560.58196%2C48.8800255%201558.71969%2C48.8800255%20C1556.85742%2C48.8800255%201556.85742%2C48.8800255%201554.99515%2C50.7422952%20C1549.6819%2C54.2844623%201546.05301%2C56.142267%201544.10849%2C54.7138217%20C1543.52556%2C55.6556945%201543.07912%2C56.3291041%201541.95926%2C56.3291041%20C1540.09699%2C56.3291041%201540.09699%2C56.3291041%201538.23472%2C54.4668345%20C1534.51018%2C54.4668345%201534.51018%2C56.3291041%201532.64791%2C58.1913737%20L1528.92338%2C50.7422952%20C1527.06111%2C54.4668345%201527.06111%2C56.3291041%201527.06111%2C56.3291041%20C1525.19884%2C56.3291041%201525.19884%2C54.4668345%201523.33657%2C52.6045648%20C1521.4743%2C50.7422952%201521.4743%2C50.7422952%201519.61203%2C50.7422952%20C1518.37051%2C49.5007821%201517.129%2C50.7422952%201515.88749%2C54.4668345%20C1514.02522%2C54.4668345%201514.02522%2C54.4668345%201512.16295%2C52.6045648%20C1510.92144%2C51.3630517%201509.05917%2C50.7422952%201506.57614%2C50.7422952%20C1504.71387%2C52.6045648%201500.98933%2C52.6045648%201495.40252%2C52.6045648%20C1494.90353%2C52.1055712%201494.40453%2C51.8739874%201493.94137%2C51.8739874%20C1494.40453%2C51.6065775%201494.90353%2C51.2412888%201495.40252%2C50.7422952%20C1497.26479%2C48.8800255%201497.26479%2C47.0177559%201495.40252%2C41.430947%20C1480.50436%2C47.0177559%201450.70805%2C50.7422952%201404.15131%2C50.7422952%20C1400.42677%2C45.1554863%201398.5645%2C43.2932166%201398.5645%2C41.430947%20C1396.70223%2C41.430947%201394.83996%2C41.430947%201391.11542%2C43.2932166%20L1385.05828%2C47.8360742%20C1385.11586%2C47.1265534%201384.65188%2C46.1410198%201383.66634%2C45.1554863%20C1381.80407%2C43.2932166%201381.80407%2C43.2932166%201379.9418%2C43.2932166%20C1376.21726%2C43.2932166%201376.21726%2C45.1554863%201374.355%2C47.0177559%20C1372.49273%2C48.8800255%201370.63046%2C50.7422952%201368.76819%2C48.8800255%20C1370.63046%2C47.0177559%201372.49273%2C43.2932166%201370.63046%2C39.5686773%20C1368.76819%2C43.2932166%201365.04365%2C45.1554863%201361.31911%2C47.0177559%20C1355.7323%2C48.8800255%201355.7323%2C48.8800255%201353.87003%2C48.8800255%20C1355.7323%2C47.0177559%201355.7323%2C45.1554863%201355.7323%2C43.2932166%20C1353.87003%2C45.1554863%201350.14549%2C47.0177559%201346.42095%2C47.0177559%20C1340.83414%2C45.1554863%201338.97187%2C45.1554863%201337.1096%2C47.0177559%20L1338.97187%2C41.430947%20C1337.1096%2C39.5686773%201335.24733%2C39.5686773%201335.24733%2C39.5686773%20C1333.38506%2C41.430947%201333.38506%2C41.430947%201333.38506%2C43.2932166%20C1333.38506%2C45.1554863%201333.38506%2C47.0177559%201331.52279%2C48.8800255%20C1329.66052%2C48.8800255%201329.66052%2C47.0177559%201329.66052%2C43.2932166%20C1327.79825%2C47.0177559%201322.21145%2C48.8800255%201316.62464%2C50.7422952%20C1307.31329%2C52.6045648%201303.58875%2C52.6045648%201303.58875%2C54.4668345%20L1303.58875%2C50.7422952%20C1301.72648%2C52.6045648%201298.00194%2C52.6045648%201290.55286%2C52.6045648%20C1284.96605%2C52.6045648%201281.24151%2C52.6045648%201277.51697%2C54.4668345%20C1273.10703%2C51.8208678%201270.36796%2C49.5926195%201269.10193%2C47.7820898%20C1268.86566%2C48.1480684%201268.5716%2C48.5140469%201268.20563%2C48.8800255%20L1262.61882%2C52.6045648%20C1260.75655%2C52.6045648%201260.75655%2C52.6045648%201258.89428%2C54.4668345%20C1258.89428%2C56.3291041%201258.89428%2C58.1913737%201260.75655%2C61.915913%20C1251.4452%2C60.0536434%201247.72066%2C58.1913737%201247.72066%2C58.1913737%20C1242.13385%2C58.1913737%201238.40931%2C58.1913737%201236.54704%2C60.0536434%20C1238.40931%2C58.1913737%201238.40931%2C56.3291041%201236.54704%2C50.7422952%20C1231%2C57%201213%2C49.1377304%201213%2C51%20C1209.27546%2C56.5868089%201206.75073%2C58.1913737%201203.02619%2C60.0536434%20C1204.88846%2C58.1913737%201204.88846%2C56.3291041%201203.02619%2C50.7422952%20C1201.93986%2C49.6559712%201201.48723%2C48.5696473%201201.66828%2C47.4833233%20L1189.9903%2C67.5027219%20C1189.9903%2C67.5027219%201189.9903%2C65.6404523%201188.12803%2C63.7781827%20C1188.12803%2C61.915913%201186.26576%2C60.0536434%201184.40349%2C61.915913%20C1184.40349%2C63.7781827%201184.40349%2C65.6404523%201182.54122%2C69.3649916%20L1175.09214%2C69.3649916%20C1169.50533%2C67.5027219%201167.64306%2C65.6404523%201167.64306%2C61.915913%20C1165.7808%2C60.0536434%201167.64306%2C60.0536434%201169.50533%2C58.1913737%20C1171.3676%2C56.3291041%201171.3676%2C56.3291041%201169.50533%2C54.4668345%20C1167.64306%2C54.4668345%201165.7808%2C56.3291041%201163.91853%2C58.1913737%20C1162.05626%2C60.0536434%201160.19399%2C60.0536434%201158.33172%2C60.0536434%20L1158.33172%2C58.1913737%20C1156.46945%2C56.3291041%201152.74491%2C58.1913737%201150.88264%2C60.0536434%20C1149.02037%2C63.7781827%201149.02037%2C67.5027219%201150.88264%2C69.3649916%20C1152.74491%2C69.3649916%201152.74491%2C69.3649916%201152.74491%2C67.5027219%20C1150.88264%2C65.6404523%201152.74491%2C63.7781827%201154.60718%2C65.6404523%20C1152.74491%2C71.2272612%201147.1581%2C73.0895309%201139.70902%2C74.9518005%20C1139.70902%2C73.0895309%201139.70902%2C71.2272612%201141.57129%2C67.5027219%20C1136.04117%2C71.1894717%201128.68637%2C76.7008933%201117.70074%2C82.2308282%20C1117.59701%2C82.9394507%201118.02363%2C81.7390301%201119.22405%2C80.5386094%20C1120.72387%2C76.0391491%201121.01578%2C73.9555154%201122.04541%2C74.2877086%20C1118.49166%2C73.3285482%201113.0397%2C75.0713092%201104.3259%2C76.8140702%20C1099.60609%2C79.9606078%201094.88628%2C80.4489109%201091.28933%2C78.2789793%20C1091.28978%2C78.3666799%201091.29001%2C79.7406465%201091.29001%2C82.4008791%20C1089.42774%2C82.4008791%201087.56547%2C80.5386094%201085.7032%2C78.6763398%20C1083.84093%2C76.8140702%201083.84093%2C74.9518005%201081.97866%2C76.8140702%20C1076.39185%2C78.6763398%201074.52958%2C80.5386094%201074.52958%2C80.5386094%20C1074.52958%2C79.3876635%201074.52958%2C78.2367176%201074.96921%2C77.5253939%20L1061.4937%2C84.2631487%20C1052.18235%2C86.1254184%201046.59554%2C86.1254184%201041.00873%2C84.2631487%20C1041.00873%2C86.1254184%201039.14646%2C87.987688%201037.28419%2C91.7122273%20C1035.42192%2C93.5744969%201033.55965%2C95.4367666%201031.69738%2C95.4367666%20L1033.55965%2C87.987688%20C1032.29738%2C86.7254144%201031.0351%2C86.3187283%201029.77283%2C86.1877%20L1027.97284%2C87.987688%20L1027.97284%2C86.1254184%20C1024.26593%2C86.5571521%201022.66957%2C87.27242%201020.52376%2C87.987688%20C1018.66149%2C89.8499576%201014.93695%2C87.987688%201013.07468%2C86.1254184%20C1014.93695%2C84.2631487%201014.93695%2C84.2631487%201014.93695%2C82.4008791%20C1014.93695%2C78.6763398%201013.07468%2C76.8140702%201011.21242%2C76.8140702%20C1009.35015%2C78.6763398%201009.35015%2C78.6763398%201009.35015%2C80.5386094%20L1001.90107%2C87.987688%20C1001.90107%2C89.8499576%201000.0388%2C89.8499576%20998.176528%2C89.8499576%20C996.314258%2C89.8499576%20996.314258%2C89.8499576%20996.314258%2C91.7122273%20C996.314258%2C91.7122273%20994.451988%2C91.7122273%20992.589719%2C93.5744969%20C988.865179%2C93.5744969%20987.00291%2C91.7122273%20987.00291%2C87.987688%20L987.00291%2C80.2336975%20C985.91981%2C82.1112484%20983.115191%2C85.7766282%20979.553831%2C91.7122273%20L979.553831%2C87.987688%20C979.553831%2C91.7122273%20979.553831%2C93.5744969%20977.691562%2C93.5744969%20C977.691562%2C94.81601%20975.208535%2C94.81601%20970.242483%2C93.5744969%20C970.242483%2C95.4367666%20970.242483%2C97.2990362%20968.380213%2C99.1613058%20C966.517944%2C97.2990362%20962.793404%2C97.2990362%20957.206596%2C97.2990362%20C951.619787%2C95.4367666%20949.757517%2C93.5744969%20947.895247%2C91.7122273%20C944.170708%2C95.4367666%20942.308438%2C97.2990362%20940.446169%2C97.2990362%20C938.583899%2C99.1613058%20934.85936%2C101.023575%20931.134821%2C99.1613058%20C932.99709%2C97.2990362%20934.85936%2C95.4367666%20934.85936%2C93.5744969%20C932.99709%2C91.7122273%20931.134821%2C91.7122273%20931.134821%2C91.7122273%20C931.134821%2C93.5744969%20931.134821%2C93.5744969%20929.272551%2C93.5744969%20L927.410281%2C95.4367666%20C927.410281%2C97.2990362%20923.685742%2C93.5744969%20914.374394%2C84.2631487%20C912.512124%2C86.1254184%20910.649855%2C87.987688%20910.649855%2C91.7122273%20C910.649855%2C93.5744969%20910.649855%2C95.4367666%20912.512124%2C97.2990362%20L912.512124%2C101.023575%20C910.649855%2C97.2990362%20908.787585%2C95.4367666%20906.925315%2C95.4367666%20L895.751697%2C102.885845%20C893.889428%2C102.885845%20893.889428%2C101.023575%20892.027158%2C99.1613058%20C893.889428%2C97.2990362%20893.889428%2C95.4367666%20893.889428%2C93.5744969%20C895.751697%2C91.7122273%20895.751697%2C89.8499576%20893.889428%2C87.987688%20C892.027158%2C86.1254184%20892.027158%2C84.2631487%20890.164888%2C84.2631487%20C888.302619%2C84.2631487%20888.302619%2C86.1254184%20886.440349%2C87.987688%20C884.57808%2C89.8499576%20882.71581%2C91.7122273%20882.71581%2C93.5744969%20C881.474297%2C94.81601%20880.14002%2C97.9839695%20878.712981%2C103.078375%20C875.266731%2C102.885845%20875.266731%2C102.885845%20873.404462%2C104.748115%20C867.817653%2C104.748115%20867.817653%2C102.885845%20867.817653%2C99.1613058%20C867.817653%2C101.023575%20865.955383%2C101.023575%20864.093113%2C101.023575%20C862.230844%2C101.023575%20860.368574%2C102.885845%20860.368574%2C108.472654%20C858.506305%2C106.610384%20851.057226%2C104.748115%20839.883608%2C106.610384%20C830.57226%2C108.472654%20824.985451%2C104.748115%20821.260912%2C97.2990362%20C821.260912%2C97.2990362%20819.398642%2C97.2990362%20817.536372%2C99.1613058%20C815.674103%2C101.023575%20815.674103%2C101.023575%20817.536372%2C102.885845%20C819.398642%2C104.748115%20819.398642%2C106.610384%20819.398642%2C104.748115%20L821.260912%2C102.885845%20L821.260912%2C108.472654%20C817.536372%2C106.610384%20815.674103%2C106.610384%20815.674103%2C104.748115%20C813.811833%2C102.885845%20813.811833%2C101.023575%20815.674103%2C95.4367666%20C813.811833%2C93.5744969%20813.811833%2C95.4367666%20811.949564%2C97.2990362%20C810.087294%2C97.2990362%20810.087294%2C99.1613058%20808.225024%2C102.885845%20L804.500485%2C110.334924%20C802.638215%2C112.197193%20800.775946%2C112.197193%20798.913676%2C112.197193%20C798.913676%2C108.472654%20797.051406%2C106.610384%20793.326867%2C106.610384%20L787.740058%2C115.921733%20L782.153249%2C110.334924%20L782.153249%2C99.1613058%20L776.56644%2C101.023575%20L772.841901%2C106.610384%20L768.595926%2C99.5337598%20C768.819399%2C100.651122%20768.372454%2C101.768483%20767.255092%2C102.885845%20C765.392823%2C104.748115%20763.530553%2C104.748115%20763.530553%2C104.748115%20L765.392823%2C102.885845%20C763.530553%2C101.023575%20761.668283%2C101.023575%20757.943744%2C102.885845%20C757.943744%2C104.748115%20759.806014%2C108.472654%20765.392823%2C110.334924%20C765.392823%2C112.197193%20765.392823%2C112.197193%20763.530553%2C112.197193%20C761.668283%2C114.059463%20759.806014%2C114.059463%20759.806014%2C115.921733%20C759.806014%2C114.059463%20757.943744%2C112.197193%20756.081474%2C112.197193%20L748.632396%2C112.197193%20C746.770126%2C112.197193%20746.770126%2C112.197193%20746.770126%2C114.059463%20C744.907856%2C115.921733%20744.907856%2C117.784002%20744.907856%2C117.784002%20C744.907856%2C117.784002%20743.045587%2C117.784002%20741.183317%2C115.921733%20C739.321048%2C115.921733%20739.321048%2C114.059463%20741.183317%2C112.197193%20L743.045587%2C114.059463%20C744.907856%2C114.059463%20744.907856%2C114.059463%20746.770126%2C112.197193%20C744.907856%2C112.197193%20744.907856%2C112.197193%20744.907856%2C110.334924%20L743.045587%2C108.472654%20C741.183317%2C106.610384%20741.183317%2C108.472654%20739.321048%2C110.334924%20C737.458778%2C110.334924%20737.458778%2C112.197193%20737.458778%2C117.784002%20C737.458778%2C119.646272%20735.596508%2C121.508542%20733.734239%2C119.646272%20C735.596508%2C117.784002%20735.596508%2C117.784002%20735.596508%2C115.921733%20C737.458778%2C114.059463%20737.458778%2C112.197193%20737.458778%2C112.197193%20L730.009699%2C108.472654%20L730.009699%2C113.128328%20L730.009699%2C112.197193%20C730.009699%2C114.059463%20728.14743%2C115.921733%20724.42289%2C117.784002%20C722.560621%2C119.646272%20720.698351%2C121.508542%20720.698351%2C123.370811%20C718.836081%2C125.233081%20716.973812%2C123.370811%20715.111542%2C121.508542%20C711.387003%2C119.646272%20709.524733%2C119.646272%20709.524733%2C119.646272%20C707.662464%2C117.784002%20705.800194%2C115.921733%20703.937924%2C117.784002%20L698.351115%2C123.370811%20L698.351115%2C121.508542%20C696.488846%2C121.508542%20696.488846%2C121.508542%20694.626576%2C123.370811%20L689.039767%2C127.09535%20C687.177498%2C125.233081%20687.177498%2C121.508542%20685.315228%2C114.059463%20C683.452958%2C112.197193%20683.452958%2C110.334924%20683.452958%2C110.334924%20C681.590689%2C108.472654%20681.590689%2C110.334924%20679.728419%2C112.197193%20C677.866149%2C112.197193%20676.00388%2C114.059463%20676.00388%2C119.646272%20C674.14161%2C123.370811%20674.14161%2C127.09535%20676.00388%2C128.95762%20C674.14161%2C127.09535%20668.554801%2C128.95762%20661.105723%2C130.81989%20C655.518914%2C132.682159%20651.794374%2C130.81989%20648.069835%2C128.95762%20C646.207565%2C132.682159%20644.345296%2C134.544429%20644.345296%2C134.544429%20C642.483026%2C134.544429%20636.896217%2C136.406699%20623.86033%2C138.268968%20C616.411251%2C140.131238%20608.962173%2C140.131238%20603.375364%2C134.544429%20C605.237633%2C132.682159%20607.099903%2C130.81989%20605.237633%2C128.95762%20C603.375364%2C125.233081%20603.375364%2C123.370811%20603.375364%2C123.370811%20C601.513094%2C125.233081%20601.513094%2C127.09535%20599.650824%2C125.233081%20C599.650824%2C123.991568%20599.030068%2C125.233081%20597.788555%2C128.95762%20C599.650824%2C132.682159%20599.650824%2C134.544429%20599.650824%2C136.406699%20L603.375364%2C140.131238%20C599.650824%2C141.993508%20595.926285%2C143.855777%20590.339476%2C143.855777%20C584.752667%2C145.718047%20581.028128%2C143.855777%20579.165858%2C141.993508%20C581.028128%2C143.855777%20581.028128%2C145.718047%20579.165858%2C147.580317%20L573.579049%2C140.131238%20C571.71678%2C138.268968%20569.85451%2C140.131238%20567.992241%2C141.993508%20L567.992241%2C147.580317%20L564.267701%2C141.993508%20C564.267701%2C141.993508%20564.267701%2C143.855777%20562.405432%2C149.442586%20C561.163919%2C150.684099%20558.680892%2C148.82183%20554.956353%2C143.855777%20C551.231814%2C149.442586%20549.369544%2C151.304856%20549.369544%2C151.304856%20C545.645005%2C155.029395%20541.920466%2C155.029395%20540.058196%2C153.167125%20L534.471387%2C147.580317%20C532.609117%2C147.580317%20532.609117%2C147.580317%20532.609117%2C149.442586%20C532.609117%2C151.304856%20532.609117%2C153.167125%20534.471387%2C155.029395%20C532.609117%2C153.167125%20530.746848%2C153.167125%20528.884578%2C153.167125%20C527.022308%2C151.304856%20525.160039%2C151.304856%20523.297769%2C151.304856%20L515.848691%2C145.718047%20C506.537342%2C160.616204%20489.776916%2C168.065283%20463.705141%2C169.927552%20L463.705141%2C166.203013%20C461.842871%2C164.340743%20461.842871%2C166.203013%20461.842871%2C168.065283%20C461.842871%2C169.927552%20461.842871%2C169.927552%20459.980601%2C171.789822%20C459.980601%2C169.927552%20459.980601%2C168.065283%20458.118332%2C164.340743%20C456.256062%2C162.478474%20454.393792%2C158.753934%20456.256062%2C156.891665%20C454.393792%2C155.029395%20452.531523%2C156.891665%20450.669253%2C160.616204%20C448.806984%2C166.203013%20446.944714%2C168.065283%20445.082444%2C168.065283%20C445.082444%2C169.927552%20445.082444%2C171.789822%20446.944714%2C169.927552%20C448.806984%2C168.065283%20448.806984%2C169.927552%20448.806984%2C171.789822%20C439.495635%2C171.789822%20437.633366%2C173.652091%20439.495635%2C177.376631%20C437.633366%2C175.514361%20435.771096%2C169.927552%20437.633366%2C164.340743%20L433.908826%2C169.927552%20C432.046557%2C166.203013%20432.046557%2C160.616204%20433.908826%2C153.167125%20C435.771096%2C147.580317%20426.459748%2C153.167125%20424.597478%2C158.753934%20C424.597478%2C159.388393%20424.583969%2C159.995833%20424.556949%2C160.576253%20C422.681651%2C158.754031%20418.997256%2C158.767348%20417.1484%2C160.616204%20C415.28613%2C162.478474%20413.42386%2C164.340743%20411.561591%2C164.340743%20C413.42386%2C166.203013%20415.28613%2C168.065283%20413.42386%2C171.789822%20C413.42386%2C173.652091%20413.42386%2C175.514361%20411.561591%2C177.376631%20C409.699321%2C175.514361%20409.699321%2C173.652091%20409.699321%2C171.789822%20C409.699321%2C169.927552%20407.837051%2C169.927552%20405.974782%2C169.927552%20C405.974782%2C169.927552%20405.974782%2C171.789822%20404.112512%2C177.376631%20C402.250242%2C179.2389%20404.112512%2C181.10117%20405.974782%2C182.96344%20L405.974782%2C186.687979%20C404.733269%2C187.929492%20402.250242%2C187.929492%20398.525703%2C186.687979%20C396.663434%2C186.687979%20396.663434%2C186.687979%20396.663434%2C188.550249%20C394.801164%2C186.687979%20394.801164%2C182.96344%20396.663434%2C177.376631%20C396.663434%2C171.789822%20394.801164%2C168.065283%20392.938894%2C166.203013%20C392.938894%2C168.065283%20392.938894%2C171.789822%20391.076625%2C177.376631%20C389.214355%2C182.96344%20389.214355%2C186.687979%20391.076625%2C190.412518%20L387.352085%2C184.825709%20L387.352085%2C177.376631%20C387.352085%2C176.135118%20385.489816%2C177.376631%20381.765276%2C181.10117%20C381.765276%2C182.96344%20381.765276%2C184.825709%20379.903007%2C184.825709%20L376.178468%2C177.376631%20L376.178468%2C186.687979%20C376.178468%2C184.825709%20376.178468%2C184.825709%20374.316198%2C182.96344%20L370.591659%2C179.2389%20C370.591659%2C179.2389%20368.729389%2C181.10117%20363.14258%2C182.96344%20C361.28031%2C184.825709%20359.418041%2C184.825709%20357.555771%2C179.2389%20L357.555771%2C181.10117%20C355.693501%2C181.10117%20355.693501%2C181.10117%20353.831232%2C182.96344%20C351.968962%2C184.825709%20351.968962%2C186.687979%20353.831232%2C188.550249%20C361.28031%2C186.687979%20361.28031%2C188.550249%20363.14258%2C192.274788%20C361.28031%2C190.412518%20359.418041%2C188.550249%20357.555771%2C190.412518%20C357.555771%2C192.274788%20357.555771%2C192.274788%20355.693501%2C194.137058%20C353.831232%2C195.999327%20353.831232%2C197.861597%20353.831232%2C197.861597%20L351.968962%2C194.137058%20C350.106693%2C199.723866%20348.244423%2C203.448406%20348.244423%2C201.586136%20C348.244423%2C197.861597%20348.244423%2C195.999327%20346.382153%2C194.137058%20L344.519884%2C201.586136%20C340.795344%2C201.586136%20340.795344%2C199.723866%20338.933075%2C197.861597%20C338.933075%2C195.999327%20338.933075%2C194.137058%20337.070805%2C194.137058%20C337.070805%2C192.274788%20337.070805%2C192.274788%20335.208535%2C192.274788%20L338.016051%2C188.063514%20C337.300061%2C188.192253%20336.254298%2C187.733742%20335.208535%2C186.687979%20C333.346266%2C184.825709%20333.346266%2C182.96344%20331.483996%2C184.825709%20C331.483996%2C186.687979%20331.483996%2C190.412518%20329.621726%2C195.999327%20L329.621726%2C205.310675%20C327.759457%2C207.172945%20327.759457%2C205.310675%20325.897187%2C203.448406%20C325.897187%2C201.586136%20325.897187%2C203.448406%20324.034918%2C205.310675%20L327.759457%2C195.999327%20C327.759457%2C194.137058%20325.897187%2C192.274788%20324.034918%2C190.412518%20C322.172648%2C188.550249%20318.448109%2C186.687979%20316.585839%2C188.550249%20L312.8613%2C195.999327%20C312.8613%2C199.723866%20314.723569%2C201.586136%20316.585839%2C203.448406%20C314.723569%2C203.448406%20314.723569%2C203.448406%20312.8613%2C201.586136%20C310.99903%2C199.723866%20310.99903%2C197.861597%20310.99903%2C195.999327%20C309.13676%2C197.861597%20309.13676%2C199.723866%20309.13676%2C201.586136%20C310.99903%2C203.448406%20310.99903%2C205.310675%20309.13676%2C207.172945%20L301.687682%2C199.723866%20L292.376334%2C192.274788%20L296.100873%2C181.10117%20L292.376334%2C182.96344%20C294.238603%2C179.2389%20286.789525%2C182.96344%20284.927255%2C188.550249%20C283.064985%2C195.999327%20275.615907%2C199.723866%20273.753637%2C194.137058%20C271.891368%2C192.274788%20271.891368%2C190.412518%20270.029098%2C190.412518%20C268.166828%2C188.550249%20262.580019%2C192.274788%20260.71775%2C188.550249%20C260.71775%2C184.825709%20258.85548%2C182.96344%20256.99321%2C184.825709%20C253.268671%2C186.687979%20251.406402%2C186.687979%20251.406402%2C186.687979%20C249.544132%2C188.550249%20247.681862%2C190.412518%20249.544132%2C194.137058%20C249.544132%2C195.999327%20251.406402%2C197.861597%20253.268671%2C195.999327%20C255.130941%2C195.999327%20255.130941%2C197.861597%20255.130941%2C199.723866%20C253.268671%2C201.586136%20249.544132%2C201.586136%20245.819593%2C199.723866%20C243.957323%2C197.861597%20242.095053%2C207.172945%20240.232784%2C205.310675%20C238.370514%2C205.310675%20230.921435%2C203.448406%20225.334627%2C197.861597%20C224.174096%2C195.540536%20222.290345%2C194.665915%20220.584768%2C195.688432%20C221.268314%2C194.515731%20221.610087%2C192.805898%20221.610087%2C190.412518%20C219.747818%2C192.274788%20216.023278%2C190.412518%20214.161009%2C186.687979%20C212.298739%2C184.825709%20204.849661%2C182.96344%20206.71193%2C184.825709%20L210.436469%2C192.274788%20C204.849661%2C192.274788%20201.125121%2C194.137058%20199.262852%2C195.999327%20C195.538312%2C197.861597%20193.676043%2C201.586136%20191.813773%2C205.310675%20C189.951503%2C203.448406%20189.951503%2C201.586136%20189.951503%2C197.861597%20C189.951503%2C196.320574%20189.951503%2C194.779551%20191.006721%2C194.293746%20C182.046276%2C197.95038%20172.918055%2C199.678363%20162.017459%2C197.861597%20C163.879728%2C199.723866%20163.879728%2C201.586136%20163.879728%2C203.448406%20C163.879728%2C205.310675%20162.017459%2C205.310675%20160.155189%2C205.310675%20L158.292919%2C207.172945%20C157.994127%2C207.471737%20157.743275%2C207.77053%20157.540362%2C208.069322%20C155.960062%2C202.473022%20154.56838%2C199.471469%20154.56838%2C197.861597%20L152.706111%2C199.723866%20C150.843841%2C199.723866%20150.843841%2C197.861597%20150.843841%2C195.999327%20C150.843841%2C192.274788%20148.981571%2C190.412518%20147.119302%2C192.274788%20C141.532493%2C197.861597%20135.945684%2C203.448406%20128.496605%2C207.172945%20C122.909796%2C205.310675%20119.185257%2C205.310675%20113.598448%2C207.172945%20C111.736178%2C209.035215%20109.873909%2C209.035215%20104.2871%2C210.897484%20C102.42483%2C212.759754%20100.562561%2C214.622024%2098.700291%2C214.622024%20C96.8380213%2C212.759754%2094.9757517%2C210.897484%2093.1134821%2C205.310675%20C91.2512124%2C199.723866%2091.2512124%2C197.861597%2089.3889428%2C197.861597%20C87.5266731%2C197.861597%2087.5266731%2C199.723866%2089.3889428%2C203.448406%20L89.3889428%2C205.310675%20C89.3889428%2C206.552188%2088.7681862%2C205.931432%2087.5266731%2C203.448406%20L78.2153249%2C203.448406%20C74.4907856%2C205.310675%2072.628516%2C209.035215%2072.628516%2C214.622024%20L72.628516%2C203.448406%20C72.628516%2C202.206893%2072.0077595%2C202.827649%2070.7662464%2C205.310675%20C68.9039767%2C205.310675%2068.9039767%2C205.310675%2068.9039767%2C207.172945%20L68.9039767%2C203.448406%20L67.0417071%2C201.586136%20L67.0417071%2C195.999327%20C65.1794374%2C194.137058%2061.4548982%2C194.137058%2059.5926285%2C195.999327%20C55.8680892%2C199.723866%2054.0058196%2C201.586136%2052.14355%2C201.586136%20L57.7303589%2C207.172945%20C55.8680892%2C209.035215%2052.14355%2C210.897484%2046.556741%2C210.897484%20C40.9699321%2C210.897484%2037.2453928%2C210.897484%2035.3831232%2C212.759754%20L33.5208535%2C207.172945%20L29.7963143%2C210.897484%20C29.7963143%2C209.035215%2027.9340446%2C207.172945%2026.071775%2C205.310675%20C24.2095053%2C203.448406%2024.2095053%2C205.310675%2022.3472357%2C207.172945%20L24.5469666%2C202.773483%20L23%2C202%20L17%2C201%20L11%2C196%20L6%2C197%20L0%2C194%20L0%2C0%20L1920%2C0%20L1920%2C10%20L1914%2C25%20Z%22%20id%3D%22Combined-Shape%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%20%3Cpath%20d%3D%22M701.253236%2C158.642726%20L702.497587%2C158.393856%20L703.493068%2C158.642726%20L704.488549%2C157.149505%20L706.479511%2C157.149505%20C709.465953%2C157.149505%20710.710304%2C160.135948%20710.710304%2C162.62465%20C710.710304%2C164.366741%20710.461434%2C165.859963%20710.212564%2C167.602054%20L707.474992%2C169.593016%20L704.986289%2C169.841886%20C702.248717%2C169.841886%20694.036%2C169.344146%20694.036%2C165.362222%20C694.036%2C164.366741%20694.53374%2C162.87352%20694.782611%2C161.878039%20L696.026962%2C160.882558%20L697.769053%2C162.126909%20C698.764534%2C160.882558%20700.008885%2C159.638207%20701.253236%2C158.642726%20Z%20M825.951707%2C169.724698%20C826.200577%2C170.222438%20826.449448%2C171.217919%20826.449448%2C171.715659%20L826.200577%2C174.453232%20L824.956226%2C175.946453%20C822.965265%2C176.941934%20820.725433%2C177.439674%20818.485601%2C177.439674%20L814.005937%2C175.199842%20L812.512716%2C173.208881%20L812.512716%2C172.71114%20L812.761586%2C170.720178%20C814.005937%2C168.480346%20815.996899%2C166.987125%20818.23673%2C165.742774%20L821.720913%2C165.742774%20L825.702837%2C168.729217%20L826.200577%2C169.724698%20L825.951707%2C169.724698%20Z%20M880.703154%2C129.905463%20C880.703154%2C126.919021%20881.947505%2C124.181448%20885.182818%2C124.181448%20C887.67152%2C124.181448%20889.911352%2C126.67015%20889.911352%2C129.158853%20C889.911352%2C129.656593%20889.164742%2C131.398684%20888.915871%2C131.896425%20L883.689597%2C133.887387%20C882.445246%2C132.891906%20881.449765%2C131.398684%20880.703154%2C129.905463%20Z%20M873.983659%2C155.539095%20C873.983659%2C157.778927%20872.241567%2C159.521019%20870.001735%2C159.521019%20C868.010773%2C159.521019%20865.522071%2C157.032317%20865.522071%2C155.041355%20C865.522071%2C153.050393%20867.264163%2C150.810561%20869.255124%2C150.810561%20C871.494956%2C150.810561%20873.983659%2C153.299263%20873.983659%2C155.539095%20Z%20M907.332267%2C136.127219%20C907.332267%2C134.385127%20908.825489%2C132.643036%20910.56758%2C132.643036%20C912.807412%2C132.643036%20914.798374%2C134.633997%20914.798374%2C136.873829%20C914.798374%2C138.615921%20913.554023%2C141.104623%20911.563061%2C141.104623%20C909.074359%2C141.104623%20907.332267%2C138.36705%20907.332267%2C136.127219%20Z%20M830.431371%2C142.348974%20L827.942669%2C145.086546%20C826.200577%2C145.086546%20824.956226%2C143.593325%20824.956226%2C141.851233%20L827.942669%2C139.362531%20L830.431371%2C142.348974%20Z%20M965.816768%2C132.643036%20L963.079195%2C130.403204%20L965.070157%2C128.412242%20L967.309989%2C130.403204%20L965.816768%2C132.643036%20Z%20M845.612454%2C171.715659%20L847.603416%2C170.222438%20L849.594378%2C172.46227%20L847.603416%2C174.453232%20L845.612454%2C171.715659%20Z%20M707.474992%2C173.326069%20L702.995328%2C170.837367%20L703.493068%2C170.588497%20L708.719343%2C170.339626%20L709.217083%2C171.086237%20L707.474992%2C173.326069%20Z%20M836.404256%2C166.987125%20L838.644088%2C165.742774%20L840.137309%2C167.484866%20L838.395218%2C168.978087%20L836.404256%2C167.733736%20L836.404256%2C166.987125%20Z%20M911.811931%2C145.584287%20L910.06984%2C147.326378%20L908.078878%2C144.837676%20L909.323229%2C143.842195%20L911.811931%2C145.584287%20Z%20M872.490437%2C148.321859%20L870.748346%2C145.833157%20L872.241567%2C144.588806%20L873.983659%2C146.082027%20L872.490437%2C148.321859%20Z%20M904.843565%2C137.62044%20L904.096955%2C136.127219%20L905.092435%2C133.887387%20L905.839046%2C133.887387%20L905.590176%2C137.37157%20L904.843565%2C137.62044%20Z%20M942.174097%2C132.394165%20L943.916189%2C131.398684%20L945.16054%2C132.643036%20L943.916189%2C133.887387%20L942.174097%2C132.394165%20Z%20M864.27772%2C159.769889%20L866.019812%2C158.525538%20L867.264163%2C159.521019%20L865.770941%2C161.26311%20L864.27772%2C159.769889%20Z%20M940.183136%2C139.113661%20L941.178617%2C140.855753%20L939.934266%2C142.100104%20L938.689914%2C140.855753%20L940.183136%2C139.113661%20Z%20M700.755496%2C171.335107%20L699.511145%2C170.588497%20L700.506626%2C170.339626%20L701.750977%2C171.086237%20L700.755496%2C171.335107%20Z%20M858.802575%2C132.643036%20L858.055965%2C132.145295%20L858.553705%2C131.398684%20L859.051446%2C131.896425%20L858.802575%2C132.643036%20Z%20M837.897477%2C176.941934%20L837.399737%2C176.444193%20L837.648607%2C175.946453%20L838.146348%2C176.195323%20L837.897477%2C176.941934%20Z%20M855.567263%2C144.339936%20C855.318392%2C144.091065%20855.318392%2C144.091065%20855.318392%2C143.842195%20L855.567263%2C143.593325%20L855.816133%2C143.842195%20L855.567263%2C144.339936%20Z%20M879.209933%2C137.122699%20C878.961063%2C137.37157%20878.961063%2C137.37157%20878.712193%2C137.37157%20L878.463322%2C137.122699%20L878.712193%2C136.873829%20L879.209933%2C137.122699%20Z%20M965.070157%2C123.683708%20L964.821287%2C123.683708%20C964.821287%2C123.434838%20964.821287%2C123.434838%20965.070157%2C123.434838%20L965.070157%2C123.683708%20Z%20M708.968213%2C157.398375%20C709.217083%2C157.398375%20709.217083%2C157.149505%20709.465953%2C157.149505%20L709.465953%2C157.398375%20L709.217083%2C157.647245%20C709.217083%2C157.398375%20709.217083%2C157.398375%20708.968213%2C157.398375%20Z%20M840.38618%2C132.394165%20C840.137309%2C132.145295%20840.137309%2C132.145295%20840.137309%2C131.896425%20L840.38618%2C131.896425%20C840.63505%2C131.896425%20840.63505%2C131.896425%20840.63505%2C132.145295%20C840.38618%2C132.145295%20840.38618%2C132.145295%20840.38618%2C132.394165%20Z%20M699.013404%2C160.633688%20C698.764534%2C160.633688%20698.764534%2C160.384818%20698.515664%2C160.384818%20C698.515664%2C160.633688%20698.764534%2C160.633688%20699.013404%2C160.633688%20Z%20M708.470472%2C156.154024%20L708.470472%2C155.905154%20L708.719343%2C156.154024%20L708.470472%2C156.154024%20Z%20M1372.487%2C118.238%20L1370.684%2C118.238%20L1368.881%2C111.627%20L1370.083%2C109.223%20L1371.886%2C108.622%20L1372.487%2C111.026%20L1372.487%2C118.238%20Z%20M1428.981%2C84.582%20L1431.385%2C82.178%20L1433.188%2C85.183%20L1431.385%2C88.188%20L1428.981%2C84.582%20Z%20M1395.325%2C58.138%20L1396.527%2C59.34%20L1396.527%2C60.542%20C1395.926%2C59.941%201395.926%2C59.941%201395.325%2C59.941%20L1395.325%2C58.138%20Z%20M1582.665%2C117.4%20C1583.266%2C117.4%201583.266%2C117.4%201583.266%2C118.001%20C1583.266%2C118.602%201583.266%2C118.602%201582.665%2C118.602%20L1582.064%2C118.001%20L1582.665%2C117.4%20Z%20M1666.366%2C120.425%20L1666.967%2C121.026%20L1666.967%2C121.627%20L1666.366%2C121.627%20L1666.366%2C120.425%20Z%20M1362.27%2C36.502%20C1362.871%2C36.502%201362.871%2C36.502%201362.871%2C37.103%20L1362.27%2C37.103%20L1362.27%2C36.502%20Z%20M1419.365%2C69.557%20L1419.966%2C69.557%20L1419.966%2C70.158%20C1419.365%2C70.158%201419.365%2C70.158%201419.365%2C69.557%20Z%20M1308.18%2C61.143%20L1311.185%2C67.153%20L1302.17%2C73.163%20L1297.362%2C67.153%20C1300.367%2C63.547%201302.771%2C58.739%201306.978%2C56.335%20L1308.781%2C58.739%20L1308.18%2C61.143%20Z%20M1283.539%2C107.42%20L1277.529%2C103.213%20C1277.529%2C99.006%201278.731%2C93.597%201284.14%2C93.597%20L1289.549%2C100.208%20L1283.539%2C107.42%20Z%20M1335.225%2C85.183%20L1329.215%2C76.168%20L1334.624%2C73.163%20L1340.634%2C77.971%20L1335.225%2C85.183%20Z%20M1586.271%2C87.35%20L1591.079%2C90.956%20L1585.069%2C98.168%20L1580.261%2C92.158%20L1586.271%2C87.35%20Z%20M1741.284%2C112.829%20L1744.289%2C115.834%20L1741.885%2C119.44%20L1733.471%2C117.036%20L1731.067%2C112.829%20L1735.875%2C110.425%20L1741.284%2C112.829%20Z%20M1775.324%2C99.056%20L1775.324%2C97.253%20L1781.334%2C93.046%20L1786.142%2C98.455%20L1781.935%2C103.263%20L1775.324%2C99.056%20Z%20M1625.725%2C82.779%20L1629.331%2C76.168%20L1633.538%2C82.779%20L1640.533%2C77.587%20L1625.725%2C82.779%20Z%20M1708.446%2C113.43%20L1704.239%2C119.44%20L1700.633%2C113.43%20L1703.638%2C108.622%20L1708.446%2C113.43%20Z%20M1656.76%2C86.986%20L1659.765%2C82.779%20L1662.77%2C87.587%20L1659.765%2C90.592%20L1656.76%2C86.986%20Z%20M1323.806%2C129.657%20L1318.998%2C127.253%20L1323.205%2C123.647%20L1326.21%2C126.652%20L1323.806%2C129.657%20Z%20M1289.549%2C118.839%20L1291.953%2C114.632%20L1294.958%2C118.238%20L1291.953%2C121.243%20L1289.549%2C118.839%20Z%20M1677.785%2C105.4%20L1680.189%2C107.203%20L1677.785%2C109.006%20L1675.982%2C107.203%20L1677.785%2C105.4%20Z%20M1762.703%2C96.652%20L1761.501%2C96.051%20L1762.703%2C94.849%20L1763.905%2C96.051%20L1762.703%2C96.652%20Z%20M1200%2C126.652%20L1200.601%2C125.45%20L1201.202%2C126.051%20L1200.601%2C127.253%20L1200%2C126.652%20Z%20M1215.4595%2C131.102177%20C1210.63226%2C131.102177%201207.66166%2C127.760243%201206.17635%2C123.304332%20C1206.91901%2C121.076376%201206.91901%2C118.477094%201208.77564%2C116.99179%20C1209.88961%2C114.763834%201211.74624%2C113.649856%201214.34552%2C113.649856%20C1219.54409%2C113.649856%201224%2C116.620464%201224%2C122.190354%20C1224%2C127.017591%201220.28674%2C131.102177%201215.4595%2C131.102177%20Z%20M1101.85597%2C138.129567%20C1101.85597%2C135.15896%201105.19791%2C132.188352%201107.05454%2C130.331722%20C1110.02514%2C130.331722%201114.48106%2C135.530286%201114.48106%2C138.500893%20C1114.48106%2C141.842827%201110.39647%2C144.070783%201108.16851%2C145.927413%20C1104.82658%2C145.556087%201101.85597%2C141.471501%201101.85597%2C138.129567%20Z%20M1055.51111%2C111.312542%20L1051.42652%2C116.882431%20C1047.71326%2C116.882431%201044.37133%2C113.540497%201044%2C109.827238%20L1049.19856%2C105%20C1052.91182%2C105%201055.51111%2C107.599282%201055.51111%2C111.312542%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--38{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20255%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-18312.000000)%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%3E%20%3Cg%20id%3D%2239%22%20transform%3D%22translate(0.000000%2C%2018312.000000)%22%3E%20%3Cpath%20d%3D%22M1106.45745%2C241.001449%20L1118.98575%2C239.239656%20C1110.05502%2C240.999728%201106.46446%2C241.001447%201106.45746%2C241.001449%20L1108.31894%2C241.001449%20C1072.95056%2C244.724436%201031.99771%2C246.58593%20989.183355%2C246.58593%20C979.875887%2C246.58593%20970.568419%2C246.58593%20964.983938%2C248.447423%20C966.845432%2C246.58593%20968.706925%2C246.58593%20970.568419%2C246.58593%20L961.260951%2C246.58593%20C966.845432%2C244.724436%20972.429912%2C242.862942%20974.291406%2C241.001449%20L862.601792%2C241.001449%20L767.665621%2C237.278462%20C657.8375%2C231.693981%20594.546719%2C227.970994%20581.516264%2C226.1095%20C516.36399%2C220.52502%20456.796196%2C213.079045%20399.089895%2C207.494565%20C341.383595%2C200.048591%20311.599698%2C196.325603%20306.015217%2C196.325603%20L242.724436%2C187.018136%20C291.123269%2C196.325603%20328.35314%2C203.771578%20354.41405%2C207.494565%20C402.812882%2C214.940539%20453.073209%2C222.386513%20505.195028%2C227.970994%20L654.114513%2C239.139955%20C797.410894%2C244.651355%20899.006172%2C248.349662%20958.900348%2C246.65615%20C957.11162%2C246.795307%20955.052167%2C247.210233%20953.814977%2C248.447423%20L964.983938%2C248.447423%20C953.814977%2C250.308917%20940.784522%2C250.308917%20925.892573%2C250.308917%20C920.308093%2C250.308917%20909.139131%2C250.308917%20894.247183%2C252.17041%20C881.216728%2C252.17041%20870.047767%2C252.17041%20864.463286%2C254.031904%20L801.172505%2C254.031904%20L680.175423%2C250.308917%20C622.469123%2C248.447423%20544.286393%2C241.001449%20443.765741%2C227.970994%20L361.860024%2C218.663526%20L320.907166%2C213.079045%20C306.015217%2C211.217552%20292.984762%2C207.494565%20281.815801%2C205.633071%20C279.954307%2C205.633071%20279.954307%2C205.633071%20279.954307%2C203.771578%20L278.092814%2C203.771578%20C265.062359%2C200.048591%20250.17041%2C194.46411%20231.555475%2C185.156642%20L216.663526%2C183.295148%20L199.910084%2C183.295148%20C201.771578%2C183.295148%20203.633071%2C183.295148%20207.356058%2C185.156642%20L190.602616%2C181.433655%20C155.234239%2C181.433655%20123.588848%2C177.710668%2099.3894317%2C172.126187%20C97.5279382%2C172.126187%2097.5279382%2C172.126187%2097.5279382%2C170.264694%20L95.6664446%2C170.264694%20C93.8049511%2C170.264694%2091.9434575%2C170.264694%2093.8049511%2C168.4032%20L101.250925%2C168.4032%20C114.28138%2C170.264694%20121.727354%2C170.264694%20125.450342%2C168.4032%20C123.588848%2C168.4032%20119.865861%2C168.4032%20118.004367%2C166.541706%20L114.28138%2C166.541706%20C114.28138%2C164.680213%20114.28138%2C164.680213%20116.142874%2C162.818719%20C114.28138%2C162.818719%20114.28138%2C162.818719%20112.419887%2C160.957226%20C112.419887%2C160.957226%20110.558393%2C159.095732%20104.973912%2C157.234239%20C153.372745%2C159.095732%20220.386513%2C162.818719%20307.876711%2C164.680213%20L300.430736%2C160.957226%20C296.707749%2C159.095732%20292.984762%2C159.095732%20287.400282%2C159.095732%20C278.092814%2C159.095732%20274.369827%2C159.095732%20274.369827%2C157.234239%20C242.724436%2C159.095732%20222.248007%2C159.095732%20209.217552%2C157.234239%20C186.879629%2C157.234239%20157.095732%2C155.372745%20121.727354%2C149.788264%20L37.9601442%2C138.619303%20C24.9296893%2C136.757809%2015.6222214%2C133.034822%208.17624719%2C131.173329%20L6.31475363%2C131.173329%20L6.31475363%2C129.311835%20L4.45326007%2C129.311835%20C2.01541326%2C128.092912%200.375728908%2C127.672151%200.0568512422%2C127.004264%20L0%2C127%20L0%2C126.755891%20C-1.38644918e-12%2C126.755885%20-2.47575132e-11%2C126.75588%202.67085742e-11%2C126.755874%20L0%2C0%20L1920%2C0%20L1920%2C4%20L1919.54128%2C4.22935961%20C1919.6709%2C4.34155538%201919.80052%2C4.4621482%201919.93014%2C4.59176651%20C1921.79163%2C4.59176651%201886.42325%2C13.8992343%201817.54799%2C30.6526764%20L1694.68941%2C60.4365734%20L1782.17961%2C41.8216378%20C1828.71695%2C32.5141699%201852.91637%2C26.9296893%201856.63935%2C26.9296893%20C1854.77786%2C28.7911828%201852.91637%2C28.7911828%201849.19338%2C28.7911828%20L1841.74741%2C32.5141699%20C1851.05487%2C30.6526764%201858.50085%2C28.7911828%201860.36234%2C28.7911828%20L1690.96643%2C79.051509%20L1631.39863%2C97.6664446%20L1584.86129%2C110.6969%20C1560.66188%2C116.28138%201543.90844%2C121.865861%201534.60097%2C125.588848%20C1592.30727%2C112.558393%201659.32104%2C93.9434575%201739.36526%2C69.7440412%20L1787.76409%2C56.7135863%20C1813.825%2C47.4061184%201836.16293%2C41.8216378%201854.77786%2C38.0986506%20L1839.88591%2C43.6831313%20L1856.28546%2C40.4032225%20C1844.93326%2C43.0172052%201826.94606%2C51.9555202%201800.79455%2C64.1595605%20L1754.25721%2C82.7744961%20C1741.22675%2C86.4974832%201728.1963%2C90.2204704%201717.02734%2C95.8049511%20C1700.2739%2C101.389432%201690.96643%2C105.112419%201690.96643%2C105.112419%20C1676.07448%2C110.6969%201651.87506%2C114.419887%201620.22967%2C120.004367%20L1502.95558%2C149.788264%20L1393.12746%2C175.849174%20C1394.98895%2C173.987681%201396.85044%2C173.987681%201402.43493%2C172.126187%20C1396.85044%2C173.987681%201393.12746%2C173.987681%201389.40447%2C173.987681%20C1435.94181%2C153.511251%201475.03317%2C138.619303%201504.81707%2C133.034822%20C1480.61765%2C134.896316%201454.55675%2C142.34229%201422.91135%2C155.372745%20C1391.26596%2C168.4032%201361.48207%2C175.849174%201329.83668%2C181.433655%20L1309.36025%2C185.156642%20C1316.68118%2C185.156642%201338.39808%2C183.357145%201376.28024%2C181.527429%20L1374.51252%2C183.295148%20L1383.81999%2C183.295148%20C1363.34356%2C188.879629%201305.63726%2C198.187097%201206.9781%2C211.217552%20L1175.33271%2C222.386513%20L1249.79245%2C214.940539%20C1277.71486%2C211.217552%201301.91427%2C205.633071%201324.2522%2C200.048591%20L1402.43493%2C181.433655%20C1463.86421%2C166.541706%201508.54006%2C159.095732%201536.46246%2C160.957226%20C1536.46246%2C159.095732%201538.32396%2C159.095732%201543.90844%2C157.234239%20L1549.49292%2C157.234239%20C1566.24636%2C155.372745%201579.27681%2C153.511251%201592.30727%2C153.511251%20L1584.86129%2C155.372745%20L1597.89175%2C155.372745%20L1560.66188%2C159.095732%20C1530.87798%2C172.126187%201480.61765%2C183.295148%201409.8809%2C196.325603%20L1329.83668%2C207.494565%20C1279.57635%2C216.802033%201253.51544%2C220.52502%201251.65395%2C220.52502%20C1242.34648%2C222.386513%201229.31602%2C222.386513%201208.83959%2C224.248007%20C1188.36317%2C224.248007%201173.47122%2C226.1095%201166.02524%2C227.970994%20C1136.24135%2C233.555475%201102.73446%2C237.278462%201067.36608%2C239.139955%20C1087.84251%2C241.001449%201100.87297%2C241.001449%201106.45745%2C241.001449%20L1095.28849%2C241.001449%20L1106.45746%2C241.001449%20Z%20M958.900348%2C246.65615%20C959.802966%2C246.58593%20960.636647%2C246.58593%20961.260951%2C246.58593%20C960.481416%2C246.61029%20959.694548%2C246.633694%20958.900348%2C246.65615%20Z%20M1376.28024%2C181.527429%20L1376.37402%2C181.433655%20L1378.23551%2C181.433655%20C1377.57903%2C181.464916%201376.92728%2C181.496177%201376.28024%2C181.527429%20Z%20M1856.28546%2C40.4032225%20L1858.50085%2C39.9601442%20C1857.79249%2C40.0782034%201857.05419%2C40.2262128%201856.28546%2C40.4032225%20Z%20M1114.93587%2C240.989686%20C1114.59172%2C241.001449%201114.24757%2C241.001449%201113.90342%2C241.001449%20L1108.31894%2C241.001449%20C1110.54021%2C241.001449%201112.74579%2C240.997528%201114.93587%2C240.989686%20Z%20M1114.93587%2C240.989686%20C1116.44185%2C240.938212%201117.94783%2C240.661489%201119.45382%2C239.173835%20L1225.59304%2C224.248007%20C1268.40739%2C220.52502%201298.19129%2C218.663526%201318.66772%2C220.52502%20C1320.52921%2C220.52502%201316.80622%2C220.52502%201311.22174%2C222.386513%20C1318.66772%2C222.386513%201322.3907%2C222.386513%201322.3907%2C222.386513%20C1303.77577%2C224.248007%201273.99187%2C227.970994%201233.03901%2C235.416968%20C1199.29387%2C238.969089%201160.46508%2C240.826661%201114.93587%2C240.989686%20Z%20M1119.45382%2C239.173835%20L1118.98575%2C239.239656%20C1119.1513%2C239.207031%201119.31868%2C239.173801%201119.4879%2C239.139955%20C1119.47654%2C239.151318%201119.46518%2C239.162611%201119.45382%2C239.173835%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--39{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%2085%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-18767.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2240%22%20transform%3D%22translate(0.000000%2C%2018767.000000)%22%3E%20%3Cpath%20d%3D%22M1481.46966%2C31.0332553%20C1483.46052%2C30.7807886%201485.48075%2C30.5285728%201487.5373%2C30.2847945%20L1493.58591%2C28.6374062%20C1493.92593%2C28.5145592%201494.26266%2C28.3950481%201494.59608%2C28.2787598%20L1488.99802%2C28.77362%20L1481.46966%2C31.0332553%20Z%20M1496.85966%2C26.4139527%20C1498.84408%2C26.214267%201500.7194%2C26.0484109%201502.48747%2C25.9163845%20C1503.8993%2C25.5635022%201505.22519%2C25.269161%201506.46512%2C25.0182935%20L1504.45565%2C25.7805959%20C1504.8129%2C25.7580773%201505.16536%2C25.7370764%201505.51306%2C25.7175927%20L1506.75486%2C25.466348%20C1506.49934%2C25.5258685%201506.22633%2C25.6022547%201505.93535%2C25.6945512%20C1506.60079%2C25.6592334%201507.24842%2C25.6295988%201507.87838%2C25.6056474%20L1524.5785%2C25%20L1533.31394%2C25%20C1534.08472%2C25.3028237%201535.62627%2C25.3028237%201537.42474%2C25.3028237%20C1539.48014%2C25.6056474%201541.02169%2C25.6056474%201541.79246%2C25.6056474%20C1542.44604%2C25.6056474%201543.07365%2C25.6056474%201543.67527%2C25.6153838%20C1530.10511%2C24.1955898%201516.70574%2C23.8949606%201503.33443%2C24.4705532%20L1496.85966%2C26.4139526%20Z%20M1546.34079%2C25.9084711%20L1545.64634%2C25.9084711%20C1545.8171%2C26.1097345%201546.10134%2C26.1772337%201546.34823%2C26.1998715%20C1538.08158%2C25.9243746%201524.05932%2C26.5260073%201504.28143%2C27.4225897%20L1501.12705%2C27.7014319%20C1500.18307%2C28.1410921%201499.15291%2C28.6315376%201498.03237%2C29.1642261%20C1502.22691%2C28.8262058%201509.58883%2C28.3466016%201519.95385%2C27.7254134%20L1533.05702%2C27.119766%20L1548.47251%2C27.119766%20C1548.21559%2C26.8169423%201547.44481%2C26.5141185%201546.67404%2C26.2112948%20L1547.95866%2C26.2112948%20C1547.73848%2C26.2112948%201547.51829%2C26.2112948%201547.29811%2C26.0206922%20C1546.9789%2C25.9826579%201546.6598%2C25.945252%201546.34079%2C25.9084711%20Z%20M1547.95568%2C26.0999154%20C1548.08083%2C26.1189741%201548.21152%2C26.1347716%201548.3468%2C26.1478659%20C1548.21641%2C26.131777%201548.08603%2C26.1157933%201547.95567%2C26.0999147%20Z%20M1595.39391%2C36.2276992%20C1595.11259%2C36.2126668%201594.888%2C36.2044773%201594.71899%2C36.2044773%20L1597.54517%2C36.8101247%20C1597.55449%2C36.8120649%201597.56382%2C36.8140066%201597.57315%2C36.8159496%20C1596.84689%2C36.6197335%201596.12049%2C36.4236348%201595.39391%2C36.2276992%20Z%20M1605.08669%2C38.8495068%20C1606.83527%2C39.4568722%201608.59153%2C40.176128%201610.39141%2C41.0496566%20C1614.75913%2C43.1694226%201618.35608%2C44.3807174%201621.69611%2C44.6835411%20C1618.5523%2C43.988771%201614.65715%2C42.4084368%201610.12558%2C40.2134392%20C1608.44632%2C39.759395%201606.76677%2C39.3045625%201605.0867%2C38.8495097%20Z%20M1632.91095%2C47.9193497%20C1630.43161%2C47.1713261%201628.06751%2C46.4964882%201625.8069%2C45.894836%20C1626.8569%2C46.3898675%201628.59349%2C47.0872082%201631.01665%2C47.8214989%20C1631.64733%2C47.8569328%201632.27872%2C47.8895025%201632.91095%2C47.9193497%20Z%20M1644.2867%2C52.3229174%20L1646.16792%2C53.0158202%20C1647.01943%2C53.0501465%201647.89071%2C53.084327%201648.78193%2C53.1180555%20C1648.08035%2C52.8742577%201647.38645%2C52.6345374%201646.7001%2C52.3988946%20C1645.94417%2C52.3881594%201645.13882%2C52.3637246%201644.2867%2C52.3229174%20Z%20M1655.13604%2C52.5246644%20C1655.46432%2C52.6376156%201655.79418%2C52.7486985%201656.12404%2C52.8597813%20L1657.26772%2C53.3989777%20C1658.95551%2C53.4462683%201660.7001%2C53.4897629%201662.50221%2C53.5280379%20L1662.21709%2C53.3857286%20C1661.17973%2C53.1549162%201660.14304%2C52.9216036%201659.10697%2C52.6859216%20C1657.92235%2C52.6844588%201657.44128%2C52.664972%201657.44128%2C52.4053744%20C1656.62454%2C52.4533324%201655.85707%2C52.4930958%201655.13604%2C52.5246644%20Z%20M1630.99196%2C54.0893697%20L1628.63308%2C53.162605%20C1622.72381%2C51.3456627%201617.58531%2C50.4371916%201612.70373%2C50.1343679%20C1612.70373%2C50.4371916%201611.41911%2C49.8315442%201608.59294%2C48.3174256%20L1596.26054%2C46.8033071%20C1589.32357%2C46.1976597%201585.4697%2C45.894836%201584.18507%2C45.5920123%20C1582.3866%2C45.2891885%201579.81735%2C44.9863648%201576.47733%2C44.9863648%20C1573.1373%2C44.6835411%201570.56805%2C44.6835411%201568.76958%2C44.3807174%20L1564.14493%2C43.4722463%20L1559.77721%2C42.8665989%20C1556.95103%2C42.5637752%201553.86793%2C42.5637752%201550.52791%2C42.5637752%20C1547.44481%2C42.2609514%201541.27861%2C42.2609514%201532.02932%2C42.2609514%20C1532.28624%2C41.3524803%201530.74469%2C40.7468329%201527.14775%2C41.0496566%20C1520.98155%2C40.7468329%201514.55843%2C40.7468329%201508.1353%2C40.7468329%20C1500.42756%2C40.7468329%201494.51828%2C41.0496566%201490.40749%2C41.655304%20L1473.70737%2C42.2609514%20C1469.85349%2C42.5637752%201464.20115%2C42.8665989%201457.00725%2C43.77507%20C1452.4171%2C44.4242898%201448.483%2C44.9188592%201445.01742%2C45.1482604%20L1438.84928%2C46.7329693%20L1417.74168%2C51.799727%20C1418.09944%2C51.4378157%201418.45719%2C51.4378157%201419.53046%2C51.0759044%20C1418.45719%2C51.4378157%201417.74168%2C51.4378157%201417.02617%2C51.4378157%20C1422.55814%2C48.9754785%201427.54264%2C46.9285052%201431.89503%2C45.4681695%20C1431.05727%2C45.5031825%201430.2215%2C45.5438713%201429.38732%2C45.5906972%20C1427.52096%2C46.2050233%201425.5568%2C46.9476919%201423.46578%2C47.8187031%20C1417.38393%2C50.3520819%201411.65983%2C51.799727%201405.57799%2C52.8854608%20L1401.64267%2C53.6092833%20C1403.04966%2C53.6092833%201407.22338%2C53.2594254%201414.50386%2C52.9036922%20L1414.16413%2C53.247372%20L1415.9529%2C53.247372%20C1412.01759%2C54.3331058%201400.92716%2C56.1426621%201381.9661%2C58.676041%20L1375.88426%2C60.8475085%20L1390.19449%2C59.3998635%20C1395.56082%2C58.676041%201400.21165%2C57.5903072%201404.50472%2C56.5045734%20L1419.53046%2C52.8854608%20C1431.3364%2C49.9901707%201439.92254%2C48.5425256%201445.28888%2C48.9044369%20C1445.28888%2C48.5425256%201445.64664%2C48.5425256%201446.7199%2C48.1806143%20L1447.79317%2C48.1806143%20C1451.01297%2C47.8187031%201453.51726%2C47.4567918%201456.02155%2C47.4567918%20L1454.59053%2C47.8187031%20L1457.09482%2C47.8187031%20L1449.9397%2C48.5425256%20C1444.21561%2C51.0759044%201434.55621%2C53.247372%201420.96149%2C55.7807509%20L1405.57799%2C57.9522184%20C1395.91858%2C59.7617747%201390.91%2C60.4855973%201390.55224%2C60.4855973%20C1388.76346%2C60.8475085%201386.25917%2C60.8475085%201382.32386%2C61.2094198%20C1378.38855%2C61.2094198%201375.5265%2C61.5713311%201374.09548%2C61.9332423%20C1368.37138%2C63.0189761%201361.93178%2C63.7427986%201355.13442%2C64.1047099%20C1359.06973%2C64.4666212%201361.57402%2C64.4666212%201362.64729%2C64.4666212%20L1360.50076%2C64.4666212%20L1362.64729%2C64.4666212%20L1365.05507%2C64.1240938%20C1363.3387%2C64.4662867%201362.64864%2C64.4666208%201362.64729%2C64.4666212%20L1363.00505%2C64.4666212%20C1356.20769%2C65.1904437%201348.33706%2C65.5523549%201340.10868%2C65.5523549%20C1338.3199%2C65.5523549%201336.53112%2C65.5523549%201335.45785%2C65.9142662%20C1335.81561%2C65.5523549%201336.17336%2C65.5523549%201336.53112%2C65.5523549%20L1334.74234%2C65.5523549%20C1335.81561%2C65.1904437%201336.88887%2C64.8285324%201337.24663%2C64.4666212%20L1315.78128%2C64.4666212%20L1297.53574%2C63.7427986%20C1281.9646%2C62.9418494%201271.26078%2C62.3378545%201265.71154%2C61.9308138%20L1268.76653%2C63.1528095%20C1269.13681%2C63.3256066%201269.4979%2C63.4947281%201269.84994%2C63.6599004%20L1275.71263%2C64.1047099%20C1303.25241%2C65.1762352%201322.77775%2C65.8952596%201334.28866%2C65.5660072%20C1333.94489%2C65.5930621%201333.54909%2C65.673732%201333.31132%2C65.9142662%20L1335.45785%2C65.9142662%20C1333.31132%2C66.2761775%201330.80703%2C66.2761775%201327.94498%2C66.2761775%20C1326.87171%2C66.2761775%201324.72518%2C66.2761775%201321.86313%2C66.6380887%20C1319.35884%2C66.6380887%201317.21231%2C66.6380887%201316.13904%2C67%20L1303.97534%2C67%20L1280.72121%2C66.2761775%20C1278.89563%2C66.2166037%201276.96342%2C66.1276109%201274.92298%2C66.0091989%20C1276.45395%2C66.6843219%201277.68673%2C67.162408%201278.65085%2C67.3844072%20L1275.72968%2C66.8001735%20L1278.38231%2C67.7949091%20C1275.96519%2C67.3114863%201273.19568%2C66.6518627%201270.07376%2C65.687593%20C1268.57636%2C65.5768184%201267.02854%2C65.4524909%201265.4298%2C65.3146104%20L1279.37704%2C69.4528018%20C1279.04546%2C69.4528018%201277.71915%2C69.1212232%201276.06126%2C68.7896447%20L1277.38757%2C69.4528018%20C1278.05073%2C69.4528018%201278.38231%2C69.4528018%201278.71389%2C69.7843803%20C1278.05073%2C69.7843803%201273.74021%2C68.7896447%201265.45074%2C67.131752%20L1249.86655%2C63.8159666%20L1271.75074%2C69.1212232%20C1284.01914%2C72.1054301%201290.31913%2C73.7633228%201289.98756%2C73.7633228%20C1289.65598%2C74.0949014%201289.3244%2C74.0949014%201288.99282%2C74.0949014%20L1289.3244%2C74.0949014%20C1288.32966%2C74.4264799%201283.68756%2C74.0949014%201276.06126%2C73.4317443%20L1261.80338%2C71.442273%20C1261.4718%2C71.1106945%201261.14022%2C71.1106945%201260.80864%2C71.1106945%20C1260.47707%2C70.7791159%201260.14549%2C70.7791159%201259.81391%2C70.7791159%20C1259.15075%2C70.4475374%201258.81917%2C70.1159589%201258.81917%2C69.7843803%20C1258.15602%2C69.4528018%201253.51392%2C68.4580662%201244.5613%2C66.4685949%20L1234.94552%2C63.484388%20L1227.6631%2C61.0569159%20L1219.54497%2C60.123686%20L1211.67435%2C59.0379522%20C1208.8123%2C58.676041%201206.30801%2C57.9522184%201204.16147%2C57.5903072%20C1203.80372%2C57.5903072%201203.80372%2C57.5903072%201203.80372%2C57.2283959%20L1203.44596%2C57.2283959%20C1201.43178%2C56.6462312%201199.18617%2C55.8299514%201196.523%2C54.5912594%20L1183.21927%2C53.2054533%20C1174.26664%2C52.5422962%201169.29297%2C52.2107177%201167.63507%2C51.8791391%20C1165.31402%2C51.5475606%201161.99824%2C51.215982%201157.68772%2C51.215982%20C1153.3772%2C50.8844035%201150.06141%2C50.8844035%201147.74036%2C50.552825%20L1141.77195%2C49.5580893%20L1136.13511%2C48.8949323%20C1132.48775%2C48.5633537%201128.50881%2C48.5633537%201124.19829%2C48.5633537%20C1120.21934%2C48.2317752%201112.26146%2C48.2317752%201100.32463%2C48.2317752%20C1100.65621%2C47.2370396%201098.66674%2C46.5738825%201094.02464%2C46.905461%20C1086.06675%2C46.5738825%201077.77729%2C46.5738825%201069.48783%2C46.5738825%20C1059.54047%2C46.5738825%201051.91416%2C46.905461%201046.60891%2C47.5686181%20L1025.0563%2C48.2317752%20C1020.08262%2C48.5633537%201012.7879%2C48.8949323%201003.5037%2C49.8896679%20C995.214233%2C50.8844035%20988.582662%2C51.5475606%20982.945827%2C51.5475606%20C981.971007%2C51.5475606%20980.999595%2C51.5509683%20980.031246%2C51.5581293%20C977.634599%2C52.3896956%20976.330366%2C52.911389%20976.330366%2C52.911389%20C973.165827%2C54.0980912%20968.023451%2C54.8892259%20961.298805%2C56.0759281%20L936.37806%2C62.4050062%20L913.039585%2C67.9429495%20C913.435152%2C67.5473821%20913.830719%2C67.5473821%20915.017422%2C67.1518148%20C913.830719%2C67.5473821%20913.039585%2C67.5473821%20912.24845%2C67.5473821%20C922.137635%2C63.1961409%20930.44455%2C60.0316019%20936.773628%2C58.8448997%20C931.631252%2C59.2404671%20926.093308%2C60.8227367%20919.368663%2C63.5917083%20C912.644017%2C66.36068%20906.314939%2C67.9429495%20899.590294%2C69.1296517%20L895.239053%2C69.9207864%20C896.79475%2C69.9207864%20901.409593%2C69.5383934%20909.459551%2C69.1495786%20L909.083911%2C69.5252191%20L911.061748%2C69.5252191%20C906.710507%2C70.7119212%20894.447918%2C72.6897581%20873.482847%2C75.4587298%20L866.758201%2C77.8321341%20L882.580896%2C76.2498645%20C888.514407%2C75.4587298%20893.656783%2C74.2720276%20898.403592%2C73.0853255%20L915.017422%2C69.1296517%20C928.071145%2C65.9651126%20937.564762%2C64.3828431%20943.498273%2C64.7784105%20C943.498273%2C64.3828431%20943.893841%2C64.3828431%20945.080543%2C63.9872757%20L946.267245%2C63.9872757%20C949.827351%2C63.5917083%20952.596323%2C63.1961409%20955.365295%2C63.1961409%20L953.783025%2C63.5917083%20L956.551997%2C63.5917083%20L948.640649%2C64.3828431%20C942.311571%2C67.1518148%20931.631252%2C69.5252191%20916.599691%2C72.2941907%20L899.590294%2C74.667595%20C888.909974%2C76.6454319%20883.372031%2C77.4365667%20882.976464%2C77.4365667%20C880.998627%2C77.8321341%20878.229655%2C77.8321341%20873.878414%2C78.2277015%20C869.527173%2C78.2277015%20866.362634%2C78.6232688%20864.780364%2C79.0188362%20C858.451286%2C80.2055384%20851.331073%2C80.9966731%20843.815293%2C81.3922405%20C848.166534%2C81.7878079%20850.935506%2C81.7878079%20852.122208%2C81.7878079%20L849.748804%2C81.7878079%20L852.517775%2C81.7878079%20C845.001995%2C82.5789427%20836.299513%2C82.97451%20827.201463%2C82.97451%20C825.223626%2C82.97451%20823.245789%2C82.97451%20822.059087%2C83.3700774%20C822.454654%2C82.97451%20822.850222%2C82.97451%20823.245789%2C82.97451%20L821.267952%2C82.97451%20C822.454654%2C82.5789427%20823.641356%2C82.1833753%20824.036924%2C81.7878079%20L800.302881%2C81.7878079%20L780.128944%2C80.9966731%20C756.790469%2C79.809971%20743.341178%2C79.0188362%20740.572206%2C78.6232688%20C726.727348%2C77.4365667%20714.069192%2C75.8542972%20701.806603%2C74.667595%20C689.544014%2C73.0853255%20683.214936%2C72.2941907%20682.028234%2C72.2941907%20L668.578943%2C70.3163538%20C678.863695%2C72.2941907%20686.775042%2C73.8764603%20692.312986%2C74.667595%20C702.597738%2C76.2498645%20713.278057%2C77.8321341%20724.353944%2C79.0188362%20L755.999334%2C81.3922405%20C786.449815%2C82.5634129%20808.038812%2C83.3493033%20820.766324%2C82.9894319%20C820.386219%2C83.0190028%20819.948585%2C83.1071746%20819.685683%2C83.3700774%20L822.059087%2C83.3700774%20C819.685683%2C83.7656448%20816.916711%2C83.7656448%20813.752172%2C83.7656448%20C812.56547%2C83.7656448%20810.192065%2C83.7656448%20807.027526%2C84.1612122%20C804.258555%2C84.1612122%20801.88515%2C84.1612122%20800.698448%2C84.5567796%20L787.249157%2C84.5567796%20L761.537277%2C83.7656448%20C749.274689%2C83.3700774%20732.660859%2C81.7878079%20711.30022%2C79.0188362%20L693.895255%2C77.0409993%20L685.192773%2C75.8542972%20C682.028234%2C75.4587298%20679.259262%2C74.667595%20676.885858%2C74.2720276%20C676.49029%2C74.2720276%20676.49029%2C74.2720276%20676.49029%2C73.8764603%20L676.094723%2C73.8764603%20C673.325751%2C73.0853255%20670.161212%2C71.8986233%20666.205538%2C69.9207864%20L663.040999%2C69.5252191%20L659.480893%2C69.5252191%20C659.87646%2C69.5252191%20660.272028%2C69.5252191%20661.063162%2C69.9207864%20L657.503056%2C69.1296517%20C649.987276%2C69.1296517%20643.26263%2C68.3385169%20638.120254%2C67.1518148%20C637.724687%2C67.1518148%20637.724687%2C67.1518148%20637.724687%2C66.7562474%20L637.329119%2C66.7562474%20C636.933552%2C66.7562474%20636.537985%2C66.7562474%20636.933552%2C66.36068%20L638.515822%2C66.36068%20C641.284793%2C66.7562474%20642.867063%2C66.7562474%20643.658198%2C66.36068%20C643.26263%2C66.36068%20642.471495%2C66.36068%20642.075928%2C65.9651126%20L641.284793%2C65.9651126%20C641.284793%2C65.5695452%20641.284793%2C65.5695452%20641.680361%2C65.1739779%20C641.284793%2C65.1739779%20641.284793%2C65.1739779%20640.889226%2C64.7784105%20C640.889226%2C64.7784105%20640.493659%2C64.3828431%20639.306956%2C63.9872757%20C640.020566%2C64.0147222%20640.75322%2C64.0440731%20641.505049%2C64.0750642%20L629.803379%2C62.442273%20C629.471801%2C62.1106945%20629.140222%2C62.1106945%20628.808644%2C62.1106945%20C628.477065%2C61.7791159%20628.145487%2C61.7791159%20627.813908%2C61.7791159%20C627.150751%2C61.4475374%20626.819173%2C61.1159589%20626.819173%2C60.7843803%20C626.156016%2C60.4528018%20621.513916%2C59.4580662%20612.561295%2C57.4685949%20L602.945518%2C54.484388%20L592.998161%2C51.1686026%20C585.371855%2C49.1791314%20578.740284%2C48.1843958%20572.440292%2C47.8528172%20C572.440292%2C48.1843958%20570.782399%2C47.5212387%20567.135035%2C45.863346%20L551.219265%2C44.2054533%20C542.266645%2C43.5422962%20537.292967%2C43.2107177%20535.635074%2C42.8791391%20C533.314024%2C42.5475606%20529.998239%2C42.215982%20525.687718%2C42.215982%20C521.377197%2C41.8844035%20518.061411%2C41.8844035%20515.740361%2C41.552825%20L509.771948%2C40.5580893%20L504.135112%2C39.8949323%20C500.487749%2C39.5633537%20496.508806%2C39.5633537%20492.198285%2C39.5633537%20C488.219343%2C39.2317752%20480.261458%2C39.2317752%20468.32463%2C39.2317752%20C468.656209%2C38.2370396%20466.666737%2C37.5738825%20462.024638%2C37.905461%20C454.066753%2C37.5738825%20445.777289%2C37.5738825%20437.487826%2C37.5738825%20C427.54047%2C37.5738825%20419.914163%2C37.905461%20414.608906%2C38.5686181%20L393.056301%2C39.2317752%20C388.082623%2C39.5633537%20380.787895%2C39.8949323%20371.503696%2C40.8896679%20C363.214233%2C41.8844035%20356.582662%2C42.5475606%20350.945827%2C42.5475606%20C348.453764%2C42.5475606%20345.983971%2C42.5698314%20343.530678%2C42.6201447%20C341.844333%2C43.3096832%20339.846452%2C44.1803611%20337.509964%2C45.1729544%20L328.594034%2C48.3831348%20C326.107399%2C49.0006059%20323.620764%2C49.618077%20321.473572%2C50.5995548%20C318.271206%2C51.5441852%20316.48802%2C52.1862212%20316.48802%2C52.1862212%20C313.637378%2C53.1431341%20309.040398%2C53.6869103%20303.024239%2C54.5332808%20L280.669093%2C59.3870723%20L259.745408%2C63.5865452%20C260.109415%2C63.2471035%20260.461139%2C63.2593859%20261.528594%2C62.9445091%20C260.461139%2C63.2593859%20259.75769%2C63.234821%20259.054242%2C63.210256%20C267.982455%2C59.6483514%20275.466924%2C57.0924897%20281.131359%2C56.2338367%20C276.546662%2C56.4258886%20271.573392%2C57.6608308%20265.508103%2C59.9140983%20C259.442814%2C62.1673658%20253.766096%2C63.377743%20247.749936%2C64.2241136%20L243.856405%2C64.7924547%20C245.239675%2C64.8407596%20249.3549%2C64.6440417%20256.524705%2C64.5482751%20L256.179036%2C64.8706173%20L257.937657%2C64.9320297%20C254.031843%2C65.8520952%20243.066979%2C67.2299594%20224.339617%2C69.0410576%20L218.28661%2C70.9426008%20L232.40471%2C70.0270031%20C237.705138%2C69.5077919%20242.314401%2C68.6122914%20246.571939%2C67.7045085%20L261.467182%2C64.7031303%20C273.172341%2C62.2946583%20281.662853%2C61.1825409%20286.926434%2C61.7185024%20C286.938716%2C61.3667781%20287.290441%2C61.3790606%20288.357896%2C61.0641838%20L289.413068%2C61.1010313%20C292.590869%2C60.8598493%20295.065221%2C60.5941025%20297.527291%2C60.6800798%20L296.108111%2C60.9826742%20L298.570181%2C61.0686515%20L291.511131%2C61.5264504%20C285.797566%2C63.7920003%20276.227317%2C65.5707187%20262.775819%2C67.5660541%20L247.577982%2C69.1482528%20C238.020015%2C70.575247%20233.071311%2C71.1067408%20232.719586%2C71.0944583%20C230.948683%2C71.3847701%20228.486613%2C71.2987928%20224.605364%2C71.5154097%20C220.736398%2C71.3803024%20217.910321%2C71.6337668%20216.491142%2C71.9363611%20C210.826707%2C72.7950141%20204.471105%2C73.2773779%20197.776062%2C73.395735%20C201.632747%2C73.8825666%20204.094816%2C73.9685439%20205.149989%2C74.0053914%20L203.039643%2C73.9316965%20L205.501713%2C74.0176739%20C198.794388%2C74.4877552%20191.044172%2C74.5692648%20182.954515%2C74.2867678%20C181.195893%2C74.2253554%20179.437272%2C74.163943%20178.369817%2C74.4788198%20C178.733824%2C74.139378%20179.085548%2C74.1516605%20179.437272%2C74.163943%20L177.678651%2C74.1025306%20C178.746106%2C73.7876538%20179.813561%2C73.472777%20180.177568%2C73.1333352%20L159.074114%2C72.3963864%20L141.160743%2C71.0665314%20C120.445861%2C69.2866923%20108.511802%2C68.1656395%20106.062014%2C67.7279379%20C93.7885136%2C66.2428783%2082.582468%2C64.442942%2071.7158642%2C63.0070124%20C60.8615428%2C61.2193585%2055.25852%2C60.3193904%2054.2033473%2C60.2825429%20L42.3061357%2C58.1063174%20C51.3895534%2C60.1842831%2058.3749082%2C61.8368296%2063.2744825%2C62.7122328%20C72.3701827%2C64.4384743%2081.8176071%2C66.1769982%2091.6290383%2C67.5760804%20L119.693282%2C70.6690243%20C146.732385%2C72.6558846%20165.904139%2C74.0250145%20177.232158%2C74.1002229%20C176.893265%2C74.1147139%20176.501399%2C74.1795244%20176.259472%2C74.4051249%20L178.369817%2C74.4788198%20C176.247189%2C74.7568491%20173.78512%2C74.6708717%20170.971326%2C74.5726119%20C169.916153%2C74.5357645%20167.805808%2C74.4620696%20164.979731%2C74.715534%20C162.517662%2C74.6295566%20160.407316%2C74.5558617%20159.339861%2C74.8707385%20L147.381237%2C74.4531341%20L124.543727%2C72.9513244%20C113.652558%2C72.2188433%2098.9292699%2C70.2960821%2080.0221385%2C67.1707585%20L64.6076846%2C64.8717082%20L56.9065989%2C63.5463209%20C54.1050875%2C63.0963368%2051.6675828%2C62.306911%2049.5695198%2C61.8814918%20C49.2177956%2C61.8692094%2049.2177956%2C61.8692094%2049.2300781%2C61.5174851%20C46.4408492%2C60.7157768%2043.6639027%2C59.5623443%2040.2080728%2C57.6808983%20L50.3288431%2C59.6833893%20L47.163325%2C59.572847%20C47.5150493%2C59.5851295%2047.8667735%2C59.5974119%2048.5579395%2C59.9737011%20L45.4169863%2C59.1597103%20C38.7342259%2C58.9263432%2032.7794788%2C58.0140925%2028.2439112%2C56.7992476%20C27.892187%2C56.7869651%2027.892187%2C56.7869651%2027.9044695%2C56.4352409%20C27.201021%2C56.4106759%2026.8492968%2C56.3983934%2027.2133035%2C56.0589517%20L28.6202004%2C56.1080816%20C31.0699876%2C56.5457832%2032.4768845%2C56.5949131%2033.1926155%2C56.2677539%20C32.8408912%2C56.2554714%2032.1374428%2C56.2309064%2031.798001%2C55.8668997%20C31.106835%2C55.4906105%2031.106835%2C55.4906105%2031.4708417%2C55.1511687%20C31.1191175%2C55.1388863%2031.1191175%2C55.1388863%2030.7796757%2C54.7748795%20C30.7796757%2C54.7748795%2030.440234%2C54.4108728%2029.3973438%2C54.0223012%20C38.5298914%2C54.6933699%2038.2451171%2C53.3865126%2054.7638737%2C54.3155134%20L53.3815417%2C53.562935%20C52.6903757%2C53.1866458%2051.9869273%2C53.1620809%2050.9317546%2C53.1252334%20C49.1731334%2C53.063821%2048.4696849%2C53.039256%2048.4819674%2C52.6875318%20C42.4903729%2C52.8304539%2051.5436881%2C55.1478217%2049.0939009%2C54.7101201%20C44.8732101%2C54.5627303%2039.2579048%2C54.0144864%2032.6119918%2C52.7259465%20L16.8580961%2C50.0628895%20C14.408309%2C49.6251879%2012.6742527%2C48.860327%2011.2796383%2C48.4594729%20L10.9401965%2C48.0954661%20C9.8973063%2C47.7068945%209.54558206%2C47.694612%209.90958878%2C47.3551702%20C10.261313%2C47.3674527%2010.6130372%2C47.3797352%2011.3287682%2C47.0525759%20C13.0996719%2C46.7622641%2015.2222997%2C46.4842347%2016.9686384%2C46.8973714%20C26.4263686%2C48.2460168%2035.9069245%2C48.941018%2045.7143448%2C49.3084167%20C37.1320161%2C46.0059608%2026.1741364%2C42.0322099%201.13686838e-13%2C35%20L3.45272422e-13%2C27%20L1.13686838e-13%2C0%20L1920%2C0%20L1920%2C21.8655365%20L1920%2C35%20C1911.95317%2C33.8148541%201903.92559%2C33.3177497%201895.91352%2C33.3589198%20L1871.40639%2C40.6174075%20L1862.40917%2C43.4240663%20L1855.38009%2C45.3887275%20C1851.72497%2C46.2307251%201849.1945%2C47.0727227%201847.78869%2C47.6340545%20C1856.50474%2C45.6693933%201866.62661%2C42.8627346%201878.71663%2C39.2140782%20L1886.02687%2C37.249417%20C1889.96315%2C35.8460876%201893.33711%2C35.00409%201896.14874%2C34.4427582%20L1893.89943%2C35.2847559%20L1896.37645%2C34.7902291%20C1894.6618%2C35.1843512%201891.94498%2C36.5320217%201887.99501%2C38.3720805%20L1880.96593%2C41.1787393%20C1878.99779%2C41.7400711%201877.02965%2C42.3014028%201875.34267%2C43.1434004%20C1872.8122%2C43.9853981%201871.40639%2C44.5467298%201871.40639%2C44.5467298%20C1869.15708%2C45.3887275%201865.50196%2C45.9500592%201860.72219%2C46.7920568%20L1843.00892%2C51.2827109%20L1826.42029%2C55.2120332%20C1826.70146%2C54.9313673%201826.98262%2C54.9313673%201827.82611%2C54.6507014%20C1826.98262%2C54.9313673%201826.42029%2C54.9313673%201825.85797%2C54.9313673%20C1832.88704%2C51.8440426%201838.79147%2C49.5987156%201843.29008%2C48.756718%20C1839.63496%2C49.0373839%201835.69868%2C50.1600474%201830.9189%2C52.1247085%20C1826.13913%2C54.0893697%201821.64052%2C55.2120332%201816.86075%2C56.0540308%20L1813.76795%2C56.6153625%20C1814.87372%2C56.6153625%201818.15388%2C56.3440442%201823.87566%2C56.0681695%20L1823.60866%2C56.3346967%20L1825.01448%2C56.3346967%20C1821.92168%2C57.1766943%201813.20563%2C58.5800237%201798.30398%2C60.5446848%20L1793.52421%2C62.2286801%20L1804.77074%2C61.1060166%20C1808.98818%2C60.5446848%201812.6433%2C59.7026872%201816.01726%2C58.8606896%20L1827.82611%2C56.0540308%20C1837.10449%2C53.8087038%201843.8524%2C52.6860403%201848.06985%2C52.9667061%20C1848.06985%2C52.6860403%201848.35101%2C52.6860403%201849.1945%2C52.4053744%20L1850.03799%2C52.4053744%20C1852.56846%2C52.1247085%201854.5366%2C51.8440426%201856.50474%2C51.8440426%20L1855.38009%2C52.1247085%20L1857.34823%2C52.1247085%20L1851.72497%2C52.6860403%20C1847.22636%2C54.6507014%201839.63496%2C56.3346967%201828.95076%2C58.2993578%20L1816.86075%2C59.9833531%20C1809.26934%2C61.3866825%201805.33306%2C61.9480142%201805.0519%2C61.9480142%20C1803.64608%2C62.2286801%201801.67794%2C62.2286801%201798.58515%2C62.509346%20C1795.49235%2C62.509346%201793.24305%2C62.7900118%201792.1184%2C63.0706777%20C1787.61979%2C63.9126754%201782.55885%2C64.4740071%201777.21675%2C64.754673%20C1780.30955%2C65.0353389%201782.27769%2C65.0353389%201783.12118%2C65.0353389%20L1781.4342%2C65.0353389%20L1783.40234%2C65.0353389%20C1778.06024%2C65.5966706%201771.87465%2C65.8773365%201765.4079%2C65.8773365%20C1764.00209%2C65.8773365%201762.59627%2C65.8773365%201761.75278%2C66.1580024%20C1761.8264%2C66.0845187%201761.90001%2C66.0302744%201761.97362%2C65.9902323%20C1761.86451%2C65.9936113%201761.75446%2C65.9968668%201761.64345%2C66%20C1761.76812%2C65.9903181%201761.88409%2C65.98949%201761.97512%2C65.9894191%20C1762.18217%2C65.8773365%201762.38922%2C65.8773365%201762.59627%2C65.8773365%20L1761.19046%2C65.8773365%20C1762.03395%2C65.5966706%201762.87743%2C65.3160047%201763.1586%2C65.0353389%20L1746.28881%2C65.0353389%20L1731.94949%2C64.4740071%20C1715.36087%2C63.6320095%201705.80133%2C63.0706777%201703.83319%2C62.7900118%20C1693.99248%2C61.9480142%201684.99526%2C60.8253507%201676.2792%2C59.9833531%20C1673.01631%2C59.5630791%201670.34445%2C59.2214709%201668.23414%2C58.9585283%20C1669.00772%2C59.3333648%201669.66208%2C59.6050121%201670.20607%2C59.7526476%20L1667.94259%2C59.2190792%20L1669.74649%2C60.016389%20C1676.99048%2C61.1280137%201684.51015%2C62.2369391%201692.3055%2C63.0706777%20L1714.79855%2C64.754673%20C1736.44227%2C65.5856518%201751.78739%2C66.1432625%201760.83391%2C65.887924%20C1760.56373%2C65.9089053%201760.25267%2C65.9714656%201760.0658%2C66.1580024%20L1761.75278%2C66.1580024%20C1760.0658%2C66.4386682%201758.09766%2C66.4386682%201755.84836%2C66.4386682%20C1755.00487%2C66.4386682%201753.31789%2C66.4386682%201751.06858%2C66.7193341%20C1749.10044%2C66.7193341%201747.41346%2C66.7193341%201746.56998%2C67%20L1737.01043%2C67%20L1718.73483%2C66.4386682%20C1710.01877%2C66.1580024%201698.20992%2C65.0353389%201683.02712%2C63.0706777%20L1670.65594%2C61.6673483%20L1668.85474%2C61.4221648%20L1669.22721%2C61.6416689%20C1669.74106%2C61.6416689%201669.99799%2C61.6416689%201670.25491%2C61.9444926%20C1669.96063%2C61.9444926%201668.73941%2C61.6465295%201666.543%2C61.1074844%20L1664.47035%2C60.8253507%20C1663.00971%2C60.6430935%201661.66764%2C60.3424833%201660.44412%2C60.0772309%20L1664.85949%2C61.3388451%20C1674.36571%2C64.0642585%201679.24728%2C65.5783771%201678.99036%2C65.5783771%20C1678.73343%2C65.8812008%201678.47651%2C65.8812008%201678.21958%2C65.8812008%20L1678.47651%2C65.8812008%20C1677.70573%2C66.1840245%201674.10878%2C65.8812008%201668.19951%2C65.2755534%20L1657.15174%2C63.4586111%20C1656.89482%2C63.1557874%201656.63789%2C63.1557874%201656.38097%2C63.1557874%20C1656.12404%2C62.8529637%201655.86712%2C62.8529637%201655.61019%2C62.8529637%20C1655.09634%2C62.55014%201654.83942%2C62.2473163%201654.83942%2C61.9444926%20C1654.32557%2C61.6416689%201650.72862%2C60.7331977%201643.79165%2C58.9162555%20L1636.34083%2C56.1908421%20L1633.83064%2C55.2046335%20C1632.83146%2C55.0387483%201631.8893%2C54.8528104%201631.01195%2C54.6507014%20C1630.73078%2C54.6507014%201630.73078%2C54.6507014%201630.73078%2C54.3700355%20L1630.44962%2C54.3700355%20C1630.16846%2C54.3700355%201629.88729%2C54.3700355%201630.16846%2C54.0893697%20L1630.99196%2C54.0893697%20Z%20M1654.09121%2C58.0456577%20L1647.90245%2C56.4936658%20L1656.42891%2C58.929955%20C1655.69537%2C58.6807976%201654.91995%2C58.3898485%201654.09121%2C58.0456577%20Z%20M1658.15103%2C59.4220213%20L1658.2848%2C59.4602414%20C1658.28477%2C59.4481177%201658.28477%2C59.4353878%201658.28477%2C59.4220213%20L1658.15103%2C59.4220213%20Z%20M1669.21797%2C59.9380157%20C1667.75915%2C59.5728067%201666.14707%2C59.1083173%201664.38173%2C58.4952226%20C1663.2215%2C58.3646461%201662.50871%2C58.2993578%201662.22105%2C58.2993578%20L1660.48084%2C58.0438979%20L1662.69195%2C58.8171411%20C1665.21511%2C59.2874639%201667.39045%2C59.6698471%201669.21797%2C59.9380157%20Z%20M1452.47835%2C39.6498553%20C1451.22906%2C39.970442%201450.10667%2C40.2859201%201449.11118%2C40.5867326%20C1449.59677%2C40.6083778%201450.10702%2C40.6352661%201450.6431%2C40.6673976%20C1452.04997%2C40.3193873%201453.4844%2C39.9557003%201454.94761%2C39.5763366%20C1454.11047%2C39.5995291%201453.28741%2C39.6241069%201452.47835%2C39.6498553%20Z%20M1477.7059%2C28.8688398%20C1478.00675%2C28.824044%201478.30606%2C28.7796989%201478.60386%2C28.7358046%20L1492.51264%2C25.7421161%20C1494.19224%2C25.4022945%201495.72044%2C25.0879993%201497.09961%2C24.8016274%20C1495.79613%2C24.8837566%201494.49271%2C24.9738599%201493.18921%2C25.0717119%20L1477.7059%2C28.8688398%20Z%20M1785.95896%2C64.9951141%20L1785.92415%2C65%20C1785.93226%2C64.9984045%201785.9404%2C64.9967995%201785.94857%2C64.9951848%20C1785.63456%2C64.9973151%201785.31837%2C64.9989202%201785%2C65%20C1785.22504%2C64.9927142%201785.45008%2C64.9535459%201785.67512%2C64.7429785%20L1801.53551%2C62.6303288%20C1807.93327%2C62.1033652%201812.38388%2C61.8398834%201815.44367%2C62.1033652%20C1815.72184%2C62.1033652%201815.16551%2C62.1033652%201814.33102%2C62.366847%20C1815.44367%2C62.366847%201816%2C62.366847%201816%2C62.366847%20C1813.21837%2C62.6303288%201808.76776%2C63.1572924%201802.64817%2C64.2112196%20C1797.8442%2C64.6902106%201792.35076%2C64.9515087%201785.95896%2C64.9951141%20Z%20M1895.32126%2C33.3629415%20C1895.09518%2C33.3648494%201894.86911%2C33.3671829%201894.64306%2C33.3699389%20L1894.1806%2C33.6007606%20C1894.58917%2C33.519191%201894.97399%2C33.4376213%201895.32126%2C33.3629415%20Z%20M1893.03138%2C33.3967033%20C1891.95923%2C33.4192124%201890.88735%2C33.4510472%201889.81574%2C33.4918483%20L1871.96871%2C37.8107488%20L1885.18338%2C35.00409%20C1888.57385%2C34.3271956%201891.17933%2C33.7809009%201893.03138%2C33.3967033%20Z%20M1867.93576%2C35.4621637%20C1849.54014%2C37.9816208%201831.20361%2C42.4327163%201812.88025%2C46.9815109%20C1813.69106%2C46.9220388%201814.54897%2C46.8590465%201815.45493%2C46.7920568%20L1828.95076%2C45.3887275%20C1832.04355%2C43.9853981%201833.44937%2C43.4240663%201833.44937%2C43.7047322%20C1838.79147%2C43.4240663%201844.41473%2C42.5820687%201850.88148%2C40.8980734%20L1859.31637%2C38.0914147%20L1867.4701%2C35.5654218%20C1867.62688%2C35.5306441%201867.7821%2C35.4962256%201867.93576%2C35.4621637%20Z%20M1248.49339%2C60.2783047%20L1249.20339%2C60.5001812%20L1256.41812%2C62.6408126%20L1260.87284%2C62.9787977%20L1257.82444%2C62.1580739%20C1256.24528%2C61.6806536%201254.69459%2C61.2154359%201253.17148%2C60.7624206%20C1251.5972%2C60.6038045%201250.03837%2C60.4418958%201248.49339%2C60.2783047%20Z%20M1463.2973%2C28.5620945%20C1448.90018%2C30.7882739%201434.37233%2C33.7402173%201419.53893%2C37.1204378%20C1413.08175%2C38.5919569%201406.71491%2C39.9502316%201400.42199%2C41.1934607%20C1401.48048%2C41.1147857%201402.60244%2C41.0313189%201403.78921%2C40.9423891%20L1420.96149%2C39.1328328%20C1424.8968%2C37.3232765%201426.68558%2C36.5994539%201426.68558%2C36.9613652%20C1433.48294%2C36.5994539%201440.63805%2C35.5137201%201448.86644%2C33.3422526%20L1459.59911%2C29.7231399%20L1463.2973%2C28.5620945%20Z%20M1245.07329%2C46.7425105%20C1234.33397%2C45.2699787%201223.39726%2C43.4096982%201212.17899%2C41.1524367%20C1200.71887%2C38.846166%201189.4103%2C36.9443142%201178.22154%2C35.4148582%20C1175.077%2C35.3469415%201171.16308%2C35.0591697%201166.30876%2C34.637055%20L1149.38175%2C32.2566945%20C1146.97742%2C32.0583037%201144.57749%2C31.8763638%201142.18164%2C31.7105408%20C1141.08808%2C31.7561898%201139.73573%2C31.8379586%201138.12458%2C31.9844267%20C1144.42458%2C32.3160052%201150.39299%2C32.9791623%201155.69825%2C33.9738979%20C1157.02456%2C34.3054765%201159.67719%2C34.637055%201163.32455%2C34.637055%20C1166.97192%2C34.9686335%201169.29297%2C34.9686335%201170.95086%2C35.3002121%20C1171.28244%2C35.3002121%201175.92454%2C35.9633692%201184.87716%2C37.6212619%20L1199.13504%2C39.6107331%20C1211.04099%2C41.8039347%201219.69032%2C43.7010798%201225.08303%2C45.8616666%20C1228.19234%2C46.0671725%201230.88672%2C46.2191153%201233.13969%2C46.371058%20L1245.07329%2C46.7425105%20Z%20M1205.88395%2C44.0876307%20C1203.40205%2C43.5769276%201200.71031%2C42.9667769%201197.80872%2C42.2633614%20L1183.88242%2C38.947576%20C1179.90348%2C37.9528404%201175.59296%2C36.9581048%201170.61928%2C36.2949477%20L1157.35614%2C34.9686335%20L1162.99297%2C36.9581048%20C1180.56664%2C39.2791546%201190.84557%2C40.9370473%201194.49294%2C41.9317829%20L1192.83504%2C41.9317829%20L1193.14992%2C42.246658%20C1186.40216%2C41.9207397%201182.53383%2C41.6002044%201181.22979%2C41.6002044%20L1184.87716%2C42.2633614%20C1185.7502%2C42.4174277%201186.61529%2C42.5794479%201187.47489%2C42.751886%20C1187.55147%2C42.7519257%201187.62808%2C42.7519454%201187.70471%2C42.7519454%20C1192.85135%2C42.7519454%201198.76657%2C43.2702787%201205.88395%2C44.0876307%20Z%20M1205.74916%2C48.5442638%20C1206.91579%2C48.9499479%201208.0405%2C49.3046898%201209.13097%2C49.6084895%20L1207.73903%2C48.9044369%20C1207.14424%2C48.6035876%201206.54945%2C48.552828%201205.74916%2C48.5442638%20Z%20M570.560374%2C38.3524287%20C575.704794%2C40.3974044%20580.019776%2C41.5747293%20584.045541%2C41.8844035%20C581.516622%2C41.4102311%20578.610987%2C40.5593432%20575.364551%2C39.4035691%20C573.763573%2C39.050804%20572.162199%2C38.7003317%20570.560374%2C38.3524287%20Z%20M632.926861%2C52.6169426%20L636.766529%2C54.1528095%20C640.260112%2C55.7831482%20642.935714%2C57.0862945%20644.908247%2C57.8324239%20C648.922554%2C57.9704692%20652.966994%2C58.0372995%20657.059704%2C58.0510518%20C649.004086%2C56.2888438%20640.962132%2C54.4657969%20632.926861%2C52.6169426%20Z%20M641.639063%2C57.7036151%20C639.45036%2C57.132122%20637.052499%2C56.4102023%20634.445479%2C55.4791237%20L625.824437%2C53.1580739%20C611.56656%2C48.8475529%20599.629732%2C45.5317674%20589.350797%2C43.2107177%20C591.00869%2C43.8738747%20593.992897%2C44.8686104%20598.303418%2C45.863346%20L606.592882%2C48.1843958%20L617.203395%2C51.5001812%20L637.368052%2C57.4831014%20C638.789064%2C57.5668444%20640.21246%2C57.6400745%20641.639063%2C57.7036151%20Z%20M626.210411%2C56.5912558%20L617.866552%2C54.8159666%20L624.180607%2C56.3466467%20C624.482664%2C56.3731418%20624.778783%2C56.413946%20625.066531%2C56.4714954%20C625.447819%2C56.5123478%20625.829107%2C56.5522625%20626.210411%2C56.5912558%20Z%20M654.194138%2C63.7158273%20C656.855271%2C64.4029569%20658.142145%2C64.7633228%20657.987555%2C64.7633228%20C657.979396%2C64.771482%20657.971237%2C64.7794404%20657.963078%2C64.787203%20C665.082225%2C65.0809381%20673.219802%2C65.3737155%20682.423801%2C65.5695452%20L680.841532%2C64.7784105%20C680.050397%2C64.3828431%20679.259262%2C64.3828431%20678.07256%2C64.3828431%20C676.094723%2C64.3828431%20675.303588%2C64.3828431%20675.303588%2C63.9872757%20C668.578943%2C64.3828431%20664.227701%2C64.3828431%20661.45873%2C63.9872757%20C659.34055%2C63.9872757%20656.907303%2C63.908509%20654.194138%2C63.7158273%20Z%20M338.092528%2C42.7808966%20C336.386632%2C42.8476208%20334.686746%2C42.9302505%20332.990878%2C43.0307778%20L316.659975%2C47.2620819%20L305.281974%2C50.3862849%20L296.402891%2C52.5412925%20C291.793628%2C53.436793%20288.591263%2C54.3814233%20286.808077%2C55.0234594%20C297.797505%2C52.9421467%20310.582403%2C49.8670736%20325.866217%2C45.8228053%20L335.097025%2C43.6800801%20C336.126533%2C43.352436%20337.124998%2C43.0537405%20338.092528%2C42.7808966%20Z%20M318.084247%2C43.6638376%20C318.069376%2C43.6610736%20318.054522%2C43.6583035%20318.039688%2C43.6555278%20L317.486248%2C43.7694045%20L318.084247%2C43.6638376%20Z%20M345.9927%2C37.8926012%20C348.747849%2C37.6643662%20351.18833%2C37.5738825%20353.266876%2C37.5738825%20C355.587926%2C37.2423039%20359.23529%2C37.2423039%20364.872125%2C37.5738825%20C364.872125%2C37.2423039%20365.535282%2C37.2423039%20367.193175%2C37.2423039%20C368.187911%2C37.2423039%20368.851068%2C37.2423039%20369.514225%2C36.9107254%20L370.840539%2C36.2475683%20C363.30624%2C36.4078725%20356.624444%2C36.6456771%20350.757685%2C36.8860457%20C349.324052%2C37.1917068%20347.734858%2C37.5276208%20345.9927%2C37.8926012%20Z%20M337.578988%2C35.377743%20C336.815274%2C35.2815869%20335.672866%2C35.3504763%20334.035321%2C35.5844112%20L332.709007%2C35.5844112%20C332.702475%2C35.5778796%20332.696201%2C35.5714766%20332.690179%2C35.5651997%20C314.763816%2C39.6965711%20297.136437%2C44.2921096%20279.573309%2C48.721663%20C283.163388%2C48.2762478%20286.934022%2C47.6212853%20290.971823%2C46.7171851%20L301.646375%2C43.5684171%20L311.95692%2C40.759091%20C321.527169%2C38.9803725%20326.488156%2C38.0971546%20327.203887%2C37.7699953%20C327.216169%2C37.4182711%20327.580176%2C37.0788293%20328.295907%2C36.75167%20C328.647631%2C36.7639525%20328.999355%2C36.776235%20329.363362%2C36.4367932%20C329.715086%2C36.4490757%20330.066811%2C36.4613582%20330.430817%2C36.1219164%20L337.578988%2C35.377743%20Z%20M340.66393%2C33.7647318%20C367.545987%2C27.8269399%20395.170677%2C23.1295275%20424.317299%2C21.764551%20C416.094504%2C22.4367754%20406.365254%2C23.5065577%20395.045773%2C24.9738979%20L380.456317%2C26.6317906%20L373.161589%2C27.6265262%20C370.508961%2C27.9581048%20368.187911%2C28.6212619%20366.19844%2C28.9528404%20C365.866861%2C28.9528404%20365.866861%2C28.9528404%20365.866861%2C29.2844189%20L365.535282%2C29.2844189%20C363.214233%2C29.947576%20360.561604%2C30.9423117%20357.245819%2C32.6002044%20L354.593191%2C32.9317829%20L351.608984%2C32.9317829%20C351.940562%2C32.9317829%20352.272141%2C32.9317829%20352.935298%2C32.6002044%20L349.951091%2C33.2633614%20C346.640114%2C33.2633614%20343.512304%2C33.4465291%20340.663927%2C33.7647323%20Z%20M461.539695%2C21.9411448%20C453.262469%2C22.1934275%20443.587287%2C22.5585367%20432.514148%2C22.9844267%20L405.987864%2C24.9738979%20C396.703665%2C25.9686335%20387.751045%2C27.2949477%20379.130003%2C28.6212619%20C374.487903%2C29.2844189%20367.856332%2C30.6107331%20359.23529%2C32.2686258%20L370.508961%2C30.6107331%20C371.503696%2C30.6107331%20376.808953%2C29.947576%20387.087888%2C28.6212619%20C397.366822%2C27.6265262%20407.977336%2C26.3002121%20419.582585%2C25.3054765%20C421.903634%2C24.9738979%20433.177305%2C24.3107408%20452.740439%2C23.3160052%20L469.650944%2C22.6528481%20L471.996852%2C22.6528481%20C468.518337%2C22.3780782%20465.032794%2C22.1399696%20461.539695%2C21.9411448%20Z%20M996.692785%2C45.3993292%20L994.113141%2C46.4311868%20C994.975171%2C46.4687614%20995.893676%2C46.5163266%20996.872125%2C46.5738825%20C996.872125%2C46.2423039%20997.535282%2C46.2423039%20999.193175%2C46.2423039%20C1000.18791%2C46.2423039%201000.85107%2C46.2423039%201001.51422%2C45.9107254%20L1002.84054%2C45.2475683%20C1000.72431%2C45.2925945%20998.675333%2C45.343735%20996.692785%2C45.3993292%20Z%20M1120.48674%2C30.6372311%20C1119.78406%2C30.6161767%201119.08166%2C30.5964454%201118.37951%2C30.5780285%20C1118.51957%2C30.6149844%201118.66636%2C30.6348865%201118.80412%2C30.6456045%20C1108.13547%2C30.3439476%201090.03882%2C31.0027087%201064.51415%2C31.9844267%20L1037.98786%2C33.9738979%20C1028.70367%2C34.9686335%201019.75104%2C36.2949477%201011.13%2C37.6212619%20C1009.86796%2C37.8015531%201008.45888%2C38.0308596%201006.90275%2C38.3025188%20L1002.47847%2C39.6152171%20L1002.50896%2C39.6107331%20C1003.5037%2C39.6107331%201008.80895%2C38.947576%201019.08789%2C37.6212619%20C1029.36682%2C36.6265262%201039.97734%2C35.3002121%201051.58258%2C34.3054765%20C1053.90363%2C33.9738979%201065.1773%2C33.3107408%201084.74044%2C32.3160052%20L1101.65094%2C31.6528481%20L1121.54566%2C31.6528481%20C1121.21408%2C31.3212696%201120.21934%2C30.9896911%201119.22461%2C30.6581125%20L1120.8825%2C30.6581125%20C1120.75058%2C30.6581125%201120.61866%2C30.6581125%201120.48674%2C30.6372311%20Z%20M981.113351%2C45.9543181%20L977.934757%2C46.8974176%20C979.583028%2C46.7599397%20981.119155%2C46.6717244%20982.533067%2C46.6226994%20C983.457374%2C46.3465076%20984.390101%2C46.0666213%20985.331386%2C45.7830405%20C983.879057%2C45.8397159%20982.473214%2C45.8971453%20981.113351%2C45.9543181%20Z%20M959.880823%2C52.3907078%20L953.783025%2C54.0980912%20C948.640649%2C55.2847933%20945.080543%2C56.4714954%20943.102706%2C57.2626302%20C949.32563%2C55.8574538%20956.057902%2C54.1466683%20963.402916%2C52.1302736%20C962.227471%2C52.2079414%20961.053662%2C52.2945308%20959.880823%2C52.3907078%20Z%20M994.211682%2C39.3954761%20C993.759%2C39.4646505%20993.306215%2C39.5341581%20992.853324%2C39.6039966%20L981.883338%2C42.263387%20C981.905914%2C42.26337%20981.928498%2C42.2633614%20981.951091%2C42.2633614%20L984.935298%2C41.6002044%20C984.272141%2C41.9317829%20983.940562%2C41.9317829%20983.608984%2C41.9317829%20L984.105649%2C41.9317829%20L992.234247%2C40.2022938%20C992.922813%2C39.9039336%20993.580517%2C39.6364354%20994.211682%2C39.3954761%20Z%20M949.069288%2C47.230566%20C942.326257%2C48.5236413%20935.544968%2C49.8713721%20928.718253%2C51.2665241%20C934.520997%2C50.6531691%20940.656234%2C49.5423295%20947.453947%2C47.769013%20L949.069288%2C47.230566%20Z%20M917.912708%2C53.5051734%20C917.179992%2C53.6589326%20916.446717%2C53.8131871%20915.712875%2C53.9679281%20C915.016001%2C54.1148576%20914.318976%2C54.2616533%20913.621802%2C54.408288%20L916.599691%2C54.0980912%20C917.064258%2C53.8869246%20917.501769%2C53.6892853%20917.912708%2C53.5051734%20Z%20M820.766324%2C82.9894319%20C820.95813%2C82.97451%20821.135288%2C82.97451%20821.267952%2C82.97451%20C821.102301%2C82.9796866%20820.935091%2C82.98466%20820.766324%2C82.9894319%20Z%20M909.459551%2C69.1495786%20L909.479478%2C69.1296517%20L909.875046%2C69.1296517%20C909.735544%2C69.1362946%20909.597047%2C69.1429375%20909.459551%2C69.1495786%20Z%20M853.923872%2C81.7853083%20C853.85074%2C81.7878079%20853.777609%2C81.7878079%20853.704477%2C81.7878079%20L852.517775%2C81.7878079%20C852.989794%2C81.7878079%20853.45848%2C81.7869747%20853.923872%2C81.7853083%20Z%20M853.923872%2C81.7853083%20C854.243893%2C81.77437%20854.563915%2C81.7155664%20854.883936%2C81.3994399%20L877.43852%2C78.2277015%20C886.53657%2C77.4365667%20892.865648%2C77.0409993%20897.216889%2C77.4365667%20C897.612457%2C77.4365667%20896.821322%2C77.4365667%20895.63462%2C77.8321341%20C897.216889%2C77.8321341%20898.008024%2C77.8321341%20898.008024%2C77.8321341%20C894.05235%2C78.2277015%20887.723272%2C79.0188362%20879.02079%2C80.6011058%20C871.849947%2C81.3559314%20863.598829%2C81.7506655%20853.923872%2C81.7853083%20Z%20M854.883936%2C81.3994399%20L854.784472%2C81.413427%20C854.819651%2C81.406494%20854.855219%2C81.3994326%20854.89118%2C81.3922405%20C854.888765%2C81.394655%20854.886351%2C81.3970548%20854.883936%2C81.3994399%20Z%20M854.784472%2C81.413427%20C852.884836%2C81.7878079%20852.122208%2C81.7878079%20852.122208%2C81.7878079%20L854.784472%2C81.413427%20Z%20M1118.80412%2C30.6456045%20C1118.94559%2C30.6496044%201119.08575%2C30.6537733%201119.22461%2C30.6581125%20C1119.1134%2C30.6581125%201118.9649%2C30.6581125%201118.80412%2C30.6456045%20Z%20M1193.14992%2C42.246658%20C1193.26517%2C42.2522248%201193.38126%2C42.2577931%201193.4982%2C42.2633614%20L1193.16662%2C42.2633614%20L1193.14992%2C42.246658%20Z%20M1278.65085%2C67.3844072%20C1278.78778%2C67.4159371%201278.91929%2C67.4423012%201279.04546%2C67.4633305%20L1278.65085%2C67.3844072%20Z%20M177.678651%2C74.1025306%20C177.560691%2C74.0984113%20177.403169%2C74.0929105%20177.232158%2C74.1002229%20C177.382368%2C74.1012201%20177.531199%2C74.1019899%20177.678651%2C74.1025306%20Z%20M256.543042%2C64.5311756%20L256.894767%2C64.5434581%20C256.770521%2C64.5450332%20256.647167%2C64.5466394%20256.524705%2C64.5482751%20L256.543042%2C64.5311756%20Z%20M206.556886%2C74.0545213%20L205.501713%2C74.0176739%20C205.921415%2C74.0323302%20206.33818%2C74.0461422%20206.752041%2C74.059111%20C206.686938%2C74.0590628%20206.621912%2C74.056792%20206.556886%2C74.0545213%20Z%20M207.617677%2C73.745821%20L227.770882%2C71.625952%20C235.885105%2C71.2050006%20241.524975%2C71.0497961%20245.381659%2C71.5366276%20C245.733383%2C71.5489101%20245.029935%2C71.5243451%20243.96248%2C71.8392219%20C245.369376%2C71.8883518%20246.072825%2C71.9129168%20246.072825%2C71.9129168%20C242.5433%2C72.1418162%20236.891147%2C72.648745%20229.104084%2C73.7854274%20C222.704592%2C74.2339343%20215.355739%2C74.3287181%20206.752041%2C74.059111%20C207.036932%2C74.0593219%20207.32331%2C74.0169725%20207.617677%2C73.745821%20Z%20M207.528803%2C73.7551695%20C207.560297%2C73.7500972%20207.592143%2C73.7449229%20207.624341%2C73.7396445%20C207.622119%2C73.7417164%20207.619898%2C73.7437752%20207.617677%2C73.745821%20L207.528803%2C73.7551695%20Z%20M205.149989%2C74.0053914%20C205.149989%2C74.0053914%20205.82809%2C74.0290712%20207.528803%2C73.7551695%20L205.149989%2C74.0053914%20Z%20M1334.28866%2C65.5660072%20C1334.46213%2C65.5523549%201334.62236%2C65.5523549%201334.74234%2C65.5523549%20C1334.59252%2C65.5570911%201334.4413%2C65.5616413%201334.28866%2C65.5660072%20Z%20M1414.50386%2C52.9036922%20L1414.52188%2C52.8854608%20L1414.87964%2C52.8854608%20C1414.75347%2C52.8915385%201414.62821%2C52.8976162%201414.50386%2C52.9036922%20Z%20M1506.75486%2C25.466348%20L1507.18063%2C25.3802048%20C1507.04449%2C25.4031579%201506.9026%2C25.4319338%201506.75486%2C25.466348%20Z%20M1364.27674%2C64.4643342%20C1364.2106%2C64.4666212%201364.14446%2C64.4666212%201364.07831%2C64.4666212%20L1363.00505%2C64.4666212%20C1363.43195%2C64.4666212%201363.85583%2C64.4658588%201364.27674%2C64.4643342%20Z%20M1364.27674%2C64.4643342%20C1364.56617%2C64.4543266%201364.8556%2C64.4005262%201365.14503%2C64.1112967%20L1385.54366%2C61.2094198%20C1393.77205%2C60.4855973%201399.49614%2C60.123686%201403.43145%2C60.4855973%20C1403.78921%2C60.4855973%201403.0737%2C60.4855973%201402.00043%2C60.8475085%20C1403.43145%2C60.8475085%201404.14696%2C60.8475085%201404.14696%2C60.8475085%20C1400.56941%2C61.2094198%201394.84531%2C61.9332423%201386.97468%2C63.3808874%20C1380.48929%2C64.07149%201373.02688%2C64.432639%201364.27674%2C64.4643342%20Z%20M1365.14503%2C64.1112967%20L1365.05507%2C64.1240938%20C1365.08689%2C64.1177507%201365.11906%2C64.1112901%201365.15158%2C64.1047099%20C1365.1494%2C64.106919%201365.14721%2C64.1091145%201365.14503%2C64.1112967%20Z%20M1794.14286%2C63%20L1793%2C63%20C1793.85714%2C63%201794.42857%2C63%201795%2C62.7193341%20C1794.71429%2C63%201794.42857%2C63%201794.14286%2C63%20Z%20M1823.70467%2C56%20L1823.71884%2C55.9858613%20L1824%2C55.9858613%20C1823.90084%2C55.9905747%201823.8024%2C55.995288%201823.70467%2C56%20Z%20M1896.66538%2C35%20L1897%2C34.9331951%20C1896.89301%2C34.9509954%201896.78149%2C34.9733114%201896.66538%2C35%20Z%20M1785%2C64.9982265%20C1784.94799%2C65%201784.89598%2C65%201784.84397%2C65%20L1784%2C65%20C1784.33569%2C65%201784.66902%2C64.9994088%201785%2C64.9982265%20Z%20M1785%2C64.7343665%20C1783.57292%2C65%201783%2C65%201783%2C65%20L1785%2C64.7343665%20Z%20M1546.23786%2C26%20C1546.49427%2C26.0072501%201546.74832%2C26.0148064%201547%2C26.0226714%20C1546.79844%2C26.0226714%201546.52928%2C26.0226714%201546.23786%2C26%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--40{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20105%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-19052.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2241%22%20transform%3D%22translate(0.000000%2C%2019052.000000)%22%3E%20%3Cpath%20d%3D%22M1919.90658%2C79.6845391%20C1919.9509%2C80.6767904%201919.72436%2C80.2317129%201919.00052%2C77.3705253%20C1909.68832%2C40.5348159%201859.30822%2C4.58634873%201820.81105%2C26.3308564%20C1817.68813%2C28.0952356%201806.768%2C37.9296788%201798.00524%2C48.2350273%20C1797.6679%2C48.6351958%201801.69174%2C66.4103556%201801.50388%2C69.0498507%20C1801.04736%2C75.3838303%201800.41106%2C78.5669886%201794.61972%2C81.2751994%20C1787.84666%2C84.4421892%201774.11469%2C82.5909048%201773.11681%2C73.496167%20C1772.17549%2C64.8885028%201775.25195%2C55.2420175%201780.17469%2C46.3594902%20C1769.80401%2C27.9092987%201753.19758%2C15.6192763%201726.85879%2C21.9633612%20C1711.72899%2C25.6093405%201695.31648%2C32.3030676%201685.8649%2C45.3065217%20C1691.84612%2C54.0233227%201705.16399%2C72.1299352%201695.78108%2C81.1943573%20C1690.34122%2C86.4511158%201672.62581%2C91.6149058%201666.62641%2C84.8565051%20C1662.83891%2C80.5920835%201664.76801%2C70.1775982%201665.60429%2C65.1087976%20C1665.94163%2C63.0513658%201672.62379%2C45.7592375%201672.57531%2C45.698606%20C1654.85183%2C23.9156983%201629.57556%2C13.1212549%201597.33836%2C25.5527511%20C1584.68508%2C30.4315727%201570.96725%2C36.8100155%201560.90967%2C46.5272376%20C1567.78575%2C58.1826495%201578.87758%2C76.7177252%201571.31671%2C90.4002531%20C1558.04329%2C114.420466%201527.72914%2C93.0175165%201533.17708%2C70.363535%20C1533.86388%2C67.5037452%201546.74744%2C45.278227%201547.17164%2C45.8845428%20C1543.88914%2C41.187616%201540.67128%2C37.3395313%201538.34828%2C35.0941416%20C1524.32342%2C21.5328769%201507.51095%2C14.8694657%201488.03006%2C21.4479927%20C1476.6716%2C25.28193%201464.83843%2C29.4311515%201454.63137%2C35.9005417%20C1453.59107%2C36.486647%201452.66995%2C37.2364576%201451.66399%2C37.8710682%20C1452.27201%2C37.4850471%201455.63531%2C61.6629025%201454.88387%2C64.8258502%20C1453.31029%2C71.4488404%201449.28443%2C74.6643355%201442.71134%2C76.4186094%20C1433.37086%2C78.9146097%201413.04763%2C75.4323356%201418.53598%2C61.7073656%20C1422.48508%2C51.8304803%201428.63598%2C43.2389846%201436.15644%2C35.9348996%20C1419.62476%2C21.4702243%201382.9173%2C22.3635297%201364.24037%2C29.1946883%20C1357.99857%2C31.478478%201341.47093%2C41.7898897%201329.33274%2C53.6110279%20C1330.28416%2C54.9509859%201331.32042%2C56.1959545%201332.18902%2C57.6207968%20C1338.18842%2C67.4693873%201345.39377%2C89.4160003%201329.05398%2C93.417685%20C1313.48786%2C97.2293907%201298.40451%2C78.1971359%201307.30665%2C64.5853449%20C1309.63975%2C61.0202077%201312.10819%2C57.5177231%201314.6534%2C54.0698069%20C1296.52591%2C38.4895104%201264.06854%2C25.8821827%201254.66543%2C24.3077825%20C1236.40059%2C21.2479085%201213.314%2C21.4843717%201200.65667%2C37.8670261%20C1200.85261%2C37.6123735%201200.33347%2C38.8452157%201199.47497%2C40.8581844%20C1199.01845%2C41.9333845%201204.74313%2C53.2068173%201205.14713%2C55.5087965%20C1206.03997%2C60.5897234%201206.37731%2C67.0914504%201204.74717%2C72.0672826%20C1202.63829%2C78.5043359%201194.71181%2C86.6370526%201187.05803%2C85.808421%20C1179.55776%2C84.9838314%201177.56402%2C76.5075357%201178.0468%2C70.1432403%20C1178.39222%2C65.5877871%201185.87229%2C45.6905217%201183.34931%2C42.3517424%20C1172.27162%2C27.691025%201153.61489%2C18.1880345%201134.97433%2C19.7321188%20C1118.19822%2C21.1246243%201102.05437%2C25.6982669%201088.03759%2C35.4074048%20C1086.47613%2C36.4886681%201080.36159%2C40.5994896%201074.00868%2C45.9916586%20C1075.37016%2C47.802522%201076.83264%2C49.4941432%201078.00021%2C51.5293434%20C1093.72187%2C78.9530097%201055.08734%2C101.625181%201047.37497%2C72.2997037%20C1046.37507%2C68.4839559%201054.75808%2C45.7471112%201058.083%2C48.0066483%20C1044.34699%2C38.6693841%201023.97932%2C31.7169623%201016.37806%2C31.3855096%20C1002.15726%2C30.7650464%20987.67789%2C31.2015938%20974.109545%2C36.1592365%20C969.021163%2C38.016584%20953.160117%2C46.8809219%20940.926993%2C56.8305651%20C945.043754%2C65.5716187%20948.168695%2C82.0027784%20943.171213%2C90.9237057%20C936.323411%2C103.147033%20921.264305%2C95.5296852%20916.343583%2C85.8306525%20C912.307622%2C77.8757885%20912.954022%2C67.2955768%20918.252484%2C60.078397%20C920.292685%2C57.2994494%20922.553066%2C54.6700596%20924.908386%2C52.1215119%20C909.10996%2C35.3649627%20875.466847%2C29.4614673%20856.52328%2C34.0148994%20C848.259457%2C35.9995733%20835.642532%2C40.8622265%20824.482028%2C47.7964588%20C826.863609%2C52.851112%20828.86139%2C58.1402073%20829.95421%2C63.8739343%20C832.327711%2C76.325641%20827.994809%2C97.3223591%20814.145684%2C101.865686%20C802.062039%2C105.830992%20791.652975%2C90.6144847%20790.299575%2C79.7513255%20C789.469355%2C73.1020616%20792.020616%2C66.8327557%20795.541477%2C61.339534%20C796.618137%2C59.658018%20810.180422%2C45.049848%20810.584423%2C45.7167954%20C808.115982%2C41.6443739%20805.483921%2C38.2510262%20803.1185%2C36.1572154%20C786.437333%2C21.4156559%20763.920385%2C8.84268604%20741.116596%2C23.0426034%20C729.449072%2C30.3062674%20717.110907%2C37.6548156%20707.447223%2C47.5478693%20C707.261383%2C47.7398693%20706.103923%2C49.2455537%20704.493982%2C51.4869013%20C709.881324%2C63.7001238%20711.287245%2C108.862571%20685.360535%2C95.3983168%20C671.456869%2C88.179116%20681.169033%2C62.4773868%20687.198735%2C52.8975962%20C687.968356%2C51.6748593%20688.838976%2C50.4137223%20689.772216%2C49.1343958%20C679.035912%2C35.4559101%20658.413724%2C28.111404%20639.110597%2C30.3103095%20C623.805051%2C32.0544781%20601.352742%2C38.2772999%20586.018917%2C48.9161221%20C589.004478%2C53.2108594%20591.539579%2C57.9017231%20593.353539%2C63.172629%20C597.193561%2C74.3369249%20598.031861%2C87.4980212%20590.448778%2C97.3284222%20C575.902753%2C116.184845%20562.283908%2C95.5882957%20559.482166%2C78.5973044%20C558.924646%2C75.2140619%20566.420869%2C47.4447956%20569.29533%2C50.3551117%20C560.702247%2C41.6544792%20549.353883%2C34.7485416%20539.714439%2C31.5876149%20C520.378991%2C25.245551%20491.26876%2C23.9642035%20476.831815%2C35.9348996%20C477.605475%2C36.7655523%20478.465995%2C37.4587735%20479.201276%2C38.3460157%20C485.360258%2C45.7956165%20489.093219%2C58.1018073%20486.127858%2C67.5785242%20C484.422978%2C73.0272827%20475.793534%2C80.6042099%20469.695152%2C79.3895571%20C462.532229%2C77.9626938%20459.306288%2C66.0101872%20458.334668%2C59.7388602%20C458.049848%2C57.9037442%20459.330528%2C38.5824788%20460.269828%2C39.1746473%20C453.824006%2C35.1143521%20447.048923%2C32.2929623%20443.738142%2C31.5027307%20C434.579459%2C29.3179725%20425.028895%2C27.2221407%20415.544991%2C27.9072776%20C404.443067%2C28.7055935%20392.500822%2C30.5892148%20383.392639%2C37.6265208%20C381.235278%2C39.2918684%20377.518477%2C42.8105214%20373.971355%2C47.1456798%20C374.108715%2C46.9779324%20381.863498%2C61.2687972%20382.350319%2C62.7643763%20C384.085499%2C68.1120821%20385.32376%2C74.3187355%20383.208819%2C79.7614308%20C377.175077%2C95.2770536%20361.374631%2C85.6507788%20355.912548%2C74.6906092%20C354.492488%2C71.8409247%20355.114648%2C49.8882485%20357.237669%2C51.1352381%20C348.747606%2C46.1452586%20339.481862%2C42.6286267%20336.558921%2C41.876795%20C328.196118%2C39.7243737%20319.376794%2C37.2647524%20310.652411%2C37.6063103%20C296.756826%2C38.1499735%20284.848921%2C42.5114056%20276.548738%2C53.0471541%20C281.69772%2C67.2106926%20283.321801%2C97.7063591%20260.138252%2C89.8929688%20C249.137328%2C86.1843368%20255.13067%2C68.1039979%20258.514171%2C59.6762075%20C259.643352%2C56.8629019%20261.041192%2C54.1587332%20262.564273%2C51.5253013%20C252.112789%2C37.5800366%20232.660181%2C25.2859721%20223.331818%2C23.982393%20C208.733272%2C21.9411296%20193.254006%2C24.3946878%20181.297622%2C33.6329204%20C178.970581%2C35.4296364%20175.92644%2C38.1338051%20172.831798%2C41.3695107%20C173.284279%2C42.4467319%20173.688279%2C43.6229847%20174.205399%2C44.59309%20C177.28994%2C50.3874486%20181.939982%2C56.3576387%20183.493362%2C62.8351131%20C188.721124%2C84.6584419%20153.962971%2C94.3594956%20149.450289%2C70.1270718%20C147.585829%2C60.1188181%20152.698451%2C49.1606695%20157.752493%2C40.8521212%20C152.662091%2C31.2783938%20145.662788%2C24.1602456%20130.878402%2C30.1809621%20C119.477518%2C34.8212995%20107.557493%2C41.0158265%2098.93613%2C50.0802485%20C99.7178703%2C53.1300173%20100.299631%2C56.2060598%20100.511731%2C59.2194496%20C101.135911%2C68.1242085%2098.85937%2C81.7804626%2088.8280462%2C84.8787366%20C78.1321421%2C88.179116%2071.8095396%2C77.7322937%2073.4598803%2C68.2151558%20C74.0234605%2C64.9774292%2084.5517045%2C48.3219326%2084.2204244%2C47.648922%20C79.0290224%2C37.0767945%2068.5088584%2C29.4452989%2055.6475135%2C33.4045414%20C29.1814633%2C41.5473634%208.11285525%2C57.8390705%2013.3183972%2C87.6576843%20C14.2031576%2C92.7285059%207.17961489%2C96.5644643%204.49705386%2C91.3784426%20C1.66250669%2C85.8996534%200.255172671%2C80.3745333%200.0318108537%2C74.9515011%20L0%2C75%20L0%2C0%20L1920%2C0%20L1920%2C80%20L1919.90658%2C79.6845391%20Z%20M1790.68678%2C73.8761249%20C1789.80202%2C70.3655561%201788.79404%2C66.881261%201787.64264%2C63.4555764%20C1785.30348%2C68.7264822%201785.59436%2C72.7443353%201790.68678%2C73.8761249%20Z%20M1674.37109%2C77.3705253%20C1679.68774%2C79.9837466%201684.85692%2C79.3046729%201689.89682%2C75.6748619%20C1687.06276%2C68.7264822%201683.79238%2C62.1257236%201680.0372%2C56.0969229%20C1677.13849%2C62.6855552%201673.93679%2C71.1759983%201674.37109%2C77.3705253%20Z%20M1556.03945%2C90.7923373%20C1559.48557%2C86.1216842%201560.76827%2C79.5552834%201560.19863%2C73.8842091%20C1559.93199%2C71.1962088%201552.72261%2C54.8458912%201552.74685%2C54.7468596%20C1550.48445%2C64.0679554%201544.81026%2C71.1861035%201546.3697%2C81.451031%20C1546.96762%2C85.3839999%201550.79149%2C97.8983592%201556.03945%2C90.7923373%20Z%20M1442.26694%2C65.6827766%20C1448.15727%2C59.7671549%201437.37046%2C49.3445853%201442.56186%2C44.7365848%20C1441.14786%2C45.9916586%201439.66518%2C47.1578061%201438.34208%2C48.5381852%20C1432.3447%2C53.2553226%201423.84858%2C74.3328828%201439.16422%2C67.6917031%20C1440.50954%2C67.1076189%201441.52156%2C66.4325872%201442.26694%2C65.6827766%20Z%20M1320.65684%2C86.7724632%20C1329.6519%2C78.6498517%201328.46818%2C69.9350718%201322.08094%2C61.6568393%20C1314.88368%2C70.9577246%201312.25767%2C80.264673%201320.65684%2C86.7724632%20Z%20M1193.39073%2C73.9711144%20C1193.69777%2C69.1367559%201193.13217%2C64.4256817%201191.94239%2C59.8985233%20C1188.65181%2C69.5126718%201187.07823%2C77.7888832%201193.39073%2C73.9711144%20Z%20M1062.07856%2C77.7181464%20C1074.77022%2C70.1513245%201073.16432%2C61.6790709%201065.53882%2C54.0556595%20C1058.06078%2C62.2914499%201053.65516%2C71.4508615%201062.07856%2C77.7181464%20Z%20M931.166349%2C84.8666103%20C933.83881%2C77.3442516%20934.07919%2C70.6363772%20932.362189%2C64.7591555%20C925.082106%2C72.6776405%20922.349045%2C80.3131782%20931.166349%2C84.8666103%20Z%20M805.526341%2C92.8901902%20C823.387188%2C88.7308634%20821.682307%2C69.8805034%20815.097104%2C54.534649%20C802.5933%2C64.8844607%20795.474817%2C78.2234096%20805.526341%2C92.8901902%20Z%20M692.666877%2C88.7834108%20C697.098759%2C79.5128413%20698.10876%2C70.9941035%20696.577599%2C63.4939764%20C689.828776%2C74.7027355%20683.950574%2C87.8456422%20692.666877%2C88.7834108%20Z%20M575.518953%2C93.302485%20C585.576536%2C81.7764205%20583.461596%2C69.0983559%20575.823973%2C58.0957442%20C568.11767%2C67.4835347%20566.283509%2C79.2177676%20575.518953%2C93.302485%20Z%20M472.785753%2C65.2987766%20C477.694355%2C58.7202495%20475.086534%2C52.1336383%20469.610312%2C46.5252166%20C467.632731%2C52.2953225%20467.693331%2C59.5630286%20470.398112%2C68.5223559%20C470.830392%2C67.1763347%20471.660613%2C66.078903%20472.785753%2C65.2987766%20Z%20M370.238394%2C75.755704%20C375.563116%2C69.6864823%20372.823995%2C63.5263132%20366.947813%2C58.12606%20C363.980432%2C64.7227765%20363.630971%2C71.4185246%20369.711174%2C76.0426936%20C369.884894%2C75.9375988%20370.058614%2C75.8426093%20370.238394%2C75.755704%20Z%20M264.222693%2C80.2707361%20C268.892935%2C75.715283%20270.248356%2C70.440335%20269.131295%2C64.9248818%20C266.420454%2C69.7976402%20263.598513%2C75.9901462%20264.222693%2C80.2707361%20Z%20M159.540193%2C72.5482932%20C175.372959%2C69.7814718%20168.173677%2C62.1762499%20163.590295%2C53.1866068%20C159.709873%2C59.579197%20157.526252%2C66.4487556%20159.540193%2C72.5482932%20Z%20M87.7372457%2C65.1775134%20C87.6059457%2C65.4543976%2087.3918256%2C65.6787345%2087.2686056%2C65.9596608%20C86.3737452%2C67.6957453%2085.765725%2C69.5045876%2085.1859848%2C71.319493%20C86.5515053%2C69.3873665%2087.3554656%2C67.3461031%2087.7372457%2C65.1775134%20Z%22%20id%3D%22Combined-Shape%22%3E%3C%2Fpath%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E')}.brz-ed .brz-ed-shape--41{background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22nc_icon%22%20viewBox%3D%220%200%201920%20113%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cdefs%3E%3C%2Fdefs%3E%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%20%3Cg%20id%3D%22Artboard%22%20transform%3D%22translate(0.000000%2C%20-19357.000000)%22%20fill%3D%22currentColor%22%3E%20%3Cg%20id%3D%2242%22%20transform%3D%22translate(0.000000%2C%2019357.000000)%22%3E%20%3Cpath%20d%3D%22M1892.2793%2C65.4348284%20C1888.70338%2C65.4644705%201886.37715%2C65.5810179%201885.3006%2C65.7844705%20C1882.89555%2C66.2392074%201880.39147%2C67.1224074%201879.20713%2C69.442576%20C1877.70549%2C72.391292%201879.90641%2C75.7179448%201883.31189%2C75.5784922%20C1885.90086%2C75.4733974%201887.97648%2C74.4123447%201890.02785%2C72.9147446%20C1889.8601%2C73.0521762%201889.95307%2C68.8342391%201890.11071%2C68.3855654%20C1890.3977%2C67.5784917%201891.12056%2C66.5949127%201892.2793%2C65.4348284%20Z%20M1893.88401%2C67.526618%20C1892.43896%2C67.9732706%201891.483%2C69.5921339%201892.63905%2C71.4838393%20C1893.72233%2C73.2522604%201896.92772%2C72.9167657%201897.6169%2C70.9037971%20C1898.32023%2C68.8463654%201895.76764%2C66.9445548%201893.88401%2C67.526618%20Z%20M1894.88444%2C57.7507858%20C1894.25387%2C59.4626175%201895.6585%2C61.9202176%201896.04856%2C63.619923%20C1898.6153%2C65.1559231%201900.5737%2C60.6166386%201900.74347%2C58.8664069%20C1900.83441%2C57.91247%201900.82027%2C54.9395014%201899.83601%2C54.5130593%20C1898.75879%2C54.0461961%201896.50532%2C55.6751646%201895.43214%2C56.9221542%20C1895.16132%2C57.2354174%201894.9673%2C57.5244279%201894.88444%2C57.7507858%20Z%20M1910.41623%2C65.8996705%20C1909.96351%2C62.1607229%201900.84048%2C67.6842601%201901.00823%2C67.9409338%20C1901.48721%2C68.6604286%201901.78431%2C69.5133128%201901.78027%2C70.3843866%20C1905.69303%2C70.7744498%201911.00031%2C70.7178603%201910.41623%2C65.8996705%20Z%20M1901.4953%2C83.3231663%20C1905.23627%2C82.9492715%201906.34785%2C79.1981976%201903.53656%2C76.6739027%20C1902.56039%2C75.7947448%201901.45892%2C75.0429132%201900.32511%2C74.3436289%20C1900.22406%2C74.3193763%201900.12705%2C74.2931026%201900.02801%2C74.2668289%20C1899.70465%2C74.616471%201899.44393%2C75.0186605%201899.03568%2C75.2874606%20C1897.06515%2C76.5849764%201894.08208%2C76.912387%201892.05698%2C75.6148711%20C1893.37875%2C79.8449345%201896.46692%2C83.8284295%201901.4953%2C83.3231663%20Z%20M1840.41706%2C50.1273748%20C1833.8729%2C41.170069%201825.07323%2C27.8230366%201814.28485%2C22.4450152%20C1814.04637%2C22.4591626%201813.80788%2C22.4652258%201813.5694%2C22.4813942%20C1820.23483%2C35.9840476%201827.18927%2C49.2421537%201834.04671%2C62.7064072%20C1835.20275%2C64.9740284%201832.00544%2C66.8616916%201830.63315%2C64.7011862%20C1822.68435%2C52.1989539%201816.69395%2C39.1651847%201810.53378%2C25.9474997%20C1807.56485%2C36.4266582%201805.40435%2C46.7016904%201812.68822%2C56.7281331%20C1817.5347%2C63.3996283%201823.09462%2C68.7069128%201829.3134%2C74.0141973%20C1836.95298%2C80.5341135%201844.01858%2C87.025735%201849.03685%2C95.4696934%20C1854.81302%2C79.9965135%201850.14843%2C63.4461125%201840.41706%2C50.1273748%20Z%20M1712.89874%2C54.9920488%20C1708.12299%2C51.2531012%201702.85815%2C48.0941957%201697.25579%2C45.7598798%20C1694.70522%2C44.6968061%201691.8899%2C43.5144902%201689.14531%2C43.0759218%20C1688.06%2C42.9041323%201683.83196%2C43.8580692%201683.21352%2C43.1810165%20C1687.68207%2C48.2215221%201692.38505%2C53.0700276%201697.55491%2C57.4011437%20C1703.47255%2C62.356765%201710.04501%2C66.4716284%201715.90607%2C71.4494814%20C1717.67449%2C72.9511236%201715.42708%2C75.3763869%201713.57175%2C74.4749973%20C1700.3379%2C68.0520917%201689.1352%2C55.4387015%201680.19204%2C43.8823218%20C1680.10312%2C44.2117534%201679.9859%2C44.4866166%201679.74337%2C44.7432903%20C1677.48181%2C61.2290176%201681.16619%2C75.5683869%201697.99348%2C82.7390821%20C1709.73983%2C87.7472508%201721.47407%2C92.7715879%201733.15979%2C97.9192093%20C1733.24468%2C97.9555882%201733.89142%2C91.472051%201733.88131%2C90.8536089%20C1733.84695%2C88.5011035%201733.54379%2C86.1566823%201733.0163%2C83.8648084%20C1730.32426%2C72.1952498%201722.15516%2C62.239544%201712.89874%2C54.9920488%20Z%20M1634.20097%2C73.0157973%20C1631.96568%2C71.1382393%201630.98951%2C69.5840497%201627.58808%2C70.4328918%20C1625.25579%2C71.014955%201622.52737%2C72.7793341%201622.10901%2C75.2733132%20C1621.43398%2C79.3133976%201624.03709%2C81.8336504%201627.7821%2C80.0793766%20C1628.08526%2C79.9358819%201631.3533%2C78.4281765%201631.34926%2C78.3008502%20C1631.3917%2C76.1888501%201632.52754%2C74.2607658%201634.20097%2C73.0157973%20Z%20M1641.77385%2C84.6833348%20C1639.42337%2C85.3866612%201636.7293%2C85.3583664%201634.65166%2C84.2104085%20C1630.96728%2C86.8984086%201625.68021%2C92.8685985%201631.42808%2C95.4110828%20C1634.47179%2C96.759125%201637.3437%2C94.7380723%201638.76046%2C92.0642195%20C1639.90842%2C89.8936088%201641.12914%2C87.1389139%201641.77385%2C84.6833348%20Z%20M1637.36391%2C76.2737343%20C1634.11608%2C80.0268293%201641.1736%2C81.2717978%201641.49899%2C78.3998818%20C1641.70312%2C76.5627448%201639.27987%2C74.0606815%201637.36391%2C76.2737343%20Z%20M1651.00602%2C63.5552493%20C1645.99179%2C62.3789966%201642.08914%2C67.3184495%201641.48282%2C71.8981551%20C1641.45857%2C72.0659025%201645.37739%2C75.073229%201645.8584%2C74.9459026%20C1647.57225%2C74.4931868%201652.24897%2C70.5117129%201653.09377%2C69.0686812%20C1654.41958%2C66.7970179%201653.78093%2C64.2040073%201651.00602%2C63.5552493%20Z%20M1657.93015%2C85.762577%20C1658.15448%2C79.4083871%201652.68552%2C78.1755449%201647.51566%2C78.5009344%20C1647.2408%2C79.980345%201646.52333%2C81.2940293%201645.47844%2C82.3995452%20C1647.6632%2C84.2771032%201648.87583%2C87.0924297%201651.59213%2C88.5132298%20C1654.18716%2C89.8713772%201657.80484%2C89.3095246%201657.93015%2C85.762577%20Z%20M1575.00635%2C66.1280495%20C1570.12955%2C57.3708279%201564.3453%2C49.2300274%201558.03557%2C41.4813111%20C1560.51945%2C53.4095645%201564.93545%2C64.1272072%201570.4509%2C75.4531869%20C1571.79086%2C78.2078818%201568.05393%2C80.4168924%201566.34412%2C77.8541976%20C1559.74134%2C67.9591233%201555.86496%2C56.7705752%201553.66606%2C45.1980272%20C1549.6866%2C56.0207646%201547.63119%2C66.7121337%201555.68509%2C77.5874186%20C1561.64719%2C85.6352507%201567.70429%2C93.6103248%201573.60981%2C101.698578%20C1575.76425%2C89.6995877%201581.95271%2C78.599966%201575.00635%2C66.1280495%20Z%20M1464.70538%2C49.9899432%20C1457.36087%2C42.4069533%201449.85064%2C34.6097318%201439.64028%2C31.6327211%20C1439.51296%2C32.1521316%201457.30832%2C52.4131855%201461.51616%2C65.0265757%20C1461.58689%2C65.2428284%201461.61721%2C65.4328073%201461.54445%2C65.6470389%20C1457.8823%2C66.4635442%201455.11346%2C59.2039227%201453.70479%2C56.9464068%20C1452.25569%2C54.6262382%201450.54992%2C52.4960486%201448.75523%2C50.4365959%20C1447.01915%2C48.4458589%201445.19818%2C46.5278799%201443.5207%2C44.4866166%20C1442.44752%2C43.1810165%201438.52264%2C39.2116689%201438.6722%2C37.4998372%20C1437.52626%2C50.7195433%201443.41359%2C63.0803019%201455.3863%2C70.8451866%20C1461.86176%2C75.0469553%201468.18361%2C78.8728081%201473.53132%2C84.1214821%20C1476.85797%2C71.3221551%201475.04104%2C60.6590807%201464.70538%2C49.9899432%20Z%20M1390.25788%2C70.4409761%20C1387.60019%2C68.1349549%201385.4316%2C65.2408073%201381.50268%2C65.6147021%20C1379.19059%2C65.8329758%201374.83725%2C68.7109549%201378.15784%2C70.9098603%20C1380.96912%2C72.7692288%201387.85889%2C72.7995446%201387.48499%2C73.9960078%20C1388.02259%2C72.6317972%201389.0311%2C71.3888498%201390.25788%2C70.4409761%20Z%20M1383.26302%2C83.9335242%20C1384.1159%2C83.9355453%201390.24777%2C80.9241767%201389.44946%2C80.3057345%20C1387.48499%2C78.7939871%201387.87506%2C77.065987%201385.28407%2C78.2058607%20C1383.72584%2C78.8909976%201382.15548%2C80.0854398%201381.72702%2C81.8134399%20C1381.47843%2C82.8179031%201381.47843%2C83.3555031%201381.77552%2C83.6364295%20C1382.03624%2C83.8829979%201382.52129%2C83.9335242%201383.26302%2C83.9335242%20Z%20M1392.47093%2C73.7615657%20C1391.29468%2C75.6027448%201391.66857%2C77.4964712%201394.20702%2C76.760808%20C1396.78184%2C76.0130185%201396.74546%2C73.8747447%201395.75716%2C72.8601762%20C1394.98108%2C72.0659025%201393.61889%2C71.9608077%201392.47093%2C73.7615657%20Z%20M1394.39699%2C68.023797%20C1394.31009%2C68.3936496%201394.07969%2C68.6280917%201393.81089%2C68.8039233%20C1395.33881%2C67.8095654%201398.19859%2C68.1955864%201399.95085%2C67.9833759%20C1402.43472%2C67.6862811%201405.04592%2C66.68586%201406.66883%2C64.6991652%20C1408.18664%2C62.8418177%201409.10622%2C59.1170175%201406.98007%2C57.2677542%20C1404.36887%2C54.9920488%201400.18327%2C56.5159226%201398.22689%2C58.9351227%20C1396.08862%2C61.5746176%201395.15489%2C64.7739441%201394.39699%2C68.023797%20Z%20M1415.91716%2C75.2045974%20C1415.20575%2C68.1632496%201401.87085%2C72.2215235%201401.92744%2C72.5752078%20C1402.24474%2C74.1293973%201402.16188%2C75.7401764%201401.58184%2C77.1468291%20C1401.30495%2C77.8178186%201405.81392%2C79.6913345%201406.49097%2C79.8449345%20C1407.8471%2C80.1541556%201409.40533%2C80.1864924%201410.78167%2C80.0470398%20C1413.58689%2C79.7701556%201416.24458%2C78.4342397%201415.91716%2C75.2045974%20Z%20M1399.01106%2C90.7929773%20C1405.31674%2C88.4808929%201400.08222%2C79.7135661%201398.15615%2C80.8312083%20C1397.37805%2C81.2839241%201396.56761%2C81.6537767%201395.70259%2C81.8255662%20C1395.03565%2C81.9569346%201393.74015%2C87.4925981%201393.97662%2C88.2464508%20C1394.6759%2C90.4736509%201396.71514%2C91.6357563%201399.01106%2C90.7929773%20Z%20M1340.52583%2C97.6847672%20C1342.51657%2C72.7308288%201311.23067%2C61.744386%201289.96314%2C55.8732278%20C1302.03084%2C62.8216072%201309.55724%2C76.1282185%201324.35337%2C78.9960924%20C1326.69577%2C79.4508292%201326.05307%2C82.9755452%201323.80769%2C83.0280926%20C1307.64937%2C83.3959242%201299.54293%2C66.4433337%201287.56213%2C57.7265332%20C1287.9825%2C58.2277543%201288.31598%2C58.6481332%201288.42511%2C58.8583227%20C1290.03994%2C61.9687229%201290.29257%2C62.3648492%201291.29299%2C65.7885126%20C1294.07396%2C75.3177763%201301.02234%2C81.6881346%201310.03219%2C85.5099454%20C1320.23851%2C89.8410614%201331.6615%2C91.1567668%201340.52583%2C97.6847672%20Z%20M1214.88911%2C97.8242198%20C1219.65677%2C78.1290607%201199.08448%2C67.5569338%201181.67311%2C60.7581123%20C1187.47757%2C65.3661126%201192.74646%2C70.6410603%201197.04928%2C76.376808%20C1198.39732%2C78.1735239%201195.48296%2C80.3198819%201193.98334%2C78.7414397%20C1184.75723%2C69.0403865%201175.44827%2C60.630786%201164.48608%2C53.1144908%20C1172.29542%2C62.3001756%201178.47984%2C73.1997131%201188.66999%2C79.4609345%20C1198.01736%2C85.2047664%201208.34494%2C89.2973982%201214.88911%2C97.8242198%20Z%20M1135.19496%2C70.0893129%20C1130.74258%2C68.5108707%201127.44624%2C73.0643025%201131.96936%2C75.6653974%20C1132.72523%2C76.0999238%201134.29963%2C77.0801343%201135.18687%2C76.9588712%20C1136.34494%2C76.8012291%201136.56725%2C75.1601342%201137.82839%2C75.188429%20C1137.89306%2C75.19045%201137.94561%2C75.2126816%201138.01028%2C75.2147027%20C1137.06039%2C73.4968078%201136.12464%2C71.7829551%201135.19496%2C70.0893129%20Z%20M1138.66511%2C88.3717561%20C1138.6166%2C88.5435456%201138.66511%2C88.6991666%201138.57012%2C88.8770193%20C1137.08262%2C91.6216089%201135.50216%2C94.8896512%201136.66224%2C98.0728093%20C1137.86275%2C101.35702%201139.45938%2C101.387336%201140.74275%2C100.091841%20C1141.88262%2C98.943883%201142.77391%2C96.7550829%201142.92548%2C94.8694407%20C1142.97197%2C94.2853564%201142.40001%2C87.9978613%201142.07462%2C88.1211455%20C1141.1126%2C88.4889771%201139.86359%2C88.6163035%201138.66511%2C88.3717561%20Z%20M1141.5249%2C80.1905345%20C1140.38704%2C77.9673765%201138.64692%2C81.0555451%201138.81062%2C82.4621978%20C1139.2694%2C86.298156%201142.2929%2C81.6901557%201141.5249%2C80.1905345%20Z%20M1154.33635%2C68.9514602%20C1150.16692%2C67.8014812%201145.93079%2C70.4834182%201143.22662%2C73.3634183%20C1142.54148%2C74.0950394%201148.35605%2C76.7183659%201149.04725%2C76.8012291%20C1151.35125%2C77.0821554%201154.37475%2C76.7304922%201156.0785%2C74.9822816%20C1158.38856%2C72.6136078%201157.91563%2C69.6103234%201154.33635%2C68.9514602%20Z%20M1158.72203%2C93.0484722%20C1159.86393%2C90.5544931%201157.64077%2C87.4360087%201155.85214%2C85.9283033%20C1153.37837%2C83.8405558%201150.07799%2C82.4399663%201146.82612%2C81.815461%20C1146.17736%2C81.7103662%201145.13854%2C84.7965138%201145.23757%2C85.3300717%20C1145.53871%2C86.9246823%201147.92759%2C88.2080508%201148.93812%2C89.4307877%20C1150.25786%2C91.0274194%201151.27243%2C92.812009%201153.31976%2C93.5880932%20C1154.72237%2C94.1196301%201157.88936%2C94.8633775%201158.72203%2C93.0484722%20Z%20M1135.02115%2C84.2023243%20C1134.64119%2C82.4399663%201134.68161%2C80.6594188%201135.11614%2C78.9192924%20C1134.83521%2C80.0450187%201126.33668%2C79.1517134%201125.17458%2C79.5053977%20C1122.71092%2C80.2552082%201119.74199%2C82.3389136%201120.04515%2C85.3442191%20C1120.37256%2C88.6021561%201124.39243%2C90.1927246%201127.26839%2C89.3459035%20C1130.27167%2C88.4627035%201132.24624%2C86.566956%201134.43504%2C84.4468716%20C1134.61087%2C84.2750822%201134.82308%2C84.2831664%201135.02115%2C84.2023243%20Z%20M1086.27336%2C51.4208486%20C1079.99192%2C44.7251008%201073.09609%2C39.4036689%201065.70308%2C34.4864476%20C1075.87302%2C44.0076271%201082.86182%2C56.7079226%201086.3643%2C70.2833339%20C1087.07369%2C73.0360078%201082.81331%2C74.2041763%201082.11605%2C71.4535235%20C1079.09458%2C59.5232491%201073.54881%2C49.3492695%201066.13761%2C40.3070795%20C1067.1926%2C44.4845955%201067.77264%2C48.9147432%201068.24759%2C53.3752066%20C1069.81794%2C68.1046391%201074.75335%2C76.4515869%201086.18443%2C85.5847243%20C1088.63394%2C87.5411034%201090.7702%2C89.4732298%201092.67807%2C91.6013984%20C1094.0059%2C77.8097344%201095.80262%2C61.5806808%201086.27336%2C51.4208486%20Z%20M996.637644%2C64.5900283%20C993.38577%2C55.7964278%20981.067454%2C41.3459006%20972.106106%2C34.4096475%20C971.942401%2C34.3914581%20971.784759%2C34.3692265%20971.623074%2C34.349016%20C973.68859%2C46.7016904%20981.303917%2C55.3356278%20986.770865%2C66.6797969%20C987.916802%2C69.060597%20984.709391%2C70.9603866%20983.227959%2C68.7513759%20C975.713685%2C57.564849%20971.026864%2C47.0816483%20968.955285%2C33.928637%20C965.741811%2C34.2297739%20963.708632%2C37.720132%20962.36059%2C41.3883427%20C966.418864%2C49.33108%20968.50459%2C58.1509543%20963.714695%2C65.5075863%20C963.680337%2C65.5641758%20963.635874%2C65.6045968%20963.599495%2C65.6611863%20C966.329937%2C69.0282602%20970.214401%2C71.7829551%20974.749643%2C74.5901974%20C983.270401%2C79.865145%20990.62097%2C85.9040507%20997.476381%2C92.8463669%20C997.195455%2C83.3029558%20999.952171%2C73.5533973%20996.637644%2C64.5900283%20Z%20M960%2C37.1663635%20C960.743747%2C35.9496897%20961.51579%2C34.7774792%20962.297937%2C33.6396265%20C961.544084%2C33.5608054%20960.755874%2C33.4375212%20960%2C33.3182791%20C959.244126%2C33.4375212%20958.455916%2C33.5608054%20957.702063%2C33.6396265%20C958.48421%2C34.7774792%20959.254232%2C35.9496897%20960%2C37.1663635%20Z%20M959.1936%2C55.8570594%20C959.981811%2C51.4329749%20959.545263%2C46.5804272%20957.637389%2C41.3903638%20C956.291368%2C37.722153%20954.256168%2C34.2297739%20951.044715%2C33.928637%20C948.973136%2C47.0816483%20944.286315%2C57.564849%20936.774062%2C68.7513759%20C935.290609%2C70.9603866%20932.081177%2C69.058576%20933.229135%2C66.6797969%20C938.696083%2C55.3356278%20946.31141%2C46.7016904%20948.376926%2C34.349016%20C948.21322%2C34.3692265%20948.055578%2C34.3914581%20947.893894%2C34.4096475%20C938.930525%2C41.3459006%20926.612209%2C55.7964278%20923.362356%2C64.5900283%20C920.047829%2C73.5533973%20922.802524%2C83.3029558%20922.523619%2C92.8463669%20C929.37903%2C85.9040507%20936.729599%2C79.865145%20945.250357%2C74.5901974%20C952.748463%2C69.9478392%20957.823326%2C63.5491862%20959.1936%2C55.8570594%20Z%20M837.88395%2C71.4535235%20C837.186687%2C74.2041763%20832.926308%2C73.0360078%20833.635698%2C70.2833339%20C837.138182%2C56.7079226%20844.124961%2C44.0076271%20854.29692%2C34.4864476%20C846.903909%2C39.4036689%20840.008077%2C44.7251008%20833.726645%2C51.4208486%20C824.199402%2C61.5806808%20825.992076%2C77.8097344%20827.321929%2C91.6013984%20C829.229803%2C89.4732298%20831.364034%2C87.5411034%20833.815571%2C85.5847243%20C845.246646%2C76.4515869%20850.182056%2C68.1046391%20851.752414%2C53.3752066%20C852.227362%2C48.9147432%20852.807404%2C44.4845955%20853.862394%2C40.3070795%20C846.451193%2C49.3492695%20840.905424%2C59.5232491%20837.88395%2C71.4535235%20Z%20M788.030642%2C75.6653974%20C792.553758%2C73.0643025%20789.257421%2C68.5108707%20784.805042%2C70.0893129%20C783.875358%2C71.7829551%20782.93961%2C73.4968078%20781.989716%2C75.2147027%20C782.054389%2C75.2126816%20782.106937%2C75.19045%20782.17161%2C75.188429%20C783.432747%2C75.1601342%20783.655063%2C76.8012291%20784.811105%2C76.9588712%20C785.700368%2C77.0801343%20787.272747%2C76.0999238%20788.030642%2C75.6653974%20Z%20M794.823401%2C79.5053977%20C793.663316%2C79.1517134%20785.164789%2C80.0450187%20784.883863%2C78.9192924%20C785.318389%2C80.6594188%20785.35881%2C82.4399663%20784.978853%2C84.2023243%20C785.176916%2C84.2831664%20785.387105%2C84.2750822%20785.564958%2C84.4468716%20C787.753758%2C86.566956%20789.728327%2C88.4627035%20792.731611%2C89.3459035%20C795.607569%2C90.1927246%20799.627443%2C88.6021561%20799.954853%2C85.3442191%20C800.258011%2C82.3389136%20797.289085%2C80.2552082%20794.823401%2C79.5053977%20Z%20M783.335737%2C98.0728093%20C784.497842%2C94.8896512%20782.917379%2C91.6216089%20781.429884%2C88.8770193%20C781.332873%2C88.6991666%20781.385421%2C88.5435456%20781.336915%2C88.3717561%20C780.13641%2C88.6163035%20778.889421%2C88.4889771%20777.923357%2C88.1211455%20C777.599989%2C87.9978613%20777.028031%2C94.2853564%20777.074515%2C94.8694407%20C777.226094%2C96.7550829%20778.119399%2C98.943883%20779.255231%2C100.091841%20C780.540621%2C101.387336%20782.137252%2C101.35702%20783.335737%2C98.0728093%20Z%20M770.952746%2C76.8012291%20C771.641925%2C76.7163449%20777.458515%2C74.0930184%20776.773378%2C73.3634183%20C774.06921%2C70.4834182%20769.833083%2C67.8014812%20765.663651%2C68.9514602%20C762.082346%2C69.6103234%20761.611441%2C72.6136078%20763.921504%2C74.9822816%20C765.625251%2C76.7304922%20768.648746%2C77.0821554%20770.952746%2C76.8012291%20Z%20M771.061883%2C89.4307877%20C772.07241%2C88.2080508%20774.461294%2C86.9226613%20774.762431%2C85.3300717%20C774.863484%2C84.7965138%20773.822641%2C81.7103662%20773.173883%2C81.815461%20C769.92201%2C82.4399663%20766.62163%2C83.8405558%20764.147862%2C85.9283033%20C762.35923%2C87.4360087%20760.136072%2C90.5544931%20761.277967%2C93.0484722%20C762.110641%2C94.8613565%20765.27763%2C94.1196301%20766.680241%2C93.5880932%20C768.727567%2C92.812009%20769.742136%2C91.0274194%20771.061883%2C89.4307877%20Z%20M778.475105%2C80.1905345%20C777.707105%2C81.6901557%20780.7306%2C86.298156%20781.189379%2C82.4621978%20C781.353084%2C81.0555451%20779.612957%2C77.9653555%20778.475105%2C80.1905345%20Z%20M731.330007%2C79.4609345%20C741.518134%2C73.1997131%20747.704577%2C62.3001756%20755.513924%2C53.1144908%20C744.553755%2C60.630786%20735.242765%2C69.0403865%20726.016659%2C78.7414397%20C724.517038%2C80.3198819%20721.60268%2C78.1735239%20722.952744%2C76.376808%20C727.253544%2C70.6410603%20732.522428%2C65.3661126%20738.326892%2C60.7581123%20C720.915522%2C67.5569338%20700.343226%2C78.1270397%20705.11089%2C97.8242198%20C711.655059%2C89.2973982%20721.982638%2C85.2047664%20731.330007%2C79.4609345%20Z%20M631.574885%2C58.8583227%20C631.684022%2C58.6481332%20632.017496%2C58.2277543%20632.435854%2C57.7265332%20C620.457074%2C66.4433337%20612.352653%2C83.3959242%20596.190294%2C83.0280926%20C593.946925%2C82.9755452%20593.30423%2C79.4508292%20595.644609%2C78.9960924%20C610.442758%2C76.1282185%20617.967137%2C62.8216072%20630.036864%2C55.8732278%20C608.769326%2C61.744386%20577.483429%2C72.7308288%20579.474166%2C97.6827461%20C588.338504%2C91.1567668%20599.761494%2C89.8410614%20609.96781%2C85.5099454%20C618.977664%2C81.6881346%20625.926043%2C75.3177763%20628.707011%2C65.7885126%20C629.707433%2C62.3648492%20629.960064%2C61.9687229%20631.574885%2C58.8583227%20Z%20M538.499343%2C65.6147021%20C534.568395%2C65.2408073%20532.399806%2C68.1349549%20529.742121%2C70.4409761%20C530.9689%2C71.3888498%20531.977406%2C72.6317972%20532.515006%2C73.9960078%20C532.141111%2C72.7995446%20539.03088%2C72.7692288%20541.842164%2C70.9098603%20C545.160733%2C68.7109549%20540.809406%2C65.8329758%20538.499343%2C65.6147021%20Z%20M538.22448%2C83.6364295%20C538.521574%2C83.3555031%20538.521574%2C82.8179031%20538.272985%2C81.8134399%20C537.844522%2C80.0854398%20536.274164%2C78.8909976%20534.715932%2C78.2058607%20C532.124942%2C77.0639659%20532.515006%2C78.7939871%20530.550542%2C80.3057345%20C529.750205%2C80.9221556%20535.886122%2C83.9355453%20536.736985%2C83.9335242%20C537.478711%2C83.9335242%20537.963764%2C83.8829979%20538.22448%2C83.6364295%20Z%20M525.792984%2C76.760808%20C528.331426%2C77.4964712%20528.705321%2C75.6027448%20527.529069%2C73.7595447%20C526.381111%2C71.9608077%20525.018921%2C72.0659025%20524.244858%2C72.8601762%20C523.254542%2C73.8747447%20523.218163%2C76.0130185%20525.792984%2C76.760808%20Z%20M526.023384%2C88.2464508%20C526.259847%2C87.4925981%20524.962332%2C81.9569346%20524.297405%2C81.8255662%20C523.432395%2C81.6537767%20522.623973%2C81.2839241%20521.843847%2C80.8312083%20C519.917784%2C79.7135661%20514.681236%2C88.4808929%20520.988942%2C90.7929773%20C523.284858%2C91.6357563%20525.3241%2C90.4716299%20526.023384%2C88.2464508%20Z%20M513.509026%2C79.8449345%20C514.186078%2C79.6913345%20518.695047%2C77.8178186%20518.418163%2C77.1468291%20C517.838121%2C75.7401764%20517.755257%2C74.1293973%20518.072563%2C72.5752078%20C518.129152%2C72.2215235%20504.794246%2C68.1632496%20504.082836%2C75.2045974%20C503.757446%2C78.4342397%20506.413109%2C79.7701556%20509.21631%2C80.0470398%20C510.594667%2C80.1864924%20512.152899%2C80.1541556%20513.509026%2C79.8449345%20Z%20M513.01791%2C57.2677542%20C510.893783%2C59.1170175%20511.813362%2C62.8418177%20513.331173%2C64.6991652%20C514.954078%2C66.68586%20517.563257%2C67.6842601%20520.051173%2C67.9833759%20C521.801405%2C68.1955864%20524.661195%2C67.8095654%20526.189111%2C68.8039233%20C525.920311%2C68.6280917%20525.687889%2C68.3936496%20525.603005%2C68.023797%20C524.84511%2C64.7739441%20523.911384%2C61.5746176%20521.775131%2C58.9351227%20C519.816731%2C56.5159226%20515.631131%2C54.9920488%20513.01791%2C57.2677542%20Z%20M464.613696%2C70.8451866%20C476.586413%2C63.0803019%20482.471718%2C50.7195433%20481.327803%2C37.4998372%20C481.475339%2C39.2116689%20477.552476%2C43.1810165%20476.479297%2C44.4866166%20C474.801823%2C46.5278799%20472.980855%2C48.4458589%20471.24477%2C50.4365959%20C469.450076%2C52.4960486%20467.744307%2C54.6262382%20466.297233%2C56.9464068%20C464.886538%2C59.2039227%20462.115675%2C66.4635442%20458.455549%2C65.6470389%20C458.38077%2C65.4328073%20458.413106%2C65.2428284%20458.483843%2C65.0265757%20C462.691675%2C52.4131855%20480.487045%2C32.1521316%20480.359718%2C31.6327211%20C470.14936%2C34.6097318%20462.639128%2C42.4069533%20455.292601%2C49.9899432%20C444.958958%2C60.6590807%20443.142032%2C71.3221551%20446.468685%2C84.1214821%20C451.81639%2C78.8728081%20458.136222%2C75.0469553%20464.613696%2C70.8451866%20Z%20M364.314911%2C77.5874186%20C372.368806%2C66.7121337%20370.313396%2C56.0207646%20366.333943%2C45.1980272%20C364.135038%2C56.7705752%20360.258658%2C67.9571022%20353.655879%2C77.8541976%20C351.944047%2C80.4168924%20348.209142%2C78.2078818%20349.5491%2C75.4531869%20C355.064553%2C64.1272072%20359.478532%2C53.4095645%20361.966448%2C41.4813111%20C355.6547%2C49.2300274%20349.872468%2C57.3708279%20344.993647%2C66.1280495%20C338.045268%2C78.599966%20344.235752%2C89.6995877%20346.388173%2C101.698578%20C352.293689%2C93.6103248%20358.354827%2C85.6352507%20364.314911%2C77.5874186%20Z%20M292.411917%2C70.4328918%20C289.010486%2C69.5840497%20288.034317%2C71.1382393%20285.799033%2C73.0157973%20C287.470443%2C74.2607658%20288.608296%2C76.1888501%20288.650738%2C78.3008502%20C288.646696%2C78.4281765%20291.912717%2C79.9358819%20292.217896%2C80.0793766%20C295.962907%2C81.8336504%20298.566023%2C79.3133976%20297.88897%2C75.2733132%20C297.472634%2C72.7793341%20294.742191%2C71.014955%20292.411917%2C70.4328918%20Z%20M288.571917%2C95.4110828%20C294.31777%2C92.8685985%20289.032717%2C86.8984086%20285.348338%2C84.2104085%20C283.270696%2C85.3583664%20280.576632%2C85.3846401%20278.226148%2C84.6833348%20C278.870864%2C87.1389139%20280.09158%2C89.8936088%20281.239538%2C92.0642195%20C282.656296%2C94.7380723%20285.528212%2C96.759125%20288.571917%2C95.4110828%20Z%20M274.141601%2C74.9459026%20C274.622611%2C75.073229%20278.539411%2C72.0659025%20278.51718%2C71.8981551%20C277.910864%2C67.3184495%20274.008211%2C62.3789966%20268.993979%2C63.5552493%20C266.219074%2C64.2040073%20265.5784%2C66.7970179%20266.906232%2C69.0686812%20C267.751032%2C70.5117129%20272.427748%2C74.4931868%20274.141601%2C74.9459026%20Z%20M268.407874%2C88.5132298%20C271.124169%2C87.0924297%20272.3368%2C84.2771032%20274.521558%2C82.3995452%20C273.476674%2C81.2940293%20272.761221%2C79.980345%20272.484337%2C78.5009344%20C267.314484%2C78.1755449%20261.845516%2C79.4083871%20262.069852%2C85.762577%20C262.195158%2C89.3095246%20265.812842%2C89.8713772%20268.407874%2C88.5132298%20Z%20M282.636085%2C76.2737343%20C280.720127%2C74.0606815%20278.294864%2C76.5627448%20278.503032%2C78.3998818%20C278.826401%2C81.2717978%20285.883917%2C80.0268293%20282.636085%2C76.2737343%20Z%20M222.006524%2C82.7390821%20C238.833809%2C75.5683869%20242.518188%2C61.2290176%20240.25663%2C44.7432903%20C240.014104%2C44.4866166%20239.894862%2C44.2117534%20239.807956%2C43.8823218%20C230.864798%2C55.4387015%20219.662102%2C68.0520917%20206.428249%2C74.4749973%20C204.570902%2C75.3763869%20202.325512%2C72.9491025%20204.091912%2C71.4494814%20C209.954986%2C66.4716284%20216.52745%2C62.356765%20222.445092%2C57.4011437%20C227.614945%2C53.0700276%20232.317935%2C48.2215221%20236.786482%2C43.1810165%20C236.166019%2C43.8580692%20231.942019%2C42.9041323%20230.854693%2C43.0759218%20C228.110103%2C43.5144902%20225.294777%2C44.6968061%20222.744208%2C45.7598798%20C217.14185%2C48.0941957%20211.877007%2C51.2531012%20207.10126%2C54.9920488%20C197.844838%2C62.239544%20189.675743%2C72.1952498%20186.9837%2C83.8648084%20C186.456206%2C86.1566823%20186.151027%2C88.5011035%20186.11869%2C90.8536089%20C186.108585%2C91.472051%20186.755322%2C97.9555882%20186.840206%2C97.9192093%20C198.525933%2C92.7715879%20210.260165%2C87.7472508%20222.006524%2C82.7390821%20Z%20M107.309759%2C56.7281331%20C114.595654%2C46.7016904%20112.435149%2C36.4266582%20109.466222%2C25.9474997%20C103.306053%2C39.1651847%2097.315653%2C52.1989539%2089.3668525%2C64.7011862%20C87.9945577%2C66.8616916%2084.7972522%2C64.9740284%2085.9532944%2C62.7064072%20C92.8107264%2C49.2421537%2099.7631478%2C35.9840476%20106.430601%2C22.4813942%20C106.194138%2C22.4652258%20105.955653%2C22.4591626%20105.715148%2C22.4450152%20C94.9267686%2C27.8230366%2086.1271049%2C41.170069%2079.5829361%2C50.1273748%20C69.8515671%2C63.4461125%2065.1869773%2C79.9944924%2070.9631461%2C95.4696934%20C75.9814201%2C87.025735%2083.0470205%2C80.5341135%2090.6845789%2C74.0141973%20C96.9053792%2C68.7069128%20102.465295%2C63.3996283%20107.309759%2C56.7281331%20Z%20M34.6993965%2C65.7844705%20C33.0845754%2C65.4792915%2028.9131225%2C64.5455652%2027.7186803%2C65.4348284%20C28.6321962%2C66.2715442%2029.4588067%2C67.1749548%2029.8872699%2C68.3855654%20C30.0469331%2C68.8342391%2030.1399015%2C73.0521762%2029.9701331%2C72.9147446%20C32.0235227%2C74.4123447%2034.0991439%2C75.4733974%2036.6881124%2C75.5784922%20C40.0935863%2C75.7179448%2042.2965338%2C72.391292%2040.7928706%2C69.442576%20C39.6085337%2C67.1224074%2037.1044493%2C66.2392074%2034.6993965%2C65.7844705%20Z%20M18.5047008%2C83.3231663%20C23.531059%2C83.8284295%2026.6212487%2C79.8449345%2027.9430172%2C75.6148711%20C25.9179223%2C76.912387%2022.9348484%2C76.5849764%2020.964322%2C75.2874606%20C20.5560694%2C75.0186605%2020.2953535%2C74.616471%2019.9719851%2C74.2668289%20C19.8729535%2C74.2931026%2019.775943%2C74.3193763%2019.6748904%2C74.3436289%20C18.5410798%2C75.0429132%2017.439606%2C75.7947448%2016.4614165%2C76.6739027%20C13.6521531%2C79.1981976%2014.7637322%2C82.9492715%2018.5047008%2C83.3231663%20Z%20M9.58377395%2C65.8996705%20C8.9996897%2C70.7178603%2014.3069742%2C70.7744498%2018.2197324%2C70.3843866%20C18.2156903%2C69.5133128%2018.512785%2C68.6604286%2018.9897535%2C67.9409338%20C19.1595219%2C67.6842601%2010.0364898%2C62.1607229%209.58377395%2C65.8996705%20Z%20M20.1639851%2C54.5130593%20C19.1797324%2C54.9374804%2019.1655851%2C57.91247%2019.2565324%2C58.8664069%20C19.4242798%2C60.6166386%2021.384701%2C65.1559231%2023.951438%2C63.619923%20C24.3415012%2C61.9202176%2025.7461328%2C59.4626175%2025.1175854%2C57.7507858%20C25.0327012%2C57.5244279%2024.8386801%2C57.2354174%2024.5698801%2C56.9221542%20C23.4946801%2C55.6751646%2021.2391852%2C54.0461961%2020.1639851%2C54.5130593%20Z%20M27.3589329%2C71.4838393%20C28.5169962%2C69.5921339%2027.5590171%2C67.9732706%2026.1159855%2C67.526618%20C24.2323643%2C66.9445548%2021.6797747%2C68.8463654%2022.383101%2C70.9037971%20C23.070259%2C72.9167657%2026.2776697%2C73.2522604%2027.3589329%2C71.4838393%20Z%20M1901.98237%2C35.0907423%20C1897.29757%2C33.2785317%201893.76275%2C31.9769737%201891.37791%2C31.1860684%20C1887.87947%2C30.0300262%201884.34262%2C28.9831209%201880.77749%2C28.0514156%20C1878.94237%2C27.570405%201877.09917%2C27.1217313%201875.24991%2C26.6993313%20C1874.0878%2C26.4345734%201871.57361%2C26.4022365%201870.64191%2C25.7130575%20C1880.35307%2C32.8918369%201888.27761%2C42.4999217%201892.90785%2C53.6359224%20C1904.77345%2C42.9506165%201905.81631%2C60.5135649%201905.20393%2C60.6752491%20C1910.37783%2C59.3029543%201915.45269%2C59.6930175%201914.99997%2C65.8996705%20C1914.61799%2C71.1806814%201911.07105%2C73.8989973%201906.7662%2C74.6346605%20C1907.44932%2C75.3703237%201908.03947%2C76.2373553%201908.49623%2C77.2842607%20C1910.07669%2C80.8938609%201908.76503%2C84.7641769%201905.2201%2C86.4659033%20C1898.6254%2C89.630872%201889.82978%2C83.8587453%201888.52822%2C76.9689764%20C1886.25454%2C78.2442607%201883.7262%2C79.020345%201881.08873%2C78.4140292%20C1877.78027%2C77.6520923%201874.54658%2C75.1055658%201874.38086%2C71.4656498%20C1873.99483%2C63.0297756%201882.7561%2C59.7859859%201889.8601%2C60.5418597%20C1883.01883%2C43.9187008%201871.08654%2C24.6863627%201851.62178%2C22.8977311%20C1846.41151%2C22.4187416%201841.19315%2C22.1014363%201835.96266%2C21.9842152%20C1833.34742%2C21.9256047%201824.90346%2C23.4151206%201822.90666%2C22.0488889%20C1833.46868%2C29.2741525%201842.07837%2C41.8087217%201847.77774%2C51.7381539%20C1851.85016%2C58.8340701%201855.07778%2C66.5464074%201856.35306%2C74.6669974%20C1857.63037%2C82.7997136%201855.84982%2C89.9805141%201853.05066%2C97.601904%20C1852.37765%2C99.4349989%201851.55509%2C102.288725%201849.96048%2C103.533694%20C1847.42405%2C105.518368%201846.27407%2C101.553062%201845.03315%2C99.7300726%20C1840.03913%2C92.3936511%201833.69504%2C86.1647665%201827.04174%2C80.3421135%20C1819.94784%2C74.1354605%201812.72662%2C67.7651022%201808.13681%2C59.3898596%20C1800.99239%2C46.3540693%201804.80611%2C36.4731424%201807.46986%2C23.1180258%20C1787.05521%2C22.5945731%201764.89436%2C28.6375209%201744.87584%2C32.4653948%20C1761.91735%2C37.875753%201778.77293%2C54.1432066%201786.88746%2C68.9009339%20C1786.87736%2C68.8827444%201796.01049%2C64.7901125%201797.39896%2C65.0730599%20C1797.403%2C69.0040075%201792.43727%2C71.8213551%201789.21773%2C72.8844288%20C1800.62051%2C69.8771023%201802.8174%2C89.5601351%201789.40367%2C83.9537348%20C1788.81757%2C83.7091874%201784.51677%2C80.6735661%201784.81386%2C76.5081764%20C1782.16426%2C77.5692291%201786.56005%2C82.0883031%201783.61942%2C83.6141979%20C1779.0963%2C85.9626612%201779.56721%2C78.0684291%201780.1998%2C76.1039659%20C1780.32914%2C75.6997553%201781.87323%2C71.0109129%201782.5907%2C71.7304077%20C1775.92123%2C65.0083862%201770.40173%2C57.1525542%201763.40889%2C50.7660275%20C1754.7022%2C42.8111638%201742.82649%2C33.4739001%201730.29596%2C35.268595%20C1720.13815%2C36.723753%201710.06725%2C39.0762584%201699.92964%2C40.7234164%20C1710.88375%2C45.6770167%201720.8051%2C54.347333%201728.41436%2C62.6781124%20C1738.97638%2C74.2385342%201743.05487%2C87.6845981%201738.16594%2C102.91121%20C1737.70918%2C104.336052%201736.00342%2C105.690157%201734.42497%2C105.035336%20C1717.12476%2C97.8504935%201695.50152%2C92.1470826%201681.62497%2C79.1921345%20C1672.75053%2C70.9098603%201672.98093%2C55.3639225%201675.62042%2C44.0985745%20C1668.49217%2C44.8948692%201661.34775%2C45.5173535%201654.18109%2C45.8568903%20C1641.77789%2C46.4450167%201629.41916%2C46.2186588%201617.08871%2C45.5496903%20C1621.56332%2C48.6964695%201625.7085%2C52.354575%201629.26758%2C56.5139015%20C1630.94101%2C58.4702806%201632.19608%2C60.7277965%201633.75027%2C62.7710808%20C1635.18724%2C64.6567231%201637.13351%2C65.8653126%201638.65133%2C67.6499022%20C1639.83566%2C64.8386178%201641.04223%2C62.1607229%201643.65343%2C60.3660281%20C1646.83457%2C58.1772279%201651.76189%2C57.6739858%201654.9976%2C59.9577754%20C1661.36392%2C64.4525967%201658.91844%2C70.8856077%201654.11844%2C74.8731447%20C1659.20947%2C76.2029975%201663.18084%2C81.8255662%201662.19659%2C87.0742402%20C1661.38615%2C91.39323%201657.55423%2C94.5137354%201653.06749%2C93.8387038%20C1650.41587%2C93.4405564%201647.05688%2C91.5791668%201644.70842%2C89.1478403%20C1644.64173%2C90.1886825%201644.49015%2C91.2355878%201644.06977%2C92.3350405%20C1642.25688%2C97.0824935%201638.68973%2C100.459673%201633.42286%2C100.894199%20C1628.67945%2C101.284262%201624.35642%2C98.3456514%201623.6248%2C93.5193774%20C1623.45907%2C92.4239669%201624.05124%2C85.4755875%201625.74892%2C85.5119664%20C1621.19549%2C85.416977%201616.39145%2C81.6113346%201616.43591%2C76.2797975%20C1616.49452%2C69.2344076%201621.95743%2C65.1741126%201628.02261%2C64.5354599%20C1626.03996%2C61.3320913%201622.72745%2C57.56687%201621.83415%2C56.5280489%20C1619.10775%2C53.350954%201617.03212%2C52.5647644%201614.20467%2C49.4745748%20C1607.72113%2C42.3928059%201599.12964%2C44.3552482%201590.48762%2C43.4740692%20C1581.89208%2C42.5969323%201573.31271%2C41.5621532%201564.74345%2C40.4586584%20C1572.19305%2C48.6904063%201579.03431%2C58.8401332%201582.10631%2C68.1632496%20C1585.35212%2C78.023966%201581.27566%2C87.256135%201580.75827%2C97.0824935%20C1580.59052%2C100.227252%201580.77848%2C112.6062%201575.70968%2C112.565779%20C1571.30985%2C112.531421%201567.56282%2C107.697063%201565.09713%2C104.618999%20C1561.629%2C100.293946%201558.80357%2C95.5242618%201555.62244%2C90.9950826%20C1548.80745%2C81.2879662%201540.82227%2C70.1155866%201543.4173%2C57.5608068%20C1544.77342%2C50.9944064%201548.85595%2C45.0909114%201551.16399%2C38.8943636%20C1544.98564%2C36.533774%201537.42892%2C36.8066161%201530.90698%2C35.9496897%20C1526.19187%2C35.3292266%201513.42083%2C36.0790371%201509.7789%2C33.3041317%20C1517.65292%2C39.3005952%201524.53258%2C47.8779431%201526.37982%2C56.8352489%20C1529.18707%2C56.608891%201532.00037%2C57.4860279%201534.19119%2C59.9294807%20C1535.72315%2C61.6392913%201533.44542%2C63.8179862%201531.71338%2C62.4072914%20C1531.32332%2C62.087965%201530.85646%2C61.9444703%201530.40778%2C61.7524703%20C1534.64997%2C64.691081%201534.2882%2C69.482997%201529.59734%2C71.6778603%20C1527.89966%2C72.4721341%201525.65427%2C72.8763446%201523.9202%2C71.9547446%20C1523.12795%2C71.5343656%201522.44281%2C70.8734813%201522.077%2C70.0428287%20C1521.76374%2C69.3354602%201521.38984%2C65.6025758%201521.98808%2C65.1114599%20C1520.71886%2C66.1563442%201520.48037%2C67.5448075%201520.86437%2C69.0949549%20C1521.23422%2C70.5885129%201522.09721%2C71.8658182%201520.33688%2C72.8803867%20C1512.29915%2C77.5146607%201515.34083%2C63.7654388%201518.24711%2C60.8025755%20C1519.08584%2C59.9476702%201520.05191%2C59.2423227%201521.06648%2C58.6319648%20C1518.50176%2C53.6298592%201516.72121%2C48.3892694%201512.91153%2C43.9146587%20C1504.00071%2C33.4456054%201495.53856%2C31.6246369%201482.29258%2C30.6242157%20C1476.68618%2C30.2018157%201471.07169%2C29.866321%201465.45115%2C29.6460262%20C1461.69401%2C29.5005104%201453.09847%2C31.0243842%201449.885%2C29.3489315%20C1459.59616%2C34.4116686%201467.89864%2C44.1147429%201474.07094%2C51.9443012%20C1480.75456%2C60.4226175%201482.54319%2C70.5016076%201480.85561%2C80.9949135%20C1480.44129%2C83.5697347%201477.19953%2C98.7862409%201472.6562%2C92.927209%20C1463.35936%2C80.9383241%201445.84896%2C76.8598396%201438.52668%2C63.161144%20C1433.96719%2C54.6282593%201431.56415%2C44.0157113%201434.81401%2C34.6784476%20C1437.81527%2C26.0465313%201422.10361%2C30.5474157%201417.72803%2C31.0284263%20C1400.98158%2C32.8696054%201384.16643%2C35.6788687%201367.30478%2C38.793311%20C1374.718%2C44.310785%201383.74807%2C54.4948698%201389.09375%2C61.4088913%20C1389.86782%2C61.6453545%201390.63379%2C61.893944%201391.34521%2C62.1748703%20C1391.73325%2C62.3284703%201392.05257%2C62.5427019%201392.31329%2C62.7912914%20C1393.21064%2C58.9512911%201394.81939%2C55.228512%201398.26125%2C53.1245961%20C1402.44078%2C50.5679643%201407.64702%2C50.3860696%201411.08887%2C54.2624488%20C1414.0962%2C57.6497332%201413.70815%2C62.8883019%201411.44862%2C66.5585337%20C1412.17822%2C66.6292706%201412.89367%2C66.7667021%201413.59093%2C66.9890179%20C1417.72803%2C68.3107864%201421.78226%2C72.0638814%201420.49081%2C76.8941975%20C1418.64154%2C83.8183242%201412.63902%2C85.8312928%201406.73956%2C84.7924717%20C1407.5015%2C89.4934404%201405.22782%2C94.8775249%201399.58302%2C95.8900723%20C1395.0983%2C96.6924303%201390.61156%2C94.9058196%201389.02706%2C90.3503667%20C1388.54605%2C88.9699877%201388.34596%2C87.3612297%201388.48137%2C85.8070401%20C1387.74167%2C86.5164297%201386.91506%2C87.1591244%201385.87826%2C87.6441771%20C1383.49746%2C88.7557561%201380.22941%2C88.5880087%201378.17198%2C86.8499034%20C1375.88415%2C84.919798%201377.04626%2C81.3869978%201378.34781%2C79.0749134%20C1379.11177%2C77.7208081%201379.99093%2C76.6213554%201381.01156%2C75.6916711%20C1376.26411%2C76.952808%201371.08415%2C74.078871%201372.26647%2C67.8035022%20C1373.29518%2C62.3486808%201377.23421%2C60.4731439%201381.68862%2C60.3336912%20C1379.71%2C57.6194174%201377.7415%2C54.8950383%201375.5244%2C52.4596697%20C1370.0615%2C46.4591641%201365.70411%2C40.478869%201356.9388%2C40.2040058%20C1349.65897%2C39.9756268%201342.76112%2C43.4619428%201335.73392%2C44.8160482%20C1322.69611%2C47.3302378%201309.65021%2C49.8100695%201296.55177%2C51.9847223%20C1314.11876%2C56.3178594%201332.95295%2C65.6712916%201342.14065%2C81.8861978%20C1345.10554%2C87.1166823%201346.40306%2C93.2162195%201346.07564%2C99.2207673%20C1345.47135%2C110.296136%201339.7255%2C103.505399%201333.17931%2C99.7785778%20C1329.15135%2C97.4826619%201324.70503%2C96.0477144%201320.32137%2C94.6107459%20C1311.44288%2C91.6984089%201302.06924%2C89.1640088%201295.45232%2C82.1145768%20C1287.91581%2C74.0869552%201287.85922%2C53.4742382%201275.00937%2C55.2042593%20C1269.94259%2C55.8853541%201264.86166%2C56.495712%201259.77265%2C57.0029963%20C1254.4977%2C57.5304911%201240.00473%2C61.204765%201235.39471%2C58.7027017%20C1246.17501%2C64.5556704%201256.22974%2C73.1350394%201262.42225%2C82.1267031%20C1265.12844%2C81.969061%201267.88718%2C82.6360084%201270.14671%2C84.1841348%20C1271.58368%2C85.1663664%201270.35892%2C87.1550823%201268.80878%2C86.4739875%20C1267.78612%2C86.0253138%201266.64221%2C85.8171454%201265.47808%2C85.7322612%20C1266.36532%2C85.7969349%201267.59412%2C90.1826194%201267.79017%2C91.0152931%20C1268.2348%2C92.9110406%201267.83261%2C95.2675881%201266.11876%2C96.4195882%20C1264.50596%2C97.5048935%201257.51311%2C96.9612303%201256.73097%2C94.8532723%20C1256.60162%2C94.5036301%201256.54907%2C94.1075038%201256.49046%2C93.7174406%20C1256.30048%2C99.8189989%201251.62983%2C102.120978%201251.1569%2C95.2493986%20C1250.94065%2C92.1288932%201253.62865%2C86.4052718%201256.00945%2C84.4832506%20C1256.23581%2C84.3013558%201256.51673%2C84.2366821%201256.7532%2C84.0729769%20C1250.87395%2C78.4605134%201245.49795%2C72.4923446%201238.73753%2C67.7448917%20C1229.39016%2C61.1805123%201222.50848%2C59.1069122%201211.20877%2C58.6238806%20C1203.84001%2C58.3085964%201196.47328%2C57.7912069%201188.63766%2C56.762491%20C1200.93778%2C61.7565124%201214.27673%2C70.0044287%201219.46477%2C82.8684294%20C1222.00524%2C89.1680509%201222.28212%2C96.5024513%201219.95993%2C102.929399%20C1216.19471%2C113.35601%201212.69829%2C105.091926%201208.50865%2C100.172683%20C1205.88128%2C97.0885566%201202.37071%2C94.8229565%201198.94503%2C92.7392511%20C1192.15631%2C88.6061982%201184.67841%2C85.5038822%201179.19328%2C79.5458187%20C1171.04439%2C70.6915866%201164.87412%2C55.7843015%201153.75833%2C50.4972275%20C1144.37862%2C46.036764%201133.51748%2C46.4369325%201123.5739%2C44.1612271%20C1131.79959%2C51.2672486%201138.52767%2C60.1517965%201142.05643%2C69.7214813%20C1146.19555%2C64.0847651%201154.97904%2C60.9440492%201160.41365%2C66.4877969%20C1163.56043%2C69.6972286%201163.6918%2C74.6306184%201160.45003%2C77.9350397%20C1159.30208%2C79.1052292%201157.95605%2C79.8772714%201156.54132%2C80.4795451%20C1157.51749%2C81.0232083%201158.47749%2C81.625482%201159.391%2C82.3874189%20C1162.57618%2C85.0410611%201165.25408%2C89.5480088%201164.06974%2C93.8750827%20C1161.80414%2C102.145231%201148.51572%2C98.4628725%201147.23235%2C91.9106195%20C1147.6305%2C93.9458196%201147.72144%2C96.0517566%201147.26064%2C98.1172725%20C1146.56944%2C101.217567%201144.80708%2C105.306157%201141.22982%2C105.813441%20C1138.01433%2C106.268178%201133.58418%2C102.929399%201131.74704%2C100.530409%20C1130.30401%2C98.6508304%201128.80439%2C95.1564302%201130.52835%2C93.042409%20C1119.27108%2C98.903462%201108.755
4
  * Licensed under the MIT license - http://opensource.org/licenses/MIT
5
  *
6
  * Copyright (c) 2018 Daniel Eden