Version Description
Download this release
Release Info
Developer | thingalon |
Plugin | Jetpack Boost – Website Speed, Performance and Critical CSS |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- .eslintignore +4 -0
- .eslintrc.cjs +80 -0
- CHANGELOG.md +17 -4
- app/admin/class-admin.php +31 -66
- app/assets/dist/critical-css-gen.js +2 -4
.eslintignore
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
# Not loaded by default eslint, but we use tools/js-tools/load-eslint-ignore.js in .eslintrc to munge it in.
|
2 |
+
|
3 |
+
/tests/e2e/config/**
|
4 |
+
!/app/assets/src/js/**/*.d.ts
|
.eslintrc.cjs
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const loadIgnorePatterns = require( '../../../tools/js-tools/load-eslint-ignore.js' );
|
2 |
+
|
3 |
+
module.exports = {
|
4 |
+
root: true,
|
5 |
+
parser: '@typescript-eslint/parser',
|
6 |
+
extends: [
|
7 |
+
'@sveltejs',
|
8 |
+
'../../../.eslintrc.normal.js',
|
9 |
+
'plugin:@typescript-eslint/recommended',
|
10 |
+
'plugin:@wordpress/eslint-plugin/recommended',
|
11 |
+
],
|
12 |
+
ignorePatterns: loadIgnorePatterns( __dirname ),
|
13 |
+
parserOptions: {
|
14 |
+
babelOptions: {
|
15 |
+
configFile: require.resolve( './babel.config.js' ),
|
16 |
+
},
|
17 |
+
ecmaVersion: 2020,
|
18 |
+
sourceType: 'module',
|
19 |
+
tsconfigRootDir: __dirname,
|
20 |
+
project: [ './tsconfig.json' ],
|
21 |
+
extraFileExtensions: [ '.svelte' ],
|
22 |
+
},
|
23 |
+
overrides: [
|
24 |
+
{
|
25 |
+
files: [ '*.js', '*.cjs' ],
|
26 |
+
parser: '@babel/eslint-parser',
|
27 |
+
extends: [ '../../../.eslintrc.js' ],
|
28 |
+
},
|
29 |
+
{
|
30 |
+
files: [ '*.cjs' ],
|
31 |
+
rules: {
|
32 |
+
'@typescript-eslint/no-var-requires': 0,
|
33 |
+
},
|
34 |
+
},
|
35 |
+
{
|
36 |
+
files: [ '*.svelte' ],
|
37 |
+
processor: 'svelte3/svelte3',
|
38 |
+
},
|
39 |
+
],
|
40 |
+
settings: {
|
41 |
+
'svelte3/typescript': true,
|
42 |
+
},
|
43 |
+
plugins: [ 'svelte3', '@typescript-eslint' ],
|
44 |
+
rules: {
|
45 |
+
// Enforce the use of the jetpack-boost textdomain.
|
46 |
+
'@wordpress/i18n-text-domain': [
|
47 |
+
'error',
|
48 |
+
{
|
49 |
+
allowedTextDomain: 'jetpack-boost',
|
50 |
+
},
|
51 |
+
],
|
52 |
+
|
53 |
+
// Apparently, we like dangling commas
|
54 |
+
'comma-dangle': 0,
|
55 |
+
|
56 |
+
// This produces false positives with TypeScript types
|
57 |
+
'no-duplicate-imports': 0,
|
58 |
+
|
59 |
+
// This rule is not recommended for TypeScript projects. According to
|
60 |
+
// the Typescript-eslint FAQ, TypeScript handles this rule itself at
|
61 |
+
// compile-time and does a better job than eslint can.
|
62 |
+
// Ref: https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/FAQ.md#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors
|
63 |
+
'no-undef': 0,
|
64 |
+
|
65 |
+
// This rule is for React projects; it prevents components which are not
|
66 |
+
// yet mounted in the DOM from attaching to the window directly. Not
|
67 |
+
// relevant in a svelte project.
|
68 |
+
// Ref: https://github.com/WordPress/gutenberg/pull/26810
|
69 |
+
'@wordpress/no-global-event-listener': 0,
|
70 |
+
|
71 |
+
'jsdoc/no-undefined-types': [
|
72 |
+
1,
|
73 |
+
{
|
74 |
+
definedTypes: [ 'TemplateVars', 'ErrorSet', 'Readable' ],
|
75 |
+
},
|
76 |
+
],
|
77 |
+
|
78 |
+
'prettier/prettier': 0,
|
79 |
+
},
|
80 |
+
};
|
CHANGELOG.md
CHANGED
@@ -5,11 +5,23 @@ All notable changes to this project will be documented in this file.
|
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
8 |
-
## [1.4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
### Added
|
10 |
- UI: Adds My Jetpack functionality for consistent UI across all Jetpack plugins.
|
11 |
|
12 |
-
##
|
13 |
### Added
|
14 |
- Critical CSS: Added a filter to allow stylesheets to load synchronously, to avoid CLS issues on certain setups.
|
15 |
- Critical CSS: Exclude "library" posts from Elementor plugin when generating Critical CSS.
|
@@ -32,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
32 |
- Minor UI fixes for small screens and tooltip display.
|
33 |
- Speed Scores: Do not show comparative scores when no modules are active.
|
34 |
|
35 |
-
##
|
36 |
### Security
|
37 |
- Critical CSS: Add permissions checks to AJAX endpoints used when dismissing Critical CSS Recommendations.
|
38 |
|
@@ -52,7 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
52 |
- Critical CSS: Ensure generator process is resumed after module deactivated and reactivated without reload.
|
53 |
- Speed Scores: Clear speed score on plugin deactivation and uninstallation.
|
54 |
|
55 |
-
##
|
56 |
### Added
|
57 |
- Critical CSS: Added a new Advanced Critical CSS recommendations page.
|
58 |
|
@@ -125,3 +137,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
125 |
[1.3.1-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.3.0-beta...v1.3.1-beta
|
126 |
[1.3.0-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.2.0...v1.3.0-beta
|
127 |
[1.2.0]: https://github.com/Automattic/jetpack-boost-production/compare/v1.1.0...v1.2.0-beta
|
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
8 |
+
## [1.4.1] - 2022-04-06
|
9 |
+
### Changed
|
10 |
+
- Critical CSS: Tidied up Critical CSS class structure.
|
11 |
+
- Critical CSS: Updated Critical CSS generation to exclude animation keyframes.
|
12 |
+
- Deferred JS: Updated exclusion attribute to allow quotes.
|
13 |
+
- General: Tested compatibility with WordPress 5.9.
|
14 |
+
- General: Updated Boost Dashboard heading logo.
|
15 |
+
- Lazy Loading: Updated Image Lazy Loading to reflect Jetpack's Lazy Loading setting.
|
16 |
+
|
17 |
+
### Fixed
|
18 |
+
- General: Clean up use of FILTER_SANITIZE_STRING as it is deprecated in PHP 8.1
|
19 |
+
|
20 |
+
## 1.4.0 - 2022-02-28
|
21 |
### Added
|
22 |
- UI: Adds My Jetpack functionality for consistent UI across all Jetpack plugins.
|
23 |
|
24 |
+
## 1.3.1 - 2021-12-02
|
25 |
### Added
|
26 |
- Critical CSS: Added a filter to allow stylesheets to load synchronously, to avoid CLS issues on certain setups.
|
27 |
- Critical CSS: Exclude "library" posts from Elementor plugin when generating Critical CSS.
|
44 |
- Minor UI fixes for small screens and tooltip display.
|
45 |
- Speed Scores: Do not show comparative scores when no modules are active.
|
46 |
|
47 |
+
## 1.3.0 - 2021-10-04
|
48 |
### Security
|
49 |
- Critical CSS: Add permissions checks to AJAX endpoints used when dismissing Critical CSS Recommendations.
|
50 |
|
64 |
- Critical CSS: Ensure generator process is resumed after module deactivated and reactivated without reload.
|
65 |
- Speed Scores: Clear speed score on plugin deactivation and uninstallation.
|
66 |
|
67 |
+
## 1.2.0 - 2021-08-12
|
68 |
### Added
|
69 |
- Critical CSS: Added a new Advanced Critical CSS recommendations page.
|
70 |
|
137 |
[1.3.1-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.3.0-beta...v1.3.1-beta
|
138 |
[1.3.0-beta]: https://github.com/Automattic/jetpack-boost-production/compare/v1.2.0...v1.3.0-beta
|
139 |
[1.2.0]: https://github.com/Automattic/jetpack-boost-production/compare/v1.1.0...v1.2.0-beta
|
140 |
+
[1.4.1]: https://github.com/Automattic/jetpack-boost-production/compare/v1.4.0...v1.4.1
|
app/admin/class-admin.php
CHANGED
@@ -10,14 +10,13 @@ namespace Automattic\Jetpack_Boost\Admin;
|
|
10 |
|
11 |
use Automattic\Jetpack\Admin_UI\Admin_Menu;
|
12 |
use Automattic\Jetpack\Status;
|
|
|
|
|
13 |
use Automattic\Jetpack_Boost\Jetpack_Boost;
|
14 |
use Automattic\Jetpack_Boost\Lib\Analytics;
|
15 |
use Automattic\Jetpack_Boost\Lib\Environment_Change_Detector;
|
16 |
-
use Automattic\Jetpack_Boost\
|
17 |
|
18 |
-
/**
|
19 |
-
* Class Admin
|
20 |
-
*/
|
21 |
class Admin {
|
22 |
|
23 |
/**
|
@@ -45,7 +44,7 @@ class Admin {
|
|
45 |
*
|
46 |
* @var Jetpack_Boost Plugin.
|
47 |
*/
|
48 |
-
private $
|
49 |
|
50 |
/**
|
51 |
* Speed_Score class instance.
|
@@ -54,21 +53,13 @@ class Admin {
|
|
54 |
*/
|
55 |
private $speed_score;
|
56 |
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
* @param Jetpack_Boost $jetpack_boost Main plugin instance.
|
61 |
-
*
|
62 |
-
* @since 1.0.0
|
63 |
-
*/
|
64 |
-
public function __construct( Jetpack_Boost $jetpack_boost ) {
|
65 |
-
$this->jetpack_boost = $jetpack_boost;
|
66 |
-
$this->speed_score = new Speed_Score( $jetpack_boost );
|
67 |
Environment_Change_Detector::init();
|
68 |
|
69 |
add_action( 'init', array( new Analytics(), 'init' ) );
|
70 |
add_filter( 'plugin_action_links_' . JETPACK_BOOST_PLUGIN_BASE, array( $this, 'plugin_page_settings_link' ) );
|
71 |
-
add_action( 'rest_api_init', array( $this, 'register_rest_routes' ) );
|
72 |
add_action( 'admin_notices', array( $this, 'show_notices' ) );
|
73 |
add_action( 'wp_ajax_set_show_rating_prompt', array( $this, 'handle_set_show_rating_prompt' ) );
|
74 |
add_filter( 'jetpack_boost_js_constants', array( $this, 'add_js_constants' ) );
|
@@ -102,7 +93,7 @@ class Admin {
|
|
102 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
103 |
|
104 |
wp_enqueue_style(
|
105 |
-
|
106 |
plugins_url( $internal_path . 'jetpack-boost.css', JETPACK_BOOST_PATH ),
|
107 |
array( 'wp-components' ),
|
108 |
JETPACK_BOOST_VERSION
|
@@ -117,7 +108,7 @@ class Admin {
|
|
117 |
public function enqueue_scripts() {
|
118 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
119 |
|
120 |
-
$admin_js_handle =
|
121 |
|
122 |
wp_register_script(
|
123 |
$admin_js_handle,
|
@@ -127,6 +118,7 @@ class Admin {
|
|
127 |
true
|
128 |
);
|
129 |
|
|
|
130 |
// Prepare configuration constants for JavaScript.
|
131 |
$constants = array(
|
132 |
'version' => JETPACK_BOOST_VERSION,
|
@@ -134,8 +126,7 @@ class Admin {
|
|
134 |
'namespace' => JETPACK_BOOST_REST_NAMESPACE,
|
135 |
'prefix' => JETPACK_BOOST_REST_PREFIX,
|
136 |
),
|
137 |
-
'
|
138 |
-
'config' => $this->jetpack_boost->config()->get_data(),
|
139 |
'locale' => get_locale(),
|
140 |
'site' => array(
|
141 |
'url' => get_home_url(),
|
@@ -146,6 +137,14 @@ class Admin {
|
|
146 |
'preferences' => array(
|
147 |
'showRatingPrompt' => $this->get_show_rating_prompt(),
|
148 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
);
|
150 |
|
151 |
// Give each module an opportunity to define extra constants.
|
@@ -179,7 +178,7 @@ class Admin {
|
|
179 |
*/
|
180 |
public function render_settings() {
|
181 |
wp_localize_script(
|
182 |
-
|
183 |
'wpApiSettings',
|
184 |
array(
|
185 |
'root' => esc_url_raw( rest_url() ),
|
@@ -200,49 +199,6 @@ class Admin {
|
|
200 |
return current_user_can( 'manage_options' );
|
201 |
}
|
202 |
|
203 |
-
/**
|
204 |
-
* Register REST routes for settings.
|
205 |
-
*
|
206 |
-
* @return void
|
207 |
-
*/
|
208 |
-
public function register_rest_routes() {
|
209 |
-
// Activate and deactivate a module.
|
210 |
-
register_rest_route(
|
211 |
-
JETPACK_BOOST_REST_NAMESPACE,
|
212 |
-
JETPACK_BOOST_REST_PREFIX . '/module/(?P<slug>[a-z\-]+)/status',
|
213 |
-
array(
|
214 |
-
'methods' => \WP_REST_Server::EDITABLE,
|
215 |
-
'callback' => array( $this, 'set_module_status' ),
|
216 |
-
'permission_callback' => array( $this, 'check_for_permissions' ),
|
217 |
-
)
|
218 |
-
);
|
219 |
-
}
|
220 |
-
|
221 |
-
/**
|
222 |
-
* Handler for the /module/(?P<slug>[a-z\-]+)/status endpoint.
|
223 |
-
*
|
224 |
-
* @param \WP_REST_Request $request The request object.
|
225 |
-
*
|
226 |
-
* @return \WP_REST_Response|\WP_Error The response.
|
227 |
-
*/
|
228 |
-
public function set_module_status( $request ) {
|
229 |
-
$params = $request->get_json_params();
|
230 |
-
|
231 |
-
if ( ! isset( $params['status'] ) ) {
|
232 |
-
return new \WP_Error(
|
233 |
-
'jetpack_boost_error_missing_module_status_param',
|
234 |
-
__( 'Missing status param', 'jetpack-boost' )
|
235 |
-
);
|
236 |
-
}
|
237 |
-
|
238 |
-
$module_slug = $request['slug'];
|
239 |
-
$this->jetpack_boost->set_module_status( (bool) $params['status'], $module_slug );
|
240 |
-
|
241 |
-
return rest_ensure_response(
|
242 |
-
$this->jetpack_boost->get_module_status( $module_slug )
|
243 |
-
);
|
244 |
-
}
|
245 |
-
|
246 |
/**
|
247 |
* Show any admin notices from enabled modules.
|
248 |
*/
|
@@ -250,7 +206,7 @@ class Admin {
|
|
250 |
// Determine if we're already on the settings page.
|
251 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
252 |
$on_settings_page = isset( $_GET['page'] ) && self::MENU_SLUG === $_GET['page'];
|
253 |
-
$notices = $this->
|
254 |
|
255 |
// Filter out any that have been dismissed, unless newer than the dismissal.
|
256 |
$dismissed_notices = \get_option( self::DISMISSED_NOTICE_OPTION, array() );
|
@@ -281,7 +237,7 @@ class Admin {
|
|
281 |
* @return array List of notice ids.
|
282 |
*/
|
283 |
private function get_shown_admin_notice_ids() {
|
284 |
-
$notices = $this->
|
285 |
$ids = array();
|
286 |
foreach ( $notices as $notice ) {
|
287 |
$ids[] = $notice->get_id();
|
@@ -290,6 +246,15 @@ class Admin {
|
|
290 |
return $ids;
|
291 |
}
|
292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
/**
|
294 |
* Check for a GET parameter used to dismiss an admin notice.
|
295 |
*
|
10 |
|
11 |
use Automattic\Jetpack\Admin_UI\Admin_Menu;
|
12 |
use Automattic\Jetpack\Status;
|
13 |
+
use Automattic\Jetpack_Boost\Features\Optimizations\Optimizations;
|
14 |
+
use Automattic\Jetpack_Boost\Features\Speed_Score\Speed_Score;
|
15 |
use Automattic\Jetpack_Boost\Jetpack_Boost;
|
16 |
use Automattic\Jetpack_Boost\Lib\Analytics;
|
17 |
use Automattic\Jetpack_Boost\Lib\Environment_Change_Detector;
|
18 |
+
use Automattic\Jetpack_Boost\REST_API\Permissions\Nonce;
|
19 |
|
|
|
|
|
|
|
20 |
class Admin {
|
21 |
|
22 |
/**
|
44 |
*
|
45 |
* @var Jetpack_Boost Plugin.
|
46 |
*/
|
47 |
+
private $modules;
|
48 |
|
49 |
/**
|
50 |
* Speed_Score class instance.
|
53 |
*/
|
54 |
private $speed_score;
|
55 |
|
56 |
+
public function __construct( Optimizations $modules ) {
|
57 |
+
$this->modules = $modules;
|
58 |
+
$this->speed_score = new Speed_Score( $modules );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
Environment_Change_Detector::init();
|
60 |
|
61 |
add_action( 'init', array( new Analytics(), 'init' ) );
|
62 |
add_filter( 'plugin_action_links_' . JETPACK_BOOST_PLUGIN_BASE, array( $this, 'plugin_page_settings_link' ) );
|
|
|
63 |
add_action( 'admin_notices', array( $this, 'show_notices' ) );
|
64 |
add_action( 'wp_ajax_set_show_rating_prompt', array( $this, 'handle_set_show_rating_prompt' ) );
|
65 |
add_filter( 'jetpack_boost_js_constants', array( $this, 'add_js_constants' ) );
|
93 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
94 |
|
95 |
wp_enqueue_style(
|
96 |
+
'jetpack-boost-css',
|
97 |
plugins_url( $internal_path . 'jetpack-boost.css', JETPACK_BOOST_PATH ),
|
98 |
array( 'wp-components' ),
|
99 |
JETPACK_BOOST_VERSION
|
108 |
public function enqueue_scripts() {
|
109 |
$internal_path = apply_filters( 'jetpack_boost_asset_internal_path', 'app/assets/dist/' );
|
110 |
|
111 |
+
$admin_js_handle = 'jetpack-boost-admin';
|
112 |
|
113 |
wp_register_script(
|
114 |
$admin_js_handle,
|
118 |
true
|
119 |
);
|
120 |
|
121 |
+
$optimizations = ( new Optimizations() )->get_status();
|
122 |
// Prepare configuration constants for JavaScript.
|
123 |
$constants = array(
|
124 |
'version' => JETPACK_BOOST_VERSION,
|
126 |
'namespace' => JETPACK_BOOST_REST_NAMESPACE,
|
127 |
'prefix' => JETPACK_BOOST_REST_PREFIX,
|
128 |
),
|
129 |
+
'optimizations' => $optimizations,
|
|
|
130 |
'locale' => get_locale(),
|
131 |
'site' => array(
|
132 |
'url' => get_home_url(),
|
137 |
'preferences' => array(
|
138 |
'showRatingPrompt' => $this->get_show_rating_prompt(),
|
139 |
),
|
140 |
+
|
141 |
+
/**
|
142 |
+
* A bit of necessary magic,
|
143 |
+
* Explained more in the Nonce class.
|
144 |
+
*
|
145 |
+
* Nonces are automatically generated when registering routes.
|
146 |
+
*/
|
147 |
+
'nonces' => Nonce::get_generated_nonces(),
|
148 |
);
|
149 |
|
150 |
// Give each module an opportunity to define extra constants.
|
178 |
*/
|
179 |
public function render_settings() {
|
180 |
wp_localize_script(
|
181 |
+
'jetpack-boost-admin',
|
182 |
'wpApiSettings',
|
183 |
array(
|
184 |
'root' => esc_url_raw( rest_url() ),
|
199 |
return current_user_can( 'manage_options' );
|
200 |
}
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
/**
|
203 |
* Show any admin notices from enabled modules.
|
204 |
*/
|
206 |
// Determine if we're already on the settings page.
|
207 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
|
208 |
$on_settings_page = isset( $_GET['page'] ) && self::MENU_SLUG === $_GET['page'];
|
209 |
+
$notices = $this->get_admin_notices();
|
210 |
|
211 |
// Filter out any that have been dismissed, unless newer than the dismissal.
|
212 |
$dismissed_notices = \get_option( self::DISMISSED_NOTICE_OPTION, array() );
|
237 |
* @return array List of notice ids.
|
238 |
*/
|
239 |
private function get_shown_admin_notice_ids() {
|
240 |
+
$notices = $this->get_admin_notices();
|
241 |
$ids = array();
|
242 |
foreach ( $notices as $notice ) {
|
243 |
$ids[] = $notice->get_id();
|
246 |
return $ids;
|
247 |
}
|
248 |
|
249 |
+
/**
|
250 |
+
* Returns a list of admin notices to show. Asks each module to provide admin notices the user needs to see.
|
251 |
+
*
|
252 |
+
* @return \Automattic\Jetpack_Boost\Admin\Admin_Notice[]
|
253 |
+
*/
|
254 |
+
public function get_admin_notices() {
|
255 |
+
return apply_filters( 'jetpack_boost_admin_notices', array() );
|
256 |
+
}
|
257 |
+
|
258 |
/**
|
259 |
* Check for a GET parameter used to dismiss an admin notice.
|
260 |
*
|
app/assets/dist/critical-css-gen.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
var CriticalCSSGenerator=function(){"use strict";var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function t(e){if(e.__esModule)return e;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach((function(n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})})),t}class n{constructor(){this.urlErrors={}}trackUrlError(e,t){this.urlErrors[e]=t}filterValidUrls(e){return e.filter((e=>!this.urlErrors[e]))}async runInPage(e,t,n,...r){throw new Error("Undefined interface method: BrowserInterface.runInPage()")}async fetch(e,t,n){throw new Error("Undefined interface method: BrowserInterface.fetch()")}async cleanup(){}async getCssIncludes(e){return await this.runInPage(e,null,n.innerGetCssIncludes)}static innerGetCssIncludes(e){return[...e.document.getElementsByTagName("link")].filter((e=>"stylesheet"===e.rel)).reduce(((e,t)=>(e[t.href]={media:t.media||null},e)),{})}static innerFindMatchingSelectors(e,t){return Object.keys(t).filter((n=>{try{return!!e.document.querySelector(t[n])}catch(e){return!1}}))}static innerFindAboveFoldSelectors(e,t,n){const r=t=>{const n=t.style.clear||"";t.style.clear="none";const r=t.getBoundingClientRect();return t.style.clear=n,r.top<e.innerHeight};return n.filter((n=>{if("*"===t[n])return!0;const i=e.document.querySelectorAll(t[n]);for(const e of i)if(r(e))return!0;return!1}))}}var r=n,i={exports:{}};!function(e,t){var n=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if(void 0!==n)return n;throw new Error("unable to locate global object")}();e.exports=t=n.fetch,n.fetch&&(t.default=n.fetch.bind(n)),t.Headers=n.Headers,t.Request=n.Request,t.Response=n.Response}(i,i.exports);const o=r;var a=class extends o{constructor(e){super(),this.pages=e}async runInPage(e,t,n,...r){const i=this.pages[e];if(!i)throw new Error(`Puppeteer interface does not include URL ${e}`);t&&await i.setViewport(t);const o=await i.evaluateHandle((()=>o));return i.evaluate(n,o,...r)}async fetch(e,t,n){return(0,i.exports)(e,t)}};class s extends Error{constructor(e){super("Insufficient pages loaded to meet success target. Errors:\n"+Object.values(e).map((e=>e.message)).join("\n")),this.isSuccessTargetError=!0,this.urlErrors={};for(const[t,n]of Object.entries(e))this.urlErrors[t]={message:n.message,type:n.type||"UnknownError",meta:n.meta||{}}}}class l extends Error{constructor(e,t,n){super(n),this.type=e,this.meta=t}}var u={SuccessTargetError:s,UrlError:l,HttpError:class extends l{constructor({url:e,code:t}){super("HttpError",{url:e,code:t},`HTTP error ${t} on URL ${e}`)}},UnknownError:class extends l{constructor({url:e,message:t}){super("UnknownError",{url:e,message:t},`Error while loading ${e}: ${t}`)}},CrossDomainError:class extends l{constructor({url:e}){super("CrossDomainError",{url:e},`Failed to fetch cross-domain content at ${e}`)}},LoadTimeoutError:class extends l{constructor({url:e}){super("LoadTimeoutError",{url:e},`Timeout while reading ${e}`)}},RedirectError:class extends l{constructor({url:e,redirectUrl:t}){super("RedirectError",{url:e,redirectUrl:t},`Failed to process ${e} because it redirects to ${t} which cannot be verified`)}},UrlVerifyError:class extends l{constructor({url:e}){super("UrlVerifyError",{url:e},`Failed to verify page at ${e}`)}},EmptyCSSError:class extends l{constructor({url:e}){super("EmptyCSSError",{url:e},`The ${e} does not have any CSS in its external style sheet(s).`)}},XFrameDenyError:class extends l{constructor({url:e}){super("XFrameDenyError",{url:e},`Failed to load ${e} due to the "X-Frame-Options: DENY" header`)}}};const c=r,{CrossDomainError:d,HttpError:p,LoadTimeoutError:m,RedirectError:h,UrlVerifyError:f,UnknownError:g,XFrameDenyError:y}=u;var v=class extends c{constructor({requestGetParameters:e,loadTimeout:t,verifyPage:n,allowScripts:r}={}){if(super(),this.requestGetParameters=e||{},this.loadTimeout=t||6e4,this.verifyPage=n,r=!1!==r,!n)throw new Error("You must specify a page verification callback");this.currentUrl=null,this.currentSize={width:void 0,height:void 0},this.wrapperDiv=document.createElement("div"),this.wrapperDiv.setAttribute("style","position:fixed; z-index: -1000; opacity: 0; top: 50px;"),document.body.append(this.wrapperDiv),this.iframe=document.createElement("iframe"),this.iframe.setAttribute("style","max-width: none; max-height: none; border: 0px;"),this.iframe.setAttribute("aria-hidden","true"),this.iframe.setAttribute("sandbox","allow-same-origin "+(r?"allow-scripts":"")),this.wrapperDiv.append(this.iframe)}cleanup(){this.iframe.remove(),this.wrapperDiv.remove()}async fetch(e,t,n){return window.fetch(e,t)}async runInPage(e,t,n,...r){return await this.loadPage(e),t&&await this.resize(t),n(this.iframe.contentWindow,...r)}addGetParameters(e){const t=new URL(e);for(const e of Object.keys(this.requestGetParameters))t.searchParams.append(e,this.requestGetParameters[e]);return t.toString()}async diagnoseUrlError(e){try{const t=await this.fetch(e,{redirect:"manual"},"html");return"DENY"===t.headers.get("x-frame-options")?new y({url:e}):"opaqueredirect"===t.type?new h({url:e,redirectUrl:t.url}):200===t.status?null:new p({url:e,code:t.status})}catch(t){return new g({url:e,message:t.message})}}sameOrigin(e){return new URL(e).origin===window.location.origin}async loadPage(e){if(e===this.currentUrl)return;const t=this.addGetParameters(e);await new Promise(((n,r)=>{const i=t=>{this.trackUrlError(e,t),r(t)};if(!this.sameOrigin(t))return void i(new d({url:t}));const o=setTimeout((()=>{this.iframe.onload=void 0,i(new m({url:t}))}),this.loadTimeout);this.iframe.onload=async()=>{try{if(this.iframe.onload=void 0,clearTimeout(o),!this.iframe.contentDocument)throw await this.diagnoseUrlError(t)||new d({url:t});if(!this.verifyPage(e,this.iframe.contentWindow,this.iframe.contentDocument))throw await this.diagnoseUrlError(t)||new f({url:t});n()}catch(e){i(e)}},this.iframe.src=t}))}async resize({width:e,height:t}){if(this.currentSize.width!==e||this.currentSize.height!==t)return new Promise((n=>{this.iframe.width=e,this.iframe.height=t,setTimeout(n,1)}))}},b={exports:{}},S={};function x(e){return{prev:null,next:null,data:e}}function w(e,t,n){var r;return null!==k?(r=k,k=k.cursor,r.prev=t,r.next=n,r.cursor=e.cursor):r={prev:t,next:n,cursor:e.cursor},e.cursor=r,r}function C(e){var t=e.cursor;e.cursor=t.cursor,t.prev=null,t.next=null,t.cursor=k,k=t}var k=null,O=function(){this.cursor=null,this.head=null,this.tail=null};O.createItem=x,O.prototype.createItem=x,O.prototype.updateCursors=function(e,t,n,r){for(var i=this.cursor;null!==i;)i.prev===e&&(i.prev=t),i.next===n&&(i.next=r),i=i.cursor},O.prototype.getSize=function(){for(var e=0,t=this.head;t;)e++,t=t.next;return e},O.prototype.fromArray=function(e){var t=null;this.head=null;for(var n=0;n<e.length;n++){var r=x(e[n]);null!==t?t.next=r:this.head=r,r.prev=t,t=r}return this.tail=t,this},O.prototype.toArray=function(){for(var e=this.head,t=[];e;)t.push(e.data),e=e.next;return t},O.prototype.toJSON=O.prototype.toArray,O.prototype.isEmpty=function(){return null===this.head},O.prototype.first=function(){return this.head&&this.head.data},O.prototype.last=function(){return this.tail&&this.tail.data},O.prototype.each=function(e,t){var n;void 0===t&&(t=this);for(var r=w(this,null,this.head);null!==r.next;)n=r.next,r.next=n.next,e.call(t,n.data,n,this);C(this)},O.prototype.forEach=O.prototype.each,O.prototype.eachRight=function(e,t){var n;void 0===t&&(t=this);for(var r=w(this,this.tail,null);null!==r.prev;)n=r.prev,r.prev=n.prev,e.call(t,n.data,n,this);C(this)},O.prototype.forEachRight=O.prototype.eachRight,O.prototype.reduce=function(e,t,n){var r;void 0===n&&(n=this);for(var i=w(this,null,this.head),o=t;null!==i.next;)r=i.next,i.next=r.next,o=e.call(n,o,r.data,r,this);return C(this),o},O.prototype.reduceRight=function(e,t,n){var r;void 0===n&&(n=this);for(var i=w(this,this.tail,null),o=t;null!==i.prev;)r=i.prev,i.prev=r.prev,o=e.call(n,o,r.data,r,this);return C(this),o},O.prototype.nextUntil=function(e,t,n){if(null!==e){var r;void 0===n&&(n=this);for(var i=w(this,null,e);null!==i.next&&(r=i.next,i.next=r.next,!t.call(n,r.data,r,this)););C(this)}},O.prototype.prevUntil=function(e,t,n){if(null!==e){var r;void 0===n&&(n=this);for(var i=w(this,e,null);null!==i.prev&&(r=i.prev,i.prev=r.prev,!t.call(n,r.data,r,this)););C(this)}},O.prototype.some=function(e,t){var n=this.head;for(void 0===t&&(t=this);null!==n;){if(e.call(t,n.data,n,this))return!0;n=n.next}return!1},O.prototype.map=function(e,t){var n=new O,r=this.head;for(void 0===t&&(t=this);null!==r;)n.appendData(e.call(t,r.data,r,this)),r=r.next;return n},O.prototype.filter=function(e,t){var n=new O,r=this.head;for(void 0===t&&(t=this);null!==r;)e.call(t,r.data,r,this)&&n.appendData(r.data),r=r.next;return n},O.prototype.clear=function(){this.head=null,this.tail=null},O.prototype.copy=function(){for(var e=new O,t=this.head;null!==t;)e.insert(x(t.data)),t=t.next;return e},O.prototype.prepend=function(e){return this.updateCursors(null,e,this.head,e),null!==this.head?(this.head.prev=e,e.next=this.head):this.tail=e,this.head=e,this},O.prototype.prependData=function(e){return this.prepend(x(e))},O.prototype.append=function(e){return this.insert(e)},O.prototype.appendData=function(e){return this.insert(x(e))},O.prototype.insert=function(e,t){if(null!=t)if(this.updateCursors(t.prev,e,t,e),null===t.prev){if(this.head!==t)throw new Error("before doesn't belong to list");this.head=e,t.prev=e,e.next=t,this.updateCursors(null,e)}else t.prev.next=e,e.prev=t.prev,t.prev=e,e.next=t;else this.updateCursors(this.tail,e,null,e),null!==this.tail?(this.tail.next=e,e.prev=this.tail):this.head=e,this.tail=e;return this},O.prototype.insertData=function(e,t){return this.insert(x(e),t)},O.prototype.remove=function(e){if(this.updateCursors(e,e.prev,e,e.next),null!==e.prev)e.prev.next=e.next;else{if(this.head!==e)throw new Error("item doesn't belong to list");this.head=e.next}if(null!==e.next)e.next.prev=e.prev;else{if(this.tail!==e)throw new Error("item doesn't belong to list");this.tail=e.prev}return e.prev=null,e.next=null,e},O.prototype.push=function(e){this.insert(x(e))},O.prototype.pop=function(){if(null!==this.tail)return this.remove(this.tail)},O.prototype.unshift=function(e){this.prepend(x(e))},O.prototype.shift=function(){if(null!==this.head)return this.remove(this.head)},O.prototype.prependList=function(e){return this.insertList(e,this.head)},O.prototype.appendList=function(e){return this.insertList(e)},O.prototype.insertList=function(e,t){return null===e.head||(null!=t?(this.updateCursors(t.prev,e.tail,t,e.head),null!==t.prev?(t.prev.next=e.head,e.head.prev=t.prev):this.head=e.head,t.prev=e.tail,e.tail.next=t):(this.updateCursors(this.tail,e.tail,null,e.head),null!==this.tail?(this.tail.next=e.head,e.head.prev=this.tail):this.head=e.head,this.tail=e.tail),e.head=null,e.tail=null),this},O.prototype.replace=function(e,t){"head"in t?this.insertList(t,e):this.insert(t,e),this.remove(e)};var T=O,E=function(e,t){var n=Object.create(SyntaxError.prototype),r=new Error;return n.name=e,n.message=t,Object.defineProperty(n,"stack",{get:function(){return(r.stack||"").replace(/^(.+\n){1,3}/,e+": "+t+"\n")}}),n},A=E,_=" ";function z(e,t){function n(e,t){return r.slice(e,t).map((function(t,n){for(var r=String(e+n+1);r.length<l;)r=" "+r;return r+" |"+t})).join("\n")}var r=e.source.split(/\r\n?|\n|\f/),i=e.line,o=e.column,a=Math.max(1,i-t)-1,s=Math.min(i+t,r.length+1),l=Math.max(4,String(s).length)+1,u=0;(o+=(_.length-1)*(r[i-1].substr(0,o-1).match(/\t/g)||[]).length)>100&&(u=o-60+3,o=58);for(var c=a;c<=s;c++)c>=0&&c<r.length&&(r[c]=r[c].replace(/\t/g,_),r[c]=(u>0&&r[c].length>u?"…":"")+r[c].substr(u,98)+(r[c].length>u+100-1?"…":""));return[n(a,i),new Array(o+l+2).join("-")+"^",n(i,s)].filter(Boolean).join("\n")}var R=function(e,t,n,r,i){var o=A("SyntaxError",e);return o.source=t,o.offset=n,o.line=r,o.column=i,o.sourceFragment=function(e){return z(o,isNaN(e)?0:e)},Object.defineProperty(o,"formattedMessage",{get:function(){return"Parse error: "+o.message+"\n"+z(o,2)}}),o.parseError={offset:n,line:r,column:i},o},L={EOF:0,Ident:1,Function:2,AtKeyword:3,Hash:4,String:5,BadString:6,Url:7,BadUrl:8,Delim:9,Number:10,Percentage:11,Dimension:12,WhiteSpace:13,CDO:14,CDC:15,Colon:16,Semicolon:17,Comma:18,LeftSquareBracket:19,RightSquareBracket:20,LeftParenthesis:21,RightParenthesis:22,LeftCurlyBracket:23,RightCurlyBracket:24,Comment:25},P=Object.keys(L).reduce((function(e,t){return e[L[t]]=t,e}),{}),B={TYPE:L,NAME:P};function W(e){return e>=48&&e<=57}function M(e){return e>=65&&e<=90}function U(e){return e>=97&&e<=122}function I(e){return M(e)||U(e)}function q(e){return e>=128}function N(e){return I(e)||q(e)||95===e}function D(e){return e>=0&&e<=8||11===e||e>=14&&e<=31||127===e}function V(e){return 10===e||13===e||12===e}function j(e){return V(e)||32===e||9===e}function F(e,t){return 92===e&&(!V(t)&&0!==t)}var G=new Array(128);Y.Eof=128,Y.WhiteSpace=130,Y.Digit=131,Y.NameStart=132,Y.NonPrintable=133;for(var K=0;K<G.length;K++)switch(!0){case j(K):G[K]=Y.WhiteSpace;break;case W(K):G[K]=Y.Digit;break;case N(K):G[K]=Y.NameStart;break;case D(K):G[K]=Y.NonPrintable;break;default:G[K]=K||Y.Eof}function Y(e){return e<128?G[e]:Y.NameStart}var H={isDigit:W,isHexDigit:function(e){return W(e)||e>=65&&e<=70||e>=97&&e<=102},isUppercaseLetter:M,isLowercaseLetter:U,isLetter:I,isNonAscii:q,isNameStart:N,isName:function(e){return N(e)||W(e)||45===e},isNonPrintable:D,isNewline:V,isWhiteSpace:j,isValidEscape:F,isIdentifierStart:function(e,t,n){return 45===e?N(t)||45===t||F(t,n):!!N(e)||92===e&&F(e,t)},isNumberStart:function(e,t,n){return 43===e||45===e?W(t)?2:46===t&&W(n)?3:0:46===e?W(t)?2:0:W(e)?1:0},isBOM:function(e){return 65279===e||65534===e?1:0},charCodeCategory:Y},$=H.isDigit,Q=H.isHexDigit,Z=H.isUppercaseLetter,X=H.isName,J=H.isWhiteSpace,ee=H.isValidEscape;function te(e,t){return t<e.length?e.charCodeAt(t):0}function ne(e,t,n){return 13===n&&10===te(e,t+1)?2:1}function re(e,t,n){var r=e.charCodeAt(t);return Z(r)&&(r|=32),r===n}function ie(e,t){for(;t<e.length&&$(e.charCodeAt(t));t++);return t}function oe(e,t){if(Q(te(e,(t+=2)-1))){for(var n=Math.min(e.length,t+5);t<n&&Q(te(e,t));t++);var r=te(e,t);J(r)&&(t+=ne(e,t,r))}return t}var ae={consumeEscaped:oe,consumeName:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(!X(n)){if(!ee(n,te(e,t+1)))break;t=oe(e,t)-1}}return t},consumeNumber:function(e,t){var n=e.charCodeAt(t);if(43!==n&&45!==n||(n=e.charCodeAt(t+=1)),$(n)&&(t=ie(e,t+1),n=e.charCodeAt(t)),46===n&&$(e.charCodeAt(t+1))&&(n=e.charCodeAt(t+=2),t=ie(e,t)),re(e,t,101)){var r=0;45!==(n=e.charCodeAt(t+1))&&43!==n||(r=1,n=e.charCodeAt(t+2)),$(n)&&(t=ie(e,t+1+r+1))}return t},consumeBadUrlRemnants:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(41===n){t++;break}ee(n,te(e,t+1))&&(t=oe(e,t))}return t},cmpChar:re,cmpStr:function(e,t,n,r){if(n-t!==r.length)return!1;if(t<0||n>e.length)return!1;for(var i=t;i<n;i++){var o=e.charCodeAt(i),a=r.charCodeAt(i-t);if(Z(o)&&(o|=32),o!==a)return!1}return!0},getNewlineLength:ne,findWhiteSpaceStart:function(e,t){for(;t>=0&&J(e.charCodeAt(t));t--);return t+1},findWhiteSpaceEnd:function(e,t){for(;t<e.length&&J(e.charCodeAt(t));t++);return t}},se=B.TYPE,le=B.NAME,ue=ae.cmpStr,ce=se.EOF,de=se.WhiteSpace,pe=se.Comment,me=16777215,he=24,fe=function(){this.offsetAndType=null,this.balance=null,this.reset()};fe.prototype={reset:function(){this.eof=!1,this.tokenIndex=-1,this.tokenType=0,this.tokenStart=this.firstCharOffset,this.tokenEnd=this.firstCharOffset},lookupType:function(e){return(e+=this.tokenIndex)<this.tokenCount?this.offsetAndType[e]>>he:ce},lookupOffset:function(e){return(e+=this.tokenIndex)<this.tokenCount?this.offsetAndType[e-1]&me:this.source.length},lookupValue:function(e,t){return(e+=this.tokenIndex)<this.tokenCount&&ue(this.source,this.offsetAndType[e-1]&me,this.offsetAndType[e]&me,t)},getTokenStart:function(e){return e===this.tokenIndex?this.tokenStart:e>0?e<this.tokenCount?this.offsetAndType[e-1]&me:this.offsetAndType[this.tokenCount]&me:this.firstCharOffset},getRawLength:function(e,t){var n,r=e,i=this.offsetAndType[Math.max(r-1,0)]&me;e:for(;r<this.tokenCount&&!((n=this.balance[r])<e);r++)switch(t(this.offsetAndType[r]>>he,this.source,i)){case 1:break e;case 2:r++;break e;default:this.balance[n]===r&&(r=n),i=this.offsetAndType[r]&me}return r-this.tokenIndex},isBalanceEdge:function(e){return this.balance[this.tokenIndex]<e},isDelim:function(e,t){return t?this.lookupType(t)===se.Delim&&this.source.charCodeAt(this.lookupOffset(t))===e:this.tokenType===se.Delim&&this.source.charCodeAt(this.tokenStart)===e},getTokenValue:function(){return this.source.substring(this.tokenStart,this.tokenEnd)},getTokenLength:function(){return this.tokenEnd-this.tokenStart},substrToCursor:function(e){return this.source.substring(e,this.tokenStart)},skipWS:function(){for(var e=this.tokenIndex,t=0;e<this.tokenCount&&this.offsetAndType[e]>>he===de;e++,t++);t>0&&this.skip(t)},skipSC:function(){for(;this.tokenType===de||this.tokenType===pe;)this.next()},skip:function(e){var t=this.tokenIndex+e;t<this.tokenCount?(this.tokenIndex=t,this.tokenStart=this.offsetAndType[t-1]&me,t=this.offsetAndType[t],this.tokenType=t>>he,this.tokenEnd=t&me):(this.tokenIndex=this.tokenCount,this.next())},next:function(){var e=this.tokenIndex+1;e<this.tokenCount?(this.tokenIndex=e,this.tokenStart=this.tokenEnd,e=this.offsetAndType[e],this.tokenType=e>>he,this.tokenEnd=e&me):(this.tokenIndex=this.tokenCount,this.eof=!0,this.tokenType=ce,this.tokenStart=this.tokenEnd=this.source.length)},forEachToken(e){for(var t=0,n=this.firstCharOffset;t<this.tokenCount;t++){var r=n,i=this.offsetAndType[t],o=i&me;n=o,e(i>>he,r,o,t)}},dump(){var e=new Array(this.tokenCount);return this.forEachToken(((t,n,r,i)=>{e[i]={idx:i,type:le[t],chunk:this.source.substring(n,r),balance:this.balance[i]}})),e}};var ge=fe;function ye(e){return e}function ve(e,t,n,r){var i,o;switch(e.type){case"Group":i=function(e,t,n,r){var i=" "===e.combinator||r?e.combinator:" "+e.combinator+" ",o=e.terms.map((function(e){return ve(e,t,n,r)})).join(i);return(e.explicit||n)&&(o=(r||","===o[0]?"[":"[ ")+o+(r?"]":" ]")),o}(e,t,n,r)+(e.disallowEmpty?"!":"");break;case"Multiplier":return ve(e.term,t,n,r)+t(0===(o=e).min&&0===o.max?"*":0===o.min&&1===o.max?"?":1===o.min&&0===o.max?o.comma?"#":"+":1===o.min&&1===o.max?"":(o.comma?"#":"")+(o.min===o.max?"{"+o.min+"}":"{"+o.min+","+(0!==o.max?o.max:"")+"}"),e);case"Type":i="<"+e.name+(e.opts?t(function(e){switch(e.type){case"Range":return" ["+(null===e.min?"-∞":e.min)+","+(null===e.max?"∞":e.max)+"]";default:throw new Error("Unknown node type `"+e.type+"`")}}(e.opts),e.opts):"")+">";break;case"Property":i="<'"+e.name+"'>";break;case"Keyword":i=e.name;break;case"AtKeyword":i="@"+e.name;break;case"Function":i=e.name+"(";break;case"String":case"Token":i=e.value;break;case"Comma":i=",";break;default:throw new Error("Unknown node type `"+e.type+"`")}return t(i,e)}var be=function(e,t){var n=ye,r=!1,i=!1;return"function"==typeof t?n=t:t&&(r=Boolean(t.forceBraces),i=Boolean(t.compact),"function"==typeof t.decorate&&(n=t.decorate)),ve(e,n,r,i)};const Se=E,xe=be,we={offset:0,line:1,column:1};function Ce(e,t){const n=e&&e.loc&&e.loc[t];return n?"line"in n?ke(n):n:null}function ke({offset:e,line:t,column:n},r){const i={offset:e,line:t,column:n};if(r){const e=r.split(/\n|\r\n?|\f/);i.offset+=r.length,i.line+=e.length-1,i.column=1===e.length?i.column+r.length:e.pop().length+1}return i}var Oe=function(e,t){const n=Se("SyntaxReferenceError",e+(t?" `"+t+"`":""));return n.reference=t,n},Te=function(e,t,n,r){const i=Se("SyntaxMatchError",e),{css:o,mismatchOffset:a,mismatchLength:s,start:l,end:u}=function(e,t){const n=e.tokens,r=e.longestMatch,i=r<n.length&&n[r].node||null,o=i!==t?i:null;let a,s,l=0,u=0,c=0,d="";for(let e=0;e<n.length;e++){const t=n[e].value;e===r&&(u=t.length,l=d.length),null!==o&&n[e].node===o&&(e<=r?c++:c=0),d+=t}return r===n.length||c>1?(a=Ce(o||t,"end")||ke(we,d),s=ke(a)):(a=Ce(o,"start")||ke(Ce(t,"start")||we,d.slice(0,l)),s=Ce(o,"end")||ke(a,d.substr(l,u))),{css:d,mismatchOffset:l,mismatchLength:u,start:a,end:s}}(r,n);return i.rawMessage=e,i.syntax=t?xe(t):"<generic>",i.css=o,i.mismatchOffset=a,i.mismatchLength=s,i.message=e+"\n syntax: "+i.syntax+"\n value: "+(o||"<empty string>")+"\n --------"+new Array(i.mismatchOffset+1).join("-")+"^",Object.assign(i,l),i.loc={source:n&&n.loc&&n.loc.source||"<unknown>",start:l,end:u},i},Ee=Object.prototype.hasOwnProperty,Ae=Object.create(null),_e=Object.create(null);function ze(e,t){return t=t||0,e.length-t>=2&&45===e.charCodeAt(t)&&45===e.charCodeAt(t+1)}function Re(e,t){if(t=t||0,e.length-t>=3&&45===e.charCodeAt(t)&&45!==e.charCodeAt(t+1)){var n=e.indexOf("-",t+2);if(-1!==n)return e.substring(t,n+1)}return""}var Le={keyword:function(e){if(Ee.call(Ae,e))return Ae[e];var t=e.toLowerCase();if(Ee.call(Ae,t))return Ae[e]=Ae[t];var n=ze(t,0),r=n?"":Re(t,0);return Ae[e]=Object.freeze({basename:t.substr(r.length),name:t,vendor:r,prefix:r,custom:n})},property:function(e){if(Ee.call(_e,e))return _e[e];var t=e,n=e[0];"/"===n?n="/"===e[1]?"//":"/":"_"!==n&&"*"!==n&&"$"!==n&&"#"!==n&&"+"!==n&&"&"!==n&&(n="");var r=ze(t,n.length);if(!r&&(t=t.toLowerCase(),Ee.call(_e,t)))return _e[e]=_e[t];var i=r?"":Re(t,n.length),o=t.substr(0,n.length+i.length);return _e[e]=Object.freeze({basename:t.substr(o.length),name:t.substr(n.length),hack:n,vendor:i,prefix:o,custom:r})},isCustomProperty:ze,vendorPrefix:Re},Pe="undefined"!=typeof Uint32Array?Uint32Array:Array,Be=function(e,t){return null===e||e.length<t?new Pe(Math.max(t+1024,16384)):e},We=ge,Me=Be,Ue=B,Ie=Ue.TYPE,qe=H,Ne=qe.isNewline,De=qe.isName,Ve=qe.isValidEscape,je=qe.isNumberStart,Fe=qe.isIdentifierStart,Ge=qe.charCodeCategory,Ke=qe.isBOM,Ye=ae,He=Ye.cmpStr,$e=Ye.getNewlineLength,Qe=Ye.findWhiteSpaceEnd,Ze=Ye.consumeEscaped,Xe=Ye.consumeName,Je=Ye.consumeNumber,et=Ye.consumeBadUrlRemnants,tt=16777215,nt=24;function rt(e,t){function n(t){return t<a?e.charCodeAt(t):0}function r(){return d=Je(e,d),Fe(n(d),n(d+1),n(d+2))?(g=Ie.Dimension,void(d=Xe(e,d))):37===n(d)?(g=Ie.Percentage,void d++):void(g=Ie.Number)}function i(){const t=d;return d=Xe(e,d),He(e,t,d,"url")&&40===n(d)?34===n(d=Qe(e,d+1))||39===n(d)?(g=Ie.Function,void(d=t+4)):void function(){for(g=Ie.Url,d=Qe(e,d);d<e.length;d++){var t=e.charCodeAt(d);switch(Ge(t)){case 41:return void d++;case Ge.Eof:return;case Ge.WhiteSpace:return 41===n(d=Qe(e,d))||d>=e.length?void(d<e.length&&d++):(d=et(e,d),void(g=Ie.BadUrl));case 34:case 39:case 40:case Ge.NonPrintable:return d=et(e,d),void(g=Ie.BadUrl);case 92:if(Ve(t,n(d+1))){d=Ze(e,d)-1;break}return d=et(e,d),void(g=Ie.BadUrl)}}}():40===n(d)?(g=Ie.Function,void d++):void(g=Ie.Ident)}function o(t){for(t||(t=n(d++)),g=Ie.String;d<e.length;d++){var r=e.charCodeAt(d);switch(Ge(r)){case t:return void d++;case Ge.Eof:return;case Ge.WhiteSpace:if(Ne(r))return d+=$e(e,d,r),void(g=Ie.BadString);break;case 92:if(d===e.length-1)break;var i=n(d+1);Ne(i)?d+=$e(e,d+1,i):Ve(r,i)&&(d=Ze(e,d)-1)}}}t||(t=new We);for(var a=(e=String(e||"")).length,s=Me(t.offsetAndType,a+1),l=Me(t.balance,a+1),u=0,c=Ke(n(0)),d=c,p=0,m=0,h=0;d<a;){var f=e.charCodeAt(d),g=0;switch(l[u]=a,Ge(f)){case Ge.WhiteSpace:g=Ie.WhiteSpace,d=Qe(e,d+1);break;case 34:o();break;case 35:De(n(d+1))||Ve(n(d+1),n(d+2))?(g=Ie.Hash,d=Xe(e,d+1)):(g=Ie.Delim,d++);break;case 39:o();break;case 40:g=Ie.LeftParenthesis,d++;break;case 41:g=Ie.RightParenthesis,d++;break;case 43:je(f,n(d+1),n(d+2))?r():(g=Ie.Delim,d++);break;case 44:g=Ie.Comma,d++;break;case 45:je(f,n(d+1),n(d+2))?r():45===n(d+1)&&62===n(d+2)?(g=Ie.CDC,d+=3):Fe(f,n(d+1),n(d+2))?i():(g=Ie.Delim,d++);break;case 46:je(f,n(d+1),n(d+2))?r():(g=Ie.Delim,d++);break;case 47:42===n(d+1)?(g=Ie.Comment,1===(d=e.indexOf("*/",d+2)+2)&&(d=e.length)):(g=Ie.Delim,d++);break;case 58:g=Ie.Colon,d++;break;case 59:g=Ie.Semicolon,d++;break;case 60:33===n(d+1)&&45===n(d+2)&&45===n(d+3)?(g=Ie.CDO,d+=4):(g=Ie.Delim,d++);break;case 64:Fe(n(d+1),n(d+2),n(d+3))?(g=Ie.AtKeyword,d=Xe(e,d+1)):(g=Ie.Delim,d++);break;case 91:g=Ie.LeftSquareBracket,d++;break;case 92:Ve(f,n(d+1))?i():(g=Ie.Delim,d++);break;case 93:g=Ie.RightSquareBracket,d++;break;case 123:g=Ie.LeftCurlyBracket,d++;break;case 125:g=Ie.RightCurlyBracket,d++;break;case Ge.Digit:r();break;case Ge.NameStart:i();break;case Ge.Eof:break;default:g=Ie.Delim,d++}switch(g){case p:for(p=(m=l[h=m&tt])>>nt,l[u]=h,l[h++]=u;h<u;h++)l[h]===a&&(l[h]=u);break;case Ie.LeftParenthesis:case Ie.Function:l[u]=m,m=(p=Ie.RightParenthesis)<<nt|u;break;case Ie.LeftSquareBracket:l[u]=m,m=(p=Ie.RightSquareBracket)<<nt|u;break;case Ie.LeftCurlyBracket:l[u]=m,m=(p=Ie.RightCurlyBracket)<<nt|u}s[u++]=g<<nt|d}for(s[u]=Ie.EOF<<nt|d,l[u]=a,l[a]=a;0!==m;)m=l[h=m&tt],l[h]=a;return t.source=e,t.firstCharOffset=c,t.offsetAndType=s,t.tokenCount=u,t.balance=l,t.reset(),t.next(),t}Object.keys(Ue).forEach((function(e){rt[e]=Ue[e]})),Object.keys(qe).forEach((function(e){rt[e]=qe[e]})),Object.keys(Ye).forEach((function(e){rt[e]=Ye[e]}));var it=rt,ot=it.isDigit,at=it.cmpChar,st=it.TYPE,lt=st.Delim,ut=st.WhiteSpace,ct=st.Comment,dt=st.Ident,pt=st.Number,mt=st.Dimension,ht=45,ft=!0;function gt(e,t){return null!==e&&e.type===lt&&e.value.charCodeAt(0)===t}function yt(e,t,n){for(;null!==e&&(e.type===ut||e.type===ct);)e=n(++t);return t}function vt(e,t,n,r){if(!e)return 0;var i=e.value.charCodeAt(t);if(43===i||i===ht){if(n)return 0;t++}for(;t<e.value.length;t++)if(!ot(e.value.charCodeAt(t)))return 0;return r+1}function bt(e,t,n){var r=!1,i=yt(e,t,n);if(null===(e=n(i)))return t;if(e.type!==pt){if(!gt(e,43)&&!gt(e,ht))return t;if(r=!0,i=yt(n(++i),i,n),null===(e=n(i))&&e.type!==pt)return 0}if(!r){var o=e.value.charCodeAt(0);if(43!==o&&o!==ht)return 0}return vt(e,r?0:1,r,i)}var St=it.isHexDigit,xt=it.cmpChar,wt=it.TYPE,Ct=wt.Ident,kt=wt.Delim,Ot=wt.Number,Tt=wt.Dimension;function Et(e,t){return null!==e&&e.type===kt&&e.value.charCodeAt(0)===t}function At(e,t){return e.value.charCodeAt(0)===t}function _t(e,t,n){for(var r=t,i=0;r<e.value.length;r++){var o=e.value.charCodeAt(r);if(45===o&&n&&0!==i)return _t(e,t+i+1,!1)>0?6:0;if(!St(o))return 0;if(++i>6)return 0}return i}function zt(e,t,n){if(!e)return 0;for(;Et(n(t),63);){if(++e>6)return 0;t++}return t}var Rt=it,Lt=Rt.isIdentifierStart,Pt=Rt.isHexDigit,Bt=Rt.isDigit,Wt=Rt.cmpStr,Mt=Rt.consumeNumber,Ut=Rt.TYPE,It=function(e,t){var n=0;if(!e)return 0;if(e.type===pt)return vt(e,0,false,n);if(e.type===dt&&e.value.charCodeAt(0)===ht){if(!at(e.value,1,110))return 0;switch(e.value.length){case 2:return bt(t(++n),n,t);case 3:return e.value.charCodeAt(2)!==ht?0:(n=yt(t(++n),n,t),vt(e=t(n),0,ft,n));default:return e.value.charCodeAt(2)!==ht?0:vt(e,3,ft,n)}}else if(e.type===dt||gt(e,43)&&t(n+1).type===dt){if(e.type!==dt&&(e=t(++n)),null===e||!at(e.value,0,110))return 0;switch(e.value.length){case 1:return bt(t(++n),n,t);case 2:return e.value.charCodeAt(1)!==ht?0:(n=yt(t(++n),n,t),vt(e=t(n),0,ft,n));default:return e.value.charCodeAt(1)!==ht?0:vt(e,2,ft,n)}}else if(e.type===mt){for(var r=e.value.charCodeAt(0),i=43===r||r===ht?1:0,o=i;o<e.value.length&&ot(e.value.charCodeAt(o));o++);return o===i?0:at(e.value,o,110)?o+1===e.value.length?bt(t(++n),n,t):e.value.charCodeAt(o+1)!==ht?0:o+2===e.value.length?(n=yt(t(++n),n,t),vt(e=t(n),0,ft,n)):vt(e,o+2,ft,n):0}return 0},qt=function(e,t){var n=0;if(null===e||e.type!==Ct||!xt(e.value,0,117))return 0;if(null===(e=t(++n)))return 0;if(Et(e,43))return null===(e=t(++n))?0:e.type===Ct?zt(_t(e,0,!0),++n,t):Et(e,63)?zt(1,++n,t):0;if(e.type===Ot){if(!At(e,43))return 0;var r=_t(e,1,!0);return 0===r?0:null===(e=t(++n))?n:e.type===Tt||e.type===Ot?At(e,45)&&_t(e,1,!1)?n+1:0:zt(r,n,t)}return e.type===Tt&&At(e,43)?zt(_t(e,1,!0),++n,t):0},Nt=["unset","initial","inherit"],Dt=["calc(","-moz-calc(","-webkit-calc("];function Vt(e,t){return t<e.length?e.charCodeAt(t):0}function jt(e,t){return Wt(e,0,e.length,t)}function Ft(e,t){for(var n=0;n<t.length;n++)if(jt(e,t[n]))return!0;return!1}function Gt(e,t){return t===e.length-2&&(92===e.charCodeAt(t)&&Bt(e.charCodeAt(t+1)))}function Kt(e,t,n){if(e&&"Range"===e.type){var r=Number(void 0!==n&&n!==t.length?t.substr(0,n):t);if(isNaN(r))return!0;if(null!==e.min&&r<e.min)return!0;if(null!==e.max&&r>e.max)return!0}return!1}function Yt(e,t){var n=e.index,r=0;do{if(r++,e.balance<=n)break}while(e=t(r));return r}function Ht(e){return function(t,n,r){return null===t?0:t.type===Ut.Function&&Ft(t.value,Dt)?Yt(t,n):e(t,n,r)}}function $t(e){return function(t){return null===t||t.type!==e?0:1}}function Qt(e){return function(t,n,r){if(null===t||t.type!==Ut.Dimension)return 0;var i=Mt(t.value,0);if(null!==e){var o=t.value.indexOf("\\",i),a=-1!==o&&Gt(t.value,o)?t.value.substring(i,o):t.value.substr(i);if(!1===e.hasOwnProperty(a.toLowerCase()))return 0}return Kt(r,t.value,i)?0:1}}function Zt(e){return"function"!=typeof e&&(e=function(){return 0}),function(t,n,r){return null!==t&&t.type===Ut.Number&&0===Number(t.value)?1:e(t,n,r)}}var Xt={"ident-token":$t(Ut.Ident),"function-token":$t(Ut.Function),"at-keyword-token":$t(Ut.AtKeyword),"hash-token":$t(Ut.Hash),"string-token":$t(Ut.String),"bad-string-token":$t(Ut.BadString),"url-token":$t(Ut.Url),"bad-url-token":$t(Ut.BadUrl),"delim-token":$t(Ut.Delim),"number-token":$t(Ut.Number),"percentage-token":$t(Ut.Percentage),"dimension-token":$t(Ut.Dimension),"whitespace-token":$t(Ut.WhiteSpace),"CDO-token":$t(Ut.CDO),"CDC-token":$t(Ut.CDC),"colon-token":$t(Ut.Colon),"semicolon-token":$t(Ut.Semicolon),"comma-token":$t(Ut.Comma),"[-token":$t(Ut.LeftSquareBracket),"]-token":$t(Ut.RightSquareBracket),"(-token":$t(Ut.LeftParenthesis),")-token":$t(Ut.RightParenthesis),"{-token":$t(Ut.LeftCurlyBracket),"}-token":$t(Ut.RightCurlyBracket),string:$t(Ut.String),ident:$t(Ut.Ident),"custom-ident":function(e){if(null===e||e.type!==Ut.Ident)return 0;var t=e.value.toLowerCase();return Ft(t,Nt)||jt(t,"default")?0:1},"custom-property-name":function(e){return null===e||e.type!==Ut.Ident||45!==Vt(e.value,0)||45!==Vt(e.value,1)?0:1},"hex-color":function(e){if(null===e||e.type!==Ut.Hash)return 0;var t=e.value.length;if(4!==t&&5!==t&&7!==t&&9!==t)return 0;for(var n=1;n<t;n++)if(!Pt(e.value.charCodeAt(n)))return 0;return 1},"id-selector":function(e){return null===e||e.type!==Ut.Hash?0:Lt(Vt(e.value,1),Vt(e.value,2),Vt(e.value,3))?1:0},"an-plus-b":It,urange:qt,"declaration-value":function(e,t){if(!e)return 0;var n=0,r=0,i=e.index;e:do{switch(e.type){case Ut.BadString:case Ut.BadUrl:break e;case Ut.RightCurlyBracket:case Ut.RightParenthesis:case Ut.RightSquareBracket:if(e.balance>e.index||e.balance<i)break e;r--;break;case Ut.Semicolon:if(0===r)break e;break;case Ut.Delim:if("!"===e.value&&0===r)break e;break;case Ut.Function:case Ut.LeftParenthesis:case Ut.LeftSquareBracket:case Ut.LeftCurlyBracket:r++}if(n++,e.balance<=i)break}while(e=t(n));return n},"any-value":function(e,t){if(!e)return 0;var n=e.index,r=0;e:do{switch(e.type){case Ut.BadString:case Ut.BadUrl:break e;case Ut.RightCurlyBracket:case Ut.RightParenthesis:case Ut.RightSquareBracket:if(e.balance>e.index||e.balance<n)break e}if(r++,e.balance<=n)break}while(e=t(r));return r},dimension:Ht(Qt(null)),angle:Ht(Qt({deg:!0,grad:!0,rad:!0,turn:!0})),decibel:Ht(Qt({db:!0})),frequency:Ht(Qt({hz:!0,khz:!0})),flex:Ht(Qt({fr:!0})),length:Ht(Zt(Qt({px:!0,mm:!0,cm:!0,in:!0,pt:!0,pc:!0,q:!0,em:!0,ex:!0,ch:!0,rem:!0,vh:!0,vw:!0,vmin:!0,vmax:!0,vm:!0}))),resolution:Ht(Qt({dpi:!0,dpcm:!0,dppx:!0,x:!0})),semitones:Ht(Qt({st:!0})),time:Ht(Qt({s:!0,ms:!0})),percentage:Ht((function(e,t,n){return null===e||e.type!==Ut.Percentage||Kt(n,e.value,e.value.length-1)?0:1})),zero:Zt(),number:Ht((function(e,t,n){if(null===e)return 0;var r=Mt(e.value,0);return r===e.value.length||Gt(e.value,r)?Kt(n,e.value,r)?0:1:0})),integer:Ht((function(e,t,n){if(null===e||e.type!==Ut.Number)return 0;for(var r=43===e.value.charCodeAt(0)||45===e.value.charCodeAt(0)?1:0;r<e.value.length;r++)if(!Bt(e.value.charCodeAt(r)))return 0;return Kt(n,e.value,r)?0:1})),"-ms-legacy-expression":function(e){return e+="(",function(t,n){return null!==t&&jt(t.value,e)?Yt(t,n):0}}("expression")},Jt=E,en=function(e,t,n){var r=Jt("SyntaxError",e);return r.input=t,r.offset=n,r.rawMessage=e,r.message=r.rawMessage+"\n "+r.input+"\n--"+new Array((r.offset||r.input.length)+1).join("-")+"^",r},tn=en,nn=function(e){this.str=e,this.pos=0};nn.prototype={charCodeAt:function(e){return e<this.str.length?this.str.charCodeAt(e):0},charCode:function(){return this.charCodeAt(this.pos)},nextCharCode:function(){return this.charCodeAt(this.pos+1)},nextNonWsCode:function(e){return this.charCodeAt(this.findWsEnd(e))},findWsEnd:function(e){for(;e<this.str.length;e++){var t=this.str.charCodeAt(e);if(13!==t&&10!==t&&12!==t&&32!==t&&9!==t)break}return e},substringToPos:function(e){return this.str.substring(this.pos,this.pos=e)},eat:function(e){this.charCode()!==e&&this.error("Expect `"+String.fromCharCode(e)+"`"),this.pos++},peek:function(){return this.pos<this.str.length?this.str.charAt(this.pos++):""},error:function(e){throw new tn(e,this.str,this.pos)}};var rn=nn,on=123,an=function(e){for(var t="function"==typeof Uint32Array?new Uint32Array(128):new Array(128),n=0;n<128;n++)t[n]=e(String.fromCharCode(n))?1:0;return t}((function(e){return/[a-zA-Z0-9\-]/.test(e)})),sn={" ":1,"&&":2,"||":3,"|":4};function ln(e){return e.substringToPos(e.findWsEnd(e.pos))}function un(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n>=128||0===an[n])break}return e.pos===t&&e.error("Expect a keyword"),e.substringToPos(t)}function cn(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n<48||n>57)break}return e.pos===t&&e.error("Expect a number"),e.substringToPos(t)}function dn(e){var t=e.str.indexOf("'",e.pos+1);return-1===t&&(e.pos=e.str.length,e.error("Expect an apostrophe")),e.substringToPos(t+1)}function pn(e){var t,n=null;return e.eat(on),t=cn(e),44===e.charCode()?(e.pos++,125!==e.charCode()&&(n=cn(e))):n=t,e.eat(125),{min:Number(t),max:n?Number(n):0}}function mn(e,t){var n=function(e){var t=null,n=!1;switch(e.charCode()){case 42:e.pos++,t={min:0,max:0};break;case 43:e.pos++,t={min:1,max:0};break;case 63:e.pos++,t={min:0,max:1};break;case 35:e.pos++,n=!0,t=e.charCode()===on?pn(e):{min:1,max:0};break;case on:t=pn(e);break;default:return null}return{type:"Multiplier",comma:n,min:t.min,max:t.max,term:null}}(e);return null!==n?(n.term=t,n):t}function hn(e){var t=e.peek();return""===t?null:{type:"Token",value:t}}function fn(e){var t,n=null;return e.eat(60),t=un(e),40===e.charCode()&&41===e.nextCharCode()&&(e.pos+=2,t+="()"),91===e.charCodeAt(e.findWsEnd(e.pos))&&(ln(e),n=function(e){var t=null,n=null,r=1;return e.eat(91),45===e.charCode()&&(e.peek(),r=-1),-1==r&&8734===e.charCode()?e.peek():t=r*Number(cn(e)),ln(e),e.eat(44),ln(e),8734===e.charCode()?e.peek():(r=1,45===e.charCode()&&(e.peek(),r=-1),n=r*Number(cn(e))),e.eat(93),null===t&&null===n?null:{type:"Range",min:t,max:n}}(e)),e.eat(62),mn(e,{type:"Type",name:t,opts:n})}function gn(e,t){function n(e,t){return{type:"Group",terms:e,combinator:t,disallowEmpty:!1,explicit:!1}}for(t=Object.keys(t).sort((function(e,t){return sn[e]-sn[t]}));t.length>0;){for(var r=t.shift(),i=0,o=0;i<e.length;i++){var a=e[i];"Combinator"===a.type&&(a.value===r?(-1===o&&(o=i-1),e.splice(i,1),i--):(-1!==o&&i-o>1&&(e.splice(o,i-o,n(e.slice(o,i),r)),i=o+1),o=-1))}-1!==o&&t.length&&e.splice(o,i-o,n(e.slice(o,i),r))}return r}function yn(e){for(var t,n=[],r={},i=null,o=e.pos;t=vn(e);)"Spaces"!==t.type&&("Combinator"===t.type?(null!==i&&"Combinator"!==i.type||(e.pos=o,e.error("Unexpected combinator")),r[t.value]=!0):null!==i&&"Combinator"!==i.type&&(r[" "]=!0,n.push({type:"Combinator",value:" "})),n.push(t),i=t,o=e.pos);return null!==i&&"Combinator"===i.type&&(e.pos-=o,e.error("Unexpected combinator")),{type:"Group",terms:n,combinator:gn(n,r)||" ",disallowEmpty:!1,explicit:!1}}function vn(e){var t=e.charCode();if(t<128&&1===an[t])return function(e){var t;return t=un(e),40===e.charCode()?(e.pos++,{type:"Function",name:t}):mn(e,{type:"Keyword",name:t})}(e);switch(t){case 93:break;case 91:return mn(e,function(e){var t;return e.eat(91),t=yn(e),e.eat(93),t.explicit=!0,33===e.charCode()&&(e.pos++,t.disallowEmpty=!0),t}(e));case 60:return 39===e.nextCharCode()?function(e){var t;return e.eat(60),e.eat(39),t=un(e),e.eat(39),e.eat(62),mn(e,{type:"Property",name:t})}(e):fn(e);case 124:return{type:"Combinator",value:e.substringToPos(124===e.nextCharCode()?e.pos+2:e.pos+1)};case 38:return e.pos++,e.eat(38),{type:"Combinator",value:"&&"};case 44:return e.pos++,{type:"Comma"};case 39:return mn(e,{type:"String",value:dn(e)});case 32:case 9:case 10:case 13:case 12:return{type:"Spaces",value:ln(e)};case 64:return(t=e.nextCharCode())<128&&1===an[t]?(e.pos++,{type:"AtKeyword",name:un(e)}):hn(e);case 42:case 43:case 63:case 35:case 33:break;case on:if((t=e.nextCharCode())<48||t>57)return hn(e);break;default:return hn(e)}}function bn(e){var t=new rn(e),n=yn(t);return t.pos!==e.length&&t.error("Unexpected input"),1===n.terms.length&&"Group"===n.terms[0].type&&(n=n.terms[0]),n}bn("[a&&<b>#|<'c'>*||e() f{2} /,(% g#{1,2} h{2,})]!");var Sn=bn,xn=function(){};function wn(e){return"function"==typeof e?e:xn}var Cn=function(e,t,n){var r=xn,i=xn;if("function"==typeof t?r=t:t&&(r=wn(t.enter),i=wn(t.leave)),r===xn&&i===xn)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");!function e(t){switch(r.call(n,t),t.type){case"Group":t.terms.forEach(e);break;case"Multiplier":e(t.term);break;case"Type":case"Property":case"Keyword":case"AtKeyword":case"Function":case"String":case"Token":case"Comma":break;default:throw new Error("Unknown type: "+t.type)}i.call(n,t)}(e)},kn=it,On=new ge,Tn={decorator:function(e){var t=null,n={len:0,node:null},r=[n],i="";return{children:e.children,node:function(n){var r=t;t=n,e.node.call(this,n),t=r},chunk:function(e){i+=e,n.node!==t?r.push({len:e.length,node:t}):n.len+=e.length},result:function(){return En(i,r)}}}};function En(e,t){var n=[],r=0,i=0,o=t?t[i].node:null;for(kn(e,On);!On.eof;){if(t)for(;i<t.length&&r+t[i].len<=On.tokenStart;)r+=t[i++].len,o=t[i].node;n.push({type:On.tokenType,value:On.getTokenValue(),index:On.tokenIndex,balance:On.balance[On.tokenIndex],node:o}),On.next()}return n}var An=Sn,_n={type:"Match"},zn={type:"Mismatch"},Rn={type:"DisallowEmpty"};function Ln(e,t,n){return t===_n&&n===zn||e===_n&&t===_n&&n===_n?e:("If"===e.type&&e.else===zn&&t===_n&&(t=e.then,e=e.match),{type:"If",match:e,then:t,else:n})}function Pn(e){return e.length>2&&40===e.charCodeAt(e.length-2)&&41===e.charCodeAt(e.length-1)}function Bn(e){return"Keyword"===e.type||"AtKeyword"===e.type||"Function"===e.type||"Type"===e.type&&Pn(e.name)}function Wn(e,t,n){switch(e){case" ":for(var r=_n,i=t.length-1;i>=0;i--){r=Ln(s=t[i],r,zn)}return r;case"|":r=zn;var o=null;for(i=t.length-1;i>=0;i--){if(Bn(s=t[i])&&(null===o&&i>0&&Bn(t[i-1])&&(r=Ln({type:"Enum",map:o=Object.create(null)},_n,r)),null!==o)){var a=(Pn(s.name)?s.name.slice(0,-1):s.name).toLowerCase();if(a in o==!1){o[a]=s;continue}}o=null,r=Ln(s,_n,r)}return r;case"&&":if(t.length>5)return{type:"MatchOnce",terms:t,all:!0};for(r=zn,i=t.length-1;i>=0;i--){var s=t[i];l=t.length>1?Wn(e,t.filter((function(e){return e!==s})),!1):_n,r=Ln(s,l,r)}return r;case"||":if(t.length>5)return{type:"MatchOnce",terms:t,all:!1};for(r=n?_n:zn,i=t.length-1;i>=0;i--){var l;s=t[i];l=t.length>1?Wn(e,t.filter((function(e){return e!==s})),!0):_n,r=Ln(s,l,r)}return r}}function Mn(e){if("function"==typeof e)return{type:"Generic",fn:e};switch(e.type){case"Group":var t=Wn(e.combinator,e.terms.map(Mn),!1);return e.disallowEmpty&&(t=Ln(t,Rn,zn)),t;case"Multiplier":return function(e){var t=_n,n=Mn(e.term);if(0===e.max)n=Ln(n,Rn,zn),(t=Ln(n,null,zn)).then=Ln(_n,_n,t),e.comma&&(t.then.else=Ln({type:"Comma",syntax:e},t,zn));else for(var r=e.min||1;r<=e.max;r++)e.comma&&t!==_n&&(t=Ln({type:"Comma",syntax:e},t,zn)),t=Ln(n,Ln(_n,_n,t),zn);if(0===e.min)t=Ln(_n,_n,t);else for(r=0;r<e.min-1;r++)e.comma&&t!==_n&&(t=Ln({type:"Comma",syntax:e},t,zn)),t=Ln(n,t,zn);return t}(e);case"Type":case"Property":return{type:e.type,name:e.name,syntax:e};case"Keyword":return{type:e.type,name:e.name.toLowerCase(),syntax:e};case"AtKeyword":return{type:e.type,name:"@"+e.name.toLowerCase(),syntax:e};case"Function":return{type:e.type,name:e.name.toLowerCase()+"(",syntax:e};case"String":return 3===e.value.length?{type:"Token",value:e.value.charAt(1),syntax:e}:{type:e.type,value:e.value.substr(1,e.value.length-2).replace(/\\'/g,"'"),syntax:e};case"Token":return{type:e.type,value:e.value,syntax:e};case"Comma":return{type:e.type,syntax:e};default:throw new Error("Unknown node type:",e.type)}}var Un={MATCH:_n,MISMATCH:zn,DISALLOW_EMPTY:Rn,buildMatchGraph:function(e,t){return"string"==typeof e&&(e=An(e)),{type:"MatchGraph",match:Mn(e),syntax:t||null,source:e}}},In=Object.prototype.hasOwnProperty,qn=Un.MATCH,Nn=Un.MISMATCH,Dn=Un.DISALLOW_EMPTY,Vn=B.TYPE,jn="Match";function Fn(e){for(var t=null,n=null,r=e;null!==r;)n=r.prev,r.prev=t,t=r,r=n;return t}function Gn(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r>=65&&r<=90&&(r|=32),r!==t.charCodeAt(n))return!1}return!0}function Kn(e){return null===e||(e.type===Vn.Comma||e.type===Vn.Function||e.type===Vn.LeftParenthesis||e.type===Vn.LeftSquareBracket||e.type===Vn.LeftCurlyBracket||function(e){return e.type===Vn.Delim&&"?"!==e.value}(e))}function Yn(e){return null===e||(e.type===Vn.RightParenthesis||e.type===Vn.RightSquareBracket||e.type===Vn.RightCurlyBracket||e.type===Vn.Delim)}function Hn(e,t,n){function r(){do{y++,g=y<e.length?e[y]:null}while(null!==g&&(g.type===Vn.WhiteSpace||g.type===Vn.Comment))}function i(t){var n=y+t;return n<e.length?e[n]:null}function o(e,t){return{nextState:e,matchStack:b,syntaxStack:c,thenStack:d,tokenIndex:y,prev:t}}function a(e){d={nextState:e,matchStack:b,syntaxStack:c,prev:d}}function s(e){p=o(e,p)}function l(){b={type:1,syntax:t.syntax,token:g,prev:b},r(),m=null,y>v&&(v=y)}function u(){b=2===b.type?b.prev:{type:3,syntax:c.syntax,token:b.token,prev:b},c=c.prev}var c=null,d=null,p=null,m=null,h=0,f=null,g=null,y=-1,v=0,b={type:0,syntax:null,token:null,prev:null};for(r();null===f&&++h<15e3;)switch(t.type){case"Match":if(null===d){if(null!==g&&(y!==e.length-1||"\\0"!==g.value&&"\\9"!==g.value)){t=Nn;break}f=jn;break}if((t=d.nextState)===Dn){if(d.matchStack===b){t=Nn;break}t=qn}for(;d.syntaxStack!==c;)u();d=d.prev;break;case"Mismatch":if(null!==m&&!1!==m)(null===p||y>p.tokenIndex)&&(p=m,m=!1);else if(null===p){f="Mismatch";break}t=p.nextState,d=p.thenStack,c=p.syntaxStack,b=p.matchStack,y=p.tokenIndex,g=y<e.length?e[y]:null,p=p.prev;break;case"MatchGraph":t=t.match;break;case"If":t.else!==Nn&&s(t.else),t.then!==qn&&a(t.then),t=t.match;break;case"MatchOnce":t={type:"MatchOnceBuffer",syntax:t,index:0,mask:0};break;case"MatchOnceBuffer":var S=t.syntax.terms;if(t.index===S.length){if(0===t.mask||t.syntax.all){t=Nn;break}t=qn;break}if(t.mask===(1<<S.length)-1){t=qn;break}for(;t.index<S.length;t.index++){var x=1<<t.index;if(0==(t.mask&x)){s(t),a({type:"AddMatchOnce",syntax:t.syntax,mask:t.mask|x}),t=S[t.index++];break}}break;case"AddMatchOnce":t={type:"MatchOnceBuffer",syntax:t.syntax,index:0,mask:t.mask};break;case"Enum":if(null!==g)if(-1!==(T=g.value.toLowerCase()).indexOf("\\")&&(T=T.replace(/\\[09].*$/,"")),In.call(t.map,T)){t=t.map[T];break}t=Nn;break;case"Generic":var w=null!==c?c.opts:null,C=y+Math.floor(t.fn(g,i,w));if(!isNaN(C)&&C>y){for(;y<C;)l();t=qn}else t=Nn;break;case"Type":case"Property":var k="Type"===t.type?"types":"properties",O=In.call(n,k)?n[k][t.name]:null;if(!O||!O.match)throw new Error("Bad syntax reference: "+("Type"===t.type?"<"+t.name+">":"<'"+t.name+"'>"));if(!1!==m&&null!==g&&"Type"===t.type)if("custom-ident"===t.name&&g.type===Vn.Ident||"length"===t.name&&"0"===g.value){null===m&&(m=o(t,p)),t=Nn;break}c={syntax:t.syntax,opts:t.syntax.opts||null!==c&&c.opts||null,prev:c},b={type:2,syntax:t.syntax,token:b.token,prev:b},t=O.match;break;case"Keyword":var T=t.name;if(null!==g){var E=g.value;if(-1!==E.indexOf("\\")&&(E=E.replace(/\\[09].*$/,"")),Gn(E,T)){l(),t=qn;break}}t=Nn;break;case"AtKeyword":case"Function":if(null!==g&&Gn(g.value,t.name)){l(),t=qn;break}t=Nn;break;case"Token":if(null!==g&&g.value===t.value){l(),t=qn;break}t=Nn;break;case"Comma":null!==g&&g.type===Vn.Comma?Kn(b.token)?t=Nn:(l(),t=Yn(g)?Nn:qn):t=Kn(b.token)||Yn(g)?qn:Nn;break;case"String":var A="";for(C=y;C<e.length&&A.length<t.value.length;C++)A+=e[C].value;if(Gn(A,t.value)){for(;y<C;)l();t=qn}else t=Nn;break;default:throw new Error("Unknown node type: "+t.type)}switch(h,f){case null:console.warn("[csstree-match] BREAK after 15000 iterations"),f="Maximum iteration number exceeded (please fill an issue on https://github.com/csstree/csstree/issues)",b=null;break;case jn:for(;null!==c;)u();break;default:b=null}return{tokens:e,reason:f,iterations:h,match:b,longestMatch:v}}var $n=function(e,t,n){var r=Hn(e,t,n||{});if(null===r.match)return r;var i=r.match,o=r.match={syntax:t.syntax||null,match:[]},a=[o];for(i=Fn(i).prev;null!==i;){switch(i.type){case 2:o.match.push(o={syntax:i.syntax,match:[]}),a.push(o);break;case 3:a.pop(),o=a[a.length-1];break;default:o.match.push({syntax:i.syntax||null,token:i.token.value,node:i.token.node})}i=i.prev}return r};function Qn(e){function t(e){return null!==e&&("Type"===e.type||"Property"===e.type||"Keyword"===e.type)}var n=null;return null!==this.matched&&function r(i){if(Array.isArray(i.match)){for(var o=0;o<i.match.length;o++)if(r(i.match[o]))return t(i.syntax)&&n.unshift(i.syntax),!0}else if(i.node===e)return n=t(i.syntax)?[i.syntax]:[],!0;return!1}(this.matched),n}function Zn(e,t,n){var r=Qn.call(e,t);return null!==r&&r.some(n)}var Xn={getTrace:Qn,isType:function(e,t){return Zn(this,e,(function(e){return"Type"===e.type&&e.name===t}))},isProperty:function(e,t){return Zn(this,e,(function(e){return"Property"===e.type&&e.name===t}))},isKeyword:function(e){return Zn(this,e,(function(e){return"Keyword"===e.type}))}},Jn=T;function er(e){return"node"in e?e.node:er(e.match[0])}function tr(e){return"node"in e?e.node:tr(e.match[e.match.length-1])}var nr={matchFragments:function(e,t,n,r,i){var o=[];return null!==n.matched&&function n(a){if(null!==a.syntax&&a.syntax.type===r&&a.syntax.name===i){var s=er(a),l=tr(a);e.syntax.walk(t,(function(e,t,n){if(e===s){var r=new Jn;do{if(r.appendData(t.data),t.data===l)break;t=t.next}while(null!==t);o.push({parent:n,nodes:r})}}))}Array.isArray(a.match)&&a.match.forEach(n)}(n.matched),o}},rr=T,ir=Object.prototype.hasOwnProperty;function or(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&e>=0}function ar(e){return Boolean(e)&&or(e.offset)&&or(e.line)&&or(e.column)}function sr(e,t){return function(n,r){if(!n||n.constructor!==Object)return r(n,"Type of node should be an Object");for(var i in n){var o=!0;if(!1!==ir.call(n,i)){if("type"===i)n.type!==e&&r(n,"Wrong node type `"+n.type+"`, expected `"+e+"`");else if("loc"===i){if(null===n.loc)continue;if(n.loc&&n.loc.constructor===Object)if("string"!=typeof n.loc.source)i+=".source";else if(ar(n.loc.start)){if(ar(n.loc.end))continue;i+=".end"}else i+=".start";o=!1}else if(t.hasOwnProperty(i)){var a=0;for(o=!1;!o&&a<t[i].length;a++){var s=t[i][a];switch(s){case String:o="string"==typeof n[i];break;case Boolean:o="boolean"==typeof n[i];break;case null:o=null===n[i];break;default:"string"==typeof s?o=n[i]&&n[i].type===s:Array.isArray(s)&&(o=n[i]instanceof rr)}}}else r(n,"Unknown field `"+i+"` for "+e+" node type");o||r(n,"Bad value for `"+e+"."+i+"`")}}for(var i in t)ir.call(t,i)&&!1===ir.call(n,i)&&r(n,"Field `"+e+"."+i+"` is missed")}}function lr(e,t){var n=t.structure,r={type:String,loc:!0},i={type:'"'+e+'"'};for(var o in n)if(!1!==ir.call(n,o)){for(var a=[],s=r[o]=Array.isArray(n[o])?n[o].slice():[n[o]],l=0;l<s.length;l++){var u=s[l];if(u===String||u===Boolean)a.push(u.name);else if(null===u)a.push("null");else if("string"==typeof u)a.push("<"+u+">");else{if(!Array.isArray(u))throw new Error("Wrong value `"+u+"` in `"+e+"."+o+"` structure definition");a.push("List")}}i[o]=a.join(" | ")}return{docs:i,check:sr(e,r)}}var ur=Oe,cr=Te,dr=Le,pr=Xt,mr=Sn,hr=be,fr=Cn,gr=function(e,t){return"string"==typeof e?En(e,null):t.generate(e,Tn)},yr=Un.buildMatchGraph,vr=$n,br=Xn,Sr=nr,xr=function(e){var t={};if(e.node)for(var n in e.node)if(ir.call(e.node,n)){var r=e.node[n];if(!r.structure)throw new Error("Missed `structure` field in `"+n+"` node type definition");t[n]=lr(n,r)}return t},wr=yr("inherit | initial | unset"),Cr=yr("inherit | initial | unset | <-ms-legacy-expression>");function kr(e,t,n){var r={};for(var i in e)e[i].syntax&&(r[i]=n?e[i].syntax:hr(e[i].syntax,{compact:t}));return r}function Or(e,t,n){const r={};for(const[i,o]of Object.entries(e))r[i]={prelude:o.prelude&&(n?o.prelude.syntax:hr(o.prelude.syntax,{compact:t})),descriptors:o.descriptors&&kr(o.descriptors,t,n)};return r}function Tr(e,t,n){return{matched:e,iterations:n,error:t,getTrace:br.getTrace,isType:br.isType,isProperty:br.isProperty,isKeyword:br.isKeyword}}function Er(e,t,n,r){var i,o=gr(n,e.syntax);return function(e){for(var t=0;t<e.length;t++)if("var("===e[t].value.toLowerCase())return!0;return!1}(o)?Tr(null,new Error("Matching for a tree with var() is not supported")):(r&&(i=vr(o,e.valueCommonSyntax,e)),r&&i.match||(i=vr(o,t.match,e)).match?Tr(i.match,null,i.iterations):Tr(null,new cr(i.reason,t.syntax,n,i),i.iterations))}var Ar=function(e,t,n){if(this.valueCommonSyntax=wr,this.syntax=t,this.generic=!1,this.atrules={},this.properties={},this.types={},this.structure=n||xr(e),e){if(e.types)for(var r in e.types)this.addType_(r,e.types[r]);if(e.generic)for(var r in this.generic=!0,pr)this.addType_(r,pr[r]);if(e.atrules)for(var r in e.atrules)this.addAtrule_(r,e.atrules[r]);if(e.properties)for(var r in e.properties)this.addProperty_(r,e.properties[r])}};Ar.prototype={structure:{},checkStructure:function(e){function t(e,t){r.push({node:e,message:t})}var n=this.structure,r=[];return this.syntax.walk(e,(function(e){n.hasOwnProperty(e.type)?n[e.type].check(e,t):t(e,"Unknown node type `"+e.type+"`")})),!!r.length&&r},createDescriptor:function(e,t,n,r=null){var i={type:t,name:n},o={type:t,name:n,parent:r,syntax:null,match:null};return"function"==typeof e?o.match=yr(e,i):("string"==typeof e?Object.defineProperty(o,"syntax",{get:function(){return Object.defineProperty(o,"syntax",{value:mr(e)}),o.syntax}}):o.syntax=e,Object.defineProperty(o,"match",{get:function(){return Object.defineProperty(o,"match",{value:yr(o.syntax,i)}),o.match}})),o},addAtrule_:function(e,t){t&&(this.atrules[e]={type:"Atrule",name:e,prelude:t.prelude?this.createDescriptor(t.prelude,"AtrulePrelude",e):null,descriptors:t.descriptors?Object.keys(t.descriptors).reduce(((n,r)=>(n[r]=this.createDescriptor(t.descriptors[r],"AtruleDescriptor",r,e),n)),{}):null})},addProperty_:function(e,t){t&&(this.properties[e]=this.createDescriptor(t,"Property",e))},addType_:function(e,t){t&&(this.types[e]=this.createDescriptor(t,"Type",e),t===pr["-ms-legacy-expression"]&&(this.valueCommonSyntax=Cr))},checkAtruleName:function(e){if(!this.getAtrule(e))return new ur("Unknown at-rule","@"+e)},checkAtrulePrelude:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var r=this.getAtrule(e);return!r.prelude&&t?new SyntaxError("At-rule `@"+e+"` should not contain a prelude"):r.prelude&&!t?new SyntaxError("At-rule `@"+e+"` should contain a prelude"):void 0},checkAtruleDescriptorName:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var r=this.getAtrule(e),i=dr.keyword(t);return r.descriptors?r.descriptors[i.name]||r.descriptors[i.basename]?void 0:new ur("Unknown at-rule descriptor",t):new SyntaxError("At-rule `@"+e+"` has no known descriptors")},checkPropertyName:function(e){return dr.property(e).custom?new Error("Lexer matching doesn't applicable for custom properties"):this.getProperty(e)?void 0:new ur("Unknown property",e)},matchAtrulePrelude:function(e,t){var n=this.checkAtrulePrelude(e,t);return n?Tr(null,n):t?Er(this,this.getAtrule(e).prelude,t,!1):Tr(null,null)},matchAtruleDescriptor:function(e,t,n){var r=this.checkAtruleDescriptorName(e,t);if(r)return Tr(null,r);var i=this.getAtrule(e),o=dr.keyword(t);return Er(this,i.descriptors[o.name]||i.descriptors[o.basename],n,!1)},matchDeclaration:function(e){return"Declaration"!==e.type?Tr(null,new Error("Not a Declaration node")):this.matchProperty(e.property,e.value)},matchProperty:function(e,t){var n=this.checkPropertyName(e);return n?Tr(null,n):Er(this,this.getProperty(e),t,!0)},matchType:function(e,t){var n=this.getType(e);return n?Er(this,n,t,!1):Tr(null,new ur("Unknown type",e))},match:function(e,t){return"string"==typeof e||e&&e.type?("string"!=typeof e&&e.match||(e=this.createDescriptor(e,"Type","anonymous")),Er(this,e,t,!1)):Tr(null,new ur("Bad syntax"))},findValueFragments:function(e,t,n,r){return Sr.matchFragments(this,t,this.matchProperty(e,t),n,r)},findDeclarationValueFragments:function(e,t,n){return Sr.matchFragments(this,e.value,this.matchDeclaration(e),t,n)},findAllFragments:function(e,t,n){var r=[];return this.syntax.walk(e,{visit:"Declaration",enter:function(e){r.push.apply(r,this.findDeclarationValueFragments(e,t,n))}.bind(this)}),r},getAtrule:function(e,t=!0){var n=dr.keyword(e);return(n.vendor&&t?this.atrules[n.name]||this.atrules[n.basename]:this.atrules[n.name])||null},getAtrulePrelude:function(e,t=!0){const n=this.getAtrule(e,t);return n&&n.prelude||null},getAtruleDescriptor:function(e,t){return this.atrules.hasOwnProperty(e)&&this.atrules.declarators&&this.atrules[e].declarators[t]||null},getProperty:function(e,t=!0){var n=dr.property(e);return(n.vendor&&t?this.properties[n.name]||this.properties[n.basename]:this.properties[n.name])||null},getType:function(e){return this.types.hasOwnProperty(e)?this.types[e]:null},validate:function(){function e(r,i,o,a){if(o.hasOwnProperty(i))return o[i];o[i]=!1,null!==a.syntax&&fr(a.syntax,(function(a){if("Type"===a.type||"Property"===a.type){var s="Type"===a.type?r.types:r.properties,l="Type"===a.type?t:n;s.hasOwnProperty(a.name)&&!e(r,a.name,l,s[a.name])||(o[i]=!0)}}),this)}var t={},n={};for(var r in this.types)e(this,r,t,this.types[r]);for(var r in this.properties)e(this,r,n,this.properties[r]);return t=Object.keys(t).filter((function(e){return t[e]})),n=Object.keys(n).filter((function(e){return n[e]})),t.length||n.length?{types:t,properties:n}:null},dump:function(e,t){return{generic:this.generic,types:kr(this.types,!t,e),properties:kr(this.properties,!t,e),atrules:Or(this.atrules,!t,e)}},toString:function(){return JSON.stringify(this.dump())}};var _r=Ar,zr={SyntaxError:en,parse:Sn,generate:be,walk:Cn},Rr=Be,Lr=it.isBOM;var Pr=function(){this.lines=null,this.columns=null,this.linesAndColumnsComputed=!1};Pr.prototype={setSource:function(e,t,n,r){this.source=e,this.startOffset=void 0===t?0:t,this.startLine=void 0===n?1:n,this.startColumn=void 0===r?1:r,this.linesAndColumnsComputed=!1},ensureLinesAndColumnsComputed:function(){this.linesAndColumnsComputed||(!function(e,t){for(var n=t.length,r=Rr(e.lines,n),i=e.startLine,o=Rr(e.columns,n),a=e.startColumn,s=t.length>0?Lr(t.charCodeAt(0)):0;s<n;s++){var l=t.charCodeAt(s);r[s]=i,o[s]=a++,10!==l&&13!==l&&12!==l||(13===l&&s+1<n&&10===t.charCodeAt(s+1)&&(r[++s]=i,o[s]=a),i++,a=1)}r[s]=i,o[s]=a,e.lines=r,e.columns=o}(this,this.source),this.linesAndColumnsComputed=!0)},getLocation:function(e,t){return this.ensureLinesAndColumnsComputed(),{source:t,offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]}},getLocationRange:function(e,t,n){return this.ensureLinesAndColumnsComputed(),{source:n,start:{offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]},end:{offset:this.startOffset+t,line:this.lines[t],column:this.columns[t]}}}};var Br=Pr,Wr=it.TYPE,Mr=Wr.WhiteSpace,Ur=Wr.Comment,Ir=Br,qr=R,Nr=ge,Dr=T,Vr=it,jr=B,{findWhiteSpaceStart:Fr,cmpStr:Gr}=ae,Kr=function(e){var t=this.createList(),n=null,r={recognizer:e,space:null,ignoreWS:!1,ignoreWSAfter:!1};for(this.scanner.skipSC();!this.scanner.eof;){switch(this.scanner.tokenType){case Ur:this.scanner.next();continue;case Mr:r.ignoreWS?this.scanner.next():r.space=this.WhiteSpace();continue}if(void 0===(n=e.getNode.call(this,r)))break;null!==r.space&&(t.push(r.space),r.space=null),t.push(n),r.ignoreWSAfter?(r.ignoreWSAfter=!1,r.ignoreWS=!0):r.ignoreWS=!1}return t},Yr=function(){},Hr=jr.TYPE,$r=jr.NAME,Qr=Hr.WhiteSpace,Zr=Hr.Comment,Xr=Hr.Ident,Jr=Hr.Function,ei=Hr.Url,ti=Hr.Hash,ni=Hr.Percentage,ri=Hr.Number;function ii(e){return function(){return this[e]()}}var oi={},ai={},si={},li="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");si.encode=function(e){if(0<=e&&e<li.length)return li[e];throw new TypeError("Must be between 0 and 63: "+e)},si.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1};var ui=si;ai.encode=function(e){var t,n="",r=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&r,(r>>>=5)>0&&(t|=32),n+=ui.encode(t)}while(r>0);return n},ai.decode=function(e,t,n){var r,i,o,a,s=e.length,l=0,u=0;do{if(t>=s)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(i=ui.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));r=!!(32&i),l+=(i&=31)<<u,u+=5}while(r);n.value=(a=(o=l)>>1,1==(1&o)?-a:a),n.rest=t};var ci={};!function(e){e.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var t=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,n=/^data:.+\,.+$/;function r(e){var n=e.match(t);return n?{scheme:n[1],auth:n[2],host:n[3],port:n[4],path:n[5]}:null}function i(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function o(t){var n=t,o=r(t);if(o){if(!o.path)return t;n=o.path}for(var a,s=e.isAbsolute(n),l=n.split(/\/+/),u=0,c=l.length-1;c>=0;c--)"."===(a=l[c])?l.splice(c,1):".."===a?u++:u>0&&(""===a?(l.splice(c+1,u),u=0):(l.splice(c,2),u--));return""===(n=l.join("/"))&&(n=s?"/":"."),o?(o.path=n,i(o)):n}function a(e,t){""===e&&(e="."),""===t&&(t=".");var a=r(t),s=r(e);if(s&&(e=s.path||"/"),a&&!a.scheme)return s&&(a.scheme=s.scheme),i(a);if(a||t.match(n))return t;if(s&&!s.host&&!s.path)return s.host=t,i(s);var l="/"===t.charAt(0)?t:o(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,i(s)):l}e.urlParse=r,e.urlGenerate=i,e.normalize=o,e.join=a,e.isAbsolute=function(e){return"/"===e.charAt(0)||t.test(e)},e.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var s=!("__proto__"in Object.create(null));function l(e){return e}function u(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function c(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}e.toSetString=s?l:function(e){return u(e)?"$"+e:e},e.fromSetString=s?l:function(e){return u(e)?e.slice(1):e},e.compareByOriginalPositions=function(e,t,n){var r=c(e.source,t.source);return 0!==r||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)||n||0!==(r=e.generatedColumn-t.generatedColumn)||0!==(r=e.generatedLine-t.generatedLine)?r:c(e.name,t.name)},e.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!==(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=c(e.source,t.source))||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)?r:c(e.name,t.name)},e.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!==(n=e.generatedColumn-t.generatedColumn)||0!==(n=c(e.source,t.source))||0!==(n=e.originalLine-t.originalLine)||0!==(n=e.originalColumn-t.originalColumn)?n:c(e.name,t.name)},e.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},e.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var s=r(n);if(!s)throw new Error("sourceMapURL could not be parsed");if(s.path){var l=s.path.lastIndexOf("/");l>=0&&(s.path=s.path.substring(0,l+1))}t=a(i(s),t)}return o(t)}}(ci);var di={},pi=ci,mi=Object.prototype.hasOwnProperty,hi="undefined"!=typeof Map;function fi(){this._array=[],this._set=hi?new Map:Object.create(null)}fi.fromArray=function(e,t){for(var n=new fi,r=0,i=e.length;r<i;r++)n.add(e[r],t);return n},fi.prototype.size=function(){return hi?this._set.size:Object.getOwnPropertyNames(this._set).length},fi.prototype.add=function(e,t){var n=hi?e:pi.toSetString(e),r=hi?this.has(e):mi.call(this._set,n),i=this._array.length;r&&!t||this._array.push(e),r||(hi?this._set.set(e,i):this._set[n]=i)},fi.prototype.has=function(e){if(hi)return this._set.has(e);var t=pi.toSetString(e);return mi.call(this._set,t)},fi.prototype.indexOf=function(e){if(hi){var t=this._set.get(e);if(t>=0)return t}else{var n=pi.toSetString(e);if(mi.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},fi.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},fi.prototype.toArray=function(){return this._array.slice()},di.ArraySet=fi;var gi={},yi=ci;function vi(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}vi.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},vi.prototype.add=function(e){var t,n,r,i,o,a;t=this._last,n=e,r=t.generatedLine,i=n.generatedLine,o=t.generatedColumn,a=n.generatedColumn,i>r||i==r&&a>=o||yi.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},vi.prototype.toArray=function(){return this._sorted||(this._array.sort(yi.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},gi.MappingList=vi;var bi=ai,Si=ci,xi=di.ArraySet,wi=gi.MappingList;function Ci(e){e||(e={}),this._file=Si.getArg(e,"file",null),this._sourceRoot=Si.getArg(e,"sourceRoot",null),this._skipValidation=Si.getArg(e,"skipValidation",!1),this._sources=new xi,this._names=new xi,this._mappings=new wi,this._sourcesContents=null}Ci.prototype._version=3,Ci.fromSourceMap=function(e){var t=e.sourceRoot,n=new Ci({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=Si.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var i=r;null!==t&&(i=Si.relative(t,r)),n._sources.has(i)||n._sources.add(i);var o=e.sourceContentFor(r);null!=o&&n.setSourceContent(r,o)})),n},Ci.prototype.addMapping=function(e){var t=Si.getArg(e,"generated"),n=Si.getArg(e,"original",null),r=Si.getArg(e,"source",null),i=Si.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,i),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=i&&(i=String(i),this._names.has(i)||this._names.add(i)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:i})},Ci.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=Si.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[Si.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[Si.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},Ci.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var i=this._sourceRoot;null!=i&&(r=Si.relative(i,r));var o=new xi,a=new xi;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var s=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=s.source&&(t.source=s.source,null!=n&&(t.source=Si.join(n,t.source)),null!=i&&(t.source=Si.relative(i,t.source)),t.originalLine=s.line,t.originalColumn=s.column,null!=s.name&&(t.name=s.name))}var l=t.source;null==l||o.has(l)||o.add(l);var u=t.name;null==u||a.has(u)||a.add(u)}),this),this._sources=o,this._names=a,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=Si.join(n,t)),null!=i&&(t=Si.relative(i,t)),this.setSourceContent(t,r))}),this)},Ci.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},Ci.prototype._serializeMappings=function(){for(var e,t,n,r,i=0,o=1,a=0,s=0,l=0,u=0,c="",d=this._mappings.toArray(),p=0,m=d.length;p<m;p++){if(e="",(t=d[p]).generatedLine!==o)for(i=0;t.generatedLine!==o;)e+=";",o++;else if(p>0){if(!Si.compareByGeneratedPositionsInflated(t,d[p-1]))continue;e+=","}e+=bi.encode(t.generatedColumn-i),i=t.generatedColumn,null!=t.source&&(r=this._sources.indexOf(t.source),e+=bi.encode(r-u),u=r,e+=bi.encode(t.originalLine-1-s),s=t.originalLine-1,e+=bi.encode(t.originalColumn-a),a=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=bi.encode(n-l),l=n)),c+=e}return c},Ci.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=Si.relative(t,e));var n=Si.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},Ci.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},Ci.prototype.toString=function(){return JSON.stringify(this.toJSON())},oi.SourceMapGenerator=Ci;var ki=oi.SourceMapGenerator,Oi={Atrule:!0,Selector:!0,Declaration:!0},Ti=function(e){var t=new ki,n=1,r=0,i={line:1,column:0},o={line:0,column:0},a=!1,s={line:1,column:0},l={generated:s},u=e.node;e.node=function(e){if(e.loc&&e.loc.start&&Oi.hasOwnProperty(e.type)){var c=e.loc.start.line,d=e.loc.start.column-1;o.line===c&&o.column===d||(o.line=c,o.column=d,i.line=n,i.column=r,a&&(a=!1,i.line===s.line&&i.column===s.column||t.addMapping(l)),a=!0,t.addMapping({source:e.loc.source,original:o,generated:i}))}u.call(this,e),a&&Oi.hasOwnProperty(e.type)&&(s.line=n,s.column=r)};var c=e.chunk;e.chunk=function(e){for(var t=0;t<e.length;t++)10===e.charCodeAt(t)?(n++,r=0):r++;c(e)};var d=e.result;return e.result=function(){return a&&t.addMapping(l),{css:d(),map:t}},e},Ei=Object.prototype.hasOwnProperty;function Ai(e,t){var n=e.children,r=null;"function"!=typeof t?n.forEach(this.node,this):n.forEach((function(e){null!==r&&t.call(this,r),this.node(e),r=e}),this)}var _i=T,zi=Object.prototype.hasOwnProperty,Ri=function(){};function Li(e){return"function"==typeof e?e:Ri}function Pi(e,t){return function(n,r,i){n.type===t&&e.call(this,n,r,i)}}function Bi(e,t){var n=t.structure,r=[];for(var i in n)if(!1!==zi.call(n,i)){var o=n[i],a={name:i,type:!1,nullable:!1};Array.isArray(n[i])||(o=[n[i]]);for(var s=0;s<o.length;s++){var l=o[s];null===l?a.nullable=!0:"string"==typeof l?a.type="node":Array.isArray(l)&&(a.type="list")}a.type&&r.push(a)}return r.length?{context:t.walkContext,fields:r}:null}function Wi(e,t){var n=e.fields.slice(),r=e.context,i="string"==typeof r;return t&&n.reverse(),function(e,o,a,s){var l;i&&(l=o[r],o[r]=e);for(var u=0;u<n.length;u++){var c=n[u],d=e[c.name];if(!c.nullable||d)if("list"===c.type){if(t?d.reduceRight(s,!1):d.reduce(s,!1))return!0}else if(a(d))return!0}i&&(o[r]=l)}}function Mi(e){return{Atrule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Rule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Declaration:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block,DeclarationList:e.DeclarationList}}}var Ui=T;const Ii=Object.prototype.hasOwnProperty,qi={generic:!0,types:ji,atrules:{prelude:Fi,descriptors:Fi},properties:ji,parseContext:function(e,t){return Object.assign(e,t)},scope:function e(t,n){for(const r in n)Ii.call(n,r)&&(Ni(t[r])?e(t[r],Di(n[r])):t[r]=Di(n[r]));return t},atrule:["parse"],pseudo:["parse"],node:["name","structure","parse","generate","walkContext"]};function Ni(e){return e&&e.constructor===Object}function Di(e){return Ni(e)?Object.assign({},e):e}function Vi(e,t){return"string"==typeof t&&/^\s*\|/.test(t)?"string"==typeof e?e+t:t.replace(/^\s*\|\s*/,""):t||null}function ji(e,t){if("string"==typeof t)return Vi(e,t);const n=Object.assign({},e);for(let r in t)Ii.call(t,r)&&(n[r]=Vi(Ii.call(e,r)?e[r]:void 0,t[r]));return n}function Fi(e,t){const n=ji(e,t);return!Ni(n)||Object.keys(n).length?n:null}function Gi(e,t,n){for(const r in n)if(!1!==Ii.call(n,r))if(!0===n[r])r in t&&Ii.call(t,r)&&(e[r]=Di(t[r]));else if(n[r])if("function"==typeof n[r]){const i=n[r];e[r]=i({},e[r]),e[r]=i(e[r]||{},t[r])}else if(Ni(n[r])){const i={};for(let t in e[r])i[t]=Gi({},e[r][t],n[r]);for(let e in t[r])i[e]=Gi(i[e]||{},t[r][e],n[r]);e[r]=i}else if(Array.isArray(n[r])){const i={},o=n[r].reduce((function(e,t){return e[t]=!0,e}),{});for(const[t,n]of Object.entries(e[r]||{}))i[t]={},n&&Gi(i[t],n,o);for(const e in t[r])Ii.call(t[r],e)&&(i[e]||(i[e]={}),t[r]&&t[r][e]&&Gi(i[e],t[r][e],o));e[r]=i}return e}var Ki=T,Yi=R,Hi=ge,$i=_r,Qi=zr,Zi=it,Xi=function(e){var t={scanner:new Nr,locationMap:new Ir,filename:"<unknown>",needPositions:!1,onParseError:Yr,onParseErrorThrow:!1,parseAtrulePrelude:!0,parseRulePrelude:!0,parseValue:!0,parseCustomProperty:!1,readSequence:Kr,createList:function(){return new Dr},createSingleNodeList:function(e){return(new Dr).appendData(e)},getFirstListNode:function(e){return e&&e.first()},getLastListNode:function(e){return e.last()},parseWithFallback:function(e,t){var n=this.scanner.tokenIndex;try{return e.call(this)}catch(e){if(this.onParseErrorThrow)throw e;var r=t.call(this,n);return this.onParseErrorThrow=!0,this.onParseError(e,r),this.onParseErrorThrow=!1,r}},lookupNonWSType:function(e){do{var t=this.scanner.lookupType(e++);if(t!==Qr)return t}while(0!==t);return 0},eat:function(e){if(this.scanner.tokenType!==e){var t=this.scanner.tokenStart,n=$r[e]+" is expected";switch(e){case Xr:this.scanner.tokenType===Jr||this.scanner.tokenType===ei?(t=this.scanner.tokenEnd-1,n="Identifier is expected but function found"):n="Identifier is expected";break;case ti:this.scanner.isDelim(35)&&(this.scanner.next(),t++,n="Name is expected");break;case ni:this.scanner.tokenType===ri&&(t=this.scanner.tokenEnd,n="Percent sign is expected");break;default:this.scanner.source.charCodeAt(this.scanner.tokenStart)===e&&(t+=1)}this.error(n,t)}this.scanner.next()},consume:function(e){var t=this.scanner.getTokenValue();return this.eat(e),t},consumeFunctionName:function(){var e=this.scanner.source.substring(this.scanner.tokenStart,this.scanner.tokenEnd-1);return this.eat(Jr),e},getLocation:function(e,t){return this.needPositions?this.locationMap.getLocationRange(e,t,this.filename):null},getLocationFromList:function(e){if(this.needPositions){var t=this.getFirstListNode(e),n=this.getLastListNode(e);return this.locationMap.getLocationRange(null!==t?t.loc.start.offset-this.locationMap.startOffset:this.scanner.tokenStart,null!==n?n.loc.end.offset-this.locationMap.startOffset:this.scanner.tokenStart,this.filename)}return null},error:function(e,t){var n=void 0!==t&&t<this.scanner.source.length?this.locationMap.getLocation(t):this.scanner.eof?this.locationMap.getLocation(Fr(this.scanner.source,this.scanner.source.length-1)):this.locationMap.getLocation(this.scanner.tokenStart);throw new qr(e||"Unexpected input",this.scanner.source,n.offset,n.line,n.column)}};for(var n in e=function(e){var t={context:{},scope:{},atrule:{},pseudo:{}};if(e.parseContext)for(var n in e.parseContext)switch(typeof e.parseContext[n]){case"function":t.context[n]=e.parseContext[n];break;case"string":t.context[n]=ii(e.parseContext[n])}if(e.scope)for(var n in e.scope)t.scope[n]=e.scope[n];if(e.atrule)for(var n in e.atrule){var r=e.atrule[n];r.parse&&(t.atrule[n]=r.parse)}if(e.pseudo)for(var n in e.pseudo){var i=e.pseudo[n];i.parse&&(t.pseudo[n]=i.parse)}if(e.node)for(var n in e.node)t[n]=e.node[n].parse;return t}(e||{}))t[n]=e[n];return function(e,n){var r,i=(n=n||{}).context||"default",o=n.onComment;if(Vr(e,t.scanner),t.locationMap.setSource(e,n.offset,n.line,n.column),t.filename=n.filename||"<unknown>",t.needPositions=Boolean(n.positions),t.onParseError="function"==typeof n.onParseError?n.onParseError:Yr,t.onParseErrorThrow=!1,t.parseAtrulePrelude=!("parseAtrulePrelude"in n)||Boolean(n.parseAtrulePrelude),t.parseRulePrelude=!("parseRulePrelude"in n)||Boolean(n.parseRulePrelude),t.parseValue=!("parseValue"in n)||Boolean(n.parseValue),t.parseCustomProperty="parseCustomProperty"in n&&Boolean(n.parseCustomProperty),!t.context.hasOwnProperty(i))throw new Error("Unknown context `"+i+"`");return"function"==typeof o&&t.scanner.forEachToken(((n,r,i)=>{if(n===Zr){const n=t.getLocation(r,i),a=Gr(e,i-2,i,"*/")?e.slice(r+2,i-2):e.slice(r+2,i);o(a,n)}})),r=t.context[i].call(t,n),t.scanner.eof||t.error(),r}},Ji=function(e){function t(e){if(!Ei.call(n,e.type))throw new Error("Unknown node type: "+e.type);n[e.type].call(this,e)}var n={};if(e.node)for(var r in e.node)n[r]=e.node[r].generate;return function(e,n){var r="",i={children:Ai,node:t,chunk:function(e){r+=e},result:function(){return r}};return n&&("function"==typeof n.decorator&&(i=n.decorator(i)),n.sourceMap&&(i=Ti(i))),i.node(e),i.result()}},eo=function(e){return{fromPlainObject:function(t){return e(t,{enter:function(e){e.children&&e.children instanceof _i==!1&&(e.children=(new _i).fromArray(e.children))}}),t},toPlainObject:function(t){return e(t,{leave:function(e){e.children&&e.children instanceof _i&&(e.children=e.children.toArray())}}),t}}},to=function(e){var t=function(e){var t={};for(var n in e.node)if(zi.call(e.node,n)){var r=e.node[n];if(!r.structure)throw new Error("Missed `structure` field in `"+n+"` node type definition");t[n]=Bi(0,r)}return t}(e),n={},r={},i=Symbol("break-walk"),o=Symbol("skip-node");for(var a in t)zi.call(t,a)&&null!==t[a]&&(n[a]=Wi(t[a],!1),r[a]=Wi(t[a],!0));var s=Mi(n),l=Mi(r),u=function(e,a){function u(e,t,n){var r=d.call(h,e,t,n);return r===i||r!==o&&(!(!m.hasOwnProperty(e.type)||!m[e.type](e,h,u,c))||p.call(h,e,t,n)===i)}var c=(e,t,n,r)=>e||u(t,n,r),d=Ri,p=Ri,m=n,h={break:i,skip:o,root:e,stylesheet:null,atrule:null,atrulePrelude:null,rule:null,selector:null,block:null,declaration:null,function:null};if("function"==typeof a)d=a;else if(a&&(d=Li(a.enter),p=Li(a.leave),a.reverse&&(m=r),a.visit)){if(s.hasOwnProperty(a.visit))m=a.reverse?l[a.visit]:s[a.visit];else if(!t.hasOwnProperty(a.visit))throw new Error("Bad value `"+a.visit+"` for `visit` option (should be: "+Object.keys(t).join(", ")+")");d=Pi(d,a.visit),p=Pi(p,a.visit)}if(d===Ri&&p===Ri)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");u(e)};return u.break=i,u.skip=o,u.find=function(e,t){var n=null;return u(e,(function(e,r,o){if(t.call(this,e,r,o))return n=e,i})),n},u.findLast=function(e,t){var n=null;return u(e,{reverse:!0,enter:function(e,r,o){if(t.call(this,e,r,o))return n=e,i}}),n},u.findAll=function(e,t){var n=[];return u(e,(function(e,r,i){t.call(this,e,r,i)&&n.push(e)})),n},u},no=function e(t){var n={};for(var r in t){var i=t[r];i&&(Array.isArray(i)||i instanceof Ui?i=i.map(e):i.constructor===Object&&(i=e(i))),n[r]=i}return n},ro=Le,io=(e,t)=>Gi(e,t,qi);function oo(e){var t=Xi(e),n=to(e),r=Ji(e),i=eo(n),o={List:Ki,SyntaxError:Yi,TokenStream:Hi,Lexer:$i,vendorPrefix:ro.vendorPrefix,keyword:ro.keyword,property:ro.property,isCustomProperty:ro.isCustomProperty,definitionSyntax:Qi,lexer:null,createLexer:function(e){return new $i(e,o,o.lexer.structure)},tokenize:Zi,parse:t,walk:n,generate:r,find:n.find,findLast:n.findLast,findAll:n.findAll,clone:no,fromPlainObject:i.fromPlainObject,toPlainObject:i.toPlainObject,createSyntax:function(e){return oo(io({},e))},fork:function(t){var n=io({},e);return oo("function"==typeof t?t(n,Object.assign):io(n,t))}};return o.lexer=new $i({generic:!0,types:e.types,atrules:e.atrules,properties:e.properties,node:e.node},o),o}S.create=function(e){return oo(io({},e))};const ao={"@charset":{syntax:'@charset "<charset>";',groups:["CSS Charsets"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@charset"},"@counter-style":{syntax:"@counter-style <counter-style-name> {\n [ system: <counter-system>; ] ||\n [ symbols: <counter-symbols>; ] ||\n [ additive-symbols: <additive-symbols>; ] ||\n [ negative: <negative-symbol>; ] ||\n [ prefix: <prefix>; ] ||\n [ suffix: <suffix>; ] ||\n [ range: <range>; ] ||\n [ pad: <padding>; ] ||\n [ speak-as: <speak-as>; ] ||\n [ fallback: <counter-style-name>; ]\n}",interfaces:["CSSCounterStyleRule"],groups:["CSS Counter Styles"],descriptors:{"additive-symbols":{syntax:"[ <integer> && <symbol> ]#",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},fallback:{syntax:"<counter-style-name>",media:"all",initial:"decimal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},negative:{syntax:"<symbol> <symbol>?",media:"all",initial:'"-" hyphen-minus',percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},pad:{syntax:"<integer> && <symbol>",media:"all",initial:'0 ""',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},prefix:{syntax:"<symbol>",media:"all",initial:'""',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},range:{syntax:"[ [ <integer> | infinite ]{2} ]# | auto",media:"all",initial:"auto",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"speak-as":{syntax:"auto | bullets | numbers | words | spell-out | <counter-style-name>",media:"all",initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},suffix:{syntax:"<symbol>",media:"all",initial:'". "',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},symbols:{syntax:"<symbol>+",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},system:{syntax:"cyclic | numeric | alphabetic | symbolic | additive | [ fixed <integer>? ] | [ extends <counter-style-name> ]",media:"all",initial:"symbolic",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@counter-style"},"@document":{syntax:"@document [ <url> | url-prefix(<string>) | domain(<string>) | media-document(<string>) | regexp(<string>) ]# {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule"],groups:["CSS Conditional Rules"],status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@document"},"@font-face":{syntax:"@font-face {\n [ font-family: <family-name>; ] ||\n [ src: <src>; ] ||\n [ unicode-range: <unicode-range>; ] ||\n [ font-variant: <font-variant>; ] ||\n [ font-feature-settings: <font-feature-settings>; ] ||\n [ font-variation-settings: <font-variation-settings>; ] ||\n [ font-stretch: <font-stretch>; ] ||\n [ font-weight: <font-weight>; ] ||\n [ font-style: <font-style>; ]\n}",interfaces:["CSSFontFaceRule"],groups:["CSS Fonts"],descriptors:{"font-display":{syntax:"[ auto | block | swap | fallback | optional ]",media:"visual",percentages:"no",initial:"auto",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"font-family":{syntax:"<family-name>",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-feature-settings":{syntax:"normal | <feature-tag-value>#",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"font-variation-settings":{syntax:"normal | [ <string> <number> ]#",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"font-stretch":{syntax:"<font-stretch-absolute>{1,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-style":{syntax:"normal | italic | oblique <angle>{0,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-weight":{syntax:"<font-weight-absolute>{1,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-variant":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic(<feature-value-name>) || historical-forms || styleset(<feature-value-name>#) || character-variant(<feature-value-name>#) || swash(<feature-value-name>) || ornaments(<feature-value-name>) || annotation(<feature-value-name>) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},src:{syntax:"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"unicode-range":{syntax:"<unicode-range>#",media:"all",initial:"U+0-10FFFF",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@font-face"},"@font-feature-values":{syntax:"@font-feature-values <family-name># {\n <feature-value-block-list>\n}",interfaces:["CSSFontFeatureValuesRule"],groups:["CSS Fonts"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@font-feature-values"},"@import":{syntax:"@import [ <string> | <url> ] [ <media-query-list> ]?;",groups:["Media Queries"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@import"},"@keyframes":{syntax:"@keyframes <keyframes-name> {\n <keyframe-block-list>\n}",interfaces:["CSSKeyframeRule","CSSKeyframesRule"],groups:["CSS Animations"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@keyframes"},"@media":{syntax:"@media <media-query-list> {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule","CSSMediaRule","CSSCustomMediaRule"],groups:["CSS Conditional Rules","Media Queries"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@media"},"@namespace":{syntax:"@namespace <namespace-prefix>? [ <string> | <url> ];",groups:["CSS Namespaces"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@namespace"},"@page":{syntax:"@page <page-selector-list> {\n <page-body>\n}",interfaces:["CSSPageRule"],groups:["CSS Pages"],descriptors:{bleed:{syntax:"auto | <length>",media:["visual","paged"],initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},marks:{syntax:"none | [ crop || cross ]",media:["visual","paged"],initial:"none",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},size:{syntax:"<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]",media:["visual","paged"],initial:"auto",percentages:"no",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"orderOfAppearance",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@page"},"@property":{syntax:"@property <custom-property-name> {\n <declaration-list>\n}",interfaces:["CSS","CSSPropertyRule"],groups:["CSS Houdini"],descriptors:{syntax:{syntax:"<string>",media:"all",percentages:"no",initial:"n/a (required)",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},inherits:{syntax:"true | false",media:"all",percentages:"no",initial:"auto",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"initial-value":{syntax:"<string>",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"experimental"}},status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@property"},"@supports":{syntax:"@supports <supports-condition> {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule","CSSSupportsRule"],groups:["CSS Conditional Rules"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@supports"},"@viewport":{syntax:"@viewport {\n <group-rule-body>\n}",interfaces:["CSSViewportRule"],groups:["CSS Device Adaptation"],descriptors:{height:{syntax:"<viewport-length>{1,2}",media:["visual","continuous"],initial:["min-height","max-height"],percentages:["min-height","max-height"],computed:["min-height","max-height"],order:"orderOfAppearance",status:"standard"},"max-height":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToHeightOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"max-width":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToWidthOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"max-zoom":{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"},"min-height":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToHeightOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"min-width":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToWidthOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"min-zoom":{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"},orientation:{syntax:"auto | portrait | landscape",media:["visual","continuous"],initial:"auto",percentages:"referToSizeOfBoundingBox",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"user-zoom":{syntax:"zoom | fixed",media:["visual","continuous"],initial:"zoom",percentages:"referToSizeOfBoundingBox",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"viewport-fit":{syntax:"auto | contain | cover",media:["visual","continuous"],initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},width:{syntax:"<viewport-length>{1,2}",media:["visual","continuous"],initial:["min-width","max-width"],percentages:["min-width","max-width"],computed:["min-width","max-width"],order:"orderOfAppearance",status:"standard"},zoom:{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@viewport"}},so={"--*":{syntax:"<declaration-value>",media:"all",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Variables"],initial:"seeProse",appliesto:"allElements",computed:"asSpecifiedWithVarsSubstituted",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/--*"},"-ms-accelerator":{syntax:"false | true",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"false",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator"},"-ms-block-progression":{syntax:"tb | rl | bt | lr",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"tb",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression"},"-ms-content-zoom-chaining":{syntax:"none | chained",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining"},"-ms-content-zooming":{syntax:"none | zoom",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"zoomForTheTopLevelNoneForTheRest",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming"},"-ms-content-zoom-limit":{syntax:"<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],groups:["Microsoft Extensions"],initial:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit"},"-ms-content-zoom-limit-max":{syntax:"<percentage>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"maxZoomFactor",groups:["Microsoft Extensions"],initial:"400%",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max"},"-ms-content-zoom-limit-min":{syntax:"<percentage>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"minZoomFactor",groups:["Microsoft Extensions"],initial:"100%",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min"},"-ms-content-zoom-snap":{syntax:"<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap"},"-ms-content-zoom-snap-points":{syntax:"snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0%, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points"},"-ms-content-zoom-snap-type":{syntax:"none | proximity | mandatory",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type"},"-ms-filter":{syntax:"<string>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:'""',appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-filter"},"-ms-flow-from":{syntax:"[ none | <custom-ident> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from"},"-ms-flow-into":{syntax:"[ none | <custom-ident> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"iframeElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into"},"-ms-grid-columns":{syntax:"none | <track-list> | <auto-track-list>",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-columns"},"-ms-grid-rows":{syntax:"none | <track-list> | <auto-track-list>",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-rows"},"-ms-high-contrast-adjust":{syntax:"auto | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust"},"-ms-hyphenate-limit-chars":{syntax:"auto | <integer>{1,3}",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars"},"-ms-hyphenate-limit-lines":{syntax:"no-limit | <integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"no-limit",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines"},"-ms-hyphenate-limit-zone":{syntax:"<percentage> | <length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"referToLineBoxWidth",groups:["Microsoft Extensions"],initial:"0",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone"},"-ms-ime-align":{syntax:"auto | after",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align"},"-ms-overflow-style":{syntax:"auto | none | scrollbar | -ms-autohiding-scrollbar",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style"},"-ms-scrollbar-3dlight-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color"},"-ms-scrollbar-arrow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ButtonText",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color"},"-ms-scrollbar-base-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color"},"-ms-scrollbar-darkshadow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDDarkShadow",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color"},"-ms-scrollbar-face-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDFace",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color"},"-ms-scrollbar-highlight-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDHighlight",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color"},"-ms-scrollbar-shadow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDDarkShadow",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color"},"-ms-scrollbar-track-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"Scrollbar",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color"},"-ms-scroll-chaining":{syntax:"chained | none",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"chained",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining"},"-ms-scroll-limit":{syntax:"<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit"},"-ms-scroll-limit-x-max":{syntax:"auto | <length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max"},"-ms-scroll-limit-x-min":{syntax:"<length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min"},"-ms-scroll-limit-y-max":{syntax:"auto | <length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max"},"-ms-scroll-limit-y-min":{syntax:"<length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min"},"-ms-scroll-rails":{syntax:"none | railed",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"railed",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails"},"-ms-scroll-snap-points-x":{syntax:"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0px, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x"},"-ms-scroll-snap-points-y":{syntax:"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0px, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y"},"-ms-scroll-snap-type":{syntax:"none | proximity | mandatory",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type"},"-ms-scroll-snap-x":{syntax:"<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x"},"-ms-scroll-snap-y":{syntax:"<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y"},"-ms-scroll-translation":{syntax:"none | vertical-to-horizontal",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation"},"-ms-text-autospace":{syntax:"none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace"},"-ms-touch-select":{syntax:"grippers | none",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"grippers",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select"},"-ms-user-select":{syntax:"none | element | text",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"text",appliesto:"nonReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-user-select"},"-ms-wrap-flow":{syntax:"auto | both | start | end | maximum | clear",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow"},"-ms-wrap-margin":{syntax:"<length>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"exclusionElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin"},"-ms-wrap-through":{syntax:"wrap | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"wrap",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through"},"-moz-appearance":{syntax:"none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"noneButOverriddenInUserAgentCSS",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-moz-binding":{syntax:"<url> | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElementsExceptGeneratedContentOrPseudoElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-binding"},"-moz-border-bottom-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-bottom-colors"},"-moz-border-left-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-left-colors"},"-moz-border-right-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-right-colors"},"-moz-border-top-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-top-colors"},"-moz-context-properties":{syntax:"none | [ fill | fill-opacity | stroke | stroke-opacity ]#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElementsThatCanReferenceImages",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties"},"-moz-float-edge":{syntax:"border-box | content-box | margin-box | padding-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"content-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-float-edge"},"-moz-force-broken-image-icon":{syntax:"<integer [0,1]>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"0",appliesto:"images",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-force-broken-image-icon"},"-moz-image-region":{syntax:"<shape> | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"auto",appliesto:"xulImageElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-image-region"},"-moz-orient":{syntax:"inline | block | horizontal | vertical",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"inline",appliesto:"anyElementEffectOnProgressAndMeter",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-orient"},"-moz-outline-radius":{syntax:"<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?",media:"visual",inherited:!1,animationType:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],percentages:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],groups:["Mozilla Extensions"],initial:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],appliesto:"allElements",computed:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius"},"-moz-outline-radius-bottomleft":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft"},"-moz-outline-radius-bottomright":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright"},"-moz-outline-radius-topleft":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft"},"-moz-outline-radius-topright":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright"},"-moz-stack-sizing":{syntax:"ignore | stretch-to-fit",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"stretch-to-fit",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-stack-sizing"},"-moz-text-blink":{syntax:"none | blink",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-text-blink"},"-moz-user-focus":{syntax:"ignore | normal | select-after | select-before | select-menu | select-same | select-all | none",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-focus"},"-moz-user-input":{syntax:"auto | none | enabled | disabled",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-input"},"-moz-user-modify":{syntax:"read-only | read-write | write-only",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"read-only",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-modify"},"-moz-window-dragging":{syntax:"drag | no-drag",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"drag",appliesto:"allElementsCreatingNativeWindows",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-window-dragging"},"-moz-window-shadow":{syntax:"default | menu | tooltip | sheet | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"default",appliesto:"allElementsCreatingNativeWindows",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-window-shadow"},"-webkit-appearance":{syntax:"none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"noneButOverriddenInUserAgentCSS",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-webkit-border-before":{syntax:"<'border-width'> || <'border-style'> || <'color'>",media:"visual",inherited:!0,animationType:"discrete",percentages:["-webkit-border-before-width"],groups:["WebKit Extensions"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","color"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before"},"-webkit-border-before-color":{syntax:"<'color'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard"},"-webkit-border-before-style":{syntax:"<'border-style'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard"},"-webkit-border-before-width":{syntax:"<'border-width'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["WebKit Extensions"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"nonstandard"},"-webkit-box-reflect":{syntax:"[ above | below | right | left ]? <length>? <image>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect"},"-webkit-line-clamp":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["WebKit Extensions","CSS Overflow"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp"},"-webkit-mask":{syntax:"[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],appliesto:"allElements",computed:["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask"},"-webkit-mask-attachment":{syntax:"<attachment>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"scroll",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment"},"-webkit-mask-clip":{syntax:"[ <box> | border | padding | content | text ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"border",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"-webkit-mask-composite":{syntax:"<composite-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"source-over",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite"},"-webkit-mask-image":{syntax:"<mask-reference>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"absoluteURIOrNone",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"-webkit-mask-origin":{syntax:"[ <box> | border | padding | content ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"padding",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"-webkit-mask-position":{syntax:"<position>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0% 0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"-webkit-mask-position-x":{syntax:"[ <length-percentage> | left | center | right ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x"},"-webkit-mask-position-y":{syntax:"[ <length-percentage> | top | center | bottom ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y"},"-webkit-mask-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"-webkit-mask-repeat-x":{syntax:"repeat | no-repeat | space | round",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x"},"-webkit-mask-repeat-y":{syntax:"repeat | no-repeat | space | round",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y"},"-webkit-mask-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"relativeToBackgroundPositioningArea",groups:["WebKit Extensions"],initial:"auto auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"-webkit-overflow-scrolling":{syntax:"auto | touch",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling"},"-webkit-tap-highlight-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"black",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color"},"-webkit-text-fill-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color"},"-webkit-text-stroke":{syntax:"<length> || <color>",media:"visual",inherited:!0,animationType:["-webkit-text-stroke-width","-webkit-text-stroke-color"],percentages:"no",groups:["WebKit Extensions"],initial:["-webkit-text-stroke-width","-webkit-text-stroke-color"],appliesto:"allElements",computed:["-webkit-text-stroke-width","-webkit-text-stroke-color"],order:"canonicalOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke"},"-webkit-text-stroke-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color"},"-webkit-text-stroke-width":{syntax:"<length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"0",appliesto:"allElements",computed:"absoluteLength",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width"},"-webkit-touch-callout":{syntax:"default | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"default",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout"},"-webkit-user-modify":{syntax:"read-only | read-write | read-write-plaintext-only",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"read-only",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard"},"align-content":{syntax:"normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multilineFlexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-content"},"align-items":{syntax:"normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-items"},"align-self":{syntax:"auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"auto",appliesto:"flexItemsGridItemsAndAbsolutelyPositionedBoxes",computed:"autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-self"},"align-tracks":{syntax:"[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"normal",appliesto:"gridContainersWithMasonryLayoutInTheirBlockAxis",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-tracks"},all:{syntax:"initial | inherit | unset | revert",media:"noPracticalMedia",inherited:!1,animationType:"eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection",percentages:"no",groups:["CSS Miscellaneous"],initial:"noPracticalInitialValue",appliesto:"allElements",computed:"asSpecifiedAppliesToEachProperty",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/all"},animation:{syntax:"<single-animation>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:["animation-name","animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state"],appliesto:"allElementsAndPseudos",computed:["animation-name","animation-duration","animation-timing-function","animation-delay","animation-direction","animation-iteration-count","animation-fill-mode","animation-play-state"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation"},"animation-delay":{syntax:"<time>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-delay"},"animation-direction":{syntax:"<single-animation-direction>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"normal",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-direction"},"animation-duration":{syntax:"<time>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-duration"},"animation-fill-mode":{syntax:"<single-animation-fill-mode>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"none",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode"},"animation-iteration-count":{syntax:"<single-animation-iteration-count>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"1",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count"},"animation-name":{syntax:"[ none | <keyframes-name> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"none",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-name"},"animation-play-state":{syntax:"<single-animation-play-state>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"running",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-play-state"},"animation-timing-function":{syntax:"<timing-function>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"ease",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-timing-function"},appearance:{syntax:"none | auto | textfield | menulist-button | <compat-auto>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"aspect-ratio":{syntax:"auto | <ratio>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes",computed:"asSpecified",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/aspect-ratio"},azimuth:{syntax:"<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards",media:"aural",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Speech"],initial:"center",appliesto:"allElements",computed:"normalizedAngle",order:"orderOfAppearance",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/azimuth"},"backdrop-filter":{syntax:"none | <filter-function-list>",media:"visual",inherited:!1,animationType:"filterList",percentages:"no",groups:["Filter Effects"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/backdrop-filter"},"backface-visibility":{syntax:"visible | hidden",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"visible",appliesto:"transformableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/backface-visibility"},background:{syntax:"[ <bg-layer> , ]* <final-bg-layer>",media:"visual",inherited:!1,animationType:["background-color","background-image","background-clip","background-position","background-size","background-repeat","background-attachment"],percentages:["background-position","background-size"],groups:["CSS Backgrounds and Borders"],initial:["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],appliesto:"allElements",computed:["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background"},"background-attachment":{syntax:"<attachment>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"scroll",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-attachment"},"background-blend-mode":{syntax:"<blend-mode>#",media:"none",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"normal",appliesto:"allElementsSVGContainerGraphicsAndGraphicsReferencingElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-blend-mode"},"background-clip":{syntax:"<box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"border-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-clip"},"background-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"transparent",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-color"},"background-image":{syntax:"<bg-image>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-image"},"background-origin":{syntax:"<box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"padding-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-origin"},"background-position":{syntax:"<bg-position>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize",groups:["CSS Backgrounds and Borders"],initial:"0% 0%",appliesto:"allElements",computed:"listEachItemTwoKeywordsOriginOffsets",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position"},"background-position-x":{syntax:"[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToWidthOfBackgroundPositioningAreaMinusBackgroundImageHeight",groups:["CSS Backgrounds and Borders"],initial:"left",appliesto:"allElements",computed:"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position-x"},"background-position-y":{syntax:"[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight",groups:["CSS Backgrounds and Borders"],initial:"top",appliesto:"allElements",computed:"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position-y"},"background-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"repeat",appliesto:"allElements",computed:"listEachItemHasTwoKeywordsOnePerDimension",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-repeat"},"background-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"relativeToBackgroundPositioningArea",groups:["CSS Backgrounds and Borders"],initial:"auto auto",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-size"},"block-overflow":{syntax:"clip | ellipsis | <string>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"clip",appliesto:"blockContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"block-size":{syntax:"<'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"sameAsWidthAndHeight",computed:"sameAsWidthAndHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/block-size"},border:{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-color","border-style","border-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-width","border-style","border-color"],appliesto:"allElements",computed:["border-width","border-style","border-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border"},"border-block":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block"},"border-block-color":{syntax:"<'border-top-color'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-color"},"border-block-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-style"},"border-block-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-width"},"border-block-end":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-block-end-color","border-block-end-style","border-block-end-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end"},"border-block-end-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-color"},"border-block-end-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-style"},"border-block-end-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-width"},"border-block-start":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-block-start-color","border-block-start-style","border-block-start-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-block-start-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start"},"border-block-start-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-color"},"border-block-start-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-style"},"border-block-start-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-width"},"border-bottom":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-bottom-color","border-bottom-style","border-bottom-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-bottom-width","border-bottom-style","border-bottom-color"],appliesto:"allElements",computed:["border-bottom-width","border-bottom-style","border-bottom-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom"},"border-bottom-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-color"},"border-bottom-left-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius"},"border-bottom-right-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius"},"border-bottom-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-style"},"border-bottom-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderBottomStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-width"},"border-collapse":{syntax:"collapse | separate",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"separate",appliesto:"tableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-collapse"},"border-color":{syntax:"<color>{1,4}",media:"visual",inherited:!1,animationType:["border-bottom-color","border-left-color","border-right-color","border-top-color"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-color","border-right-color","border-bottom-color","border-left-color"],appliesto:"allElements",computed:["border-bottom-color","border-left-color","border-right-color","border-top-color"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-color"},"border-end-end-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius"},"border-end-start-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius"},"border-image":{syntax:"<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>",media:"visual",inherited:!1,animationType:"discrete",percentages:["border-image-slice","border-image-width"],groups:["CSS Backgrounds and Borders"],initial:["border-image-source","border-image-slice","border-image-width","border-image-outset","border-image-repeat"],appliesto:"allElementsExceptTableElementsWhenCollapse",computed:["border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image"},"border-image-outset":{syntax:"[ <length> | <number> ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-outset"},"border-image-repeat":{syntax:"[ stretch | repeat | round | space ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"stretch",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-repeat"},"border-image-slice":{syntax:"<number-percentage>{1,4} && fill?",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToSizeOfBorderImage",groups:["CSS Backgrounds and Borders"],initial:"100%",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"oneToFourPercentagesOrAbsoluteLengthsPlusFill",order:"percentagesOrLengthsFollowedByFill",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-slice"},"border-image-source":{syntax:"none | <image>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"noneOrImageWithAbsoluteURI",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-source"},"border-image-width":{syntax:"[ <length-percentage> | <number> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToWidthOrHeightOfBorderImageArea",groups:["CSS Backgrounds and Borders"],initial:"1",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-width"},"border-inline":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline"},"border-inline-end":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-inline-end-color","border-inline-end-style","border-inline-end-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-inline-end-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end"},"border-inline-color":{syntax:"<'border-top-color'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-color"},"border-inline-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-style"},"border-inline-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-width"},"border-inline-end-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color"},"border-inline-end-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style"},"border-inline-end-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width"},"border-inline-start":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-inline-start-color","border-inline-start-style","border-inline-start-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-inline-start-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start"},"border-inline-start-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color"},"border-inline-start-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style"},"border-inline-start-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width"},"border-left":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-left-color","border-left-style","border-left-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-left-width","border-left-style","border-left-color"],appliesto:"allElements",computed:["border-left-width","border-left-style","border-left-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left"},"border-left-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-color"},"border-left-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-style"},"border-left-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderLeftStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-width"},"border-radius":{syntax:"<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?",media:"visual",inherited:!1,animationType:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:["border-bottom-left-radius","border-bottom-right-radius","border-top-left-radius","border-top-right-radius"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-radius"},"border-right":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-right-color","border-right-style","border-right-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-right-width","border-right-style","border-right-color"],appliesto:"allElements",computed:["border-right-width","border-right-style","border-right-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right"},"border-right-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-color"},"border-right-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-style"},"border-right-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderRightStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-width"},"border-spacing":{syntax:"<length> <length>?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"0",appliesto:"tableElements",computed:"twoAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-spacing"},"border-start-end-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius"},"border-start-start-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius"},"border-style":{syntax:"<line-style>{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-style","border-right-style","border-bottom-style","border-left-style"],appliesto:"allElements",computed:["border-bottom-style","border-left-style","border-right-style","border-top-style"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-style"},"border-top":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-top-color","border-top-style","border-top-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top"},"border-top-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-color"},"border-top-left-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius"},"border-top-right-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius"},"border-top-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-style"},"border-top-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderTopStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-width"},"border-width":{syntax:"<line-width>{1,4}",media:"visual",inherited:!1,animationType:["border-bottom-width","border-left-width","border-right-width","border-top-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-width","border-right-width","border-bottom-width","border-left-width"],appliesto:"allElements",computed:["border-bottom-width","border-left-width","border-right-width","border-top-width"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-width"},bottom:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToContainingBlockHeight",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/bottom"},"box-align":{syntax:"start | center | end | baseline | stretch",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"stretch",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-align"},"box-decoration-break":{syntax:"slice | clone",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"slice",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-decoration-break"},"box-direction":{syntax:"normal | reverse | inherit",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"normal",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-direction"},"box-flex":{syntax:"<number>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"0",appliesto:"directChildrenOfElementsWithDisplayMozBoxMozInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-flex"},"box-flex-group":{syntax:"<integer>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"1",appliesto:"inFlowChildrenOfBoxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-flex-group"},"box-lines":{syntax:"single | multiple",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"single",appliesto:"boxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-lines"},"box-ordinal-group":{syntax:"<integer>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"1",appliesto:"childrenOfBoxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group"},"box-orient":{syntax:"horizontal | vertical | inline-axis | block-axis | inherit",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"inlineAxisHorizontalInXUL",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-orient"},"box-pack":{syntax:"start | center | end | justify",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"start",appliesto:"elementsWithDisplayMozBoxMozInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-pack"},"box-shadow":{syntax:"none | <shadow>#",media:"visual",inherited:!1,animationType:"shadowList",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"absoluteLengthsSpecifiedColorAsSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-shadow"},"box-sizing":{syntax:"content-box | border-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"content-box",appliesto:"allElementsAcceptingWidthOrHeight",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-sizing"},"break-after":{syntax:"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-after"},"break-before":{syntax:"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-before"},"break-inside":{syntax:"auto | avoid | avoid-page | avoid-column | avoid-region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-inside"},"caption-side":{syntax:"top | bottom | block-start | block-end | inline-start | inline-end",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"top",appliesto:"tableCaptionElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/caption-side"},"caret-color":{syntax:"auto | <color>",media:"interactive",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asAutoOrColor",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/caret-color"},clear:{syntax:"none | left | right | both | inline-start | inline-end",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"none",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clear"},clip:{syntax:"<shape> | auto",media:"visual",inherited:!1,animationType:"rectangle",percentages:"no",groups:["CSS Masking"],initial:"auto",appliesto:"absolutelyPositionedElements",computed:"autoOrRectangle",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clip"},"clip-path":{syntax:"<clip-source> | [ <basic-shape> || <geometry-box> ] | none",media:"visual",inherited:!1,animationType:"basicShapeOtherwiseNo",percentages:"referToReferenceBoxWhenSpecifiedOtherwiseBorderBox",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clip-path"},color:{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Color"],initial:"variesFromBrowserToBrowser",appliesto:"allElements",computed:"translucentValuesRGBAOtherwiseRGB",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/color"},"color-adjust":{syntax:"economy | exact",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Color"],initial:"economy",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/color-adjust"},"column-count":{syntax:"<integer> | auto",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Columns"],initial:"auto",appliesto:"blockContainersExceptTableWrappers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-count"},"column-fill":{syntax:"auto | balance | balance-all",media:"visualInContinuousMediaNoEffectInOverflowColumns",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"balance",appliesto:"multicolElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-fill"},"column-gap":{syntax:"normal | <length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfContentArea",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multiColumnElementsFlexContainersGridContainers",computed:"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"column-rule":{syntax:"<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>",media:"visual",inherited:!1,animationType:["column-rule-color","column-rule-style","column-rule-width"],percentages:"no",groups:["CSS Columns"],initial:["column-rule-width","column-rule-style","column-rule-color"],appliesto:"multicolElements",computed:["column-rule-color","column-rule-style","column-rule-width"],order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule"},"column-rule-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Columns"],initial:"currentcolor",appliesto:"multicolElements",computed:"computedColor",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-color"},"column-rule-style":{syntax:"<'border-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"none",appliesto:"multicolElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-style"},"column-rule-width":{syntax:"<'border-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Columns"],initial:"medium",appliesto:"multicolElements",computed:"absoluteLength0IfColumnRuleStyleNoneOrHidden",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-width"},"column-span":{syntax:"none | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"none",appliesto:"inFlowBlockLevelElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-span"},"column-width":{syntax:"<length> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Columns"],initial:"auto",appliesto:"blockContainersExceptTableWrappers",computed:"absoluteLengthZeroOrLarger",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-width"},columns:{syntax:"<'column-width'> || <'column-count'>",media:"visual",inherited:!1,animationType:["column-width","column-count"],percentages:"no",groups:["CSS Columns"],initial:["column-width","column-count"],appliesto:"blockContainersExceptTableWrappers",computed:["column-width","column-count"],order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/columns"},contain:{syntax:"none | strict | content | [ size || layout || style || paint ]",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Containment"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/contain"},content:{syntax:"normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Generated Content"],initial:"normal",appliesto:"beforeAndAfterPseudos",computed:"normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/content"},"counter-increment":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-increment"},"counter-reset":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-reset"},"counter-set":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-set"},cursor:{syntax:"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]",media:["visual","interactive"],inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/cursor"},direction:{syntax:"ltr | rtl",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"ltr",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/direction"},display:{syntax:"[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Display"],initial:"inline",appliesto:"allElements",computed:"asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/display"},"empty-cells":{syntax:"show | hide",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"show",appliesto:"tableCellElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/empty-cells"},filter:{syntax:"none | <filter-function-list>",media:"visual",inherited:!1,animationType:"filterList",percentages:"no",groups:["Filter Effects"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/filter"},flex:{syntax:"none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",media:"visual",inherited:!1,animationType:["flex-grow","flex-shrink","flex-basis"],percentages:"no",groups:["CSS Flexible Box Layout"],initial:["flex-grow","flex-shrink","flex-basis"],appliesto:"flexItemsAndInFlowPseudos",computed:["flex-grow","flex-shrink","flex-basis"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex"},"flex-basis":{syntax:"content | <'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToFlexContainersInnerMainSize",groups:["CSS Flexible Box Layout"],initial:"auto",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"lengthOrPercentageBeforeKeywordIfBothPresent",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-basis"},"flex-direction":{syntax:"row | row-reverse | column | column-reverse",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"row",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-direction"},"flex-flow":{syntax:"<'flex-direction'> || <'flex-wrap'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:["flex-direction","flex-wrap"],appliesto:"flexContainers",computed:["flex-direction","flex-wrap"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-flow"},"flex-grow":{syntax:"<number>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"0",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-grow"},"flex-shrink":{syntax:"<number>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"1",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-shrink"},"flex-wrap":{syntax:"nowrap | wrap | wrap-reverse",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"nowrap",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-wrap"},float:{syntax:"left | right | none | inline-start | inline-end",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"none",appliesto:"allElementsNoEffectIfDisplayNone",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/float"},font:{syntax:"[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar",media:"visual",inherited:!0,animationType:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],percentages:["font-size","line-height"],groups:["CSS Fonts"],initial:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],appliesto:"allElements",computed:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font"},"font-family":{syntax:"[ <family-name> | <generic-family> ]#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-family"},"font-feature-settings":{syntax:"normal | <feature-tag-value>#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-feature-settings"},"font-kerning":{syntax:"auto | normal | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-kerning"},"font-language-override":{syntax:"normal | <string>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-language-override"},"font-optical-sizing":{syntax:"auto | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing"},"font-variation-settings":{syntax:"normal | [ <string> <number> ]#",media:"visual",inherited:!0,animationType:"transform",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variation-settings"},"font-size":{syntax:"<absolute-size> | <relative-size> | <length-percentage>",media:"visual",inherited:!0,animationType:"length",percentages:"referToParentElementsFontSize",groups:["CSS Fonts"],initial:"medium",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-size"},"font-size-adjust":{syntax:"none | <number>",media:"visual",inherited:!0,animationType:"number",percentages:"no",groups:["CSS Fonts"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-size-adjust"},"font-smooth":{syntax:"auto | never | always | <absolute-size> | <length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-smooth"},"font-stretch":{syntax:"<font-stretch-absolute>",media:"visual",inherited:!0,animationType:"fontStretch",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-stretch"},"font-style":{syntax:"normal | italic | oblique <angle>?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-style"},"font-synthesis":{syntax:"none | [ weight || style ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"weight style",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-synthesis"},"font-variant":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant"},"font-variant-alternates":{syntax:"normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates"},"font-variant-caps":{syntax:"normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-caps"},"font-variant-east-asian":{syntax:"normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian"},"font-variant-ligatures":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures"},"font-variant-numeric":{syntax:"normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric"},"font-variant-position":{syntax:"normal | sub | super",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-position"},"font-weight":{syntax:"<font-weight-absolute> | bolder | lighter",media:"visual",inherited:!0,animationType:"fontWeight",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"keywordOrNumericalValueBolderLighterTransformedToRealValue",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-weight"},gap:{syntax:"<'row-gap'> <'column-gap'>?",media:"visual",inherited:!1,animationType:["row-gap","column-gap"],percentages:"no",groups:["CSS Box Alignment"],initial:["row-gap","column-gap"],appliesto:"multiColumnElementsFlexContainersGridContainers",computed:["row-gap","column-gap"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/gap"},grid:{syntax:"<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>",media:"visual",inherited:!1,animationType:"discrete",percentages:["grid-template-rows","grid-template-columns","grid-auto-rows","grid-auto-columns"],groups:["CSS Grid Layout"],initial:["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],appliesto:"gridContainers",computed:["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid"},"grid-area":{syntax:"<grid-line> [ / <grid-line> ]{0,3}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-area"},"grid-auto-columns":{syntax:"<track-size>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns"},"grid-auto-flow":{syntax:"[ row | column ] || dense",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"row",appliesto:"gridContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow"},"grid-auto-rows":{syntax:"<track-size>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows"},"grid-column":{syntax:"<grid-line> [ / <grid-line> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-column-start","grid-column-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-column-start","grid-column-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column"},"grid-column-end":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column-end"},"grid-column-gap":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"0",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"grid-column-start":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column-start"},"grid-gap":{syntax:"<'grid-row-gap'> <'grid-column-gap'>?",media:"visual",inherited:!1,animationType:["grid-row-gap","grid-column-gap"],percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-gap","grid-column-gap"],appliesto:"gridContainers",computed:["grid-row-gap","grid-column-gap"],order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/gap"},"grid-row":{syntax:"<grid-line> [ / <grid-line> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-start","grid-row-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-row-start","grid-row-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row"},"grid-row-end":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row-end"},"grid-row-gap":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"0",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"grid-row-start":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row-start"},"grid-template":{syntax:"none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:["grid-template-columns","grid-template-rows"],groups:["CSS Grid Layout"],initial:["grid-template-columns","grid-template-rows","grid-template-areas"],appliesto:"gridContainers",computed:["grid-template-columns","grid-template-rows","grid-template-areas"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template"},"grid-template-areas":{syntax:"none | <string>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-areas"},"grid-template-columns":{syntax:"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-columns"},"grid-template-rows":{syntax:"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-rows"},"hanging-punctuation":{syntax:"none | [ first || [ force-end | allow-end ] || last ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation"},height:{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAutoOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/height"},hyphens:{syntax:"none | manual | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"manual",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/hyphens"},"image-orientation":{syntax:"from-image | <angle> | [ <angle>? flip ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"from-image",appliesto:"allElements",computed:"angleRoundedToNextQuarter",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/image-orientation"},"image-rendering":{syntax:"auto | crisp-edges | pixelated",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/image-rendering"},"image-resolution":{syntax:"[ from-image || <resolution> ] && snap?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"1dppx",appliesto:"allElements",computed:"asSpecifiedWithExceptionOfResolution",order:"uniqueOrder",status:"experimental"},"ime-mode":{syntax:"auto | normal | active | inactive | disabled",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"textFields",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ime-mode"},"initial-letter":{syntax:"normal | [ <number> <integer>? ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Inline"],initial:"normal",appliesto:"firstLetterPseudoElementsAndInlineLevelFirstChildren",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/initial-letter"},"initial-letter-align":{syntax:"[ auto | alphabetic | hanging | ideographic ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Inline"],initial:"auto",appliesto:"firstLetterPseudoElementsAndInlineLevelFirstChildren",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/initial-letter-align"},"inline-size":{syntax:"<'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"sameAsWidthAndHeight",computed:"sameAsWidthAndHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inline-size"},inset:{syntax:"<'top'>{1,4}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset"},"inset-block":{syntax:"<'top'>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block"},"inset-block-end":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block-end"},"inset-block-start":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block-start"},"inset-inline":{syntax:"<'top'>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline"},"inset-inline-end":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline-end"},"inset-inline-start":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline-start"},isolation:{syntax:"auto | isolate",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"auto",appliesto:"allElementsSVGContainerGraphicsAndGraphicsReferencingElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/isolation"},"justify-content":{syntax:"normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-content"},"justify-items":{syntax:"normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"legacy",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-items"},"justify-self":{syntax:"auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"auto",appliesto:"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-self"},"justify-tracks":{syntax:"[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"normal",appliesto:"gridContainersWithMasonryLayoutInTheirInlineAxis",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-tracks"},left:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/left"},"letter-spacing":{syntax:"normal | <length>",media:"visual",inherited:!0,animationType:"length",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"optimumValueOfAbsoluteLengthOrNormal",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/letter-spacing"},"line-break":{syntax:"auto | loose | normal | strict | anywhere",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-break"},"line-clamp":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Overflow"],initial:"none",appliesto:"blockContainersExceptMultiColumnContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"line-height":{syntax:"normal | <number> | <length> | <percentage>",media:"visual",inherited:!0,animationType:"numberOrLength",percentages:"referToElementFontSize",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"absoluteLengthOrAsSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-height"},"line-height-step":{syntax:"<length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"0",appliesto:"blockContainers",computed:"absoluteLength",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-height-step"},"list-style":{syntax:"<'list-style-type'> || <'list-style-position'> || <'list-style-image'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:["list-style-type","list-style-position","list-style-image"],appliesto:"listItems",computed:["list-style-image","list-style-position","list-style-type"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style"},"list-style-image":{syntax:"<url> | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"none",appliesto:"listItems",computed:"noneOrImageWithAbsoluteURI",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-image"},"list-style-position":{syntax:"inside | outside",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"outside",appliesto:"listItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-position"},"list-style-type":{syntax:"<counter-style> | <string> | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"disc",appliesto:"listItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-type"},margin:{syntax:"[ <length> | <percentage> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:["margin-bottom","margin-left","margin-right","margin-top"],appliesto:"allElementsExceptTableDisplayTypes",computed:["margin-bottom","margin-left","margin-right","margin-top"],order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin"},"margin-block":{syntax:"<'margin-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block"},"margin-block-end":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block-end"},"margin-block-start":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block-start"},"margin-bottom":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-bottom"},"margin-inline":{syntax:"<'margin-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline"},"margin-inline-end":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline-end"},"margin-inline-start":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline-start"},"margin-left":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-left"},"margin-right":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-right"},"margin-top":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-top"},"margin-trim":{syntax:"none | in-flow | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"none",appliesto:"blockContainersAndMultiColumnContainers",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line"],status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-trim"},mask:{syntax:"<mask-layer>#",media:"visual",inherited:!1,animationType:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],percentages:["mask-position"],groups:["CSS Masking"],initial:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],appliesto:"allElementsSVGContainerElements",computed:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask"},"mask-border":{syntax:"<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>",media:"visual",inherited:!1,animationType:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],percentages:["mask-border-slice","mask-border-width"],groups:["CSS Masking"],initial:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],appliesto:"allElementsSVGContainerElements",computed:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border"},"mask-border-mode":{syntax:"luminance | alpha",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"alpha",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-mode"},"mask-border-outset":{syntax:"[ <length> | <number> ]{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"0",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-outset"},"mask-border-repeat":{syntax:"[ stretch | repeat | round | space ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"stretch",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat"},"mask-border-slice":{syntax:"<number-percentage>{1,4} fill?",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfMaskBorderImage",groups:["CSS Masking"],initial:"0",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-slice"},"mask-border-source":{syntax:"none | <image>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-source"},"mask-border-width":{syntax:"[ <length-percentage> | <number> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"relativeToMaskBorderImageArea",groups:["CSS Masking"],initial:"auto",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-width"},"mask-clip":{syntax:"[ <geometry-box> | no-clip ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"border-box",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"mask-composite":{syntax:"<compositing-operator>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"add",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-composite"},"mask-image":{syntax:"<mask-reference>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"mask-mode":{syntax:"<masking-mode>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"match-source",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-mode"},"mask-origin":{syntax:"<geometry-box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"border-box",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"mask-position":{syntax:"<position>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToSizeOfMaskPaintingArea",groups:["CSS Masking"],initial:"center",appliesto:"allElementsSVGContainerElements",computed:"consistsOfTwoKeywordsForOriginAndOffsets",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"mask-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"no-repeat",appliesto:"allElementsSVGContainerElements",computed:"consistsOfTwoDimensionKeywords",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"mask-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"no",groups:["CSS Masking"],initial:"auto",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"mask-type":{syntax:"luminance | alpha",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"luminance",appliesto:"maskElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-type"},"masonry-auto-flow":{syntax:"[ pack | next ] || [ definite-first | ordered ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"pack",appliesto:"gridContainersWithMasonryLayout",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow"},"math-style":{syntax:"normal | compact",media:"visual",inherited:!0,animationType:"notAnimatable",percentages:"no",groups:["MathML"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/math-style"},"max-block-size":{syntax:"<'max-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMaxWidthAndMaxHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-block-size"},"max-height":{syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentagesNone",groups:["CSS Box Model"],initial:"none",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAsSpecifiedAbsoluteLengthOrNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-height"},"max-inline-size":{syntax:"<'max-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMaxWidthAndMaxHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-inline-size"},"max-lines":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Overflow"],initial:"none",appliesto:"blockContainersExceptMultiColumnContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"max-width":{syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"none",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAsSpecifiedAbsoluteLengthOrNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-width"},"min-block-size":{syntax:"<'min-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMinWidthAndMinHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-block-size"},"min-height":{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentages0",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-height"},"min-inline-size":{syntax:"<'min-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMinWidthAndMinHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-inline-size"},"min-width":{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-width"},"mix-blend-mode":{syntax:"<blend-mode>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode"},"object-fit":{syntax:"fill | contain | cover | none | scale-down",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"fill",appliesto:"replacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/object-fit"},"object-position":{syntax:"<position>",media:"visual",inherited:!0,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToWidthAndHeightOfElement",groups:["CSS Images"],initial:"50% 50%",appliesto:"replacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/object-position"},offset:{syntax:"[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?",media:"visual",inherited:!1,animationType:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],percentages:["offset-position","offset-distance","offset-anchor"],groups:["CSS Motion Path"],initial:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],appliesto:"transformableElements",computed:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset"},"offset-anchor":{syntax:"auto | <position>",media:"visual",inherited:!1,animationType:"position",percentages:"relativeToWidthAndHeight",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"standard"},"offset-distance":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToTotalPathLength",groups:["CSS Motion Path"],initial:"0",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-distance"},"offset-path":{syntax:"none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]",media:"visual",inherited:!1,animationType:"angleOrBasicShapeOrPath",percentages:"no",groups:["CSS Motion Path"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-path"},"offset-position":{syntax:"auto | <position>",media:"visual",inherited:!1,animationType:"position",percentages:"referToSizeOfContainingBlock",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"experimental"},"offset-rotate":{syntax:"[ auto | reverse ] || <angle>",media:"visual",inherited:!1,animationType:"angleOrBasicShapeOrPath",percentages:"no",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-rotate"},opacity:{syntax:"<alpha-value>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Color"],initial:"1.0",appliesto:"allElements",computed:"specifiedValueClipped0To1",order:"uniqueOrder",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/opacity"},order:{syntax:"<integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"0",appliesto:"flexItemsGridItemsAbsolutelyPositionedContainerChildren",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/order"},orphans:{syntax:"<integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"2",appliesto:"blockContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/orphans"},outline:{syntax:"[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]",media:["visual","interactive"],inherited:!1,animationType:["outline-color","outline-width","outline-style"],percentages:"no",groups:["CSS Basic User Interface"],initial:["outline-color","outline-style","outline-width"],appliesto:"allElements",computed:["outline-color","outline-width","outline-style"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline"},"outline-color":{syntax:"<color> | invert",media:["visual","interactive"],inherited:!1,animationType:"color",percentages:"no",groups:["CSS Basic User Interface"],initial:"invertOrCurrentColor",appliesto:"allElements",computed:"invertForTranslucentColorRGBAOtherwiseRGB",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-color"},"outline-offset":{syntax:"<length>",media:["visual","interactive"],inherited:!1,animationType:"length",percentages:"no",groups:["CSS Basic User Interface"],initial:"0",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-offset"},"outline-style":{syntax:"auto | <'border-style'>",media:["visual","interactive"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-style"},"outline-width":{syntax:"<line-width>",media:["visual","interactive"],inherited:!1,animationType:"length",percentages:"no",groups:["CSS Basic User Interface"],initial:"medium",appliesto:"allElements",computed:"absoluteLength0ForNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-width"},overflow:{syntax:"[ visible | hidden | clip | scroll | auto ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:["overflow-x","overflow-y"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow"},"overflow-anchor":{syntax:"auto | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Anchoring"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard"},"overflow-block":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"perGrammar",status:"standard"},"overflow-clip-box":{syntax:"padding-box | content-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"padding-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Mozilla/CSS/overflow-clip-box"},"overflow-inline":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"perGrammar",status:"standard"},"overflow-wrap":{syntax:"normal | break-word | anywhere",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"nonReplacedInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"overflow-x":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-x"},"overflow-y":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-y"},"overscroll-behavior":{syntax:"[ contain | none | auto ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior"},"overscroll-behavior-block":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block"},"overscroll-behavior-inline":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline"},"overscroll-behavior-x":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x"},"overscroll-behavior-y":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y"},padding:{syntax:"[ <length> | <percentage> ]{1,4}",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:["padding-bottom","padding-left","padding-right","padding-top"],appliesto:"allElementsExceptInternalTableDisplayTypes",computed:["padding-bottom","padding-left","padding-right","padding-top"],order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding"},"padding-block":{syntax:"<'padding-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block"},"padding-block-end":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block-end"},"padding-block-start":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block-start"},"padding-bottom":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-bottom"},"padding-inline":{syntax:"<'padding-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline"},"padding-inline-end":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline-end"},"padding-inline-start":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline-start"},"padding-left":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-left"},"padding-right":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-right"},"padding-top":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-top"},"page-break-after":{syntax:"auto | always | avoid | left | right | recto | verso",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-after"},"page-break-before":{syntax:"auto | always | avoid | left | right | recto | verso",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-before"},"page-break-inside":{syntax:"auto | avoid",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-inside"},"paint-order":{syntax:"normal | [ fill || stroke || markers ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"textElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/paint-order"},perspective:{syntax:"none | <length>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"absoluteLengthOrNone",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/perspective"},"perspective-origin":{syntax:"<position>",media:"visual",inherited:!1,animationType:"simpleListOfLpc",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"50% 50%",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"oneOrTwoValuesLengthAbsoluteKeywordsPercentages",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/perspective-origin"},"place-content":{syntax:"<'align-content'> <'justify-content'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multilineFlexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-content"},"place-items":{syntax:"<'align-items'> <'justify-items'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:["align-items","justify-items"],appliesto:"allElements",computed:["align-items","justify-items"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-items"},"place-self":{syntax:"<'align-self'> <'justify-self'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:["align-self","justify-self"],appliesto:"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",computed:["align-self","justify-self"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-self"},"pointer-events":{syntax:"auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Pointer Events"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/pointer-events"},position:{syntax:"static | relative | absolute | sticky | fixed",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"static",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/position"},quotes:{syntax:"none | auto | [ <string> <string> ]+",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Generated Content"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/quotes"},resize:{syntax:"none | both | horizontal | vertical | block | inline",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"none",appliesto:"elementsWithOverflowNotVisibleAndReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/resize"},right:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/right"},rotate:{syntax:"none | <angle> | [ x | y | z | <number>{3} ] && <angle>",media:"visual",inherited:!1,animationType:"transform",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/rotate"},"row-gap":{syntax:"normal | <length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfContentArea",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multiColumnElementsFlexContainersGridContainers",computed:"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"ruby-align":{syntax:"start | center | space-between | space-around",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"space-around",appliesto:"rubyBasesAnnotationsBaseAnnotationContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ruby-align"},"ruby-merge":{syntax:"separate | collapse | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"separate",appliesto:"rubyAnnotationsContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"ruby-position":{syntax:"over | under | inter-character",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"over",appliesto:"rubyAnnotationsContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ruby-position"},scale:{syntax:"none | <number>{1,3}",media:"visual",inherited:!1,animationType:"transform",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scale"},"scrollbar-color":{syntax:"auto | dark | light | <color>{2}",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Scrollbars"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-color"},"scrollbar-gutter":{syntax:"auto | [ stable | always ] && both? && force?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter"},"scrollbar-width":{syntax:"auto | thin | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scrollbars"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-width"},"scroll-behavior":{syntax:"auto | smooth",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSSOM View"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-behavior"},"scroll-margin":{syntax:"<length>{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin"},"scroll-margin-block":{syntax:"<length>{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block"},"scroll-margin-block-start":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start"},"scroll-margin-block-end":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end"},"scroll-margin-bottom":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom"},"scroll-margin-inline":{syntax:"<length>{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline"},"scroll-margin-inline-start":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start"},"scroll-margin-inline-end":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end"},"scroll-margin-left":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left"},"scroll-margin-right":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right"},"scroll-margin-top":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top"},"scroll-padding":{syntax:"[ auto | <length-percentage> ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding"},"scroll-padding-block":{syntax:"[ auto | <length-percentage> ]{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block"},"scroll-padding-block-start":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start"},"scroll-padding-block-end":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end"},"scroll-padding-bottom":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom"},"scroll-padding-inline":{syntax:"[ auto | <length-percentage> ]{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline"},"scroll-padding-inline-start":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start"},"scroll-padding-inline-end":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end"},"scroll-padding-left":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left"},"scroll-padding-right":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right"},"scroll-padding-top":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top"},"scroll-snap-align":{syntax:"[ none | start | end | center ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align"},"scroll-snap-coordinate":{syntax:"none | <position>#",media:"interactive",inherited:!1,animationType:"position",percentages:"referToBorderBox",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate"},"scroll-snap-destination":{syntax:"<position>",media:"interactive",inherited:!1,animationType:"position",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"0px 0px",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination"},"scroll-snap-points-x":{syntax:"none | repeat( <length-percentage> )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x"},"scroll-snap-points-y":{syntax:"none | repeat( <length-percentage> )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y"},"scroll-snap-stop":{syntax:"normal | always",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop"},"scroll-snap-type":{syntax:"none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type"},"scroll-snap-type-x":{syntax:"none | mandatory | proximity",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x"},"scroll-snap-type-y":{syntax:"none | mandatory | proximity",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"},"shape-image-threshold":{syntax:"<alpha-value>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Shapes"],initial:"0.0",appliesto:"floats",computed:"specifiedValueNumberClipped0To1",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold"},"shape-margin":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Shapes"],initial:"0",appliesto:"floats",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-margin"},"shape-outside":{syntax:"none | <shape-box> || <basic-shape> | <image>",media:"visual",inherited:!1,animationType:"basicShapeOtherwiseNo",percentages:"no",groups:["CSS Shapes"],initial:"none",appliesto:"floats",computed:"asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-outside"},"tab-size":{syntax:"<integer> | <length>",media:"visual",inherited:!0,animationType:"length",percentages:"no",groups:["CSS Text"],initial:"8",appliesto:"blockContainers",computed:"specifiedIntegerOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/tab-size"},"table-layout":{syntax:"auto | fixed",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"auto",appliesto:"tableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/table-layout"},"text-align":{syntax:"start | end | left | right | center | justify | match-parent",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"startOrNamelessValueIfLTRRightIfRTL",appliesto:"blockContainers",computed:"asSpecifiedExceptMatchParent",order:"orderOfAppearance",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-align"},"text-align-last":{syntax:"auto | start | end | left | right | center | justify",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"blockContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-align-last"},"text-combine-upright":{syntax:"none | all | [ digits <integer>? ]",media:"visual",inherited:!0,animationType:"notAnimatable",percentages:"no",groups:["CSS Writing Modes"],initial:"none",appliesto:"nonReplacedInlineElements",computed:"keywordPlusIntegerIfDigits",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-combine-upright"},"text-decoration":{syntax:"<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>",media:"visual",inherited:!1,animationType:["text-decoration-color","text-decoration-style","text-decoration-line","text-decoration-thickness"],percentages:"no",groups:["CSS Text Decoration"],initial:["text-decoration-color","text-decoration-style","text-decoration-line"],appliesto:"allElements",computed:["text-decoration-line","text-decoration-style","text-decoration-color","text-decoration-thickness"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration"},"text-decoration-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Text Decoration"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-color"},"text-decoration-line":{syntax:"none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-line"},"text-decoration-skip":{syntax:"none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"objects",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip"},"text-decoration-skip-ink":{syntax:"auto | all | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink"},"text-decoration-style":{syntax:"solid | double | dotted | dashed | wavy",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"solid",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-style"},"text-decoration-thickness":{syntax:"auto | from-font | <length> | <percentage> ",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToElementFontSize",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness"},"text-emphasis":{syntax:"<'text-emphasis-style'> || <'text-emphasis-color'>",media:"visual",inherited:!1,animationType:["text-emphasis-color","text-emphasis-style"],percentages:"no",groups:["CSS Text Decoration"],initial:["text-emphasis-style","text-emphasis-color"],appliesto:"allElements",computed:["text-emphasis-style","text-emphasis-color"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis"},"text-emphasis-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Text Decoration"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color"},"text-emphasis-position":{syntax:"[ over | under ] && [ right | left ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"over right",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position"},"text-emphasis-style":{syntax:"none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style"},"text-indent":{syntax:"<length-percentage> && hanging? && each-line?",media:"visual",inherited:!0,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Text"],initial:"0",appliesto:"blockContainers",computed:"percentageOrAbsoluteLengthPlusKeywords",order:"lengthOrPercentageBeforeKeywords",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-indent"},"text-justify":{syntax:"auto | inter-character | inter-word | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"inlineLevelAndTableCellElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-justify"},"text-orientation":{syntax:"mixed | upright | sideways",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"mixed",appliesto:"allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-orientation"},"text-overflow":{syntax:"[ clip | ellipsis | <string> ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"clip",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-overflow"},"text-rendering":{syntax:"auto | optimizeSpeed | optimizeLegibility | geometricPrecision",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Miscellaneous"],initial:"auto",appliesto:"textElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-rendering"},"text-shadow":{syntax:"none | <shadow-t>#",media:"visual",inherited:!0,animationType:"shadowList",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"colorPlusThreeAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-shadow"},"text-size-adjust":{syntax:"none | auto | <percentage>",media:"visual",inherited:!0,animationType:"discrete",percentages:"referToSizeOfFont",groups:["CSS Text"],initial:"autoForSmartphoneBrowsersSupportingInflation",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-size-adjust"},"text-transform":{syntax:"none | capitalize | uppercase | lowercase | full-width | full-size-kana",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-transform"},"text-underline-offset":{syntax:"auto | <length> | <percentage> ",media:"visual",inherited:!0,animationType:"byComputedValueType",percentages:"referToElementFontSize",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-underline-offset"},"text-underline-position":{syntax:"auto | from-font | [ under || [ left | right ] ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-underline-position"},top:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToContainingBlockHeight",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/top"},"touch-action":{syntax:"auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Pointer Events"],initial:"auto",appliesto:"allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/touch-action"},transform:{syntax:"none | <transform-list>",media:"visual",inherited:!1,animationType:"transform",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform"},"transform-box":{syntax:"content-box | border-box | fill-box | stroke-box | view-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"view-box",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-box"},"transform-origin":{syntax:"[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?",media:"visual",inherited:!1,animationType:"simpleListOfLpc",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"50% 50% 0",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"oneOrTwoValuesLengthAbsoluteKeywordsPercentages",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-origin"},"transform-style":{syntax:"flat | preserve-3d",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"flat",appliesto:"transformableElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-style"},transition:{syntax:"<single-transition>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:["transition-delay","transition-duration","transition-property","transition-timing-function"],appliesto:"allElementsAndPseudos",computed:["transition-delay","transition-duration","transition-property","transition-timing-function"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition"},"transition-delay":{syntax:"<time>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-delay"},"transition-duration":{syntax:"<time>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-duration"},"transition-property":{syntax:"none | <single-transition-property>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"all",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-property"},"transition-timing-function":{syntax:"<timing-function>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"ease",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-timing-function"},translate:{syntax:"none | <length-percentage> [ <length-percentage> <length>? ]?",media:"visual",inherited:!1,animationType:"transform",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/translate"},"unicode-bidi":{syntax:"normal | embed | isolate | bidi-override | isolate-override | plaintext",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"normal",appliesto:"allElementsSomeValuesNoEffectOnNonInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/unicode-bidi"},"user-select":{syntax:"auto | text | none | contain | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/user-select"},"vertical-align":{syntax:"baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>",media:"visual",inherited:!1,animationType:"length",percentages:"referToLineHeight",groups:["CSS Table"],initial:"baseline",appliesto:"inlineLevelAndTableCellElements",computed:"absoluteLengthOrKeyword",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/vertical-align"},visibility:{syntax:"visible | hidden | collapse",media:"visual",inherited:!0,animationType:"visibility",percentages:"no",groups:["CSS Box Model"],initial:"visible",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/visibility"},"white-space":{syntax:"normal | pre | nowrap | pre-wrap | pre-line | break-spaces",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/white-space"},widows:{syntax:"<integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"2",appliesto:"blockContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/widows"},width:{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAutoOrAbsoluteLength",order:"lengthOrPercentageBeforeKeywordIfBothPresent",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/width"},"will-change":{syntax:"auto | <animateable-feature>#",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Will Change"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/will-change"},"word-break":{syntax:"normal | break-all | keep-all | break-word",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/word-break"},"word-spacing":{syntax:"normal | <length-percentage>",media:"visual",inherited:!0,animationType:"length",percentages:"referToWidthOfAffectedGlyph",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/word-spacing"},"word-wrap":{syntax:"normal | break-word",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"nonReplacedInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"writing-mode":{syntax:"horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"horizontal-tb",appliesto:"allElementsExceptTableRowColumnGroupsTableRowsColumns",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/writing-mode"},"z-index":{syntax:"auto | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/z-index"},zoom:{syntax:"normal | reset | <number> | <percentage>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["Microsoft Extensions"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/zoom"}},lo={atrules:{charset:{prelude:"<string>"},"font-face":{descriptors:{"unicode-range":{comment:"replaces <unicode-range>, an old production name",syntax:"<urange>#"}}}},properties:{"-moz-background-clip":{comment:"deprecated syntax in old Firefox, https://developer.mozilla.org/en/docs/Web/CSS/background-clip",syntax:"padding | border"},"-moz-border-radius-bottomleft":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius",syntax:"<'border-bottom-left-radius'>"},"-moz-border-radius-bottomright":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius",syntax:"<'border-bottom-right-radius'>"},"-moz-border-radius-topleft":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius",syntax:"<'border-top-left-radius'>"},"-moz-border-radius-topright":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius",syntax:"<'border-bottom-right-radius'>"},"-moz-control-character-visibility":{comment:"firefox specific keywords, https://bugzilla.mozilla.org/show_bug.cgi?id=947588",syntax:"visible | hidden"},"-moz-osx-font-smoothing":{comment:"misssed old syntax https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth",syntax:"auto | grayscale"},"-moz-user-select":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/user-select",syntax:"none | text | all | -moz-none"},"-ms-flex-align":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align",syntax:"start | end | center | baseline | stretch"},"-ms-flex-item-align":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align",syntax:"auto | start | end | center | baseline | stretch"},"-ms-flex-line-pack":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-line-pack",syntax:"start | end | center | justify | distribute | stretch"},"-ms-flex-negative":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-shrink'>"},"-ms-flex-pack":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-pack",syntax:"start | end | center | justify | distribute"},"-ms-flex-order":{comment:"misssed old syntax implemented in IE; https://msdn.microsoft.com/en-us/library/jj127303(v=vs.85).aspx",syntax:"<integer>"},"-ms-flex-positive":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-grow'>"},"-ms-flex-preferred-size":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-basis'>"},"-ms-interpolation-mode":{comment:"https://msdn.microsoft.com/en-us/library/ff521095(v=vs.85).aspx",syntax:"nearest-neighbor | bicubic"},"-ms-grid-column-align":{comment:"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466338.aspx",syntax:"start | end | center | stretch"},"-ms-grid-row-align":{comment:"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466348.aspx",syntax:"start | end | center | stretch"},"-ms-hyphenate-limit-last":{comment:"misssed old syntax implemented in IE; https://www.w3.org/TR/css-text-4/#hyphenate-line-limits",syntax:"none | always | column | page | spread"},"-webkit-appearance":{comment:"webkit specific keywords",references:["http://css-infos.net/property/-webkit-appearance"],syntax:"none | button | button-bevel | caps-lock-indicator | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbargripper-horizontal | scrollbargripper-vertical | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button"},"-webkit-background-clip":{comment:"https://developer.mozilla.org/en/docs/Web/CSS/background-clip",syntax:"[ <box> | border | padding | content | text ]#"},"-webkit-column-break-after":{comment:"added, http://help.dottoro.com/lcrthhhv.php",syntax:"always | auto | avoid"},"-webkit-column-break-before":{comment:"added, http://help.dottoro.com/lcxquvkf.php",syntax:"always | auto | avoid"},"-webkit-column-break-inside":{comment:"added, http://help.dottoro.com/lclhnthl.php",syntax:"always | auto | avoid"},"-webkit-font-smoothing":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth",syntax:"auto | none | antialiased | subpixel-antialiased"},"-webkit-mask-box-image":{comment:"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image",syntax:"[ <url> | <gradient> | none ] [ <length-percentage>{4} <-webkit-mask-box-repeat>{2} ]?"},"-webkit-print-color-adjust":{comment:"missed",references:["https://developer.mozilla.org/en/docs/Web/CSS/-webkit-print-color-adjust"],syntax:"economy | exact"},"-webkit-text-security":{comment:"missed; http://help.dottoro.com/lcbkewgt.php",syntax:"none | circle | disc | square"},"-webkit-user-drag":{comment:"missed; http://help.dottoro.com/lcbixvwm.php",syntax:"none | element | auto"},"-webkit-user-select":{comment:"auto is supported by old webkit, https://developer.mozilla.org/en-US/docs/Web/CSS/user-select",syntax:"auto | none | text | all"},"alignment-baseline":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#AlignmentBaselineProperty"],syntax:"auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical"},"baseline-shift":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#BaselineShiftProperty"],syntax:"baseline | sub | super | <svg-length>"},behavior:{comment:"added old IE property https://msdn.microsoft.com/en-us/library/ms530723(v=vs.85).aspx",syntax:"<url>+"},"clip-rule":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/masking.html#ClipRuleProperty"],syntax:"nonzero | evenodd"},cue:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'cue-before'> <'cue-after'>?"},"cue-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<url> <decibel>? | none"},"cue-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<url> <decibel>? | none"},cursor:{comment:"added legacy keywords: hand, -webkit-grab. -webkit-grabbing, -webkit-zoom-in, -webkit-zoom-out, -moz-grab, -moz-grabbing, -moz-zoom-in, -moz-zoom-out",references:["https://www.sitepoint.com/css3-cursor-styles/"],syntax:"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing | hand | -webkit-grab | -webkit-grabbing | -webkit-zoom-in | -webkit-zoom-out | -moz-grab | -moz-grabbing | -moz-zoom-in | -moz-zoom-out ] ]"},display:{comment:"extended with -ms-flexbox",syntax:"| <-non-standard-display>"},position:{comment:"extended with -webkit-sticky",syntax:"| -webkit-sticky"},"dominant-baseline":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#DominantBaselineProperty"],syntax:"auto | use-script | no-change | reset-size | ideographic | alphabetic | hanging | mathematical | central | middle | text-after-edge | text-before-edge"},"image-rendering":{comment:"extended with <-non-standard-image-rendering>, added SVG keywords optimizeSpeed and optimizeQuality",references:["https://developer.mozilla.org/en/docs/Web/CSS/image-rendering","https://www.w3.org/TR/SVG/painting.html#ImageRenderingProperty"],syntax:"| optimizeSpeed | optimizeQuality | <-non-standard-image-rendering>"},fill:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"<paint>"},"fill-opacity":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"<number-zero-one>"},"fill-rule":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"nonzero | evenodd"},filter:{comment:"extend with IE legacy syntaxes",syntax:"| <-ms-filter-function-list>"},"glyph-orientation-horizontal":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#GlyphOrientationHorizontalProperty"],syntax:"<angle>"},"glyph-orientation-vertical":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#GlyphOrientationVerticalProperty"],syntax:"<angle>"},kerning:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#KerningProperty"],syntax:"auto | <svg-length>"},"letter-spacing":{comment:"fix syntax <length> -> <length-percentage>",references:["https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/letter-spacing"],syntax:"normal | <length-percentage>"},marker:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-end":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-mid":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-start":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"max-width":{comment:"fix auto -> none (https://github.com/mdn/data/pull/431); extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/max-width",syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},width:{comment:"per spec fit-content should be a function, however browsers are supporting it as a keyword (https://github.com/csstree/stylelint-validator/issues/29)",syntax:"| fit-content | -moz-fit-content | -webkit-fit-content"},"min-width":{comment:"extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width",syntax:"auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},overflow:{comment:"extend by vendor keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow",syntax:"| <-non-standard-overflow>"},pause:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'pause-before'> <'pause-after'>?"},"pause-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"pause-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},rest:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'rest-before'> <'rest-after'>?"},"rest-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"rest-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"shape-rendering":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#ShapeRenderingPropert"],syntax:"auto | optimizeSpeed | crispEdges | geometricPrecision"},src:{comment:"added @font-face's src property https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src",syntax:"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#"},speak:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"auto | none | normal"},"speak-as":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"normal | spell-out || digits || [ literal-punctuation | no-punctuation ]"},stroke:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<paint>"},"stroke-dasharray":{comment:"added SVG property; a list of comma and/or white space separated <length>s and <percentage>s",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"none | [ <svg-length>+ ]#"},"stroke-dashoffset":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<svg-length>"},"stroke-linecap":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"butt | round | square"},"stroke-linejoin":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"miter | round | bevel"},"stroke-miterlimit":{comment:"added SVG property (<miterlimit> = <number-one-or-greater>) ",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<number-one-or-greater>"},"stroke-opacity":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<number-zero-one>"},"stroke-width":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<svg-length>"},"text-anchor":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#TextAlignmentProperties"],syntax:"start | middle | end"},"unicode-bidi":{comment:"added prefixed keywords https://developer.mozilla.org/en-US/docs/Web/CSS/unicode-bidi",syntax:"| -moz-isolate | -moz-isolate-override | -moz-plaintext | -webkit-isolate | -webkit-isolate-override | -webkit-plaintext"},"unicode-range":{comment:"added missed property https://developer.mozilla.org/en-US/docs/Web/CSS/%40font-face/unicode-range",syntax:"<urange>#"},"voice-balance":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<number> | left | center | right | leftwards | rightwards"},"voice-duration":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"auto | <time>"},"voice-family":{comment:"<name> -> <family-name>, https://www.w3.org/TR/css3-speech/#property-index",syntax:"[ [ <family-name> | <generic-voice> ] , ]* [ <family-name> | <generic-voice> ] | preserve"},"voice-pitch":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-range":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-rate":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"[ normal | x-slow | slow | medium | fast | x-fast ] || <percentage>"},"voice-stress":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"normal | strong | moderate | none | reduced"},"voice-volume":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"silent | [ [ x-soft | soft | medium | loud | x-loud ] || <decibel> ]"},"writing-mode":{comment:"extend with SVG keywords",syntax:"| <svg-writing-mode>"}},syntaxes:{"-legacy-gradient":{comment:"added collection of legacy gradient syntaxes",syntax:"<-webkit-gradient()> | <-legacy-linear-gradient> | <-legacy-repeating-linear-gradient> | <-legacy-radial-gradient> | <-legacy-repeating-radial-gradient>"},"-legacy-linear-gradient":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"-moz-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-repeating-linear-gradient":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-linear-gradient-arguments":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"[ <angle> | <side-or-corner> ]? , <color-stop-list>"},"-legacy-radial-gradient":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"-moz-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-repeating-radial-gradient":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-radial-gradient-arguments":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"[ <position> , ]? [ [ [ <-legacy-radial-gradient-shape> || <-legacy-radial-gradient-size> ] | [ <length> | <percentage> ]{2} ] , ]? <color-stop-list>"},"-legacy-radial-gradient-size":{comment:"before a standard it contains 2 extra keywords (`contain` and `cover`) https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltsize",syntax:"closest-side | closest-corner | farthest-side | farthest-corner | contain | cover"},"-legacy-radial-gradient-shape":{comment:"define to double sure it doesn't extends in future https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltshape",syntax:"circle | ellipse"},"-non-standard-font":{comment:"non standard fonts",references:["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],syntax:"-apple-system-body | -apple-system-headline | -apple-system-subheadline | -apple-system-caption1 | -apple-system-caption2 | -apple-system-footnote | -apple-system-short-body | -apple-system-short-headline | -apple-system-short-subheadline | -apple-system-short-caption1 | -apple-system-short-footnote | -apple-system-tall-body"},"-non-standard-color":{comment:"non standard colors",references:["http://cssdot.ru/%D0%A1%D0%BF%D1%80%D0%B0%D0%B2%D0%BE%D1%87%D0%BD%D0%B8%D0%BA_CSS/color-i305.html","https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Mozilla_Color_Preference_Extensions"],syntax:"-moz-ButtonDefault | -moz-ButtonHoverFace | -moz-ButtonHoverText | -moz-CellHighlight | -moz-CellHighlightText | -moz-Combobox | -moz-ComboboxText | -moz-Dialog | -moz-DialogText | -moz-dragtargetzone | -moz-EvenTreeRow | -moz-Field | -moz-FieldText | -moz-html-CellHighlight | -moz-html-CellHighlightText | -moz-mac-accentdarkestshadow | -moz-mac-accentdarkshadow | -moz-mac-accentface | -moz-mac-accentlightesthighlight | -moz-mac-accentlightshadow | -moz-mac-accentregularhighlight | -moz-mac-accentregularshadow | -moz-mac-chrome-active | -moz-mac-chrome-inactive | -moz-mac-focusring | -moz-mac-menuselect | -moz-mac-menushadow | -moz-mac-menutextselect | -moz-MenuHover | -moz-MenuHoverText | -moz-MenuBarText | -moz-MenuBarHoverText | -moz-nativehyperlinktext | -moz-OddTreeRow | -moz-win-communicationstext | -moz-win-mediatext | -moz-activehyperlinktext | -moz-default-background-color | -moz-default-color | -moz-hyperlinktext | -moz-visitedhyperlinktext | -webkit-activelink | -webkit-focus-ring-color | -webkit-link | -webkit-text"},"-non-standard-image-rendering":{comment:"non-standard keywords http://phrogz.net/tmp/canvas_image_zoom.html",syntax:"optimize-contrast | -moz-crisp-edges | -o-crisp-edges | -webkit-optimize-contrast"},"-non-standard-overflow":{comment:"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow",syntax:"-moz-scrollbars-none | -moz-scrollbars-horizontal | -moz-scrollbars-vertical | -moz-hidden-unscrollable"},"-non-standard-width":{comment:"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width",syntax:"fill-available | min-intrinsic | intrinsic | -moz-available | -moz-fit-content | -moz-min-content | -moz-max-content | -webkit-min-content | -webkit-max-content"},"-webkit-gradient()":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/ - TODO: simplify when after match algorithm improvement ( [, point, radius | , point] -> [, radius]? , point )",syntax:"-webkit-gradient( <-webkit-gradient-type>, <-webkit-gradient-point> [, <-webkit-gradient-point> | , <-webkit-gradient-radius>, <-webkit-gradient-point> ] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )"},"-webkit-gradient-color-stop":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"from( <color> ) | color-stop( [ <number-zero-one> | <percentage> ] , <color> ) | to( <color> )"},"-webkit-gradient-point":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"[ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]"},"-webkit-gradient-radius":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"<length> | <percentage>"},"-webkit-gradient-type":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"linear | radial"},"-webkit-mask-box-repeat":{comment:"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image",syntax:"repeat | stretch | round"},"-webkit-mask-clip-style":{comment:"missed; there is no enough information about `-webkit-mask-clip` property, but looks like all those keywords are working",syntax:"border | border-box | padding | padding-box | content | content-box | text"},"-ms-filter-function-list":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<-ms-filter-function>+"},"-ms-filter-function":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<-ms-filter-function-progid> | <-ms-filter-function-legacy>"},"-ms-filter-function-progid":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"'progid:' [ <ident-token> '.' ]* [ <ident-token> | <function-token> <any-value>? ) ]"},"-ms-filter-function-legacy":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<ident-token> | <function-token> <any-value>? )"},"-ms-filter":{syntax:"<string>"},age:{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"child | young | old"},"attr-name":{syntax:"<wq-name>"},"attr-fallback":{syntax:"<any-value>"},"border-radius":{comment:"missed, https://drafts.csswg.org/css-backgrounds-3/#the-border-radius",syntax:"<length-percentage>{1,2}"},bottom:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"content-list":{comment:"missed -> https://drafts.csswg.org/css-content/#typedef-content-list (document-url, <target> and leader() is omitted util stabilization)",syntax:"[ <string> | contents | <image> | <quote> | <target> | <leader()> | <attr()> | counter( <ident>, <'list-style-type'>? ) ]+"},"element()":{comment:"https://drafts.csswg.org/css-gcpm/#element-syntax & https://drafts.csswg.org/css-images-4/#element-notation",syntax:"element( <custom-ident> , [ first | start | last | first-except ]? ) | element( <id-selector> )"},"generic-voice":{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"[ <age>? <gender> <integer>? ]"},gender:{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"male | female | neutral"},"generic-family":{comment:"added -apple-system",references:["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],syntax:"| -apple-system"},gradient:{comment:"added legacy syntaxes support",syntax:"| <-legacy-gradient>"},left:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"mask-image":{comment:"missed; https://drafts.fxtf.org/css-masking-1/#the-mask-image",syntax:"<mask-reference>#"},"name-repeat":{comment:"missed, and looks like obsolete, keep it as is since other property syntaxes should be changed too; https://www.w3.org/TR/2015/WD-css-grid-1-20150917/#typedef-name-repeat",syntax:"repeat( [ <positive-integer> | auto-fill ], <line-names>+)"},"named-color":{comment:"added non standard color names",syntax:"| <-non-standard-color>"},paint:{comment:"used by SVG https://www.w3.org/TR/SVG/painting.html#SpecifyingPaint",syntax:"none | <color> | <url> [ none | <color> ]? | context-fill | context-stroke"},"page-size":{comment:"https://www.w3.org/TR/css-page-3/#typedef-page-size-page-size",syntax:"A5 | A4 | A3 | B5 | B4 | JIS-B5 | JIS-B4 | letter | legal | ledger"},ratio:{comment:"missed, https://drafts.csswg.org/mediaqueries-4/#typedef-ratio",syntax:"<integer> / <integer>"},right:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},shape:{comment:"missed spaces in function body and add backwards compatible syntax",syntax:"rect( <top>, <right>, <bottom>, <left> ) | rect( <top> <right> <bottom> <left> )"},"svg-length":{comment:"All coordinates and lengths in SVG can be specified with or without a unit identifier",references:["https://www.w3.org/TR/SVG11/coords.html#Units"],syntax:"<percentage> | <length> | <number>"},"svg-writing-mode":{comment:"SVG specific keywords (deprecated for CSS)",references:["https://developer.mozilla.org/en/docs/Web/CSS/writing-mode","https://www.w3.org/TR/SVG/text.html#WritingModeProperty"],syntax:"lr-tb | rl-tb | tb-rl | lr | rl | tb"},top:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"track-group":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"'(' [ <string>* <track-minmax> <string>* ]+ ')' [ '[' <positive-integer> ']' ]? | <track-minmax>"},"track-list-v0":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"[ <string>* <track-group> <string>* ]+ | none"},"track-minmax":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"minmax( <track-breadth> , <track-breadth> ) | auto | <track-breadth> | fit-content"},x:{comment:"missed; not sure we should add it, but no others except `cursor` is using it so it's ok for now; https://drafts.csswg.org/css-ui-3/#cursor",syntax:"<number>"},y:{comment:"missed; not sure we should add it, but no others except `cursor` is using so it's ok for now; https://drafts.csswg.org/css-ui-3/#cursor",syntax:"<number>"},declaration:{comment:"missed, restored by https://drafts.csswg.org/css-syntax",syntax:"<ident-token> : <declaration-value>? [ '!' important ]?"},"declaration-list":{comment:"missed, restored by https://drafts.csswg.org/css-syntax",syntax:"[ <declaration>? ';' ]* <declaration>?"},url:{comment:"https://drafts.csswg.org/css-values-4/#urls",syntax:"url( <string> <url-modifier>* ) | <url-token>"},"url-modifier":{comment:"https://drafts.csswg.org/css-values-4/#typedef-url-modifier",syntax:"<ident> | <function-token> <any-value> )"},"number-zero-one":{syntax:"<number [0,1]>"},"number-one-or-greater":{syntax:"<number [1,∞]>"},"positive-integer":{syntax:"<integer [0,∞]>"},"-non-standard-display":{syntax:"-ms-inline-flexbox | -ms-grid | -ms-inline-grid | -webkit-flex | -webkit-inline-flex | -webkit-box | -webkit-inline-box | -moz-inline-stack | -moz-box | -moz-inline-box"}}},uo=/^\s*\|\s*/;function co(e,t){const n={};for(const t in e)n[t]=e[t].syntax||e[t];for(const r in t)r in e?t[r].syntax?n[r]=uo.test(t[r].syntax)?n[r]+" "+t[r].syntax.trim():t[r].syntax:delete n[r]:t[r].syntax&&(n[r]=t[r].syntax.replace(uo,""));return n}function po(e){const t={};for(const n in e)t[n]=e[n].syntax;return t}var mo={types:co({"absolute-size":{syntax:"xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large"},"alpha-value":{syntax:"<number> | <percentage>"},"angle-percentage":{syntax:"<angle> | <percentage>"},"angular-color-hint":{syntax:"<angle-percentage>"},"angular-color-stop":{syntax:"<color> && <color-stop-angle>?"},"angular-color-stop-list":{syntax:"[ <angular-color-stop> [, <angular-color-hint>]? ]# , <angular-color-stop>"},"animateable-feature":{syntax:"scroll-position | contents | <custom-ident>"},attachment:{syntax:"scroll | fixed | local"},"attr()":{syntax:"attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )"},"attr-matcher":{syntax:"[ '~' | '|' | '^' | '$' | '*' ]? '='"},"attr-modifier":{syntax:"i | s"},"attribute-selector":{syntax:"'[' <wq-name> ']' | '[' <wq-name> <attr-matcher> [ <string-token> | <ident-token> ] <attr-modifier>? ']'"},"auto-repeat":{syntax:"repeat( [ auto-fill | auto-fit ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"auto-track-list":{syntax:"[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>? <auto-repeat>\n[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>?"},"baseline-position":{syntax:"[ first | last ]? baseline"},"basic-shape":{syntax:"<inset()> | <circle()> | <ellipse()> | <polygon()> | <path()>"},"bg-image":{syntax:"none | <image>"},"bg-layer":{syntax:"<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"bg-position":{syntax:"[ [ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] | [ center | [ left | right ] <length-percentage>? ] && [ center | [ top | bottom ] <length-percentage>? ] ]"},"bg-size":{syntax:"[ <length-percentage> | auto ]{1,2} | cover | contain"},"blur()":{syntax:"blur( <length> )"},"blend-mode":{syntax:"normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosity"},box:{syntax:"border-box | padding-box | content-box"},"brightness()":{syntax:"brightness( <number-percentage> )"},"calc()":{syntax:"calc( <calc-sum> )"},"calc-sum":{syntax:"<calc-product> [ [ '+' | '-' ] <calc-product> ]*"},"calc-product":{syntax:"<calc-value> [ '*' <calc-value> | '/' <number> ]*"},"calc-value":{syntax:"<number> | <dimension> | <percentage> | ( <calc-sum> )"},"cf-final-image":{syntax:"<image> | <color>"},"cf-mixing-image":{syntax:"<percentage>? && <image>"},"circle()":{syntax:"circle( [ <shape-radius> ]? [ at <position> ]? )"},"clamp()":{syntax:"clamp( <calc-sum>#{3} )"},"class-selector":{syntax:"'.' <ident-token>"},"clip-source":{syntax:"<url>"},color:{syntax:"<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>"},"color-stop":{syntax:"<color-stop-length> | <color-stop-angle>"},"color-stop-angle":{syntax:"<angle-percentage>{1,2}"},"color-stop-length":{syntax:"<length-percentage>{1,2}"},"color-stop-list":{syntax:"[ <linear-color-stop> [, <linear-color-hint>]? ]# , <linear-color-stop>"},combinator:{syntax:"'>' | '+' | '~' | [ '||' ]"},"common-lig-values":{syntax:"[ common-ligatures | no-common-ligatures ]"},"compat-auto":{syntax:"searchfield | textarea | push-button | slider-horizontal | checkbox | radio | square-button | menulist | listbox | meter | progress-bar | button"},"composite-style":{syntax:"clear | copy | source-over | source-in | source-out | source-atop | destination-over | destination-in | destination-out | destination-atop | xor"},"compositing-operator":{syntax:"add | subtract | intersect | exclude"},"compound-selector":{syntax:"[ <type-selector>? <subclass-selector>* [ <pseudo-element-selector> <pseudo-class-selector>* ]* ]!"},"compound-selector-list":{syntax:"<compound-selector>#"},"complex-selector":{syntax:"<compound-selector> [ <combinator>? <compound-selector> ]*"},"complex-selector-list":{syntax:"<complex-selector>#"},"conic-gradient()":{syntax:"conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )"},"contextual-alt-values":{syntax:"[ contextual | no-contextual ]"},"content-distribution":{syntax:"space-between | space-around | space-evenly | stretch"},"content-list":{syntax:"[ <string> | contents | <image> | <quote> | <target> | <leader()> ]+"},"content-position":{syntax:"center | start | end | flex-start | flex-end"},"content-replacement":{syntax:"<image>"},"contrast()":{syntax:"contrast( [ <number-percentage> ] )"},"counter()":{syntax:"counter( <custom-ident>, <counter-style>? )"},"counter-style":{syntax:"<counter-style-name> | symbols()"},"counter-style-name":{syntax:"<custom-ident>"},"counters()":{syntax:"counters( <custom-ident>, <string>, <counter-style>? )"},"cross-fade()":{syntax:"cross-fade( <cf-mixing-image> , <cf-final-image>? )"},"cubic-bezier-timing-function":{syntax:"ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)"},"deprecated-system-color":{syntax:"ActiveBorder | ActiveCaption | AppWorkspace | Background | ButtonFace | ButtonHighlight | ButtonShadow | ButtonText | CaptionText | GrayText | Highlight | HighlightText | InactiveBorder | InactiveCaption | InactiveCaptionText | InfoBackground | InfoText | Menu | MenuText | Scrollbar | ThreeDDarkShadow | ThreeDFace | ThreeDHighlight | ThreeDLightShadow | ThreeDShadow | Window | WindowFrame | WindowText"},"discretionary-lig-values":{syntax:"[ discretionary-ligatures | no-discretionary-ligatures ]"},"display-box":{syntax:"contents | none"},"display-inside":{syntax:"flow | flow-root | table | flex | grid | ruby"},"display-internal":{syntax:"table-row-group | table-header-group | table-footer-group | table-row | table-cell | table-column-group | table-column | table-caption | ruby-base | ruby-text | ruby-base-container | ruby-text-container"},"display-legacy":{syntax:"inline-block | inline-list-item | inline-table | inline-flex | inline-grid"},"display-listitem":{syntax:"<display-outside>? && [ flow | flow-root ]? && list-item"},"display-outside":{syntax:"block | inline | run-in"},"drop-shadow()":{syntax:"drop-shadow( <length>{2,3} <color>? )"},"east-asian-variant-values":{syntax:"[ jis78 | jis83 | jis90 | jis04 | simplified | traditional ]"},"east-asian-width-values":{syntax:"[ full-width | proportional-width ]"},"element()":{syntax:"element( <id-selector> )"},"ellipse()":{syntax:"ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )"},"ending-shape":{syntax:"circle | ellipse"},"env()":{syntax:"env( <custom-ident> , <declaration-value>? )"},"explicit-track-list":{syntax:"[ <line-names>? <track-size> ]+ <line-names>?"},"family-name":{syntax:"<string> | <custom-ident>+"},"feature-tag-value":{syntax:"<string> [ <integer> | on | off ]?"},"feature-type":{syntax:"@stylistic | @historical-forms | @styleset | @character-variant | @swash | @ornaments | @annotation"},"feature-value-block":{syntax:"<feature-type> '{' <feature-value-declaration-list> '}'"},"feature-value-block-list":{syntax:"<feature-value-block>+"},"feature-value-declaration":{syntax:"<custom-ident>: <integer>+;"},"feature-value-declaration-list":{syntax:"<feature-value-declaration>"},"feature-value-name":{syntax:"<custom-ident>"},"fill-rule":{syntax:"nonzero | evenodd"},"filter-function":{syntax:"<blur()> | <brightness()> | <contrast()> | <drop-shadow()> | <grayscale()> | <hue-rotate()> | <invert()> | <opacity()> | <saturate()> | <sepia()>"},"filter-function-list":{syntax:"[ <filter-function> | <url> ]+"},"final-bg-layer":{syntax:"<'background-color'> || <bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"fit-content()":{syntax:"fit-content( [ <length> | <percentage> ] )"},"fixed-breadth":{syntax:"<length-percentage>"},"fixed-repeat":{syntax:"repeat( [ <positive-integer> ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"fixed-size":{syntax:"<fixed-breadth> | minmax( <fixed-breadth> , <track-breadth> ) | minmax( <inflexible-breadth> , <fixed-breadth> )"},"font-stretch-absolute":{syntax:"normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded | <percentage>"},"font-variant-css21":{syntax:"[ normal | small-caps ]"},"font-weight-absolute":{syntax:"normal | bold | <number [1,1000]>"},"frequency-percentage":{syntax:"<frequency> | <percentage>"},"general-enclosed":{syntax:"[ <function-token> <any-value> ) ] | ( <ident> <any-value> )"},"generic-family":{syntax:"serif | sans-serif | cursive | fantasy | monospace"},"generic-name":{syntax:"serif | sans-serif | cursive | fantasy | monospace"},"geometry-box":{syntax:"<shape-box> | fill-box | stroke-box | view-box"},gradient:{syntax:"<linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()>"},"grayscale()":{syntax:"grayscale( <number-percentage> )"},"grid-line":{syntax:"auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]"},"historical-lig-values":{syntax:"[ historical-ligatures | no-historical-ligatures ]"},"hsl()":{syntax:"hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )"},"hsla()":{syntax:"hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )"},hue:{syntax:"<number> | <angle>"},"hue-rotate()":{syntax:"hue-rotate( <angle> )"},"id-selector":{syntax:"<hash-token>"},image:{syntax:"<url> | <image()> | <image-set()> | <element()> | <paint()> | <cross-fade()> | <gradient>"},"image()":{syntax:"image( <image-tags>? [ <image-src>? , <color>? ]! )"},"image-set()":{syntax:"image-set( <image-set-option># )"},"image-set-option":{syntax:"[ <image> | <string> ] <resolution>"},"image-src":{syntax:"<url> | <string>"},"image-tags":{syntax:"ltr | rtl"},"inflexible-breadth":{syntax:"<length> | <percentage> | min-content | max-content | auto"},"inset()":{syntax:"inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )"},"invert()":{syntax:"invert( <number-percentage> )"},"keyframes-name":{syntax:"<custom-ident> | <string>"},"keyframe-block":{syntax:"<keyframe-selector># {\n <declaration-list>\n}"},"keyframe-block-list":{syntax:"<keyframe-block>+"},"keyframe-selector":{syntax:"from | to | <percentage>"},"leader()":{syntax:"leader( <leader-type> )"},"leader-type":{syntax:"dotted | solid | space | <string>"},"length-percentage":{syntax:"<length> | <percentage>"},"line-names":{syntax:"'[' <custom-ident>* ']'"},"line-name-list":{syntax:"[ <line-names> | <name-repeat> ]+"},"line-style":{syntax:"none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset"},"line-width":{syntax:"<length> | thin | medium | thick"},"linear-color-hint":{syntax:"<length-percentage>"},"linear-color-stop":{syntax:"<color> <color-stop-length>?"},"linear-gradient()":{syntax:"linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"mask-layer":{syntax:"<mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <compositing-operator> || <masking-mode>"},"mask-position":{syntax:"[ <length-percentage> | left | center | right ] [ <length-percentage> | top | center | bottom ]?"},"mask-reference":{syntax:"none | <image> | <mask-source>"},"mask-source":{syntax:"<url>"},"masking-mode":{syntax:"alpha | luminance | match-source"},"matrix()":{syntax:"matrix( <number>#{6} )"},"matrix3d()":{syntax:"matrix3d( <number>#{16} )"},"max()":{syntax:"max( <calc-sum># )"},"media-and":{syntax:"<media-in-parens> [ and <media-in-parens> ]+"},"media-condition":{syntax:"<media-not> | <media-and> | <media-or> | <media-in-parens>"},"media-condition-without-or":{syntax:"<media-not> | <media-and> | <media-in-parens>"},"media-feature":{syntax:"( [ <mf-plain> | <mf-boolean> | <mf-range> ] )"},"media-in-parens":{syntax:"( <media-condition> ) | <media-feature> | <general-enclosed>"},"media-not":{syntax:"not <media-in-parens>"},"media-or":{syntax:"<media-in-parens> [ or <media-in-parens> ]+"},"media-query":{syntax:"<media-condition> | [ not | only ]? <media-type> [ and <media-condition-without-or> ]?"},"media-query-list":{syntax:"<media-query>#"},"media-type":{syntax:"<ident>"},"mf-boolean":{syntax:"<mf-name>"},"mf-name":{syntax:"<ident>"},"mf-plain":{syntax:"<mf-name> : <mf-value>"},"mf-range":{syntax:"<mf-name> [ '<' | '>' ]? '='? <mf-value>\n| <mf-value> [ '<' | '>' ]? '='? <mf-name>\n| <mf-value> '<' '='? <mf-name> '<' '='? <mf-value>\n| <mf-value> '>' '='? <mf-name> '>' '='? <mf-value>"},"mf-value":{syntax:"<number> | <dimension> | <ident> | <ratio>"},"min()":{syntax:"min( <calc-sum># )"},"minmax()":{syntax:"minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )"},"named-color":{syntax:"transparent | aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen"},"namespace-prefix":{syntax:"<ident>"},"ns-prefix":{syntax:"[ <ident-token> | '*' ]? '|'"},"number-percentage":{syntax:"<number> | <percentage>"},"numeric-figure-values":{syntax:"[ lining-nums | oldstyle-nums ]"},"numeric-fraction-values":{syntax:"[ diagonal-fractions | stacked-fractions ]"},"numeric-spacing-values":{syntax:"[ proportional-nums | tabular-nums ]"},nth:{syntax:"<an-plus-b> | even | odd"},"opacity()":{syntax:"opacity( [ <number-percentage> ] )"},"overflow-position":{syntax:"unsafe | safe"},"outline-radius":{syntax:"<length> | <percentage>"},"page-body":{syntax:"<declaration>? [ ; <page-body> ]? | <page-margin-box> <page-body>"},"page-margin-box":{syntax:"<page-margin-box-type> '{' <declaration-list> '}'"},"page-margin-box-type":{syntax:"@top-left-corner | @top-left | @top-center | @top-right | @top-right-corner | @bottom-left-corner | @bottom-left | @bottom-center | @bottom-right | @bottom-right-corner | @left-top | @left-middle | @left-bottom | @right-top | @right-middle | @right-bottom"},"page-selector-list":{syntax:"[ <page-selector># ]?"},"page-selector":{syntax:"<pseudo-page>+ | <ident> <pseudo-page>*"},"path()":{syntax:"path( [ <fill-rule>, ]? <string> )"},"paint()":{syntax:"paint( <ident>, <declaration-value>? )"},"perspective()":{syntax:"perspective( <length> )"},"polygon()":{syntax:"polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )"},position:{syntax:"[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"},"pseudo-class-selector":{syntax:"':' <ident-token> | ':' <function-token> <any-value> ')'"},"pseudo-element-selector":{syntax:"':' <pseudo-class-selector>"},"pseudo-page":{syntax:": [ left | right | first | blank ]"},quote:{syntax:"open-quote | close-quote | no-open-quote | no-close-quote"},"radial-gradient()":{syntax:"radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"relative-selector":{syntax:"<combinator>? <complex-selector>"},"relative-selector-list":{syntax:"<relative-selector>#"},"relative-size":{syntax:"larger | smaller"},"repeat-style":{syntax:"repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}"},"repeating-linear-gradient()":{syntax:"repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"repeating-radial-gradient()":{syntax:"repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"rgb()":{syntax:"rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )"},"rgba()":{syntax:"rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )"},"rotate()":{syntax:"rotate( [ <angle> | <zero> ] )"},"rotate3d()":{syntax:"rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )"},"rotateX()":{syntax:"rotateX( [ <angle> | <zero> ] )"},"rotateY()":{syntax:"rotateY( [ <angle> | <zero> ] )"},"rotateZ()":{syntax:"rotateZ( [ <angle> | <zero> ] )"},"saturate()":{syntax:"saturate( <number-percentage> )"},"scale()":{syntax:"scale( <number> , <number>? )"},"scale3d()":{syntax:"scale3d( <number> , <number> , <number> )"},"scaleX()":{syntax:"scaleX( <number> )"},"scaleY()":{syntax:"scaleY( <number> )"},"scaleZ()":{syntax:"scaleZ( <number> )"},"self-position":{syntax:"center | start | end | self-start | self-end | flex-start | flex-end"},"shape-radius":{syntax:"<length-percentage> | closest-side | farthest-side"},"skew()":{syntax:"skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )"},"skewX()":{syntax:"skewX( [ <angle> | <zero> ] )"},"skewY()":{syntax:"skewY( [ <angle> | <zero> ] )"},"sepia()":{syntax:"sepia( <number-percentage> )"},shadow:{syntax:"inset? && <length>{2,4} && <color>?"},"shadow-t":{syntax:"[ <length>{2,3} && <color>? ]"},shape:{syntax:"rect(<top>, <right>, <bottom>, <left>)"},"shape-box":{syntax:"<box> | margin-box"},"side-or-corner":{syntax:"[ left | right ] || [ top | bottom ]"},"single-animation":{syntax:"<time> || <timing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]"},"single-animation-direction":{syntax:"normal | reverse | alternate | alternate-reverse"},"single-animation-fill-mode":{syntax:"none | forwards | backwards | both"},"single-animation-iteration-count":{syntax:"infinite | <number>"},"single-animation-play-state":{syntax:"running | paused"},"single-transition":{syntax:"[ none | <single-transition-property> ] || <time> || <timing-function> || <time>"},"single-transition-property":{syntax:"all | <custom-ident>"},size:{syntax:"closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>{2}"},"step-position":{syntax:"jump-start | jump-end | jump-none | jump-both | start | end"},"step-timing-function":{syntax:"step-start | step-end | steps(<integer>[, <step-position>]?)"},"subclass-selector":{syntax:"<id-selector> | <class-selector> | <attribute-selector> | <pseudo-class-selector>"},"supports-condition":{syntax:"not <supports-in-parens> | <supports-in-parens> [ and <supports-in-parens> ]* | <supports-in-parens> [ or <supports-in-parens> ]*"},"supports-in-parens":{syntax:"( <supports-condition> ) | <supports-feature> | <general-enclosed>"},"supports-feature":{syntax:"<supports-decl> | <supports-selector-fn>"},"supports-decl":{syntax:"( <declaration> )"},"supports-selector-fn":{syntax:"selector( <complex-selector> )"},symbol:{syntax:"<string> | <image> | <custom-ident>"},target:{syntax:"<target-counter()> | <target-counters()> | <target-text()>"},"target-counter()":{syntax:"target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )"},"target-counters()":{syntax:"target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )"},"target-text()":{syntax:"target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )"},"time-percentage":{syntax:"<time> | <percentage>"},"timing-function":{syntax:"linear | <cubic-bezier-timing-function> | <step-timing-function>"},"track-breadth":{syntax:"<length-percentage> | <flex> | min-content | max-content | auto"},"track-list":{syntax:"[ <line-names>? [ <track-size> | <track-repeat> ] ]+ <line-names>?"},"track-repeat":{syntax:"repeat( [ <positive-integer> ] , [ <line-names>? <track-size> ]+ <line-names>? )"},"track-size":{syntax:"<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( [ <length> | <percentage> ] )"},"transform-function":{syntax:"<matrix()> | <translate()> | <translateX()> | <translateY()> | <scale()> | <scaleX()> | <scaleY()> | <rotate()> | <skew()> | <skewX()> | <skewY()> | <matrix3d()> | <translate3d()> | <translateZ()> | <scale3d()> | <scaleZ()> | <rotate3d()> | <rotateX()> | <rotateY()> | <rotateZ()> | <perspective()>"},"transform-list":{syntax:"<transform-function>+"},"translate()":{syntax:"translate( <length-percentage> , <length-percentage>? )"},"translate3d()":{syntax:"translate3d( <length-percentage> , <length-percentage> , <length> )"},"translateX()":{syntax:"translateX( <length-percentage> )"},"translateY()":{syntax:"translateY( <length-percentage> )"},"translateZ()":{syntax:"translateZ( <length> )"},"type-or-unit":{syntax:"string | color | url | integer | number | length | angle | time | frequency | cap | ch | em | ex | ic | lh | rlh | rem | vb | vi | vw | vh | vmin | vmax | mm | Q | cm | in | pt | pc | px | deg | grad | rad | turn | ms | s | Hz | kHz | %"},"type-selector":{syntax:"<wq-name> | <ns-prefix>? '*'"},"var()":{syntax:"var( <custom-property-name> , <declaration-value>? )"},"viewport-length":{syntax:"auto | <length-percentage>"},"wq-name":{syntax:"<ns-prefix>? <ident-token>"}},lo.syntaxes),atrules:function(e,t){const n={};for(const r in e){const i=t[r]&&t[r].descriptors||null;n[r]={prelude:r in t&&"prelude"in t[r]?t[r].prelude:e[r].prelude||null,descriptors:e[r].descriptors?co(e[r].descriptors,i||{}):i&&po(i)}}for(const r in t)hasOwnProperty.call(e,r)||(n[r]={prelude:t[r].prelude||null,descriptors:t[r].descriptors&&po(t[r].descriptors)});return n}(function(e){const t=Object.create(null);for(const n in e){const r=e[n];let i=null;if(r.descriptors){i=Object.create(null);for(const e in r.descriptors)i[e]=r.descriptors[e].syntax}t[n.substr(1)]={prelude:r.syntax.trim().match(/^@\S+\s+([^;\{]*)/)[1].trim()||null,descriptors:i}}return t}(ao),lo.atrules),properties:co(so,lo.properties)},ho=it.cmpChar,fo=it.isDigit,go=it.TYPE,yo=go.WhiteSpace,vo=go.Comment,bo=go.Ident,So=go.Number,xo=go.Dimension,wo=43,Co=45,ko=110,Oo=!0;function To(e,t){var n=this.scanner.tokenStart+e,r=this.scanner.source.charCodeAt(n);for(r!==wo&&r!==Co||(t&&this.error("Number sign is not allowed"),n++);n<this.scanner.tokenEnd;n++)fo(this.scanner.source.charCodeAt(n))||this.error("Integer is expected",n)}function Eo(e){return To.call(this,0,e)}function Ao(e,t){if(!ho(this.scanner.source,this.scanner.tokenStart+e,t)){var n="";switch(t){case ko:n="N is expected";break;case Co:n="HyphenMinus is expected"}this.error(n,this.scanner.tokenStart+e)}}function _o(){for(var e=0,t=0,n=this.scanner.tokenType;n===yo||n===vo;)n=this.scanner.lookupType(++e);if(n!==So){if(!this.scanner.isDelim(wo,e)&&!this.scanner.isDelim(Co,e))return null;t=this.scanner.isDelim(wo,e)?wo:Co;do{n=this.scanner.lookupType(++e)}while(n===yo||n===vo);n!==So&&(this.scanner.skip(e),Eo.call(this,Oo))}return e>0&&this.scanner.skip(e),0===t&&(n=this.scanner.source.charCodeAt(this.scanner.tokenStart))!==wo&&n!==Co&&this.error("Number sign is expected"),Eo.call(this,0!==t),t===Co?"-"+this.consume(So):this.consume(So)}var zo={name:"AnPlusB",structure:{a:[String,null],b:[String,null]},parse:function(){var e=this.scanner.tokenStart,t=null,n=null;if(this.scanner.tokenType===So)Eo.call(this,false),n=this.consume(So);else if(this.scanner.tokenType===bo&&ho(this.scanner.source,this.scanner.tokenStart,Co))switch(t="-1",Ao.call(this,1,ko),this.scanner.getTokenLength()){case 2:this.scanner.next(),n=_o.call(this);break;case 3:Ao.call(this,2,Co),this.scanner.next(),this.scanner.skipSC(),Eo.call(this,Oo),n="-"+this.consume(So);break;default:Ao.call(this,2,Co),To.call(this,3,Oo),this.scanner.next(),n=this.scanner.substrToCursor(e+2)}else if(this.scanner.tokenType===bo||this.scanner.isDelim(wo)&&this.scanner.lookupType(1)===bo){var r=0;switch(t="1",this.scanner.isDelim(wo)&&(r=1,this.scanner.next()),Ao.call(this,0,ko),this.scanner.getTokenLength()){case 1:this.scanner.next(),n=_o.call(this);break;case 2:Ao.call(this,1,Co),this.scanner.next(),this.scanner.skipSC(),Eo.call(this,Oo),n="-"+this.consume(So);break;default:Ao.call(this,1,Co),To.call(this,2,Oo),this.scanner.next(),n=this.scanner.substrToCursor(e+r+1)}}else if(this.scanner.tokenType===xo){for(var i=this.scanner.source.charCodeAt(this.scanner.tokenStart),o=(r=i===wo||i===Co,this.scanner.tokenStart+r);o<this.scanner.tokenEnd&&fo(this.scanner.source.charCodeAt(o));o++);o===this.scanner.tokenStart+r&&this.error("Integer is expected",this.scanner.tokenStart+r),Ao.call(this,o-this.scanner.tokenStart,ko),t=this.scanner.source.substring(e,o),o+1===this.scanner.tokenEnd?(this.scanner.next(),n=_o.call(this)):(Ao.call(this,o-this.scanner.tokenStart+1,Co),o+2===this.scanner.tokenEnd?(this.scanner.next(),this.scanner.skipSC(),Eo.call(this,Oo),n="-"+this.consume(So)):(To.call(this,o-this.scanner.tokenStart+2,Oo),this.scanner.next(),n=this.scanner.substrToCursor(o+1)))}else this.error();return null!==t&&t.charCodeAt(0)===wo&&(t=t.substr(1)),null!==n&&n.charCodeAt(0)===wo&&(n=n.substr(1)),{type:"AnPlusB",loc:this.getLocation(e,this.scanner.tokenStart),a:t,b:n}},generate:function(e){var t=null!==e.a&&void 0!==e.a,n=null!==e.b&&void 0!==e.b;t?(this.chunk("+1"===e.a?"+n":"1"===e.a?"n":"-1"===e.a?"-n":e.a+"n"),n&&("-"===(n=String(e.b)).charAt(0)||"+"===n.charAt(0)?(this.chunk(n.charAt(0)),this.chunk(n.substr(1))):(this.chunk("+"),this.chunk(n)))):this.chunk(String(e.b))}},Ro=it.TYPE,Lo=Ro.WhiteSpace,Po=Ro.Semicolon,Bo=Ro.LeftCurlyBracket,Wo=Ro.Delim;function Mo(){return this.scanner.tokenIndex>0&&this.scanner.lookupType(-1)===Lo?this.scanner.tokenIndex>1?this.scanner.getTokenStart(this.scanner.tokenIndex-1):this.scanner.firstCharOffset:this.scanner.tokenStart}function Uo(){return 0}var Io={name:"Raw",structure:{value:String},parse:function(e,t,n){var r,i=this.scanner.getTokenStart(e);return this.scanner.skip(this.scanner.getRawLength(e,t||Uo)),r=n&&this.scanner.tokenStart>i?Mo.call(this):this.scanner.tokenStart,{type:"Raw",loc:this.getLocation(i,r),value:this.scanner.source.substring(i,r)}},generate:function(e){this.chunk(e.value)},mode:{default:Uo,leftCurlyBracket:function(e){return e===Bo?1:0},leftCurlyBracketOrSemicolon:function(e){return e===Bo||e===Po?1:0},exclamationMarkOrSemicolon:function(e,t,n){return e===Wo&&33===t.charCodeAt(n)||e===Po?1:0},semicolonIncluded:function(e){return e===Po?2:0}}},qo=it.TYPE,No=Io.mode,Do=qo.AtKeyword,Vo=qo.Semicolon,jo=qo.LeftCurlyBracket,Fo=qo.RightCurlyBracket;function Go(e){return this.Raw(e,No.leftCurlyBracketOrSemicolon,!0)}function Ko(){for(var e,t=1;e=this.scanner.lookupType(t);t++){if(e===Fo)return!0;if(e===jo||e===Do)return!1}return!1}var Yo={name:"Atrule",structure:{name:String,prelude:["AtrulePrelude","Raw",null],block:["Block",null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null,i=null;switch(this.eat(Do),t=(e=this.scanner.substrToCursor(n+1)).toLowerCase(),this.scanner.skipSC(),!1===this.scanner.eof&&this.scanner.tokenType!==jo&&this.scanner.tokenType!==Vo&&(this.parseAtrulePrelude?"AtrulePrelude"===(r=this.parseWithFallback(this.AtrulePrelude.bind(this,e),Go)).type&&null===r.children.head&&(r=null):r=Go.call(this,this.scanner.tokenIndex),this.scanner.skipSC()),this.scanner.tokenType){case Vo:this.scanner.next();break;case jo:i=this.atrule.hasOwnProperty(t)&&"function"==typeof this.atrule[t].block?this.atrule[t].block.call(this):this.Block(Ko.call(this))}return{type:"Atrule",loc:this.getLocation(n,this.scanner.tokenStart),name:e,prelude:r,block:i}},generate:function(e){this.chunk("@"),this.chunk(e.name),null!==e.prelude&&(this.chunk(" "),this.node(e.prelude)),e.block?this.node(e.block):this.chunk(";")},walkContext:"atrule"},Ho=it.TYPE,$o=Ho.Semicolon,Qo=Ho.LeftCurlyBracket,Zo={name:"AtrulePrelude",structure:{children:[[]]},parse:function(e){var t=null;return null!==e&&(e=e.toLowerCase()),this.scanner.skipSC(),t=this.atrule.hasOwnProperty(e)&&"function"==typeof this.atrule[e].prelude?this.atrule[e].prelude.call(this):this.readSequence(this.scope.AtrulePrelude),this.scanner.skipSC(),!0!==this.scanner.eof&&this.scanner.tokenType!==Qo&&this.scanner.tokenType!==$o&&this.error("Semicolon or block is expected"),null===t&&(t=this.createList()),{type:"AtrulePrelude",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e)},walkContext:"atrulePrelude"},Xo=it.TYPE,Jo=Xo.Ident,ea=Xo.String,ta=Xo.Colon,na=Xo.LeftSquareBracket,ra=Xo.RightSquareBracket;function ia(){this.scanner.eof&&this.error("Unexpected end of input");var e=this.scanner.tokenStart,t=!1,n=!0;return this.scanner.isDelim(42)?(t=!0,n=!1,this.scanner.next()):this.scanner.isDelim(124)||this.eat(Jo),this.scanner.isDelim(124)?61!==this.scanner.source.charCodeAt(this.scanner.tokenStart+1)?(this.scanner.next(),this.eat(Jo)):t&&this.error("Identifier is expected",this.scanner.tokenEnd):t&&this.error("Vertical line is expected"),n&&this.scanner.tokenType===ta&&(this.scanner.next(),this.eat(Jo)),{type:"Identifier",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}}function oa(){var e=this.scanner.tokenStart,t=this.scanner.source.charCodeAt(e);return 61!==t&&126!==t&&94!==t&&36!==t&&42!==t&&124!==t&&this.error("Attribute selector (=, ~=, ^=, $=, *=, |=) is expected"),this.scanner.next(),61!==t&&(this.scanner.isDelim(61)||this.error("Equal sign is expected"),this.scanner.next()),this.scanner.substrToCursor(e)}var aa={name:"AttributeSelector",structure:{name:"Identifier",matcher:[String,null],value:["String","Identifier",null],flags:[String,null]},parse:function(){var e,t=this.scanner.tokenStart,n=null,r=null,i=null;return this.eat(na),this.scanner.skipSC(),e=ia.call(this),this.scanner.skipSC(),this.scanner.tokenType!==ra&&(this.scanner.tokenType!==Jo&&(n=oa.call(this),this.scanner.skipSC(),r=this.scanner.tokenType===ea?this.String():this.Identifier(),this.scanner.skipSC()),this.scanner.tokenType===Jo&&(i=this.scanner.getTokenValue(),this.scanner.next(),this.scanner.skipSC())),this.eat(ra),{type:"AttributeSelector",loc:this.getLocation(t,this.scanner.tokenStart),name:e,matcher:n,value:r,flags:i}},generate:function(e){var t=" ";this.chunk("["),this.node(e.name),null!==e.matcher&&(this.chunk(e.matcher),null!==e.value&&(this.node(e.value),"String"===e.value.type&&(t=""))),null!==e.flags&&(this.chunk(t),this.chunk(e.flags)),this.chunk("]")}},sa=it.TYPE,la=Io.mode,ua=sa.WhiteSpace,ca=sa.Comment,da=sa.Semicolon,pa=sa.AtKeyword,ma=sa.LeftCurlyBracket,ha=sa.RightCurlyBracket;function fa(e){return this.Raw(e,null,!0)}function ga(){return this.parseWithFallback(this.Rule,fa)}function ya(e){return this.Raw(e,la.semicolonIncluded,!0)}function va(){if(this.scanner.tokenType===da)return ya.call(this,this.scanner.tokenIndex);var e=this.parseWithFallback(this.Declaration,ya);return this.scanner.tokenType===da&&this.scanner.next(),e}var ba={name:"Block",structure:{children:[["Atrule","Rule","Declaration"]]},parse:function(e){var t=e?va:ga,n=this.scanner.tokenStart,r=this.createList();this.eat(ma);e:for(;!this.scanner.eof;)switch(this.scanner.tokenType){case ha:break e;case ua:case ca:this.scanner.next();break;case pa:r.push(this.parseWithFallback(this.Atrule,fa));break;default:r.push(t.call(this))}return this.scanner.eof||this.eat(ha),{type:"Block",loc:this.getLocation(n,this.scanner.tokenStart),children:r}},generate:function(e){this.chunk("{"),this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")})),this.chunk("}")},walkContext:"block"},Sa=it.TYPE,xa=Sa.LeftSquareBracket,wa=Sa.RightSquareBracket,Ca={name:"Brackets",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(xa),n=e.call(this,t),this.scanner.eof||this.eat(wa),{type:"Brackets",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("["),this.children(e),this.chunk("]")}},ka=it.TYPE.CDC,Oa={name:"CDC",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(ka),{type:"CDC",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("--\x3e")}},Ta=it.TYPE.CDO,Ea={name:"CDO",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(Ta),{type:"CDO",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("\x3c!--")}},Aa=it.TYPE.Ident,_a={name:"ClassSelector",structure:{name:String},parse:function(){return this.scanner.isDelim(46)||this.error("Full stop is expected"),this.scanner.next(),{type:"ClassSelector",loc:this.getLocation(this.scanner.tokenStart-1,this.scanner.tokenEnd),name:this.consume(Aa)}},generate:function(e){this.chunk("."),this.chunk(e.name)}},za=it.TYPE.Ident,Ra={name:"Combinator",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 62:case 43:case 126:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.tokenType===za&&!1!==this.scanner.lookupValue(0,"deep")||this.error("Identifier `deep` is expected"),this.scanner.next(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.scanner.next();break;default:this.error("Combinator is expected")}return{type:"Combinator",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}},La=it.TYPE.Comment,Pa={name:"Comment",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=this.scanner.tokenEnd;return this.eat(La),t-e+2>=2&&42===this.scanner.source.charCodeAt(t-2)&&47===this.scanner.source.charCodeAt(t-1)&&(t-=2),{type:"Comment",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e+2,t)}},generate:function(e){this.chunk("/*"),this.chunk(e.value),this.chunk("*/")}},Ba=Le.isCustomProperty,Wa=it.TYPE,Ma=Io.mode,Ua=Wa.Ident,Ia=Wa.Hash,qa=Wa.Colon,Na=Wa.Semicolon,Da=Wa.Delim,Va=Wa.WhiteSpace;function ja(e){return this.Raw(e,Ma.exclamationMarkOrSemicolon,!0)}function Fa(e){return this.Raw(e,Ma.exclamationMarkOrSemicolon,!1)}function Ga(){var e=this.scanner.tokenIndex,t=this.Value();return"Raw"!==t.type&&!1===this.scanner.eof&&this.scanner.tokenType!==Na&&!1===this.scanner.isDelim(33)&&!1===this.scanner.isBalanceEdge(e)&&this.error(),t}var Ka={name:"Declaration",structure:{important:[Boolean,String],property:String,value:["Value","Raw"]},parse:function(){var e,t=this.scanner.tokenStart,n=this.scanner.tokenIndex,r=Ya.call(this),i=Ba(r),o=i?this.parseCustomProperty:this.parseValue,a=i?Fa:ja,s=!1;this.scanner.skipSC(),this.eat(qa);const l=this.scanner.tokenIndex;if(i||this.scanner.skipSC(),e=o?this.parseWithFallback(Ga,a):a.call(this,this.scanner.tokenIndex),i&&"Value"===e.type&&e.children.isEmpty())for(let t=l-this.scanner.tokenIndex;t<=0;t++)if(this.scanner.lookupType(t)===Va){e.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}return this.scanner.isDelim(33)&&(s=Ha.call(this),this.scanner.skipSC()),!1===this.scanner.eof&&this.scanner.tokenType!==Na&&!1===this.scanner.isBalanceEdge(n)&&this.error(),{type:"Declaration",loc:this.getLocation(t,this.scanner.tokenStart),important:s,property:r,value:e}},generate:function(e){this.chunk(e.property),this.chunk(":"),this.node(e.value),e.important&&this.chunk(!0===e.important?"!important":"!"+e.important)},walkContext:"declaration"};function Ya(){var e=this.scanner.tokenStart;if(this.scanner.tokenType===Da)switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 42:case 36:case 43:case 35:case 38:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.isDelim(47)&&this.scanner.next()}return this.scanner.tokenType===Ia?this.eat(Ia):this.eat(Ua),this.scanner.substrToCursor(e)}function Ha(){this.eat(Da),this.scanner.skipSC();var e=this.consume(Ua);return"important"===e||e}var $a=it.TYPE,Qa=Io.mode,Za=$a.WhiteSpace,Xa=$a.Comment,Ja=$a.Semicolon;function es(e){return this.Raw(e,Qa.semicolonIncluded,!0)}var ts={name:"DeclarationList",structure:{children:[["Declaration"]]},parse:function(){for(var e=this.createList();!this.scanner.eof;)switch(this.scanner.tokenType){case Za:case Xa:case Ja:this.scanner.next();break;default:e.push(this.parseWithFallback(this.Declaration,es))}return{type:"DeclarationList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")}))}},ns=ae.consumeNumber,rs=it.TYPE.Dimension,is={name:"Dimension",structure:{value:String,unit:String},parse:function(){var e=this.scanner.tokenStart,t=ns(this.scanner.source,e);return this.eat(rs),{type:"Dimension",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t),unit:this.scanner.source.substring(t,this.scanner.tokenStart)}},generate:function(e){this.chunk(e.value),this.chunk(e.unit)}},os=it.TYPE.RightParenthesis,as={name:"Function",structure:{name:String,children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart,i=this.consumeFunctionName(),o=i.toLowerCase();return n=t.hasOwnProperty(o)?t[o].call(this,t):e.call(this,t),this.scanner.eof||this.eat(os),{type:"Function",loc:this.getLocation(r,this.scanner.tokenStart),name:i,children:n}},generate:function(e){this.chunk(e.name),this.chunk("("),this.children(e),this.chunk(")")},walkContext:"function"},ss=it.TYPE.Hash,ls={name:"Hash",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(ss),{type:"Hash",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.value)}},us=it.TYPE.Ident,cs={name:"Identifier",structure:{name:String},parse:function(){return{type:"Identifier",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),name:this.consume(us)}},generate:function(e){this.chunk(e.name)}},ds=it.TYPE.Hash,ps={name:"IdSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(ds),{type:"IdSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.name)}},ms=it.TYPE,hs=ms.Ident,fs=ms.Number,gs=ms.Dimension,ys=ms.LeftParenthesis,vs=ms.RightParenthesis,bs=ms.Colon,Ss=ms.Delim,xs={name:"MediaFeature",structure:{name:String,value:["Identifier","Number","Dimension","Ratio",null]},parse:function(){var e,t=this.scanner.tokenStart,n=null;if(this.eat(ys),this.scanner.skipSC(),e=this.consume(hs),this.scanner.skipSC(),this.scanner.tokenType!==vs){switch(this.eat(bs),this.scanner.skipSC(),this.scanner.tokenType){case fs:n=this.lookupNonWSType(1)===Ss?this.Ratio():this.Number();break;case gs:n=this.Dimension();break;case hs:n=this.Identifier();break;default:this.error("Number, dimension, ratio or identifier is expected")}this.scanner.skipSC()}return this.eat(vs),{type:"MediaFeature",loc:this.getLocation(t,this.scanner.tokenStart),name:e,value:n}},generate:function(e){this.chunk("("),this.chunk(e.name),null!==e.value&&(this.chunk(":"),this.node(e.value)),this.chunk(")")}},ws=it.TYPE,Cs=ws.WhiteSpace,ks=ws.Comment,Os=ws.Ident,Ts=ws.LeftParenthesis,Es={name:"MediaQuery",structure:{children:[["Identifier","MediaFeature","WhiteSpace"]]},parse:function(){this.scanner.skipSC();var e=this.createList(),t=null,n=null;e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case ks:this.scanner.next();continue;case Cs:n=this.WhiteSpace();continue;case Os:t=this.Identifier();break;case Ts:t=this.MediaFeature();break;default:break e}null!==n&&(e.push(n),n=null),e.push(t)}return null===t&&this.error("Identifier or parenthesis is expected"),{type:"MediaQuery",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}},As=it.TYPE.Comma,_s={name:"MediaQueryList",structure:{children:[["MediaQuery"]]},parse:function(e){var t=this.createList();for(this.scanner.skipSC();!this.scanner.eof&&(t.push(this.MediaQuery(e)),this.scanner.tokenType===As);)this.scanner.next();return{type:"MediaQueryList",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e,(function(){this.chunk(",")}))}},zs=it.TYPE.Number,Rs={name:"Number",structure:{value:String},parse:function(){return{type:"Number",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(zs)}},generate:function(e){this.chunk(e.value)}},Ls={name:"Operator",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.next(),{type:"Operator",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}},Ps=it.TYPE,Bs=Ps.LeftParenthesis,Ws=Ps.RightParenthesis,Ms={name:"Parentheses",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(Bs),n=e.call(this,t),this.scanner.eof||this.eat(Ws),{type:"Parentheses",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("("),this.children(e),this.chunk(")")}},Us=ae.consumeNumber,Is=it.TYPE.Percentage,qs={name:"Percentage",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=Us(this.scanner.source,e);return this.eat(Is),{type:"Percentage",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t)}},generate:function(e){this.chunk(e.value),this.chunk("%")}},Ns=it.TYPE,Ds=Ns.Ident,Vs=Ns.Function,js=Ns.Colon,Fs=Ns.RightParenthesis,Gs={name:"PseudoClassSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat(js),this.scanner.tokenType===Vs?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(Fs)):e=this.consume(Ds),{type:"PseudoClassSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk(":"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"},Ks=it.TYPE,Ys=Ks.Ident,Hs=Ks.Function,$s=Ks.Colon,Qs=Ks.RightParenthesis,Zs={name:"PseudoElementSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat($s),this.eat($s),this.scanner.tokenType===Hs?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(Qs)):e=this.consume(Ys),{type:"PseudoElementSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk("::"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"},Xs=it.isDigit,Js=it.TYPE,el=Js.Number,tl=Js.Delim;function nl(){this.scanner.skipWS();for(var e=this.consume(el),t=0;t<e.length;t++){var n=e.charCodeAt(t);Xs(n)||46===n||this.error("Unsigned number is expected",this.scanner.tokenStart-e.length+t)}return 0===Number(e)&&this.error("Zero number is not allowed",this.scanner.tokenStart-e.length),e}var rl={name:"Ratio",structure:{left:String,right:String},parse:function(){var e,t=this.scanner.tokenStart,n=nl.call(this);return this.scanner.skipWS(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.eat(tl),e=nl.call(this),{type:"Ratio",loc:this.getLocation(t,this.scanner.tokenStart),left:n,right:e}},generate:function(e){this.chunk(e.left),this.chunk("/"),this.chunk(e.right)}},il=it.TYPE,ol=Io.mode,al=il.LeftCurlyBracket;function sl(e){return this.Raw(e,ol.leftCurlyBracket,!0)}function ll(){var e=this.SelectorList();return"Raw"!==e.type&&!1===this.scanner.eof&&this.scanner.tokenType!==al&&this.error(),e}var ul={name:"Rule",structure:{prelude:["SelectorList","Raw"],block:["Block"]},parse:function(){var e,t,n=this.scanner.tokenIndex,r=this.scanner.tokenStart;return e=this.parseRulePrelude?this.parseWithFallback(ll,sl):sl.call(this,n),t=this.Block(!0),{type:"Rule",loc:this.getLocation(r,this.scanner.tokenStart),prelude:e,block:t}},generate:function(e){this.node(e.prelude),this.node(e.block)},walkContext:"rule"},cl=it.TYPE.Comma,dl={name:"SelectorList",structure:{children:[["Selector","Raw"]]},parse:function(){for(var e=this.createList();!this.scanner.eof&&(e.push(this.Selector()),this.scanner.tokenType===cl);)this.scanner.next();return{type:"SelectorList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(){this.chunk(",")}))},walkContext:"selector"},pl=it.TYPE.String,ml={name:"String",structure:{value:String},parse:function(){return{type:"String",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(pl)}},generate:function(e){this.chunk(e.value)}},hl=it.TYPE,fl=hl.WhiteSpace,gl=hl.Comment,yl=hl.AtKeyword,vl=hl.CDO,bl=hl.CDC;function Sl(e){return this.Raw(e,null,!1)}var xl={name:"StyleSheet",structure:{children:[["Comment","CDO","CDC","Atrule","Rule","Raw"]]},parse:function(){for(var e,t=this.scanner.tokenStart,n=this.createList();!this.scanner.eof;){switch(this.scanner.tokenType){case fl:this.scanner.next();continue;case gl:if(33!==this.scanner.source.charCodeAt(this.scanner.tokenStart+2)){this.scanner.next();continue}e=this.Comment();break;case vl:e=this.CDO();break;case bl:e=this.CDC();break;case yl:e=this.parseWithFallback(this.Atrule,Sl);break;default:e=this.parseWithFallback(this.Rule,Sl)}n.push(e)}return{type:"StyleSheet",loc:this.getLocation(t,this.scanner.tokenStart),children:n}},generate:function(e){this.children(e)},walkContext:"stylesheet"},wl=it.TYPE.Ident;function Cl(){this.scanner.tokenType!==wl&&!1===this.scanner.isDelim(42)&&this.error("Identifier or asterisk is expected"),this.scanner.next()}var kl={name:"TypeSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.isDelim(124)?(this.scanner.next(),Cl.call(this)):(Cl.call(this),this.scanner.isDelim(124)&&(this.scanner.next(),Cl.call(this))),{type:"TypeSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}},Ol=it.isHexDigit,Tl=it.cmpChar,El=it.TYPE,Al=it.NAME,_l=El.Ident,zl=El.Number,Rl=El.Dimension;function Ll(e,t){for(var n=this.scanner.tokenStart+e,r=0;n<this.scanner.tokenEnd;n++){var i=this.scanner.source.charCodeAt(n);if(45===i&&t&&0!==r)return 0===Ll.call(this,e+r+1,!1)&&this.error(),-1;Ol(i)||this.error(t&&0!==r?"HyphenMinus"+(r<6?" or hex digit":"")+" is expected":r<6?"Hex digit is expected":"Unexpected input",n),++r>6&&this.error("Too many hex digits",n)}return this.scanner.next(),r}function Pl(e){for(var t=0;this.scanner.isDelim(63);)++t>e&&this.error("Too many question marks"),this.scanner.next()}function Bl(e){this.scanner.source.charCodeAt(this.scanner.tokenStart)!==e&&this.error(Al[e]+" is expected")}function Wl(){var e=0;return this.scanner.isDelim(43)?(this.scanner.next(),this.scanner.tokenType===_l?void((e=Ll.call(this,0,!0))>0&&Pl.call(this,6-e)):this.scanner.isDelim(63)?(this.scanner.next(),void Pl.call(this,5)):void this.error("Hex digit or question mark is expected")):this.scanner.tokenType===zl?(Bl.call(this,43),e=Ll.call(this,1,!0),this.scanner.isDelim(63)?void Pl.call(this,6-e):this.scanner.tokenType===Rl||this.scanner.tokenType===zl?(Bl.call(this,45),void Ll.call(this,1,!1)):void 0):this.scanner.tokenType===Rl?(Bl.call(this,43),void((e=Ll.call(this,1,!0))>0&&Pl.call(this,6-e))):void this.error()}var Ml={name:"UnicodeRange",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return Tl(this.scanner.source,e,117)||this.error("U is expected"),Tl(this.scanner.source,e+1,43)||this.error("Plus sign is expected"),this.scanner.next(),Wl.call(this),{type:"UnicodeRange",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}},Ul=it.isWhiteSpace,Il=it.cmpStr,ql=it.TYPE,Nl=ql.Function,Dl=ql.Url,Vl=ql.RightParenthesis,jl={name:"Url",structure:{value:["String","Raw"]},parse:function(){var e,t=this.scanner.tokenStart;switch(this.scanner.tokenType){case Dl:for(var n=t+4,r=this.scanner.tokenEnd-1;n<r&&Ul(this.scanner.source.charCodeAt(n));)n++;for(;n<r&&Ul(this.scanner.source.charCodeAt(r-1));)r--;e={type:"Raw",loc:this.getLocation(n,r),value:this.scanner.source.substring(n,r)},this.eat(Dl);break;case Nl:Il(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")||this.error("Function name must be `url`"),this.eat(Nl),this.scanner.skipSC(),e=this.String(),this.scanner.skipSC(),this.eat(Vl);break;default:this.error("Url or Function is expected")}return{type:"Url",loc:this.getLocation(t,this.scanner.tokenStart),value:e}},generate:function(e){this.chunk("url"),this.chunk("("),this.node(e.value),this.chunk(")")}},Fl=it.TYPE.WhiteSpace,Gl=Object.freeze({type:"WhiteSpace",loc:null,value:" "}),Kl={AnPlusB:zo,Atrule:Yo,AtrulePrelude:Zo,AttributeSelector:aa,Block:ba,Brackets:Ca,CDC:Oa,CDO:Ea,ClassSelector:_a,Combinator:Ra,Comment:Pa,Declaration:Ka,DeclarationList:ts,Dimension:is,Function:as,Hash:ls,Identifier:cs,IdSelector:ps,MediaFeature:xs,MediaQuery:Es,MediaQueryList:_s,Nth:{name:"Nth",structure:{nth:["AnPlusB","Identifier"],selector:["SelectorList",null]},parse:function(e){this.scanner.skipSC();var t,n=this.scanner.tokenStart,r=n,i=null;return t=this.scanner.lookupValue(0,"odd")||this.scanner.lookupValue(0,"even")?this.Identifier():this.AnPlusB(),this.scanner.skipSC(),e&&this.scanner.lookupValue(0,"of")?(this.scanner.next(),i=this.SelectorList(),this.needPositions&&(r=this.getLastListNode(i.children).loc.end.offset)):this.needPositions&&(r=t.loc.end.offset),{type:"Nth",loc:this.getLocation(n,r),nth:t,selector:i}},generate:function(e){this.node(e.nth),null!==e.selector&&(this.chunk(" of "),this.node(e.selector))}},Number:Rs,Operator:Ls,Parentheses:Ms,Percentage:qs,PseudoClassSelector:Gs,PseudoElementSelector:Zs,Ratio:rl,Raw:Io,Rule:ul,Selector:{name:"Selector",structure:{children:[["TypeSelector","IdSelector","ClassSelector","AttributeSelector","PseudoClassSelector","PseudoElementSelector","Combinator","WhiteSpace"]]},parse:function(){var e=this.readSequence(this.scope.Selector);return null===this.getFirstListNode(e)&&this.error("Selector is expected"),{type:"Selector",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}},SelectorList:dl,String:ml,StyleSheet:xl,TypeSelector:kl,UnicodeRange:Ml,Url:jl,Value:{name:"Value",structure:{children:[[]]},parse:function(){var e=this.scanner.tokenStart,t=this.readSequence(this.scope.Value);return{type:"Value",loc:this.getLocation(e,this.scanner.tokenStart),children:t}},generate:function(e){this.children(e)}},WhiteSpace:{name:"WhiteSpace",structure:{value:String},parse:function(){return this.eat(Fl),Gl},generate:function(e){this.chunk(e.value)}}},Yl={generic:!0,types:mo.types,atrules:mo.atrules,properties:mo.properties,node:Kl},Hl=it.cmpChar,$l=it.cmpStr,Ql=it.TYPE,Zl=Ql.Ident,Xl=Ql.String,Jl=Ql.Number,eu=Ql.Function,tu=Ql.Url,nu=Ql.Hash,ru=Ql.Dimension,iu=Ql.Percentage,ou=Ql.LeftParenthesis,au=Ql.LeftSquareBracket,su=Ql.Comma,lu=Ql.Delim,uu=function(e){switch(this.scanner.tokenType){case nu:return this.Hash();case su:return e.space=null,e.ignoreWSAfter=!0,this.Operator();case ou:return this.Parentheses(this.readSequence,e.recognizer);case au:return this.Brackets(this.readSequence,e.recognizer);case Xl:return this.String();case ru:return this.Dimension();case iu:return this.Percentage();case Jl:return this.Number();case eu:return $l(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")?this.Url():this.Function(this.readSequence,e.recognizer);case tu:return this.Url();case Zl:return Hl(this.scanner.source,this.scanner.tokenStart,117)&&Hl(this.scanner.source,this.scanner.tokenStart+1,43)?this.UnicodeRange():this.Identifier();case lu:var t=this.scanner.source.charCodeAt(this.scanner.tokenStart);if(47===t||42===t||43===t||45===t)return this.Operator();35===t&&this.error("Hex or identifier is expected",this.scanner.tokenStart+1)}},cu={getNode:uu},du=it.TYPE,pu=du.Delim,mu=du.Ident,hu=du.Dimension,fu=du.Percentage,gu=du.Number,yu=du.Hash,vu=du.Colon,bu=du.LeftSquareBracket;var Su={getNode:function(e){switch(this.scanner.tokenType){case bu:return this.AttributeSelector();case yu:return this.IdSelector();case vu:return this.scanner.lookupType(1)===vu?this.PseudoElementSelector():this.PseudoClassSelector();case mu:return this.TypeSelector();case gu:case fu:return this.Percentage();case hu:46===this.scanner.source.charCodeAt(this.scanner.tokenStart)&&this.error("Identifier is expected",this.scanner.tokenStart+1);break;case pu:switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 43:case 62:case 126:return e.space=null,e.ignoreWSAfter=!0,this.Combinator();case 47:return this.Combinator();case 46:return this.ClassSelector();case 42:case 124:return this.TypeSelector();case 35:return this.IdSelector()}}}},xu=it.TYPE,wu=Io.mode,Cu=xu.Comma,ku=xu.WhiteSpace,Ou={AtrulePrelude:cu,Selector:Su,Value:{getNode:uu,expression:function(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))},var:function(){var e=this.createList();if(this.scanner.skipSC(),e.push(this.Identifier()),this.scanner.skipSC(),this.scanner.tokenType===Cu){e.push(this.Operator());const t=this.scanner.tokenIndex,n=this.parseCustomProperty?this.Value(null):this.Raw(this.scanner.tokenIndex,wu.exclamationMarkOrSemicolon,!1);if("Value"===n.type&&n.children.isEmpty())for(let e=t-this.scanner.tokenIndex;e<=0;e++)if(this.scanner.lookupType(e)===ku){n.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}e.push(n)}return e}}},Tu=it.TYPE,Eu=Tu.String,Au=Tu.Ident,_u=Tu.Url,zu=Tu.Function,Ru=Tu.LeftParenthesis,Lu={parse:{prelude:function(){var e=this.createList();switch(this.scanner.skipSC(),this.scanner.tokenType){case Eu:e.push(this.String());break;case _u:case zu:e.push(this.Url());break;default:this.error("String or url() is expected")}return this.lookupNonWSType(0)!==Au&&this.lookupNonWSType(0)!==Ru||(e.push(this.WhiteSpace()),e.push(this.MediaQueryList())),e},block:null}},Pu=it.TYPE,Bu=Pu.WhiteSpace,Wu=Pu.Comment,Mu=Pu.Ident,Uu=Pu.Function,Iu=Pu.Colon,qu=Pu.LeftParenthesis;function Nu(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))}function Du(){return this.scanner.skipSC(),this.scanner.tokenType===Mu&&this.lookupNonWSType(1)===Iu?this.createSingleNodeList(this.Declaration()):Vu.call(this)}function Vu(){var e,t=this.createList(),n=null;this.scanner.skipSC();e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case Bu:n=this.WhiteSpace();continue;case Wu:this.scanner.next();continue;case Uu:e=this.Function(Nu,this.scope.AtrulePrelude);break;case Mu:e=this.Identifier();break;case qu:e=this.Parentheses(Du,this.scope.AtrulePrelude);break;default:break e}null!==n&&(t.push(n),n=null),t.push(e)}return t}var ju={parse:function(){return this.createSingleNodeList(this.SelectorList())}},Fu={parse:function(){return this.createSingleNodeList(this.Nth(true))}},Gu={parse:function(){return this.createSingleNodeList(this.Nth(false))}},Ku={parseContext:{default:"StyleSheet",stylesheet:"StyleSheet",atrule:"Atrule",atrulePrelude:function(e){return this.AtrulePrelude(e.atrule?String(e.atrule):null)},mediaQueryList:"MediaQueryList",mediaQuery:"MediaQuery",rule:"Rule",selectorList:"SelectorList",selector:"Selector",block:function(){return this.Block(!0)},declarationList:"DeclarationList",declaration:"Declaration",value:"Value"},scope:Ou,atrule:{"font-face":{parse:{prelude:null,block:function(){return this.Block(!0)}}},import:Lu,media:{parse:{prelude:function(){return this.createSingleNodeList(this.MediaQueryList())},block:function(){return this.Block(!1)}}},page:{parse:{prelude:function(){return this.createSingleNodeList(this.SelectorList())},block:function(){return this.Block(!0)}}},supports:{parse:{prelude:function(){var e=Vu.call(this);return null===this.getFirstListNode(e)&&this.error("Condition is expected"),e},block:function(){return this.Block(!1)}}}},pseudo:{dir:{parse:function(){return this.createSingleNodeList(this.Identifier())}},has:{parse:function(){return this.createSingleNodeList(this.SelectorList())}},lang:{parse:function(){return this.createSingleNodeList(this.Identifier())}},matches:ju,not:ju,"nth-child":Fu,"nth-last-child":Fu,"nth-last-of-type":Gu,"nth-of-type":Gu,slotted:{parse:function(){return this.createSingleNodeList(this.Selector())}}},node:Kl},Yu={node:Kl},Hu="1.1.3";b.exports=S.create(function(){for(var e={},t=0;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}(Yl,Ku,Yu)),b.exports.version=Hu;const $u=b.exports,Qu=["all","print","screen","speech"],Zu=/data:[^,]*;base64,/,Xu=/^(["']).*\1$/,Ju=[/::?(?:-moz-)?selection/],ec=[/(.*)transition(.*)/,/cursor/,/pointer-events/,/(-webkit-)?tap-highlight-color/,/(.*)user-select/];class tc{constructor(e,t,n){this.css=e,this.ast=t,this.errors=n}absolutifyUrls(e){$u.walk(this.ast,{visit:"Url",enter:t=>{if(t.value&&"String"===t.value.type){const n=tc.readValue(t.value),r=new URL(n,e).toString();r!==n&&(t.value.value='"'+r+'"')}}})}pruned(e){const t=new tc(this.css,$u.clone(this.ast),this.errors);return t.pruneMediaQueries(),t.pruneNonCriticalSelectors(e),t.pruneExcludedProperties(),t.pruneLargeBase64Embeds(),t.pruneComments(),t}originalText(e){return e.loc&&e.loc.start&&e.loc.end?this.css.substring(e.loc.start.offset,e.loc.end.offset):""}applyFilters(e){e&&(e.properties&&this.applyPropertiesFilter(e.properties),e.atRules&&this.applyAtRulesFilter(e.atRules))}applyPropertiesFilter(e){$u.walk(this.ast,{visit:"Declaration",enter:(t,n,r)=>{!1===e(t.property,this.originalText(t.value))&&r.remove(n)}})}applyAtRulesFilter(e){$u.walk(this.ast,{visit:"Atrule",enter:(t,n,r)=>{!1===e(t.name)&&r.remove(n)}})}pruneUnusedVariables(e){let t=0;return $u.walk(this.ast,{visit:"Declaration",enter:(n,r,i)=>{n.property.startsWith("--")&&(e.has(n.property)||(i.remove(r),t++))}}),t}getUsedVariables(){const e=new Set;return $u.walk(this.ast,{visit:"Function",enter:t=>{if("var"!==$u.keyword(t.name).name)return;t.children.map(tc.readValue).forEach((t=>e.add(t)))}}),e}pruneComments(){$u.walk(this.ast,{visit:"Comment",enter:(e,t,n)=>{n.remove(t)}})}pruneMediaQueries(){$u.walk(this.ast,{visit:"Atrule",enter:(e,t,n)=>{"media"===$u.keyword(e.name).name&&e.prelude&&($u.walk(e,{visit:"MediaQueryList",enter:(e,t,n)=>{$u.walk(e,{visit:"MediaQuery",enter:(e,t,n)=>{tc.isUsefulMediaQuery(e)||n.remove(t)}}),e.children&&e.children.isEmpty()&&n.remove(t)}}),e.prelude.children&&e.prelude.children.isEmpty()&&n.remove(t))}})}static isKeyframeRule(e){return e.atrule&&"keyframes"===$u.keyword(e.atrule.name).basename}forEachSelector(e){$u.walk(this.ast,{visit:"Rule",enter(t){tc.isKeyframeRule(this)||"SelectorList"===t.prelude.type&&t.prelude.children.forEach((t=>{const n=$u.generate(t);Ju.some((e=>e.test(n)))||e(n)}))}})}pruneNonCriticalSelectors(e){$u.walk(this.ast,{visit:"Rule",enter(t,n,r){this.atrule&&"keyframes"===$u.keyword(this.atrule.name).basename||("SelectorList"===t.prelude.type?t.block.children.some((e=>"grid-area"===e.property))||(t.prelude.children=t.prelude.children.filter((t=>{if(Ju.some((e=>e.test(t))))return!1;const n=$u.generate(t);return e.has(n)})),t.prelude.children&&t.prelude.children.isEmpty()&&r.remove(n)):r.remove(n))}})}pruneLargeBase64Embeds(){$u.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{let r=!1;$u.walk(e,{visit:"Url",enter(e){const t=e.value.value;Zu.test(t)&&t.length>1e3&&(r=!0)}}),r&&n.remove(t)}})}pruneExcludedProperties(){$u.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{if(e.property){const r=$u.property(e.property).name;ec.some((e=>e.test(r)))&&n.remove(t)}}})}pruneNonCriticalFonts(e){$u.walk(this.ast,{visit:"Atrule",enter:(t,n,r)=>{if("font-face"!==$u.keyword(t.name).basename)return;const i={};$u.walk(t,{visit:"Declaration",enter:(e,t,n)=>{const r=$u.property(e.property).name;if(["src","font-family"].includes(r)&&"children"in e.value){const t=e.value.children.toArray();i[r]=t.map(tc.readValue)}"src"===r&&n.remove(t)}}),i.src&&i["font-family"]&&i["font-family"].some((t=>e.has(t)))||r.remove(n)}})}ruleCount(){let e=0;return $u.walk(this.ast,{visit:"Rule",enter:()=>{e++}}),e}getUsedFontFamilies(){const e=new Set;return $u.walk(this.ast,{visit:"Declaration",enter(t){if(!this.rule)return;$u.lexer.findDeclarationValueFragments(t,"Type","family-name").map((e=>e.nodes.toArray())).flat().map(tc.readValue).forEach((t=>e.add(t)))}}),e}static readValue(e){return"String"===e.type&&Xu.test(e.value)?e.value.substr(1,e.value.length-2):"Identifier"===e.type?e.name:e.value}static isUsefulMediaQuery(e){let t=!1;const n={};if($u.walk(e,{visit:"Identifier",enter:e=>{const r=$u.keyword(e.name).name;"not"!==r?(Qu.includes(r)&&(n[r]=!t),t=!1):t=!0}}),0===Object.keys(n).length)return!0;for(const e of["screen","all"])if(Object.prototype.hasOwnProperty.call(n,e))return n[e];return Object.values(n).some((e=>!e))}toCSS(){return $u.generate(this.ast)}static parse(e){const t=[],n=$u.parse(e,{parseCustomProperty:!0,positions:!0,onParseError:e=>{t.push(e)}});return new tc(e,n,t)}}var nc=tc;const{HttpError:rc,UnknownError:ic,UrlError:oc}=u,ac=nc;var sc=class{constructor(e){this.browserInterface=e,this.knownUrls={},this.cssFiles=[],this.errors=[]}async addMultiple(e,t){return Promise.all(Object.keys(t).map((n=>this.add(e,n,t[n]))))}async add(e,t,n={}){if(Object.prototype.hasOwnProperty.call(this.knownUrls,t)){if(this.knownUrls[t]instanceof Error)return;this.addExtraReference(e,t,this.knownUrls[t])}else try{const r=await this.browserInterface.fetch(t,{},"css");if(!r.ok)throw new rc({code:r.code,url:t});let i=await r.text();n.media&&(i="@media "+n.media+" {\n"+i+"\n}"),this.storeCss(e,t,i)}catch(e){let n=e;e instanceof oc||(n=new ic({url:t,message:e.message})),this.storeError(t,n)}}collateSelectorPages(){const e={};for(const t of this.cssFiles)t.ast.forEachSelector((n=>{e[n]||(e[n]=new Set),t.pages.forEach((t=>e[n].add(t)))}));return e}applyFilters(e){for(const t of this.cssFiles)t.ast.applyFilters(e)}prunedAsts(e){let t,n=this.cssFiles.map((t=>t.ast.pruned(e)));for(let e=0;e<10;e++){const e=n.reduce(((e,t)=>(t.getUsedVariables().forEach((t=>e.add(t))),e)),new Set);if(t&&t.size===e.size)break;if(0===n.reduce(((t,n)=>t+=n.pruneUnusedVariables(e)),0))break;t=e}const r=n.reduce(((e,t)=>(t.getUsedFontFamilies().forEach((t=>e.add(t))),e)),new Set);return n.forEach((e=>e.pruneNonCriticalFonts(r))),n=n.filter((e=>e.ruleCount()>0)),n}storeCss(e,t,n){const r=this.cssFiles.find((e=>e.css===n));if(r)return void this.addExtraReference(e,t,r);const i=ac.parse(n);i.absolutifyUrls(t);const o={css:n,ast:i,pages:[e],urls:[t]};this.knownUrls[t]=o,this.cssFiles.push(o)}addExtraReference(e,t,n){this.knownUrls[t]=n,n.pages.push(e),n.urls.includes(t)||n.urls.push(t)}storeError(e,t){this.knownUrls[e]=t,this.errors.push(t)}getErrors(){return this.errors}};const lc=["after","before","first-(line|letter)","(input-)?placeholder","scrollbar","search(results-)?decoration","search-(cancel|results)-button"];let uc;var cc={removeIgnoredPseudoElements:function(e){return e.replace(function(){if(uc)return uc;const e=lc.join("|");return uc=new RegExp("::?(-(moz|ms|webkit)-)?("+e+")"),uc}(),"").trim()}},dc="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};function pc(){throw new Error("setTimeout has not been defined")}function mc(){throw new Error("clearTimeout has not been defined")}var hc=pc,fc=mc;function gc(e){if(hc===setTimeout)return setTimeout(e,0);if((hc===pc||!hc)&&setTimeout)return hc=setTimeout,setTimeout(e,0);try{return hc(e,0)}catch(t){try{return hc.call(null,e,0)}catch(t){return hc.call(this,e,0)}}}"function"==typeof dc.setTimeout&&(hc=setTimeout),"function"==typeof dc.clearTimeout&&(fc=clearTimeout);var yc,vc=[],bc=!1,Sc=-1;function xc(){bc&&yc&&(bc=!1,yc.length?vc=yc.concat(vc):Sc=-1,vc.length&&wc())}function wc(){if(!bc){var e=gc(xc);bc=!0;for(var t=vc.length;t;){for(yc=vc,vc=[];++Sc<t;)yc&&yc[Sc].run();Sc=-1,t=vc.length}yc=null,bc=!1,function(e){if(fc===clearTimeout)return clearTimeout(e);if((fc===mc||!fc)&&clearTimeout)return fc=clearTimeout,clearTimeout(e);try{fc(e)}catch(t){try{return fc.call(null,e)}catch(t){return fc.call(this,e)}}}(e)}}function Cc(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];vc.push(new kc(e,t)),1!==vc.length||bc||gc(wc)}function kc(e,t){this.fun=e,this.array=t}kc.prototype.run=function(){this.fun.apply(null,this.array)};function Oc(){}var Tc=Oc,Ec=Oc,Ac=Oc,_c=Oc,zc=Oc,Rc=Oc,Lc=Oc;var Pc=dc.performance||{},Bc=Pc.now||Pc.mozNow||Pc.msNow||Pc.oNow||Pc.webkitNow||function(){return(new Date).getTime()};var Wc=new Date;var Mc={nextTick:Cc,title:"browser",browser:!0,env:{},argv:[],version:"",versions:{},on:Tc,addListener:Ec,once:Ac,off:_c,removeListener:zc,removeAllListeners:Rc,emit:Lc,binding:function(e){throw new Error("process.binding is not supported")},cwd:function(){return"/"},chdir:function(e){throw new Error("process.chdir is not supported")},umask:function(){return 0},hrtime:function(e){var t=.001*Bc.call(Pc),n=Math.floor(t),r=Math.floor(t%1*1e9);return e&&(n-=e[0],(r-=e[1])<0&&(n--,r+=1e9)),[n,r]},platform:"browser",release:{},config:{},uptime:function(){return(new Date-Wc)/1e3}},Uc={exports:{}};var Ic=function(e){return e},qc=/([0-9]+)/;function Nc(e){return""+parseInt(e)==e?parseInt(e):e}var Dc=function(e,t){var n,r,i,o,a=(""+e).split(qc).map(Nc),s=(""+t).split(qc).map(Nc);for(i=0,o=Math.min(a.length,s.length);i<o;i++)if((n=a[i])!=(r=s[i]))return n>r?1:-1;return a.length>s.length?1:a.length==s.length?0:-1};function Vc(e,t){return Dc(e[1],t[1])}function jc(e,t){return e[1]>t[1]?1:-1}var Fc,Gc=function(e,t){switch(t){case"natural":return e.sort(Vc);case"standard":return e.sort(jc);case"none":case!1:return e}};function Kc(){if(void 0===Fc){var e=new ArrayBuffer(2),t=new Uint8Array(e),n=new Uint16Array(e);if(t[0]=1,t[1]=2,258===n[0])Fc="BE";else{if(513!==n[0])throw new Error("unable to figure out endianess");Fc="LE"}}return Fc}function Yc(){return void 0!==dc.location?dc.location.hostname:""}function Hc(){return[]}function $c(){return 0}function Qc(){return Number.MAX_VALUE}function Zc(){return Number.MAX_VALUE}function Xc(){return[]}function Jc(){return"Browser"}function ed(){return void 0!==dc.navigator?dc.navigator.appVersion:""}function td(){}function nd(){}function rd(){return"/tmp"}var id=rd,od={EOL:"\n",tmpdir:id,tmpDir:rd,networkInterfaces:td,getNetworkInterfaces:nd,release:ed,type:Jc,cpus:Xc,totalmem:Zc,freemem:Qc,uptime:$c,loadavg:Hc,hostname:Yc,endianness:Kc};var ad=function e(t,n){var r,i,o,a={};for(r in t)o=t[r],Array.isArray(o)?a[r]=o.slice(0):a[r]="object"==typeof o&&null!==o?e(o,{}):o;for(i in n)o=n[i],i in a&&Array.isArray(o)?a[i]=o.slice(0):a[i]=i in a&&"object"==typeof o&&null!==o?e(a[i],o):o;return a},sd=t(Object.freeze({__proto__:null,endianness:Kc,hostname:Yc,loadavg:Hc,uptime:$c,freemem:Qc,totalmem:Zc,cpus:Xc,type:Jc,release:ed,networkInterfaces:td,getNetworkInterfaces:nd,arch:function(){return"javascript"},platform:function(){return"browser"},tmpDir:rd,tmpdir:id,EOL:"\n",default:od})).EOL,ld=ad,ud={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},cd={CarriageReturnLineFeed:"\r\n",LineFeed:"\n",System:sd},dd=" ",pd="\t",md={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},hd={breaks:yd(!1),breakWith:cd.System,indentBy:0,indentWith:dd,spaces:vd(!1),wrapAt:!1,semicolonAfterLastProperty:!1},fd="false",gd="true";function yd(e){var t={};return t[ud.AfterAtRule]=e,t[ud.AfterBlockBegins]=e,t[ud.AfterBlockEnds]=e,t[ud.AfterComment]=e,t[ud.AfterProperty]=e,t[ud.AfterRuleBegins]=e,t[ud.AfterRuleEnds]=e,t[ud.BeforeBlockEnds]=e,t[ud.BetweenSelectors]=e,t}function vd(e){var t={};return t[md.AroundSelectorRelation]=e,t[md.BeforeBlockBegins]=e,t[md.BeforeValue]=e,t}function bd(e){switch(e){case"windows":case"crlf":case cd.CarriageReturnLineFeed:return cd.CarriageReturnLineFeed;case"unix":case"lf":case cd.LineFeed:return cd.LineFeed;default:return sd}}function Sd(e){switch(e){case"space":return dd;case"tab":return pd;default:return e}}function xd(e){for(var t in ud){var n=ud[t],r=e.breaks[n];e.breaks[n]=!0===r?e.breakWith:!1===r?"":e.breakWith.repeat(parseInt(r))}return e}var wd=ud,Cd=md,kd=function(e){return void 0!==e&&!1!==e&&("object"==typeof e&&"breakWith"in e&&(e=ld(e,{breakWith:bd(e.breakWith)})),"object"==typeof e&&"indentBy"in e&&(e=ld(e,{indentBy:parseInt(e.indentBy)})),"object"==typeof e&&"indentWith"in e&&(e=ld(e,{indentWith:Sd(e.indentWith)})),"object"==typeof e?xd(ld(hd,e)):"string"==typeof e&&"beautify"==e?xd(ld(hd,{breaks:yd(!0),indentBy:2,spaces:vd(!0)})):"string"==typeof e&&"keep-breaks"==e?xd(ld(hd,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}})):"string"==typeof e?xd(ld(hd,e.split(";").reduce((function(e,t){var n=t.split(":"),r=n[0],i=n[1];return"breaks"==r||"spaces"==r?e[r]=function(e){return e.split(",").reduce((function(e,t){var n=t.split("="),r=n[0],i=n[1];return e[r]=function(e){switch(e){case fd:case"off":return!1;case gd:case"on":return!0;default:return e}}(i),e}),{})}(i):"indentBy"==r||"wrapAt"==r?e[r]=parseInt(i):"indentWith"==r?e[r]=Sd(i):"breakWith"==r&&(e[r]=bd(i)),e}),{}))):hd)},Od={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CARRIAGE_RETURN:"\r",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",INTERNAL:"-clean-css-",NEW_LINE_NIX:"\n",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};var Td=function(e){var t=e[0],n=e[1],r=e[2];return r?r+":"+t+":"+n:t+":"+n},Ed=Cd,Ad=Od,_d=Td,zd=/[\s"'][iI]\s*\]/,Rd=/([\d\w])([iI])\]/g,Ld=/="([a-zA-Z][a-zA-Z\d\-_]+)"([iI])/g,Pd=/="([a-zA-Z][a-zA-Z\d\-_]+)"(\s|\])/g,Bd=/^(?:(?:<!--|-->)\s*)+/,Wd=/='([a-zA-Z][a-zA-Z\d\-_]+)'([iI])/g,Md=/='([a-zA-Z][a-zA-Z\d\-_]+)'(\s|\])/g,Ud=/[>\+~]/,Id=/\s/,qd=[":current",":future",":has",":host",":host-context",":is",":not",":past",":where"];function Nd(e){var t,n,r,i,o=!1,a=!1;for(r=0,i=e.length;r<i;r++){if(n=e[r],t);else if(n==Ad.SINGLE_QUOTE||n==Ad.DOUBLE_QUOTE)a=!a;else{if(!(a||n!=Ad.CLOSE_CURLY_BRACKET&&n!=Ad.EXCLAMATION&&"<"!=n&&n!=Ad.SEMICOLON)){o=!0;break}if(!a&&0===r&&Ud.test(n)){o=!0;break}}t=n==Ad.BACK_SLASH}return o}function Dd(e,t){var n,r,i,o,a,s,l,u,c,d,p,m,h,f,g=[],y=0,v=!1,b=!1,S=!1,x=zd.test(e),w=t&&t.spaces[Ed.AroundSelectorRelation];for(h=0,f=e.length;h<f;h++){if(r=(n=e[h])==Ad.NEW_LINE_NIX,i=n==Ad.NEW_LINE_NIX&&e[h-1]==Ad.CARRIAGE_RETURN,s=l||u,d=!c&&!o&&0===y&&Ud.test(n),p=Id.test(n),m=(1!=y||n!=Ad.CLOSE_ROUND_BRACKET)&&(m||0===y&&n==Ad.COLON&&Vd(e,h)),a&&s&&i)g.pop(),g.pop();else if(o&&s&&r)g.pop();else if(o)g.push(n);else if(n!=Ad.OPEN_SQUARE_BRACKET||s)if(n!=Ad.CLOSE_SQUARE_BRACKET||s)if(n!=Ad.OPEN_ROUND_BRACKET||s)if(n!=Ad.CLOSE_ROUND_BRACKET||s)if(n!=Ad.SINGLE_QUOTE||s)if(n!=Ad.DOUBLE_QUOTE||s)if(n==Ad.SINGLE_QUOTE&&s)g.push(n),l=!1;else if(n==Ad.DOUBLE_QUOTE&&s)g.push(n),u=!1;else{if(p&&b&&!w)continue;!p&&b&&w?(g.push(Ad.SPACE),g.push(n)):p&&!S&&v&&y>0&&m||(p&&!S&&y>0&&m?g.push(n):p&&(c||y>0)&&!s||p&&S&&!s||(i||r)&&(c||y>0)&&s||(d&&S&&!w?(g.pop(),g.push(n)):d&&!S&&w?(g.push(Ad.SPACE),g.push(n)):p?g.push(Ad.SPACE):g.push(n)))}else g.push(n),u=!0;else g.push(n),l=!0;else g.push(n),y--;else g.push(n),y++;else g.push(n),c=!1;else g.push(n),c=!0;a=o,o=n==Ad.BACK_SLASH,b=d,S=p,v=n==Ad.COMMA}return x?g.join("").replace(Rd,"$1 $2]"):g.join("")}function Vd(e,t){var n=e.substring(t,e.indexOf(Ad.OPEN_ROUND_BRACKET,t));return qd.indexOf(n)>-1}function jd(e){return-1==e.indexOf("'")&&-1==e.indexOf('"')?e:e.replace(Wd,"=$1 $2").replace(Md,"=$1$2").replace(Ld,"=$1 $2").replace(Pd,"=$1$2")}var Fd=function(e,t,n,r,i){var o=[],a=[];function s(e,t){return i.push("HTML comment '"+t+"' at "+_d(e[2][0])+". Removing."),""}for(var l=0,u=e.length;l<u;l++){var c=e[l],d=c[1];Nd(d=d.replace(Bd,s.bind(null,c)))?i.push("Invalid selector '"+c[1]+"' at "+_d(c[2][0])+". Ignoring."):(d=jd(d=Dd(d,r)),n&&d.indexOf("nav")>0&&(d=d.replace(/\+nav(\S|$)/,"+ nav$1")),t&&d.indexOf("*+html ")>-1||t&&d.indexOf("*:first-child+html ")>-1||(d.indexOf("*")>-1&&(d=d.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),a.indexOf(d)>-1||(c[1]=d,a.push(d),o.push(c))))}return 1==o.length&&0===o[0][1].length&&(i.push("Empty selector '"+o[0][1]+"' at "+_d(o[0][2][0])+". Ignoring."),o=[]),o},Gd=/^@media\W/,Kd=/^@(?:keyframes|-moz-keyframes|-o-keyframes|-webkit-keyframes)\W/;var Yd=function(e,t){var n,r,i;for(i=e.length-1;i>=0;i--)n=!t&&Gd.test(e[i][1]),r=Kd.test(e[i][1]),e[i][1]=e[i][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")"),r&&(e[i][1]=e[i][1].replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1")),n&&(e[i][1]=e[i][1].replace(/\) /g,")"));return e};var Hd=function(e){return e.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()},$d={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};var Qd=function(e){for(var t=e.length-1;t>=0;t--){var n=e[t];n.unused&&n.all.splice(n.position,1)}},Zd=$d,Xd=Od;function Jd(e){e.value[e.value.length-1][1]+="!important"}function ep(e){e.hack[0]==Zd.UNDERSCORE?e.name="_"+e.name:e.hack[0]==Zd.ASTERISK?e.name="*"+e.name:e.hack[0]==Zd.BACKSLASH?e.value[e.value.length-1][1]+="\\"+e.hack[1]:e.hack[0]==Zd.BANG&&(e.value[e.value.length-1][1]+=Xd.SPACE+"!ie")}var tp=function(e,t){var n,r,i,o;for(o=e.length-1;o>=0;o--)(n=e[o]).dynamic&&n.important?Jd(n):n.dynamic||n.unused||(n.dirty||n.important||n.hack)&&(n.optimizable&&t?(r=t(n),n.value=r):r=n.value,n.important&&Jd(n),n.hack&&ep(n),"all"in n&&((i=n.all[n.position])[1][1]=n.name,i.splice(2,i.length-1),Array.prototype.push.apply(i,r)))},np={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RAW:"raw",RULE:"rule",RULE_SCOPE:"rule-scope"},rp=$d,ip=Od,op=np,ap={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};function sp(e){var t,n,r;for(t=2,n=e.length;t<n;t++)if((r=e[t])[0]==op.PROPERTY_VALUE&&lp(r[1]))return!0;return!1}function lp(e){return ap.VARIABLE_REFERENCE_PATTERN.test(e)}function up(e){var t,n,r;for(n=3,r=e.length;n<r;n++)if((t=e[n])[0]==op.PROPERTY_VALUE&&(t[1]==ip.COMMA||t[1]==ip.FORWARD_SLASH))return!0;return!1}function cp(e){var t=function(e){if(e.length<3)return!1;var t=e[e.length-1];return!!ap.IMPORTANT_TOKEN_PATTERN.test(t[1])||!(!ap.IMPORTANT_WORD_PATTERN.test(t[1])||!ap.SUFFIX_BANG_PATTERN.test(e[e.length-2][1]))}(e);t&&function(e){var t=e[e.length-1],n=e[e.length-2];ap.IMPORTANT_TOKEN_PATTERN.test(t[1])?t[1]=t[1].replace(ap.IMPORTANT_TOKEN_PATTERN,""):(t[1]=t[1].replace(ap.IMPORTANT_WORD_PATTERN,""),n[1]=n[1].replace(ap.SUFFIX_BANG_PATTERN,"")),0===t[1].length&&e.pop(),0===n[1].length&&e.pop()}(e);var n=function(e){var t=!1,n=e[1][1],r=e[e.length-1];return n[0]==ap.UNDERSCORE?t=[rp.UNDERSCORE]:n[0]==ap.ASTERISK?t=[rp.ASTERISK]:r[1][0]!=ap.BANG||r[1].match(ap.IMPORTANT_WORD_PATTERN)?r[1].indexOf(ap.BANG)>0&&!r[1].match(ap.IMPORTANT_WORD_PATTERN)&&ap.BANG_SUFFIX_PATTERN.test(r[1])?t=[rp.BANG]:r[1].indexOf(ap.BACKSLASH)>0&&r[1].indexOf(ap.BACKSLASH)==r[1].length-ap.BACKSLASH.length-1?t=[rp.BACKSLASH,r[1].substring(r[1].indexOf(ap.BACKSLASH)+1)]:0===r[1].indexOf(ap.BACKSLASH)&&2==r[1].length&&(t=[rp.BACKSLASH,r[1].substring(1)]):t=[rp.BANG],t}(e);return n[0]==rp.ASTERISK||n[0]==rp.UNDERSCORE?function(e){e[1][1]=e[1][1].substring(1)}(e):n[0]!=rp.BACKSLASH&&n[0]!=rp.BANG||function(e,t){var n=e[e.length-1];n[1]=n[1].substring(0,n[1].indexOf(t[0]==rp.BACKSLASH?ap.BACKSLASH:ap.BANG)).trim(),0===n[1].length&&e.pop()}(e,n),{block:e[2]&&e[2][0]==op.PROPERTY_BLOCK,components:[],dirty:!1,dynamic:sp(e),hack:n,important:t,name:e[1][1],multiplex:e.length>3&&up(e),optimizable:!0,position:0,shorthand:!1,unused:!1,value:e.slice(2)}}var dp=function(e,t){var n,r,i,o=[];for(i=e.length-1;i>=0;i--)(r=e[i])[0]==op.PROPERTY&&(t&&t.indexOf(r[1][1])>-1||((n=cp(r)).all=e,n.position=i,o.unshift(n)));return o},pp=cp;function mp(e){this.name="InvalidPropertyError",this.message=e,this.stack=(new Error).stack}mp.prototype=Object.create(Error.prototype),mp.prototype.constructor=mp;var hp=mp,fp=hp,gp=pp,yp=np,vp=Od,bp=Td;function Sp(e){var t,n;for(t=0,n=e.length;t<n;t++)if("inherit"==e[t][1])return!0;return!1}function xp(e,t,n){var r=n[e];return r.doubleValues&&2==r.defaultValue.length?gp([yp.PROPERTY,[yp.PROPERTY_NAME,e],[yp.PROPERTY_VALUE,r.defaultValue[0]],[yp.PROPERTY_VALUE,r.defaultValue[1]]]):r.doubleValues&&1==r.defaultValue.length?gp([yp.PROPERTY,[yp.PROPERTY_NAME,e],[yp.PROPERTY_VALUE,r.defaultValue[0]]]):gp([yp.PROPERTY,[yp.PROPERTY_NAME,e],[yp.PROPERTY_VALUE,r.defaultValue]])}function wp(e,t){var n=t[e.name].components,r=[],i=e.value;if(i.length<1)return[];i.length<2&&(i[1]=i[0].slice(0)),i.length<3&&(i[2]=i[0].slice(0)),i.length<4&&(i[3]=i[1].slice(0));for(var o=n.length-1;o>=0;o--){var a=gp([yp.PROPERTY,[yp.PROPERTY_NAME,n[o]]]);a.value=[i[o]],r.unshift(a)}return r}function Cp(e,t,n){for(var r,i,o,a=t[e.name],s=[xp(a.components[0],0,t),xp(a.components[1],0,t),xp(a.components[2],0,t)],l=0;l<3;l++){var u=s[l];u.name.indexOf("color")>0?r=u:u.name.indexOf("style")>0?i=u:o=u}if(1==e.value.length&&"inherit"==e.value[0][1]||3==e.value.length&&"inherit"==e.value[0][1]&&"inherit"==e.value[1][1]&&"inherit"==e.value[2][1])return r.value=i.value=o.value=[e.value[0]],s;var c,d,p=e.value.slice(0);return p.length>0&&(c=(d=p.filter(function(e){return function(t){return"inherit"!=t[1]&&(e.isWidth(t[1])||e.isUnit(t[1])||e.isDynamicUnit(t[1]))&&!e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n))).length>1&&("none"==d[0][1]||"auto"==d[0][1])?d[1]:d[0])&&(o.value=[c],p.splice(p.indexOf(c),1)),p.length>0&&(c=p.filter(function(e){return function(t){return"inherit"!=t[1]&&e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n))[0])&&(i.value=[c],p.splice(p.indexOf(c),1)),p.length>0&&(c=p.filter(function(e){return function(t){return"invert"==t[1]||e.isColor(t[1])||e.isPrefixed(t[1])}}(n))[0])&&(r.value=[c],p.splice(p.indexOf(c),1)),s}var kp={animation:function(e,t,n){var r,i,o,a=xp(e.name+"-duration",0,t),s=xp(e.name+"-timing-function",0,t),l=xp(e.name+"-delay",0,t),u=xp(e.name+"-iteration-count",0,t),c=xp(e.name+"-direction",0,t),d=xp(e.name+"-fill-mode",0,t),p=xp(e.name+"-play-state",0,t),m=xp(e.name+"-name",0,t),h=[a,s,l,u,c,d,p,m],f=e.value,g=!1,y=!1,v=!1,b=!1,S=!1,x=!1,w=!1,C=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return a.value=s.value=l.value=u.value=c.value=d.value=p.value=m.value=e.value,h;if(f.length>1&&Sp(f))throw new fp("Invalid animation values at "+bp(f[0][2][0])+". Ignoring.");for(i=0,o=f.length;i<o;i++)if(r=f[i],n.isTime(r[1])&&!g)a.value=[r],g=!0;else if(n.isTime(r[1])&&!v)l.value=[r],v=!0;else if(!n.isGlobal(r[1])&&!n.isTimingFunction(r[1])||y)if(!n.isAnimationIterationCountKeyword(r[1])&&!n.isPositiveNumber(r[1])||b)if(n.isAnimationDirectionKeyword(r[1])&&!S)c.value=[r],S=!0;else if(n.isAnimationFillModeKeyword(r[1])&&!x)d.value=[r],x=!0;else if(n.isAnimationPlayStateKeyword(r[1])&&!w)p.value=[r],w=!0;else{if(!n.isAnimationNameKeyword(r[1])&&!n.isIdentifier(r[1])||C)throw new fp("Invalid animation value at "+bp(r[2][0])+". Ignoring.");m.value=[r],C=!0}else u.value=[r],b=!0;else s.value=[r],y=!0;return h},background:function(e,t,n){var r=xp("background-image",0,t),i=xp("background-position",0,t),o=xp("background-size",0,t),a=xp("background-repeat",0,t),s=xp("background-attachment",0,t),l=xp("background-origin",0,t),u=xp("background-clip",0,t),c=xp("background-color",0,t),d=[r,i,o,a,s,l,u,c],p=e.value,m=!1,h=!1,f=!1,g=!1,y=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return c.value=r.value=a.value=i.value=o.value=l.value=u.value=e.value,d;if(1==e.value.length&&"0 0"==e.value[0][1])return d;for(var v=p.length-1;v>=0;v--){var b=p[v];if(n.isBackgroundAttachmentKeyword(b[1]))s.value=[b],y=!0;else if(n.isBackgroundClipKeyword(b[1])||n.isBackgroundOriginKeyword(b[1]))h?(l.value=[b],f=!0):(u.value=[b],h=!0),y=!0;else if(n.isBackgroundRepeatKeyword(b[1]))g?a.value.unshift(b):(a.value=[b],g=!0),y=!0;else if(n.isBackgroundPositionKeyword(b[1])||n.isBackgroundSizeKeyword(b[1])||n.isUnit(b[1])||n.isDynamicUnit(b[1])){if(v>0){var S=p[v-1];S[1]==vp.FORWARD_SLASH?o.value=[b]:v>1&&p[v-2][1]==vp.FORWARD_SLASH?(o.value=[S,b],v-=2):(m||(i.value=[]),i.value.unshift(b),m=!0)}else m||(i.value=[]),i.value.unshift(b),m=!0;y=!0}else c.value[0][1]!=t[c.name].defaultValue&&"none"!=c.value[0][1]||!n.isColor(b[1])&&!n.isPrefixed(b[1])?(n.isUrl(b[1])||n.isFunction(b[1]))&&(r.value=[b],y=!0):(c.value=[b],y=!0)}if(h&&!f&&(l.value=u.value.slice(0)),!y)throw new fp("Invalid background value at "+bp(p[0][2][0])+". Ignoring.");return d},border:Cp,borderRadius:function(e,t){for(var n=e.value,r=-1,i=0,o=n.length;i<o;i++)if(n[i][1]==vp.FORWARD_SLASH){r=i;break}if(0===r||r===n.length-1)throw new fp("Invalid border-radius value at "+bp(n[0][2][0])+". Ignoring.");var a=xp(e.name,0,t);a.value=r>-1?n.slice(0,r):n.slice(0),a.components=wp(a,t);var s=xp(e.name,0,t);s.value=r>-1?n.slice(r+1):n.slice(0),s.components=wp(s,t);for(var l=0;l<4;l++)a.components[l].multiplex=!0,a.components[l].value=a.components[l].value.concat(s.components[l].value);return a.components},font:function(e,t,n){var r,i,o,a,s=xp("font-style",0,t),l=xp("font-variant",0,t),u=xp("font-weight",0,t),c=xp("font-stretch",0,t),d=xp("font-size",0,t),p=xp("line-height",0,t),m=xp("font-family",0,t),h=[s,l,u,c,d,p,m],f=e.value,g=0,y=!1,v=!1,b=!1,S=!1,x=!1,w=!1;if(!f[g])throw new fp("Missing font values at "+bp(e.all[e.position][1][2][0])+". Ignoring.");if(1==f.length&&"inherit"==f[0][1])return s.value=l.value=u.value=c.value=d.value=p.value=m.value=f,h;if(1==f.length&&(n.isFontKeyword(f[0][1])||n.isGlobal(f[0][1])||n.isPrefixed(f[0][1])))return f[0][1]=vp.INTERNAL+f[0][1],s.value=l.value=u.value=c.value=d.value=p.value=m.value=f,h;if(f.length<2||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isFontSizeKeyword(n[1])||t.isUnit(n[1])&&!t.isDynamicUnit(n[1])||t.isFunction(n[1]))return!0;return!1}(f,n)||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isIdentifier(n[1])||t.isQuotedText(n[1]))return!0;return!1}(f,n))throw new fp("Invalid font values at "+bp(e.all[e.position][1][2][0])+". Ignoring.");if(f.length>1&&Sp(f))throw new fp("Invalid font values at "+bp(f[0][2][0])+". Ignoring.");for(;g<4;){if(r=n.isFontStretchKeyword(f[g][1])||n.isGlobal(f[g][1]),i=n.isFontStyleKeyword(f[g][1])||n.isGlobal(f[g][1]),o=n.isFontVariantKeyword(f[g][1])||n.isGlobal(f[g][1]),a=n.isFontWeightKeyword(f[g][1])||n.isGlobal(f[g][1]),i&&!v)s.value=[f[g]],v=!0;else if(o&&!b)l.value=[f[g]],b=!0;else if(a&&!S)u.value=[f[g]],S=!0;else{if(!r||y){if(i&&v||o&&b||a&&S||r&&y)throw new fp("Invalid font style / variant / weight / stretch value at "+bp(f[0][2][0])+". Ignoring.");break}c.value=[f[g]],y=!0}g++}if(!(n.isFontSizeKeyword(f[g][1])||n.isUnit(f[g][1])&&!n.isDynamicUnit(f[g][1])))throw new fp("Missing font size at "+bp(f[0][2][0])+". Ignoring.");if(d.value=[f[g]],x=!0,!f[++g])throw new fp("Missing font family at "+bp(f[0][2][0])+". Ignoring.");for(x&&f[g]&&f[g][1]==vp.FORWARD_SLASH&&f[g+1]&&(n.isLineHeightKeyword(f[g+1][1])||n.isUnit(f[g+1][1])||n.isNumber(f[g+1][1]))&&(p.value=[f[g+1]],g++,g++),m.value=[];f[g];)f[g][1]==vp.COMMA?w=!1:(w?m.value[m.value.length-1][1]+=vp.SPACE+f[g][1]:m.value.push(f[g]),w=!0),g++;if(0===m.value.length)throw new fp("Missing font family at "+bp(f[0][2][0])+". Ignoring.");return h},fourValues:wp,listStyle:function(e,t,n){var r=xp("list-style-type",0,t),i=xp("list-style-position",0,t),o=xp("list-style-image",0,t),a=[r,i,o];if(1==e.value.length&&"inherit"==e.value[0][1])return r.value=i.value=o.value=[e.value[0]],a;var s=e.value.slice(0),l=s.length,u=0;for(u=0,l=s.length;u<l;u++)if(n.isUrl(s[u][1])||"0"==s[u][1]){o.value=[s[u]],s.splice(u,1);break}for(u=0,l=s.length;u<l;u++)if(n.isListStylePositionKeyword(s[u][1])){i.value=[s[u]],s.splice(u,1);break}return s.length>0&&(n.isListStyleTypeKeyword(s[0][1])||n.isIdentifier(s[0][1]))&&(r.value=[s[0]]),a},multiplex:function(e){return function(t,n,r){var i,o,a,s,l=[],u=t.value;for(i=0,a=u.length;i<a;i++)","==u[i][1]&&l.push(i);if(0===l.length)return e(t,n,r);var c=[];for(i=0,a=l.length;i<=a;i++){var d=0===i?0:l[i-1]+1,p=i<a?l[i]:u.length,m=xp(t.name,0,n);m.value=u.slice(d,p),c.push(e(m,n,r))}var h=c[0];for(i=0,a=h.length;i<a;i++)for(h[i].multiplex=!0,o=1,s=c.length;o<s;o++)h[i].value.push([yp.PROPERTY_VALUE,vp.COMMA]),Array.prototype.push.apply(h[i].value,c[o][i].value);return h}},outline:Cp,transition:function(e,t,n){var r,i,o,a=xp(e.name+"-property",0,t),s=xp(e.name+"-duration",0,t),l=xp(e.name+"-timing-function",0,t),u=xp(e.name+"-delay",0,t),c=[a,s,l,u],d=e.value,p=!1,m=!1,h=!1,f=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return a.value=s.value=l.value=u.value=e.value,c;if(d.length>1&&Sp(d))throw new fp("Invalid animation values at "+bp(d[0][2][0])+". Ignoring.");for(i=0,o=d.length;i<o;i++)if(r=d[i],n.isTime(r[1])&&!p)s.value=[r],p=!0;else if(n.isTime(r[1])&&!m)u.value=[r],m=!0;else if(!n.isGlobal(r[1])&&!n.isTimingFunction(r[1])||f){if(!n.isIdentifier(r[1])||h)throw new fp("Invalid animation value at "+bp(r[2][0])+". Ignoring.");a.value=[r],h=!0}else l.value=[r],f=!0;return c}},Op=/(?:^|\W)(\-\w+\-)/g;function Tp(e){for(var t,n=[];null!==(t=Op.exec(e));)-1==n.indexOf(t[0])&&n.push(t[0]);return n}var Ep=function(e,t){return Tp(e).sort().join(",")==Tp(t).sort().join(",")},Ap=Ep;var _p=function(e,t,n,r,i){return!!Ap(t,n)&&(!i||e.isVariable(t)===e.isVariable(n))};function zp(e,t,n){if(!e.isFunction(t)||!e.isFunction(n))return!1;var r=t.substring(0,t.indexOf("(")),i=n.substring(0,n.indexOf("(")),o=t.substring(r.length+1,t.length-1),a=n.substring(i.length+1,n.length-1);return e.isFunction(o)||e.isFunction(a)?r===i&&zp(e,o,a):r===i}function Rp(e){return function(t,n,r){return!(!_p(t,n,r,0,!0)&&!t.isKeyword(e)(r))&&(!(!t.isVariable(n)||!t.isVariable(r))||t.isKeyword(e)(r))}}function Lp(e){return function(t,n,r){return!!(_p(t,n,r,0,!0)||t.isKeyword(e)(r)||t.isGlobal(r))&&(!(!t.isVariable(n)||!t.isVariable(r))||(t.isKeyword(e)(r)||t.isGlobal(r)))}}function Pp(e,t,n){return!!zp(e,t,n)||t===n}function Bp(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isUnit(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isUnit(t)&&!e.isUnit(n))&&(!!e.isUnit(n)||!e.isUnit(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Pp(e,t,n))))}function Wp(e){var t=Lp(e);return function(e,n,r){return Bp(e,n,r)||t(e,n,r)}}var Mp={generic:{color:function(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isColor(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(!e.colorOpacity&&(e.isRgbColor(t)||e.isHslColor(t)))&&(!(!e.colorOpacity&&(e.isRgbColor(n)||e.isHslColor(n)))&&(!(!e.colorHexAlpha&&(e.isHexAlphaColor(t)||e.isHexAlphaColor(n)))&&(!(!e.isColor(t)||!e.isColor(n))||Pp(e,t,n)))))},components:function(e){return function(t,n,r,i){return e[i](t,n,r)}},image:function(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isImage(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!!e.isImage(n)||!e.isImage(t)&&Pp(e,t,n)))},propertyName:function(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isIdentifier(n))},time:function(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isTime(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isTime(t)&&!e.isTime(n))&&(!!e.isTime(n)||!e.isTime(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Pp(e,t,n))))},timingFunction:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isTimingFunction(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isTimingFunction(n)||e.isGlobal(n)))},unit:Bp,unitOrNumber:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isUnit(n)||e.isNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!((e.isUnit(t)||e.isNumber(t))&&!e.isUnit(n)&&!e.isNumber(n))&&(!(!e.isUnit(n)&&!e.isNumber(n))||!e.isUnit(t)&&!e.isNumber(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Pp(e,t,n))))}},property:{animationDirection:Lp("animation-direction"),animationFillMode:Rp("animation-fill-mode"),animationIterationCount:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n)))},animationName:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isAnimationNameKeyword(n)||e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationNameKeyword(n)||e.isIdentifier(n)))},animationPlayState:Lp("animation-play-state"),backgroundAttachment:Rp("background-attachment"),backgroundClip:Lp("background-clip"),backgroundOrigin:Rp("background-origin"),backgroundPosition:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isBackgroundPositionKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundPositionKeyword(n)&&!e.isGlobal(n))||Bp(e,t,n)))},backgroundRepeat:Rp("background-repeat"),backgroundSize:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isBackgroundSizeKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundSizeKeyword(n)&&!e.isGlobal(n))||Bp(e,t,n)))},bottom:Wp("bottom"),borderCollapse:Rp("border-collapse"),borderStyle:Lp("*-style"),clear:Lp("clear"),cursor:Lp("cursor"),display:Lp("display"),float:Lp("float"),left:Wp("left"),fontFamily:function(e,t,n){return _p(e,t,n,0,!0)},fontStretch:Lp("font-stretch"),fontStyle:Lp("font-style"),fontVariant:Lp("font-variant"),fontWeight:Lp("font-weight"),listStyleType:Lp("list-style-type"),listStylePosition:Lp("list-style-position"),outlineStyle:Lp("*-style"),overflow:Lp("overflow"),position:Lp("position"),right:Wp("right"),textAlign:Lp("text-align"),textDecoration:Lp("text-decoration"),textOverflow:Lp("text-overflow"),textShadow:function(e,t,n){return!!(_p(e,t,n,0,!0)||e.isUnit(n)||e.isColor(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isUnit(n)||e.isColor(n)||e.isGlobal(n)))},top:Wp("top"),transform:Pp,verticalAlign:Wp("vertical-align"),visibility:Lp("visibility"),whiteSpace:Lp("white-space"),zIndex:function(e,t,n){return!(!_p(e,t,n,0,!0)&&!e.isZIndex(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isZIndex(n))}}},Up=pp,Ip=np;function qp(e){var t=Up([Ip.PROPERTY,[Ip.PROPERTY_NAME,e.name]]);return t.important=e.important,t.hack=e.hack,t.unused=!1,t}var Np=function(e){for(var t=qp(e),n=e.components.length-1;n>=0;n--){var r=qp(e.components[n]);r.value=e.components[n].value.slice(0),t.components.unshift(r)}return t.dirty=!0,t.value=e.value.slice(0),t},Dp=qp,Vp=Dp,jp=np,Fp=Od;function Gp(e){for(var t=0,n=e.length;t<n;t++){var r=e[t][1];if("inherit"!=r&&r!=Fp.COMMA&&r!=Fp.FORWARD_SLASH)return!1}return!0}function Kp(e){var t=e.components,n=t[0].value[0],r=t[1].value[0],i=t[2].value[0],o=t[3].value[0];return n[1]==r[1]&&n[1]==i[1]&&n[1]==o[1]?[n]:n[1]==i[1]&&r[1]==o[1]?[n,r]:r[1]==o[1]?[n,r,i]:[n,r,i,o]}function Yp(e,t,n){var r,i,o;for(i=0,o=e.length;i<o;i++)if((r=e[i]).name==n&&r.value[0][1]==t[n].defaultValue)return!0;return!1}var Hp={background:function(e,t,n){var r,i,o=e.components,a=[];function s(e){Array.prototype.unshift.apply(a,e.value)}function l(e){var n=t[e.name];return n.doubleValues&&1==n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(!e.value[1]||e.value[1][1]==n.defaultValue[0]):n.doubleValues&&1!=n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(e.value[1]?e.value[1][1]:e.value[0][1])==n.defaultValue[1]:e.value[0][1]==n.defaultValue}for(var u=o.length-1;u>=0;u--){var c=o[u],d=l(c);if("background-clip"==c.name){var p=o[u-1],m=l(p);i=!(r=c.value[0][1]==p.value[0][1])&&(m&&!d||!m&&!d||!m&&d&&c.value[0][1]!=p.value[0][1]),r?s(p):i&&(s(c),s(p)),u--}else if("background-size"==c.name){var h=o[u-1],f=l(h);i=!(r=!f&&d)&&(f&&!d||!f&&!d),r?s(h):i?(s(c),a.unshift([jp.PROPERTY_VALUE,Fp.FORWARD_SLASH]),s(h)):1==h.value.length&&s(h),u--}else{if(d||t[c.name].multiplexLastOnly&&!n)continue;s(c)}}return 0===a.length&&1==e.value.length&&"0"==e.value[0][1]&&a.push(e.value[0]),0===a.length&&a.push([jp.PROPERTY_VALUE,t[e.name].defaultValue]),Gp(a)?[a[0]]:a},borderRadius:function(e,t){if(e.multiplex){for(var n=Vp(e),r=Vp(e),i=0;i<4;i++){var o=e.components[i],a=Vp(e);a.value=[o.value[0]],n.components.push(a);var s=Vp(e);s.value=[o.value[1]||o.value[0]],r.components.push(s)}var l=Kp(n),u=Kp(r);return l.length!=u.length||l[0][1]!=u[0][1]||l.length>1&&l[1][1]!=u[1][1]||l.length>2&&l[2][1]!=u[2][1]||l.length>3&&l[3][1]!=u[3][1]?l.concat([[jp.PROPERTY_VALUE,Fp.FORWARD_SLASH]]).concat(u):l}return Kp(e)},font:function(e,t){var n,r=e.components,i=[],o=0,a=0;if(0===e.value[0][1].indexOf(Fp.INTERNAL))return e.value[0][1]=e.value[0][1].substring(Fp.INTERNAL.length),e.value;for(;o<4;)(n=r[o]).value[0][1]!=t[n.name].defaultValue&&Array.prototype.push.apply(i,n.value),o++;for(Array.prototype.push.apply(i,r[o].value),r[++o].value[0][1]!=t[r[o].name].defaultValue&&(Array.prototype.push.apply(i,[[jp.PROPERTY_VALUE,Fp.FORWARD_SLASH]]),Array.prototype.push.apply(i,r[o].value)),o++;r[o].value[a];)i.push(r[o].value[a]),r[o].value[a+1]&&i.push([jp.PROPERTY_VALUE,Fp.COMMA]),a++;return Gp(i)?[i[0]]:i},fourValues:Kp,multiplex:function(e){return function(t,n){if(!t.multiplex)return e(t,n,!0);var r,i,o=0,a=[],s={};for(r=0,i=t.components[0].value.length;r<i;r++)t.components[0].value[r][1]==Fp.COMMA&&o++;for(r=0;r<=o;r++){for(var l=Vp(t),u=0,c=t.components.length;u<c;u++){var d=t.components[u],p=Vp(d);l.components.push(p);for(var m=s[p.name]||0,h=d.value.length;m<h;m++){if(d.value[m][1]==Fp.COMMA){s[p.name]=m+1;break}p.value.push(d.value[m])}}var f=e(l,n,r==o);Array.prototype.push.apply(a,f),r<o&&a.push([jp.PROPERTY_VALUE,Fp.COMMA])}return a}},withoutDefaults:function(e,t){for(var n=e.components,r=[],i=n.length-1;i>=0;i--){var o=n[i],a=t[o.name];(o.value[0][1]!=a.defaultValue||"keepUnlessDefault"in a&&!Yp(n,t,a.keepUnlessDefault))&&r.unshift(o.value[0])}return 0===r.length&&r.push([jp.PROPERTY_VALUE,t[e.name].defaultValue]),Gp(r)?[r[0]]:r}},$p=ad,Qp=/^\d+$/,Zp=["*","all"],Xp="off";function Jp(e){return{ch:e,cm:e,em:e,ex:e,in:e,mm:e,pc:e,pt:e,px:e,q:e,rem:e,vh:e,vmax:e,vmin:e,vw:e,"%":e}}var em=Xp,tm=function(e){return $p(Jp(Xp),function(e){if(null==e)return{};if("boolean"==typeof e)return{};if("number"==typeof e&&-1==e)return Jp(Xp);if("number"==typeof e)return Jp(e);if("string"==typeof e&&Qp.test(e))return Jp(parseInt(e));if("string"==typeof e&&e==Xp)return Jp(Xp);if("object"==typeof e)return e;return e.split(",").reduce((function(e,t){var n=t.split("="),r=n[0],i=parseInt(n[1]);return(isNaN(i)||-1==i)&&(i=Xp),Zp.indexOf(r)>-1?e=$p(e,Jp(i)):e[r]=i,e}),{})}(e))},nm=ad,rm={Zero:"0",One:"1",Two:"2"},im={};im[rm.Zero]={},im[rm.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeEmpty:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:tm(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0},im[rm.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,removeEmpty:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,removeUnusedAtRules:!1,restructureRules:!1,skipProperties:[]};var om="*",am="all";function sm(e,t){var n,r=nm(im[e],{});for(n in r)"boolean"==typeof r[n]&&(r[n]=t);return r}function lm(e){switch(e){case"false":case"off":return!1;case"true":case"on":return!0;default:return e}}function um(e,t){return e.split(";").reduce((function(e,n){var r=n.split(":"),i=r[0],o=lm(r[1]);return om==i||am==i?e=nm(e,sm(t,o)):e[i]=o,e}),{})}var cm=rm,dm=function(e){var t=nm(im,{}),n=rm.Zero,r=rm.One,i=rm.Two;return void 0===e?(delete t[i],t):("string"==typeof e&&(e=parseInt(e)),"number"==typeof e&&e===parseInt(i)?t:"number"==typeof e&&e===parseInt(r)?(delete t[i],t):"number"==typeof e&&e===parseInt(n)?(delete t[i],delete t[r],t):("object"==typeof e&&(e=function(e){var t,n,r=nm(e,{});for(n=0;n<=2;n++)!((t=""+n)in r)||void 0!==r[t]&&!1!==r[t]||delete r[t],t in r&&!0===r[t]&&(r[t]={}),t in r&&"string"==typeof r[t]&&(r[t]=um(r[t],t));return r}(e)),r in e&&"roundingPrecision"in e[r]&&(e[r].roundingPrecision=tm(e[r].roundingPrecision)),i in e&&"skipProperties"in e[i]&&"string"==typeof e[i].skipProperties&&(e[i].skipProperties=e[i].skipProperties.split(",")),(n in e||r in e||i in e)&&(t[n]=nm(t[n],e[n])),r in e&&om in e[r]&&(t[r]=nm(t[r],sm(r,lm(e[r]["*"]))),delete e[r]["*"]),r in e&&am in e[r]&&(t[r]=nm(t[r],sm(r,lm(e[r].all))),delete e[r].all),r in e||i in e?t[r]=nm(t[r],e[r]):delete t[r],i in e&&om in e[i]&&(t[i]=nm(t[i],sm(i,lm(e[i]["*"]))),delete e[i]["*"]),i in e&&am in e[i]&&(t[i]=nm(t[i],sm(i,lm(e[i].all))),delete e[i].all),i in e?t[i]=nm(t[i],e[i]):delete t[i],t))},pm=cm,mm={level1:{property:function(e,t){var n=t.value;4==n.length&&"0"===n[0][1]&&"0"===n[1][1]&&"0"===n[2][1]&&"0"===n[3][1]&&(t.value.splice(2),t.dirty=!0)}}},hm=cm,fm={level1:{property:function(e,t,n){var r=t.value;n.level[hm.One].optimizeBorderRadius&&(3==r.length&&"/"==r[1][1]&&r[0][1]==r[2][1]?(t.value.splice(1),t.dirty=!0):5==r.length&&"/"==r[2][1]&&r[0][1]==r[3][1]&&r[1][1]==r[4][1]?(t.value.splice(2),t.dirty=!0):7==r.length&&"/"==r[3][1]&&r[0][1]==r[4][1]&&r[1][1]==r[5][1]&&r[2][1]==r[6][1]?(t.value.splice(3),t.dirty=!0):9==r.length&&"/"==r[4][1]&&r[0][1]==r[5][1]&&r[1][1]==r[6][1]&&r[2][1]==r[7][1]&&r[3][1]==r[8][1]&&(t.value.splice(4),t.dirty=!0))}}},gm=cm,ym=/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,vm=/,(\S)/g,bm=/ ?= ?/g,Sm={level1:{property:function(e,t,n){n.compatibility.properties.ieFilters&&n.level[gm.One].optimizeFilter&&(1==t.value.length&&(t.value[0][1]=t.value[0][1].replace(ym,(function(e,t,n){return t.toLowerCase()+n}))),t.value[0][1]=t.value[0][1].replace(vm,", $1").replace(bm,"="))}}},xm=cm,wm={level1:{property:function(e,t,n){var r=t.value[0][1];n.level[xm.One].optimizeFontWeight&&("normal"==r?r="400":"bold"==r&&(r="700"),t.value[0][1]=r)}}},Cm=cm,km={level1:{property:function(e,t,n){var r=t.value;n.level[Cm.One].replaceMultipleZeros&&4==r.length&&"0"===r[0][1]&&"0"===r[1][1]&&"0"===r[2][1]&&"0"===r[3][1]&&(t.value.splice(1),t.dirty=!0)}}},Om=cm,Tm={level1:{property:function(e,t,n){var r=t.value;n.level[Om.One].optimizeOutline&&1==r.length&&"none"==r[0][1]&&(r[0][1]="0")}}},Em=cm;function Am(e){return e&&"-"==e[1][0]&&parseFloat(e[1])<0}var _m={level1:{property:function(e,t,n){var r=t.value;4==r.length&&"0"===r[0][1]&&"0"===r[1][1]&&"0"===r[2][1]&&"0"===r[3][1]&&(t.value.splice(1),t.dirty=!0),n.level[Em.One].removeNegativePaddings&&(Am(t.value[0])||Am(t.value[1])||Am(t.value[2])||Am(t.value[3]))&&(t.unused=!0)}}},zm={background:{level1:{property:function(e,t,n){var r=t.value;n.level[pm.One].optimizeBackground&&(1==r.length&&"none"==r[0][1]&&(r[0][1]="0 0"),1==r.length&&"transparent"==r[0][1]&&(r[0][1]="0 0"))}}}.level1.property,boxShadow:mm.level1.property,borderRadius:fm.level1.property,filter:Sm.level1.property,fontWeight:wm.level1.property,margin:km.level1.property,outline:Tm.level1.property,padding:_m.level1.property},Rm={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},Lm={},Pm={};for(var Bm in Rm){var Wm=Rm[Bm];Bm.length<Wm.length?Pm[Wm]=Bm:Lm[Bm]=Wm}var Mm=new RegExp("(^| |,|\\))("+Object.keys(Lm).join("|")+")( |,|\\)|$)","ig"),Um=new RegExp("("+Object.keys(Pm).join("|")+")([^a-f0-9]|$)","ig");function Im(e,t,n,r){return t+Lm[n.toLowerCase()]+r}function qm(e,t,n){return Pm[t.toLowerCase()]+n}function Nm(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}var Dm=Od;var Vm=function(e,t){var n,r=Dm.OPEN_ROUND_BRACKET,i=Dm.CLOSE_ROUND_BRACKET,o=0,a=0,s=0,l=e.length,u=[];if(-1==e.indexOf(t))return[e];if(-1==e.indexOf(r))return e.split(t);for(;a<l;)e[a]==r?o++:e[a]==i&&o--,0===o&&a>0&&a+1<l&&e[a]==t&&(u.push(e.substring(s,a)),s=a+1),a++;return s<a+1&&((n=e.substring(s))[n.length-1]==t&&(n=n.substring(0,n.length-1)),u.push(n)),u},jm=function(e){var t=e.indexOf("#")>-1,n=e.replace(Mm,Im);return n!=e&&(n=n.replace(Mm,Im)),t?n.replace(Um,qm):n},Fm=function(e,t,n){var r=function(e,t,n){var r,i,o;if((e%=360)<0&&(e+=360),e=~~e/360,t<0?t=0:t>100&&(t=100),n<0?n=0:n>100&&(n=100),n=~~n/100,0==(t=~~t/100))r=i=o=n;else{var a=n<.5?n*(1+t):n+t-n*t,s=2*n-a;r=Nm(s,a,e+1/3),i=Nm(s,a,e),o=Nm(s,a,e-1/3)}return[~~(255*r),~~(255*i),~~(255*o)]}(e,t,n),i=r[0].toString(16),o=r[1].toString(16),a=r[2].toString(16);return"#"+(1==i.length?"0":"")+i+(1==o.length?"0":"")+o+(1==a.length?"0":"")+a},Gm=function(e,t,n){return"#"+("00000"+(Math.max(0,Math.min(parseInt(e),255))<<16|Math.max(0,Math.min(parseInt(t),255))<<8|Math.max(0,Math.min(parseInt(n),255))).toString(16)).slice(-6)},Km=Vm,Ym=/(rgb|rgba|hsl|hsla)\(([^\(\)]+)\)/gi,Hm=/#|rgb|hsl/gi,$m=/(^|[^='"])#([0-9a-f]{6})/gi,Qm=/(^|[^='"])#([0-9a-f]{3})/gi,Zm=/[0-9a-f]/i,Xm=/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/gi,Jm=/(rgb|hsl)a?\((\-?\d+),(\-?\d+\%?),(\-?\d+\%?),(0*[1-9]+[0-9]*(\.?\d*)?)\)/gi,eh=/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/gi,th=/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,nh=/\(0deg\)/g,rh={level1:{value:function(e,t,n){return n.compatibility.properties.zeroUnits?-1==t.indexOf("0deg")?t:t.replace(nh,"(0)"):t}}},ih=/^url\(/i;var oh=function(e){return ih.test(e)},ah=oh,sh=cm,lh=/(^|\D)\.0+(\D|$)/g,uh=/\.([1-9]*)0+(\D|$)/g,ch=/(^|\D)0\.(\d)/g,dh=/([^\w\d\-]|^)\-0([^\.]|$)/g,ph=/(^|\s)0+([1-9])/g,mh={level1:{value:function(e,t,n){return n.level[sh.One].replaceZeroUnits?ah(t)||-1==t.indexOf("0")?t:(t.indexOf("-")>-1&&(t=t.replace(dh,"$10$2").replace(dh,"$10$2")),t.replace(ph,"$1$2").replace(lh,"$10$2").replace(uh,(function(e,t,n){return(t.length>0?".":"")+t+n})).replace(ch,"$1.$2")):t}}},hh={level1:{value:function(e,t,n){return n.precision.enabled&&-1!==t.indexOf(".")?t.replace(n.precision.decimalPointMatcher,"$1$2$3").replace(n.precision.zeroMatcher,(function(e,t,r,i){var o=n.precision.units[i].multiplier,a=parseInt(t),s=isNaN(a)?0:a,l=parseFloat(r);return Math.round((s+l)*o)/o+i})):t}}},fh=cm,gh=/^local\(/i,yh=/^('.*'|".*")$/,vh=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,bh={level1:{value:function(e,t,n){return n.level[fh.One].removeQuotes&&(yh.test(t)||gh.test(t))&&vh.test(t)?t.substring(1,t.length-1):t}}},Sh=cm,xh=/^(\-?[\d\.]+)(m?s)$/,wh={level1:{value:function(e,t,n){return n.level[Sh.One].replaceTimeUnits&&xh.test(t)?t.replace(xh,(function(e,t,n){var r;return"ms"==n?r=parseInt(t)/1e3+"s":"s"==n&&(r=1e3*parseFloat(t)+"ms"),r.length<e.length?r:e})):t}}},Ch=/(?:^|\s|\()(-?\d+)px/,kh={level1:{value:function(e,t,n){return Ch.test(t)?t.replace(Ch,(function(e,t){var r,i=parseInt(t);return 0===i?e:(n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.pt&&3*i%4==0&&(r=3*i/4+"pt"),n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.pc&&i%16==0&&(r=i/16+"pc"),n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.in&&i%96==0&&(r=i/96+"in"),r&&(r=e.substring(0,e.indexOf(t))+r),r&&r.length<e.length?r:e)})):t}}},Oh=oh,Th=cm,Eh=/^url\(/i,Ah={level1:{value:function(e,t,n){return n.level[Th.One].normalizeUrls&&Oh(t)?t.replace(Eh,"url("):t}}},_h=/^url\(['"].+['"]\)$/,zh=/^url\(['"].*[\*\s\(\)'"].*['"]\)$/,Rh=/["']/g,Lh=/^url\(['"]data:[^;]+;charset/,Ph={level1:{value:function(e,t,n){return n.compatibility.properties.urlQuotes||!_h.test(t)||zh.test(t)||Lh.test(t)?t:t.replace(Rh,"")}}},Bh=oh,Wh=/\\?\n|\\?\r\n/g,Mh={level1:{value:function(e,t){return Bh(t)?t.replace(Wh,""):t}}},Uh=cm,Ih=Od,qh=/\) ?\/ ?/g,Nh=/, /g,Dh=/\s+/g,Vh=/\s+(;?\))/g,jh=/(\(;?)\s+/g,Fh={level1:{value:function(e,t,n){return n.level[Uh.One].removeWhitespace?-1==t.indexOf(" ")||0===t.indexOf("expression")||t.indexOf(Ih.SINGLE_QUOTE)>-1||t.indexOf(Ih.DOUBLE_QUOTE)>-1?t:((t=t.replace(Dh," ")).indexOf("calc")>-1&&(t=t.replace(qh,")/ ")),t.replace(jh,"$1").replace(Vh,"$1").replace(Nh,",")):t}}},Gh=/^(?:\-moz\-calc|\-webkit\-calc|calc|rgb|hsl|rgba|hsla|min|max|clamp)\(/,Kh={level1:{value:function(e,t,n){return n.compatibility.properties.zeroUnits?Gh.test(t)||t.indexOf("%")>0&&("height"==e||"max-height"==e||"width"==e||"max-width"==e)?t:t.replace(n.unitsRegexp,"$10$2").replace(n.unitsRegexp,"$10$2"):t}}},Yh={color:{level1:{value:function(e,t,n){return n.compatibility.properties.colors?t.match(Hm)?(t=t.replace(Jm,(function(e,t,n,r,i,o){return parseInt(o,10)>=1?t+"("+[n,r,i].join(",")+")":e})).replace(eh,(function(e,t,n,r){return Gm(t,n,r)})).replace(Xm,(function(e,t,n,r){return Fm(t,n,r)})).replace($m,(function(e,t,n,r,i){var o=i[r+e.length];return o&&Zm.test(o)?e:n[0]==n[1]&&n[2]==n[3]&&n[4]==n[5]?(t+"#"+n[0]+n[2]+n[4]).toLowerCase():(t+"#"+n).toLowerCase()})).replace(Qm,(function(e,t,n){return t+"#"+n.toLowerCase()})).replace(Ym,(function(e,t,n){var r=n.split(","),i=t&&t.toLowerCase();return"hsl"==i&&3==r.length||"hsla"==i&&4==r.length||"rgb"==i&&3===r.length&&n.indexOf("%")>0||"rgba"==i&&4==r.length&&n.indexOf("%")>0?(-1==r[1].indexOf("%")&&(r[1]+="%"),-1==r[2].indexOf("%")&&(r[2]+="%"),t+"("+r.join(",")+")"):e})),n.compatibility.colors.opacity&&-1==e.indexOf("background")&&(t=t.replace(th,(function(e){return Km(t,",").pop().indexOf("gradient(")>-1?e:"transparent"}))),jm(t)):jm(t):t}}}.level1.value,degrees:rh.level1.value,fraction:mh.level1.value,precision:hh.level1.value,textQuotes:bh.level1.value,time:wh.level1.value,unit:kh.level1.value,urlPrefix:Ah.level1.value,urlQuotes:Ph.level1.value,urlWhiteSpace:Mh.level1.value,whiteSpace:Fh.level1.value,zero:Kh.level1.value},Hh=kp,$h=Mp,Qh=Hp,Zh=zm,Xh=Yh,Jh=ad,ef={animation:{canOverride:$h.generic.components([$h.generic.time,$h.generic.timingFunction,$h.generic.time,$h.property.animationIterationCount,$h.property.animationDirection,$h.property.animationFillMode,$h.property.animationPlayState,$h.property.animationName]),components:["animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state","animation-name"],breakUp:Hh.multiplex(Hh.animation),defaultValue:"none",restore:Qh.multiplex(Qh.withoutDefaults),shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.textQuotes,Xh.time,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-delay":{canOverride:$h.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",valueOptimizers:[Xh.time,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-direction":{canOverride:$h.property.animationDirection,componentOf:["animation"],defaultValue:"normal",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-duration":{canOverride:$h.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",keepUnlessDefault:"animation-delay",valueOptimizers:[Xh.time,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-fill-mode":{canOverride:$h.property.animationFillMode,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-iteration-count":{canOverride:$h.property.animationIterationCount,componentOf:["animation"],defaultValue:"1",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-name":{canOverride:$h.property.animationName,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",valueOptimizers:[Xh.textQuotes],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-play-state":{canOverride:$h.property.animationPlayState,componentOf:["animation"],defaultValue:"running",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-timing-function":{canOverride:$h.generic.timingFunction,componentOf:["animation"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},background:{canOverride:$h.generic.components([$h.generic.image,$h.property.backgroundPosition,$h.property.backgroundSize,$h.property.backgroundRepeat,$h.property.backgroundAttachment,$h.property.backgroundOrigin,$h.property.backgroundClip,$h.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:Hh.multiplex(Hh.background),defaultValue:"0 0",propertyOptimizer:Zh.background,restore:Qh.multiplex(Qh.background),shortestValue:"0",shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.urlWhiteSpace,Xh.fraction,Xh.zero,Xh.color,Xh.urlPrefix,Xh.urlQuotes]},"background-attachment":{canOverride:$h.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll",intoMultiplexMode:"real"},"background-clip":{canOverride:$h.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-color":{canOverride:$h.generic.color,componentOf:["background"],defaultValue:"transparent",intoMultiplexMode:"real",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"background-image":{canOverride:$h.generic.image,componentOf:["background"],defaultValue:"none",intoMultiplexMode:"default",valueOptimizers:[Xh.urlWhiteSpace,Xh.urlPrefix,Xh.urlQuotes,Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero,Xh.color]},"background-origin":{canOverride:$h.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-position":{canOverride:$h.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"background-repeat":{canOverride:$h.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0,intoMultiplexMode:"real"},"background-size":{canOverride:$h.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0 0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},bottom:{canOverride:$h.property.bottom,defaultValue:"auto",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},border:{breakUp:Hh.border,canOverride:$h.generic.components([$h.generic.unit,$h.property.borderStyle,$h.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:Qh.withoutDefaults,shorthand:!0,shorthandComponents:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.zero,Xh.color]},"border-bottom":{breakUp:Hh.border,canOverride:$h.generic.components([$h.generic.unit,$h.property.borderStyle,$h.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:Qh.withoutDefaults,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.zero,Xh.color]},"border-bottom-color":{canOverride:$h.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-bottom-left-radius":{canOverride:$h.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:Zh.borderRadius,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:$h.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:Zh.borderRadius,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:$h.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:$h.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",oppositeTo:"border-top-width",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"border-collapse":{canOverride:$h.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:Hh.fourValues,canOverride:$h.generic.components([$h.generic.color,$h.generic.color,$h.generic.color,$h.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:Qh.fourValues,shortestValue:"red",shorthand:!0,singleTypeComponents:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-left":{breakUp:Hh.border,canOverride:$h.generic.components([$h.generic.unit,$h.property.borderStyle,$h.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:Qh.withoutDefaults,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.zero,Xh.color]},"border-left-color":{canOverride:$h.generic.color,componentOf:["border-color","border-left"],defaultValue:"none",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-left-style":{canOverride:$h.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:$h.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",oppositeTo:"border-right-width",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"border-radius":{breakUp:Hh.borderRadius,canOverride:$h.generic.components([$h.generic.unit,$h.generic.unit,$h.generic.unit,$h.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",propertyOptimizer:Zh.borderRadius,restore:Qh.borderRadius,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:Hh.border,canOverride:$h.generic.components([$h.generic.unit,$h.property.borderStyle,$h.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:Qh.withoutDefaults,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-right-color":{canOverride:$h.generic.color,componentOf:["border-color","border-right"],defaultValue:"none",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-right-style":{canOverride:$h.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:$h.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",oppositeTo:"border-left-width",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"border-style":{breakUp:Hh.fourValues,canOverride:$h.generic.components([$h.property.borderStyle,$h.property.borderStyle,$h.property.borderStyle,$h.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:Qh.fourValues,shorthand:!0,singleTypeComponents:!0},"border-top":{breakUp:Hh.border,canOverride:$h.generic.components([$h.generic.unit,$h.property.borderStyle,$h.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:Qh.withoutDefaults,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.zero,Xh.color,Xh.unit]},"border-top-color":{canOverride:$h.generic.color,componentOf:["border-color","border-top"],defaultValue:"none",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"border-top-left-radius":{canOverride:$h.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:Zh.borderRadius,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:$h.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:Zh.borderRadius,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:$h.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:$h.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",oppositeTo:"border-bottom-width",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"border-width":{breakUp:Hh.fourValues,canOverride:$h.generic.components([$h.generic.unit,$h.generic.unit,$h.generic.unit,$h.generic.unit]),componentOf:["border"],components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:Qh.fourValues,shortestValue:"0",shorthand:!0,singleTypeComponents:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"box-shadow":{propertyOptimizer:Zh.boxShadow,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero,Xh.color],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},clear:{canOverride:$h.property.clear,defaultValue:"none"},clip:{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},color:{canOverride:$h.generic.color,defaultValue:"transparent",shortestValue:"red",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"column-gap":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},cursor:{canOverride:$h.property.cursor,defaultValue:"auto"},display:{canOverride:$h.property.display},filter:{propertyOptimizer:Zh.filter,valueOptimizers:[Xh.fraction]},float:{canOverride:$h.property.float,defaultValue:"none"},font:{breakUp:Hh.font,canOverride:$h.generic.components([$h.property.fontStyle,$h.property.fontVariant,$h.property.fontWeight,$h.property.fontStretch,$h.generic.unit,$h.generic.unit,$h.property.fontFamily]),components:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],restore:Qh.font,shorthand:!0,valueOptimizers:[Xh.textQuotes]},"font-family":{canOverride:$h.property.fontFamily,defaultValue:"user|agent|specific",valueOptimizers:[Xh.textQuotes]},"font-size":{canOverride:$h.generic.unit,defaultValue:"medium",shortestValue:"0",valueOptimizers:[Xh.fraction]},"font-stretch":{canOverride:$h.property.fontStretch,defaultValue:"normal"},"font-style":{canOverride:$h.property.fontStyle,defaultValue:"normal"},"font-variant":{canOverride:$h.property.fontVariant,defaultValue:"normal"},"font-weight":{canOverride:$h.property.fontWeight,defaultValue:"normal",propertyOptimizer:Zh.fontWeight,shortestValue:"400"},gap:{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},height:{canOverride:$h.generic.unit,defaultValue:"auto",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},left:{canOverride:$h.property.left,defaultValue:"auto",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"letter-spacing":{valueOptimizers:[Xh.fraction,Xh.zero]},"line-height":{canOverride:$h.generic.unitOrNumber,defaultValue:"normal",shortestValue:"0",valueOptimizers:[Xh.fraction,Xh.zero]},"list-style":{canOverride:$h.generic.components([$h.property.listStyleType,$h.property.listStylePosition,$h.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:Hh.listStyle,restore:Qh.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:$h.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:$h.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:$h.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:Hh.fourValues,canOverride:$h.generic.components([$h.generic.unit,$h.generic.unit,$h.generic.unit,$h.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",propertyOptimizer:Zh.margin,restore:Qh.fourValues,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-bottom":{canOverride:$h.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-top",propertyOptimizer:Zh.margin,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-inline-end":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-inline-start":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-left":{canOverride:$h.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-right",propertyOptimizer:Zh.margin,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-right":{canOverride:$h.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-left",propertyOptimizer:Zh.margin,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"margin-top":{canOverride:$h.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-bottom",propertyOptimizer:Zh.margin,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"max-height":{canOverride:$h.generic.unit,defaultValue:"none",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"max-width":{canOverride:$h.generic.unit,defaultValue:"none",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"min-height":{canOverride:$h.generic.unit,defaultValue:"0",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"min-width":{canOverride:$h.generic.unit,defaultValue:"0",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},opacity:{valueOptimizers:[Xh.fraction,Xh.precision]},outline:{canOverride:$h.generic.components([$h.generic.color,$h.property.outlineStyle,$h.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:Hh.outline,restore:Qh.withoutDefaults,defaultValue:"0",propertyOptimizer:Zh.outline,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"outline-color":{canOverride:$h.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.color]},"outline-style":{canOverride:$h.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:$h.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},overflow:{canOverride:$h.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:$h.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:$h.property.overflow,defaultValue:"visible"},padding:{breakUp:Hh.fourValues,canOverride:$h.generic.components([$h.generic.unit,$h.generic.unit,$h.generic.unit,$h.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",propertyOptimizer:Zh.padding,restore:Qh.fourValues,shorthand:!0,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"padding-bottom":{canOverride:$h.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-top",propertyOptimizer:Zh.padding,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"padding-left":{canOverride:$h.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-right",propertyOptimizer:Zh.padding,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"padding-right":{canOverride:$h.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-left",propertyOptimizer:Zh.padding,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"padding-top":{canOverride:$h.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-bottom",propertyOptimizer:Zh.padding,valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},position:{canOverride:$h.property.position,defaultValue:"static"},right:{canOverride:$h.property.right,defaultValue:"auto",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"row-gap":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},src:{valueOptimizers:[Xh.urlWhiteSpace,Xh.urlPrefix,Xh.urlQuotes]},"stroke-width":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"text-align":{canOverride:$h.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:$h.property.textDecoration,defaultValue:"none"},"text-indent":{canOverride:$h.property.textOverflow,defaultValue:"none",valueOptimizers:[Xh.fraction,Xh.zero]},"text-overflow":{canOverride:$h.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:$h.property.textShadow,defaultValue:"none",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.zero,Xh.color]},top:{canOverride:$h.property.top,defaultValue:"auto",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},transform:{canOverride:$h.property.transform,valueOptimizers:[Xh.whiteSpace,Xh.degrees,Xh.fraction,Xh.precision,Xh.unit,Xh.zero],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},transition:{breakUp:Hh.multiplex(Hh.transition),canOverride:$h.generic.components([$h.property.transitionProperty,$h.generic.time,$h.generic.timingFunction,$h.generic.time]),components:["transition-property","transition-duration","transition-timing-function","transition-delay"],defaultValue:"none",restore:Qh.multiplex(Qh.withoutDefaults),shorthand:!0,valueOptimizers:[Xh.time,Xh.fraction],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-delay":{canOverride:$h.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",valueOptimizers:[Xh.time],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-duration":{canOverride:$h.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",keepUnlessDefault:"transition-delay",valueOptimizers:[Xh.time,Xh.fraction],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-property":{canOverride:$h.generic.propertyName,componentOf:["transition"],defaultValue:"all",intoMultiplexMode:"placeholder",placeholderValue:"_",vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-timing-function":{canOverride:$h.generic.timingFunction,componentOf:["transition"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"vertical-align":{canOverride:$h.property.verticalAlign,defaultValue:"baseline",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},visibility:{canOverride:$h.property.visibility,defaultValue:"visible"},"-webkit-tap-highlight-color":{valueOptimizers:[Xh.whiteSpace,Xh.color]},"-webkit-margin-end":{valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"white-space":{canOverride:$h.property.whiteSpace,defaultValue:"normal"},width:{canOverride:$h.generic.unit,defaultValue:"auto",shortestValue:"0",valueOptimizers:[Xh.whiteSpace,Xh.fraction,Xh.precision,Xh.unit,Xh.zero]},"z-index":{canOverride:$h.property.zIndex,defaultValue:"auto"}},tf={};function nf(e,t){var n=Jh(ef[e],{});return"componentOf"in n&&(n.componentOf=n.componentOf.map((function(e){return t+e}))),"components"in n&&(n.components=n.components.map((function(e){return t+e}))),"keepUnlessDefault"in n&&(n.keepUnlessDefault=t+n.keepUnlessDefault),n}tf={};for(var rf in ef){var of=ef[rf];if("vendorPrefixes"in of){for(var af=0;af<of.vendorPrefixes.length;af++){var sf=of.vendorPrefixes[af],lf=nf(rf,sf);delete lf.vendorPrefixes,tf[sf+rf]=lf}delete of.vendorPrefixes}}var uf=Jh(ef,tf),cf="",df=wd,pf=Cd,mf=Od,hf=np;function ff(e){return"filter"==e[1][1]||"-ms-filter"==e[1][1]}function gf(e,t,n){return!e.spaceAfterClosingBrace&&function(e){return"background"==e[1][1]||"transform"==e[1][1]||"src"==e[1][1]}(t)&&function(e,t){return e[t][1][e[t][1].length-1]==mf.CLOSE_ROUND_BRACKET}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==mf.FORWARD_SLASH}(t,n)||function(e,t){return e[t][1]==mf.FORWARD_SLASH}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==mf.COMMA}(t,n)||function(e,t){return e[t][1]==mf.COMMA}(t,n)}function yf(e,t){for(var n=e.store,r=0,i=t.length;r<i;r++)n(e,t[r]),r<i-1&&n(e,Tf(e))}function vf(e,t){for(var n=function(e){for(var t=e.length-1;t>=0&&e[t][0]==hf.COMMENT;t--);return t}(t),r=0,i=t.length;r<i;r++)bf(e,t,r,n)}function bf(e,t,n,r){var i,o=e.store,a=t[n],s=a[2],l=s&&s[0]===hf.PROPERTY_BLOCK;i=e.format?!(!e.format.semicolonAfterLastProperty&&!l)||n<r:n<r||l;var u=n===r;switch(a[0]){case hf.AT_RULE:o(e,a),o(e,Of(e,df.AfterProperty,!1));break;case hf.AT_RULE_BLOCK:yf(e,a[1]),o(e,Cf(e,df.AfterRuleBegins,!0)),vf(e,a[2]),o(e,kf(e,df.AfterRuleEnds,!1,u));break;case hf.COMMENT:o(e,a),o(e,xf(e,df.AfterComment)+e.indentWith);break;case hf.PROPERTY:o(e,a[1]),o(e,function(e){return e.format?mf.COLON+(wf(e,pf.BeforeValue)?mf.SPACE:cf):mf.COLON}(e)),s&&Sf(e,a),o(e,i?Of(e,df.AfterProperty,u):cf);break;case hf.RAW:o(e,a)}}function Sf(e,t){var n,r,i=e.store;if(t[2][0]==hf.PROPERTY_BLOCK)i(e,Cf(e,df.AfterBlockBegins,!1)),vf(e,t[2][1]),i(e,kf(e,df.AfterBlockEnds,!1,!0));else for(n=2,r=t.length;n<r;n++)i(e,t[n]),n<r-1&&(ff(t)||!gf(e,t,n))&&i(e,mf.SPACE)}function xf(e,t){return e.format?e.format.breaks[t]:cf}function wf(e,t){return e.format&&e.format.spaces[t]}function Cf(e,t,n){return e.format?(e.indentBy+=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),(n&&wf(e,pf.BeforeBlockBegins)?mf.SPACE:cf)+mf.OPEN_CURLY_BRACKET+xf(e,t)+e.indentWith):mf.OPEN_CURLY_BRACKET}function kf(e,t,n,r){return e.format?(e.indentBy-=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),xf(e,n?df.BeforeBlockEnds:df.AfterProperty)+e.indentWith+mf.CLOSE_CURLY_BRACKET+(r?cf:xf(e,t)+e.indentWith)):mf.CLOSE_CURLY_BRACKET}function Of(e,t,n){return e.format?mf.SEMICOLON+(n?cf:xf(e,t)+e.indentWith):mf.SEMICOLON}function Tf(e){return e.format?mf.COMMA+xf(e,df.BetweenSelectors)+e.indentWith:mf.COMMA}var Ef={all:function e(t,n){var r,i,o,a,s=t.store;for(o=0,a=n.length;o<a;o++)switch(i=o==a-1,(r=n[o])[0]){case hf.AT_RULE:s(t,r),s(t,Of(t,df.AfterAtRule,i));break;case hf.AT_RULE_BLOCK:yf(t,r[1]),s(t,Cf(t,df.AfterRuleBegins,!0)),vf(t,r[2]),s(t,kf(t,df.AfterRuleEnds,!1,i));break;case hf.NESTED_BLOCK:yf(t,r[1]),s(t,Cf(t,df.AfterBlockBegins,!0)),e(t,r[2]),s(t,kf(t,df.AfterBlockEnds,!0,i));break;case hf.COMMENT:s(t,r),s(t,xf(t,df.AfterComment)+t.indentWith);break;case hf.RAW:s(t,r);break;case hf.RULE:yf(t,r[1]),s(t,Cf(t,df.AfterRuleBegins,!0)),vf(t,r[2]),s(t,kf(t,df.AfterRuleEnds,!1,i))}},body:vf,property:bf,rules:yf,value:Sf},Af=Ef;function _f(e,t){e.output.push("string"==typeof t?t:t[1])}function zf(){return{output:[],store:_f}}var Rf=function(e){var t=zf();return Af.all(t,e),t.output.join("")},Lf=function(e){var t=zf();return Af.body(t,e),t.output.join("")},Pf=function(e,t){var n=zf();return Af.property(n,e,t,!0),n.output.join("")},Bf=function(e){var t=zf();return Af.rules(t,e),t.output.join("")},Wf=function(e){var t=zf();return Af.value(t,e),t.output.join("")},Mf=Gc,Uf=Fd,If=Yd,qf=Hd,Nf=$d,Df=Qd,Vf=tp,jf=dp,Ff=uf,Gf=Yh,Kf=cm,Yf=np,Hf=Od,$f=Td,Qf=Bf,Zf="@charset",Xf=new RegExp("^@charset","i"),Jf=em,eg=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\w{1,}|\-\-\S+)$/,tg=/^@import/i,ng=/^url\(/i,rg=/^--\S+$/;function ig(e){return ng.test(e)}function og(e){return tg.test(e[1])}function ag(e){var t;return("filter"==e.name||"-ms-filter"==e.name)&&((t=e.value[0][1]).indexOf("progid")>-1||0===t.indexOf("alpha")||0===t.indexOf("chroma"))}function sg(){}function lg(e,t,n){var r,i,o,a,s,l,u,c,d,p=n.options,m=Qf(e),h=jf(t),f=n.options.plugins.level1Value,g=n.options.plugins.level1Property;for(c=0,d=h.length;c<d;c++){var y,v,b,S;if(o=(i=h[c]).name,u=Ff[o]&&Ff[o].propertyOptimizer||sg,r=Ff[o]&&Ff[o].valueOptimizers||[Gf.whiteSpace],eg.test(o))if(0!==i.value.length)if(!i.hack||(i.hack[0]!=Nf.ASTERISK&&i.hack[0]!=Nf.UNDERSCORE||p.compatibility.properties.iePrefixHack)&&(i.hack[0]!=Nf.BACKSLASH||p.compatibility.properties.ieSuffixHack)&&(i.hack[0]!=Nf.BANG||p.compatibility.properties.ieBangHack))if(p.compatibility.properties.ieFilters||!ag(i)){if(i.block)lg(e,i.value[0][1],n);else if(!rg.test(o)){for(y=0,b=i.value.length;y<b;y++){if(a=i.value[y][0],s=i.value[y][1],a==Yf.PROPERTY_BLOCK){i.unused=!0,n.warnings.push("Invalid value token at "+$f(s[0][1][2][0])+". Ignoring.");break}if(ig(s)&&!n.validator.isUrl(s)){i.unused=!0,n.warnings.push("Broken URL '"+s+"' at "+$f(i.value[y][2][0])+". Ignoring.");break}for(v=0,S=r.length;v<S;v++)s=r[v](o,s,p);for(v=0,S=f.length;v<S;v++)s=f[v](o,s,p);i.value[y][1]=s}for(u(m,i,p),y=0,b=g.length;y<b;y++)g[y](m,i,p)}}else i.unused=!0;else i.unused=!0;else l=i.all[i.position],n.warnings.push("Empty property '"+o+"' at "+$f(l[1][2][0])+". Ignoring."),i.unused=!0;else l=i.all[i.position],n.warnings.push("Invalid property name '"+o+"' at "+$f(l[1][2][0])+". Ignoring."),i.unused=!0}Vf(h),Df(h),function(e,t){var n,r;for(r=0;r<e.length;r++)(n=e[r])[0]==Yf.COMMENT&&(ug(n,t),0===n[1].length&&(e.splice(r,1),r--))}(t,p)}function ug(e,t){e[1][2]==Hf.EXCLAMATION&&("all"==t.level[Kf.One].specialComments||t.commentsKept<t.level[Kf.One].specialComments)?t.commentsKept++:e[1]=[]}var cg=function e(t,n){var r=n.options,i=r.level[Kf.One],o=r.compatibility.selectors.ie7Hack,a=r.compatibility.selectors.adjacentSpace,s=r.compatibility.properties.spaceAfterClosingBrace,l=r.format,u=!1,c=!1;r.unitsRegexp=r.unitsRegexp||function(e){var t=["px","em","ex","cm","mm","in","pt","pc","%"];return["ch","rem","vh","vm","vmax","vmin","vw"].forEach((function(n){e.compatibility.units[n]&&t.push(n)})),new RegExp("(^|\\s|\\(|,)0(?:"+t.join("|")+")(\\W|$)","g")}(r),r.precision=r.precision||function(e){var t,n,r={matcher:null,units:{}},i=[];for(t in e)(n=e[t])!=Jf&&(r.units[t]={},r.units[t].value=n,r.units[t].multiplier=Math.pow(10,n),i.push(t));return i.length>0&&(r.enabled=!0,r.decimalPointMatcher=new RegExp("(\\d)\\.($|"+i.join("|")+")($|W)","g"),r.zeroMatcher=new RegExp("(\\d*)(\\.\\d+)("+i.join("|")+")","g")),r}(i.roundingPrecision),r.commentsKept=r.commentsKept||0;for(var d=0,p=t.length;d<p;d++){var m=t[d];switch(m[0]){case Yf.AT_RULE:m[1]=og(m)&&c?"":m[1],m[1]=i.tidyAtRules?qf(m[1]):m[1],u=!0;break;case Yf.AT_RULE_BLOCK:lg(m[1],m[2],n),c=!0;break;case Yf.NESTED_BLOCK:m[1]=i.tidyBlockScopes?If(m[1],s):m[1],e(m[2],n),c=!0;break;case Yf.COMMENT:ug(m,r);break;case Yf.RULE:m[1]=i.tidySelectors?Uf(m[1],!o,a,l,n.warnings):m[1],m[1]=m[1].length>1?Mf(m[1],i.selectorsSortingMethod):m[1],lg(m[1],m[2],n),c=!0}(m[0]==Yf.COMMENT&&0===m[1].length||i.removeEmpty&&(0===m[1].length||m[2]&&0===m[2].length))&&(t.splice(d,1),d--,p--)}return i.cleanupCharsets&&u&&function(e){for(var t=!1,n=0,r=e.length;n<r;n++){var i=e[n];i[0]==Yf.AT_RULE&&Xf.test(i[1])&&(t||-1==i[1].indexOf(Zf)?(e.splice(n,1),n--,r--):(t=!0,e.splice(n,1),e.unshift([Yf.AT_RULE,i[1].replace(Xf,Zf)])))}}(t),t},dg=Od,pg=Vm,mg=/\/deep\//,hg=/^::/,fg=/:(-moz-|-ms-|-o-|-webkit-)/,gg=":not",yg=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],vg=/[>\+~]/,bg=[":after",":before",":first-letter",":first-line",":lang"],Sg=["::after","::before","::first-letter","::first-line"],xg="double-quote",wg="single-quote",Cg="root";function kg(e){return mg.test(e)}function Og(e){return fg.test(e)}function Tg(e){var t,n,r,i,o,a,s=[],l=[],u=Cg,c=0,d=!1,p=!1;for(o=0,a=e.length;o<a;o++)t=e[o],i=!r&&vg.test(t),n=u==xg||u==wg,r?l.push(t):t==dg.DOUBLE_QUOTE&&u==Cg?(l.push(t),u=xg):t==dg.DOUBLE_QUOTE&&u==xg?(l.push(t),u=Cg):t==dg.SINGLE_QUOTE&&u==Cg?(l.push(t),u=wg):t==dg.SINGLE_QUOTE&&u==wg?(l.push(t),u=Cg):n?l.push(t):t==dg.OPEN_ROUND_BRACKET?(l.push(t),c++):t==dg.CLOSE_ROUND_BRACKET&&1==c&&d?(l.push(t),s.push(l.join("")),c--,l=[],d=!1):t==dg.CLOSE_ROUND_BRACKET?(l.push(t),c--):t==dg.COLON&&0===c&&d&&!p?(s.push(l.join("")),(l=[]).push(t)):t!=dg.COLON||0!==c||p?t==dg.SPACE&&0===c&&d||i&&0===c&&d?(s.push(l.join("")),l=[],d=!1):l.push(t):((l=[]).push(t),d=!0),r=t==dg.BACK_SLASH,p=t==dg.COLON;return l.length>0&&d&&s.push(l.join("")),s}function Eg(e,t,n,r,i){return function(e,t,n){var r,i,o,a;for(o=0,a=e.length;o<a;o++)if(i=(r=e[o]).indexOf(dg.OPEN_ROUND_BRACKET)>-1?r.substring(0,r.indexOf(dg.OPEN_ROUND_BRACKET)):r,-1===t.indexOf(i)&&-1===n.indexOf(i))return!1;return!0}(t,n,r)&&function(e){var t,n,r,i,o,a;for(o=0,a=e.length;o<a;o++){if(n=(i=(r=(t=e[o]).indexOf(dg.OPEN_ROUND_BRACKET))>-1)?t.substring(0,r):t,i&&-1==yg.indexOf(n))return!1;if(!i&&yg.indexOf(n)>-1)return!1}return!0}(t)&&(t.length<2||!function(e,t){var n,r,i,o,a,s,l,u,c=0;for(l=0,u=t.length;l<u&&(n=t[l],i=t[l+1]);l++)if(r=e.indexOf(n,c),c=o=e.indexOf(n,r+1),r+n.length==o&&(a=n.indexOf(dg.OPEN_ROUND_BRACKET)>-1?n.substring(0,n.indexOf(dg.OPEN_ROUND_BRACKET)):n,s=i.indexOf(dg.OPEN_ROUND_BRACKET)>-1?i.substring(0,i.indexOf(dg.OPEN_ROUND_BRACKET)):i,a!=gg||s!=gg))return!0;return!1}(e,t))&&(t.length<2||i&&function(e){var t,n,r,i=0;for(n=0,r=e.length;n<r;n++)if(Ag(t=e[n])?i+=Sg.indexOf(t)>-1?1:0:i+=bg.indexOf(t)>-1?1:0,i>1)return!1;return!0}(t))}function Ag(e){return hg.test(e)}var _g=function(e,t,n,r){var i,o,a,s=pg(e,dg.COMMA);for(o=0,a=s.length;o<a;o++)if(0===(i=s[o]).length||kg(i)||Og(i)||i.indexOf(dg.COLON)>-1&&!Eg(i,Tg(i),t,n,r))return!1;return!0},zg=Od;var Rg=function(e,t,n){var r,i,o,a=t.value.length,s=n.value.length,l=Math.max(a,s),u=Math.min(a,s)-1;for(o=0;o<l;o++)if(r=t.value[o]&&t.value[o][1]||r,i=n.value[o]&&n.value[o][1]||i,r!=zg.COMMA&&i!=zg.COMMA&&!e(r,i,o,o<=u))return!1;return!0};var Lg=function(e){for(var t=e.value.length-1;t>=0;t--)if("inherit"==e.value[t][1])return!0;return!1};var Pg=uf,Bg=hp;function Wg(e,t){return 1==e.value.length&&t.isVariable(e.value[0][1])}function Mg(e,t){return e.value.length>1&&e.value.filter((function(e){return t.isVariable(e[1])})).length>1}var Ug=function(e,t,n){for(var r,i,o,a=e.length-1;a>=0;a--){var s=e[a],l=Pg[s.name];if(!s.dynamic&&l&&l.shorthand){if(Wg(s,t)||Mg(s,t)){s.optimizable=!1;continue}s.shorthand=!0,s.dirty=!0;try{if(s.components=l.breakUp(s,Pg,t),l.shorthandComponents)for(i=0,o=s.components.length;i<o;i++)(r=s.components[i]).components=Pg[r.name].breakUp(r,Pg,t)}catch(e){if(!(e instanceof Bg))throw e;s.components=[],n.push(e.message)}s.components.length>0?s.multiplex=s.components[0].multiplex:s.unused=!0}}},Ig=uf;var qg=function(e){var t=Ig[e.name];return t&&t.shorthand?t.restore(e,Ig):e.value},Ng=Rg,Dg=Lg,Vg=function(e){var t,n,r=e.value[0][1];for(t=1,n=e.value.length;t<n;t++)if(e.value[t][1]!=r)return!1;return!0},jg=Ug,Fg=uf,Gg=Np,Kg=qg,Yg=tp,Hg=pp,$g=Lf,Qg=np;function Zg(e,t,n,r){var i,o,a,s,l=e[t],u=[];for(i in n)void 0!==l&&i==l.name||(o=Fg[i],a=n[i],l&&Xg(n,i,l)?delete n[i]:o.components.length>Object.keys(a).length||Jg(a)||ey(a,i,r)&&ny(a)&&(ry(a)?iy(e,a,i,r):uy(e,a,i,r),u.push(i)));for(s=u.length-1;s>=0;s--)delete n[u[s]]}function Xg(e,t,n){var r,i=Fg[t],o=Fg[n.name];if("overridesShorthands"in i&&i.overridesShorthands.indexOf(n.name)>-1)return!0;if(o&&"componentOf"in o)for(r in e[t])if(o.componentOf.indexOf(r)>-1)return!0;return!1}function Jg(e){var t,n;for(n in e){if(void 0!==t&&e[n].important!=t)return!0;t=e[n].important}return!1}function ey(e,t,n){var r,i,o,a,s=Fg[t],l=[Qg.PROPERTY,[Qg.PROPERTY_NAME,t],[Qg.PROPERTY_VALUE,s.defaultValue]],u=Hg(l);for(jg([u],n,[]),o=0,a=s.components.length;o<a;o++)if(r=e[s.components[o]],i=Fg[r.name].canOverride||ty,!Ng(i.bind(null,n),u.components[o],r))return!1;return!0}function ty(e,t,n){return t===n}function ny(e){var t,n,r,i,o=null;for(n in e)if(r=e[n],"restore"in(i=Fg[n])){if(Yg([r.all[r.position]],Kg),t=i.restore(r,Fg).length,null!==o&&t!==o)return!1;o=t}return!0}function ry(e){var t,n,r=null;for(t in e){if(n=Dg(e[t]),null!==r&&r!==n)return!0;r=n}return!1}function iy(e,t,n,r){var i,o,a,s,l=function(e,t,n){var r,i,o,a,s,l,u=[],c={},d={},p=Fg[t],m=[Qg.PROPERTY,[Qg.PROPERTY_NAME,t],[Qg.PROPERTY_VALUE,p.defaultValue]],h=Hg(m);for(jg([h],n,[]),s=0,l=p.components.length;s<l;s++)r=e[p.components[s]],Dg(r)?(i=r.all[r.position].slice(0,2),Array.prototype.push.apply(i,r.value),u.push(i),(o=Gg(r)).value=oy(e,o.name),h.components[s]=o,c[r.name]=Gg(r)):((o=Gg(r)).all=r.all,h.components[s]=o,d[r.name]=r);return h.important=e[Object.keys(e).pop()].important,a=ay(d,1),m[1].push(a),Yg([h],Kg),m=m.slice(0,2),Array.prototype.push.apply(m,h.value),u.unshift(m),[u,h,c]}(t,n,r),u=function(e,t,n){var r,i,o,a,s,l,u=[],c={},d={},p=Fg[t],m=[Qg.PROPERTY,[Qg.PROPERTY_NAME,t],[Qg.PROPERTY_VALUE,"inherit"]],h=Hg(m);for(jg([h],n,[]),s=0,l=p.components.length;s<l;s++)r=e[p.components[s]],Dg(r)?c[r.name]=r:(i=r.all[r.position].slice(0,2),Array.prototype.push.apply(i,r.value),u.push(i),d[r.name]=Gg(r));return o=ay(c,1),m[1].push(o),a=ay(c,2),m[2].push(a),u.unshift(m),[u,h,d]}(t,n,r),c=l[0],d=u[0],p=$g(c).length<$g(d).length,m=p?c:d,h=p?l[1]:u[1],f=p?l[2]:u[2],g=t[Object.keys(t).pop()],y=g.all,v=g.position;for(i in h.position=v,h.shorthand=!0,h.important=g.important,h.multiplex=!1,h.dirty=!0,h.all=y,h.all[v]=m[0],e.splice(v,1,h),t)(o=t[i]).unused=!0,h.multiplex=h.multiplex||o.multiplex,o.name in f&&(a=f[o.name],s=ly(m,i),a.position=y.length,a.all=y,a.all.push(s),e.push(a))}function oy(e,t){var n=Fg[t];return"oppositeTo"in n?e[n.oppositeTo].value:[[Qg.PROPERTY_VALUE,n.defaultValue]]}function ay(e,t){var n,r,i,o,a=[];for(o in e)i=(r=(n=e[o]).all[n.position])[t][r[t].length-1],Array.prototype.push.apply(a,i);return a.sort(sy)}function sy(e,t){var n=e[0],r=t[0],i=e[1],o=t[1];return n<r||n===r&&i<o?-1:1}function ly(e,t){var n,r;for(n=0,r=e.length;n<r;n++)if(e[n][1][1]==t)return e[n]}function uy(e,t,n,r){var i,o,a,s=Fg[n],l=[Qg.PROPERTY,[Qg.PROPERTY_NAME,n],[Qg.PROPERTY_VALUE,s.defaultValue]],u=function(e,t,n){var r=Object.keys(t),i=t[r[0]].position,o=t[r[r.length-1]].position;return"border"==n&&function(e,t){for(var n=e.length-1;n>=0;n--)if(e[n].name==t)return!0;return!1}(e.slice(i,o),"border-image")?i:o}(e,t,n),c=Hg(l);c.shorthand=!0,c.dirty=!0,c.multiplex=!1,jg([c],r,[]);for(var d=0,p=s.components.length;d<p;d++){var m=t[s.components[d]];c.components[d]=Gg(m),c.important=m.important,c.multiplex=c.multiplex||m.multiplex,a=m.all}for(var h in t)t[h].unused=!0;i=ay(t,1),l[1].push(i),o=ay(t,2),l[2].push(o),c.position=u,c.all=a,c.all[u]=l,e.splice(u,1,c)}var cy=uf;function dy(e,t){return e.components.filter(t)[0]}var py=uf;function my(e,t){var n=py[e.name];return"components"in n&&n.components.indexOf(t.name)>-1}var hy=Od;var fy=uf;var gy=Lg,yy=function(e){for(var t=e.value.length-1;t>=0;t--)if("unset"==e.value[t][1])return!0;return!1},vy=Rg,by=function(e,t){var n,r=(n=t,function(e){return n.name===e.name});return dy(e,r)||function(e,t){var n,r,i;if(!cy[e.name].shorthandComponents)return;for(r=0,i=e.components.length;r<i;r++)if(n=dy(e.components[r],t))return n;return}(e,r)},Sy=function(e,t,n){return my(e,t)||!n&&!!py[e.name].shorthandComponents&&function(e,t){return e.components.some((function(e){return my(e,t)}))}(e,t)},xy=function(e){return"font"!=e.name||-1==e.value[0][1].indexOf(hy.INTERNAL)},wy=function(e,t){return e.name in fy&&"overridesShorthands"in fy[e.name]&&fy[e.name].overridesShorthands.indexOf(t.name)>-1},Cy=Ep,ky=uf,Oy=Np,Ty=qg,Ey=Dp,Ay=tp,_y=np,zy=Od,Ry=Pf;function Ly(e,t,n){return t===n}function Py(e,t){for(var n=0;n<e.components.length;n++){var r=e.components[n],i=ky[r.name],o=i&&i.canOverride||Ly,a=Ey(r);if(a.value=[[_y.PROPERTY_VALUE,i.defaultValue]],!vy(o.bind(null,t),a,r))return!0}return!1}function By(e,t){t.unused=!0,Iy(t,Ny(e)),e.value=t.value}function Wy(e,t){t.unused=!0,e.multiplex=!0,e.value=t.value}function My(e,t){t.multiplex?Wy(e,t):e.multiplex?By(e,t):function(e,t){t.unused=!0,e.value=t.value}(e,t)}function Uy(e,t){t.unused=!0;for(var n=0,r=e.components.length;n<r;n++)My(e.components[n],t.components[n],e.multiplex)}function Iy(e,t){e.multiplex=!0,ky[e.name].shorthand?function(e,t){var n,r,i;for(r=0,i=e.components.length;r<i;r++)(n=e.components[r]).multiplex||qy(n,t)}(e,t):qy(e,t)}function qy(e,t){for(var n,r=ky[e.name],i="real"==r.intoMultiplexMode,o="real"==r.intoMultiplexMode?e.value.slice(0):"placeholder"==r.intoMultiplexMode?r.placeholderValue:r.defaultValue,a=Ny(e),s=o.length;a<t;a++)if(e.value.push([_y.PROPERTY_VALUE,zy.COMMA]),Array.isArray(o))for(n=0;n<s;n++)e.value.push(i?o[n]:[_y.PROPERTY_VALUE,o[n]]);else e.value.push(i?o:[_y.PROPERTY_VALUE,o])}function Ny(e){for(var t=0,n=0,r=e.value.length;n<r;n++)e.value[n][1]==zy.COMMA&&t++;return t+1}function Dy(e){var t=[_y.PROPERTY,[_y.PROPERTY_NAME,e.name]].concat(e.value);return Ry([t],0).length}function Vy(e,t,n){for(var r=0,i=t;i>=0&&(e[i].name!=n||e[i].unused||r++,!(r>1));i--);return r>1}function jy(e,t){for(var n=0,r=e.components.length;n<r;n++)if(!Fy(t.isUrl,e.components[n])&&Fy(t.isFunction,e.components[n]))return!0;return!1}function Fy(e,t){for(var n=0,r=t.value.length;n<r;n++)if(t.value[n][1]!=zy.COMMA&&e(t.value[n][1]))return!0;return!1}function Gy(e,t){if(!e.multiplex&&!t.multiplex||e.multiplex&&t.multiplex)return!1;var n,r=e.multiplex?e:t,i=e.multiplex?t:e,o=Oy(r);Ay([o],Ty);var a=Oy(i);Ay([a],Ty);var s=Dy(o)+1+Dy(a);return e.multiplex?By(n=by(o,a),a):(n=by(a,o),Iy(a,Ny(o)),Wy(n,o)),Ay([a],Ty),s<=Dy(a)}function Ky(e){return e.name in ky}function Yy(e,t){return!e.multiplex&&("background"==e.name||"background-image"==e.name)&&t.multiplex&&("background"==t.name||"background-image"==t.name)&&function(e){for(var t=function(e){for(var t=[],n=0,r=[],i=e.length;n<i;n++){var o=e[n];o[1]==zy.COMMA?(t.push(r),r=[]):r.push(o)}return t.push(r),t}(e),n=0,r=t.length;n<r;n++)if(1==t[n].length&&"none"==t[n][0][1])return!0;return!1}(t.value)}var Hy=function(e,t){var n,r,i,o,a,s,l,u={};if(!(e.length<3)){for(o=0,a=e.length;o<a;o++)if(i=e[o],n=Fg[i.name],!i.dynamic&&!i.unused&&!i.hack&&!i.block&&(!n||!n.singleTypeComponents||Vg(i))&&(Zg(e,o,u,t),n&&n.componentOf))for(s=0,l=n.componentOf.length;s<l;s++)u[r=n.componentOf[s]]=u[r]||{},u[r][i.name]=i;Zg(e,o,u,t)}},$y=function(e,t,n,r){var i,o,a,s,l,u,c,d,p,m,h;e:for(p=e.length-1;p>=0;p--)if(Ky(o=e[p])&&!o.block){i=ky[o.name].canOverride||Ly;t:for(m=p-1;m>=0;m--)if(Ky(a=e[m])&&!a.block&&!a.dynamic&&!o.dynamic&&!a.unused&&!o.unused&&(!a.hack||o.hack||o.important)&&(a.hack||a.important||!o.hack)&&(a.important!=o.important||a.hack[0]==o.hack[0])&&!(a.important==o.important&&(a.hack[0]!=o.hack[0]||a.hack[1]&&a.hack[1]!=o.hack[1])||gy(o)||Yy(a,o)))if(o.shorthand&&Sy(o,a)){if(!o.important&&a.important)continue;if(!Cy([a],o.components))continue;if(!Fy(r.isFunction,a)&&jy(o,r))continue;if(!xy(o)){a.unused=!0;continue}s=by(o,a),i=ky[a.name].canOverride||Ly,vy(i.bind(null,r),a,s)&&(a.unused=!0)}else if(o.shorthand&&wy(o,a)){if(!o.important&&a.important)continue;if(!Cy([a],o.components))continue;if(!Fy(r.isFunction,a)&&jy(o,r))continue;for(h=(l=a.shorthand?a.components:[a]).length-1;h>=0;h--)if(u=l[h],c=by(o,u),i=ky[u.name].canOverride||Ly,!vy(i.bind(null,r),a,c))continue t;a.unused=!0}else if(t&&a.shorthand&&!o.shorthand&&Sy(a,o,!0)){if(o.important&&!a.important)continue;if(!o.important&&a.important){o.unused=!0;continue}if(Vy(e,p-1,a.name))continue;if(jy(a,r))continue;if(!xy(a))continue;if(yy(a)||yy(o))continue;if(s=by(a,o),vy(i.bind(null,r),s,o)){var f=!n.properties.backgroundClipMerging&&s.name.indexOf("background-clip")>-1||!n.properties.backgroundOriginMerging&&s.name.indexOf("background-origin")>-1||!n.properties.backgroundSizeMerging&&s.name.indexOf("background-size")>-1,g=ky[o.name].nonMergeableValue===o.value[0][1];if(f||g)continue;if(!n.properties.merging&&Py(a,r))continue;if(s.value[0][1]!=o.value[0][1]&&(gy(a)||gy(o)))continue;if(Gy(a,o))continue;!a.multiplex&&o.multiplex&&Iy(a,Ny(o)),My(s,o),a.dirty=!0}}else if(t&&a.shorthand&&o.shorthand&&a.name==o.name){if(!a.multiplex&&o.multiplex)continue;if(!o.important&&a.important){o.unused=!0;continue e}if(o.important&&!a.important){a.unused=!0;continue}if(!xy(o)){a.unused=!0;continue}for(h=a.components.length-1;h>=0;h--){var y=a.components[h],v=o.components[h];if(i=ky[y.name].canOverride||Ly,!vy(i.bind(null,r),y,v))continue e}Uy(a,o),a.dirty=!0}else if(t&&a.shorthand&&o.shorthand&&Sy(a,o)){if(!a.important&&o.important)continue;if(s=by(a,o),i=ky[o.name].canOverride||Ly,!vy(i.bind(null,r),s,o))continue;if(a.important&&!o.important){o.unused=!0;continue}if(ky[o.name].restore(o,ky).length>1)continue;My(s=by(a,o),o),o.dirty=!0}else if(a.name==o.name){if(d=!0,o.shorthand)for(h=o.components.length-1;h>=0&&d;h--)u=a.components[h],c=o.components[h],i=ky[c.name].canOverride||Ly,d=d&&vy(i.bind(null,r),u,c);else i=ky[o.name].canOverride||Ly,d=vy(i.bind(null,r),a,o);if(a.important&&!o.important&&d){o.unused=!0;continue}if(!a.important&&o.important&&d){a.unused=!0;continue}if(!d)continue;a.unused=!0}}},Qy=Ug,Zy=qg,Xy=dp,Jy=Qd,ev=tp,tv=cm;var nv=function e(t,n,r,i){var o,a,s,l=i.options.level[tv.Two],u=Xy(t,l.skipProperties);for(Qy(u,i.validator,i.warnings),a=0,s=u.length;a<s;a++)(o=u[a]).block&&e(o.value[0][1],n,r,i);r&&l.mergeIntoShorthands&&Hy(u,i.validator),n&&l.overrideProperties&&$y(u,r,i.options.compatibility,i.validator),ev(u,Zy),Jy(u)},rv=_g,iv=nv,ov=Gc,av=Fd,sv=cm,lv=Lf,uv=Bf,cv=np;var dv=function(e,t){for(var n=[null,[],[]],r=t.options,i=r.compatibility.selectors.adjacentSpace,o=r.level[sv.One].selectorsSortingMethod,a=r.compatibility.selectors.mergeablePseudoClasses,s=r.compatibility.selectors.mergeablePseudoElements,l=r.compatibility.selectors.mergeLimit,u=r.compatibility.selectors.multiplePseudoMerging,c=0,d=e.length;c<d;c++){var p=e[c];p[0]==cv.RULE?n[0]==cv.RULE&&uv(p[1])==uv(n[1])?(Array.prototype.push.apply(n[2],p[2]),iv(n[2],!0,!0,t),p[2]=[]):n[0]==cv.RULE&&lv(p[2])==lv(n[2])&&rv(uv(p[1]),a,s,u)&&rv(uv(n[1]),a,s,u)&&n[1].length<l?(n[1]=av(n[1].concat(p[1]),!1,i,!1,t.warnings),n[1]=n.length>1?ov(n[1],o):n[1],p[2]=[]):n=p:n=[null,[],[]]}},pv=/\-\-.+$/;function mv(e){return e.replace(pv,"")}var hv=function(e,t,n){var r,i,o,a,s,l;for(o=0,a=e.length;o<a;o++)for(r=e[o][1],s=0,l=t.length;s<l;s++){if(r==(i=t[s][1]))return!0;if(n&&mv(r)==mv(i))return!0}return!1},fv=Od,gv=".",yv="#",vv=":",bv=/[a-zA-Z]/,Sv=/[\s,\(>~\+]/;function xv(e,t){return e.indexOf(":not(",t)===t}var wv=function(e){var t,n,r,i,o,a,s,l=[0,0,0],u=0,c=!1,d=!1;for(a=0,s=e.length;a<s;a++){if(t=e[a],n);else if(t!=fv.SINGLE_QUOTE||i||r)if(t==fv.SINGLE_QUOTE&&!i&&r)r=!1;else if(t!=fv.DOUBLE_QUOTE||i||r)if(t==fv.DOUBLE_QUOTE&&i&&!r)i=!1;else{if(r||i)continue;u>0&&!c||(t==fv.OPEN_ROUND_BRACKET?u++:t==fv.CLOSE_ROUND_BRACKET&&1==u?(u--,c=!1):t==fv.CLOSE_ROUND_BRACKET?u--:t==yv?l[0]++:t==gv||t==fv.OPEN_SQUARE_BRACKET?l[1]++:t!=vv||d||xv(e,a)?t==vv?c=!0:(0===a||o)&&bv.test(t)&&l[2]++:(l[1]++,c=!1))}else i=!0;else r=!0;d=t==vv,o=!(n=t==fv.BACK_SLASH)&&Sv.test(t)}return l};function Cv(e,t){var n;return e in t||(t[e]=n=wv(e)),n||t[e]}var kv=hv,Ov=function(e,t,n){var r,i,o,a,s,l;for(o=0,a=e.length;o<a;o++)for(r=Cv(e[o][1],n),s=0,l=t.length;s<l;s++)if(i=Cv(t[s][1],n),r[0]===i[0]&&r[1]===i[1]&&r[2]===i[2])return!0;return!1},Tv=/align\-items|box\-align|box\-pack|flex|justify/,Ev=/^border\-(top|right|bottom|left|color|style|width|radius)/;function Av(e,t,n){var r,i,o=e[0],a=e[1],s=e[2],l=e[5],u=e[6],c=t[0],d=t[1],p=t[2],m=t[5],h=t[6];return!("font"==o&&"line-height"==c||"font"==c&&"line-height"==o)&&((!Tv.test(o)||!Tv.test(c))&&(!(s==p&&zv(o)==zv(c)&&_v(o)^_v(c))&&(("border"!=s||!Ev.test(p)||!("border"==o||o==p||a!=d&&Rv(o,c)))&&(("border"!=p||!Ev.test(s)||!("border"==c||c==s||a!=d&&Rv(o,c)))&&(("border"!=s||"border"!=p||o==c||!(Lv(o)&&Pv(c)||Pv(o)&&Lv(c)))&&(s!=p||(!(o!=c||s!=p||a!=d&&(r=a,i=d,!_v(r)||!_v(i)||r.split("-")[1]==i.split("-")[2]))||(o!=c&&s==p&&o!=s&&c!=p||(o!=c&&s==p&&a==d||(!(!h||!u||Bv(s)||Bv(p)||kv(m,l,!1))||!Ov(l,m,n)))))))))))}function _v(e){return/^\-(?:moz|webkit|ms|o)\-/.test(e)}function zv(e){return e.replace(/^\-(?:moz|webkit|ms|o)\-/,"")}function Rv(e,t){return e.split("-").pop()==t.split("-").pop()}function Lv(e){return"border-top"==e||"border-right"==e||"border-bottom"==e||"border-left"==e}function Pv(e){return"border-color"==e||"border-style"==e||"border-width"==e}function Bv(e){return"font"==e||"line-height"==e||"list-style"==e}var Wv=function(e,t,n){for(var r=t.length-1;r>=0;r--)for(var i=e.length-1;i>=0;i--)if(!Av(e[i],t[r],n))return!1;return!0},Mv=np,Uv=Bf,Iv=Wf;function qv(e){return"list-style"==e?e:e.indexOf("-radius")>0?"border-radius":"border-collapse"==e||"border-spacing"==e||"border-image"==e?e:0===e.indexOf("border-")&&/^border\-\w+\-\w+$/.test(e)?e.match(/border\-\w+/)[0]:0===e.indexOf("border-")&&/^border\-\w+$/.test(e)?"border":0===e.indexOf("text-")||"-chrome-"==e?e:e.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var Nv=function e(t){var n,r,i,o,a,s,l=[];if(t[0]==Mv.RULE)for(n=!/[\.\+>~]/.test(Uv(t[1])),a=0,s=t[2].length;a<s;a++)(r=t[2][a])[0]==Mv.PROPERTY&&0!==(i=r[1][1]).length&&(o=Iv(r,a),l.push([i,o,qv(i),t[2][a],i+":"+o,t[1],n]));else if(t[0]==Mv.NESTED_BLOCK)for(a=0,s=t[2].length;a<s;a++)l=l.concat(e(t[2][a]));return l},Dv=Wv,Vv=Av,jv=Nv,Fv=hv,Gv=Bf,Kv=cm,Yv=np;function Hv(e,t,n){var r,i,o,a,s,l,u,c;for(s=0,l=e.length;s<l;s++)for(i=(r=e[s])[5],u=0,c=t.length;u<c;u++)if(a=(o=t[u])[5],Fv(i,a,!0)&&!Vv(r,o,n))return!1;return!0}var $v=_g,Qv=Gc,Zv=Fd,Xv=cm,Jv=Lf,eb=Bf,tb=np;function nb(e){return/\.|\*| :/.test(e)}function rb(e){var t=eb(e[1]);return t.indexOf("__")>-1||t.indexOf("--")>-1}function ib(e){return e.replace(/--[^ ,>\+~:]+/g,"")}function ob(e,t){var n=ib(eb(e[1]));for(var r in t){var i=t[r],o=ib(eb(i[1]));(o.indexOf(n)>-1||n.indexOf(o)>-1)&&delete t[r]}}var ab=function(e,t){for(var n=t.options,r=n.level[Xv.Two].mergeSemantically,i=n.compatibility.selectors.adjacentSpace,o=n.level[Xv.One].selectorsSortingMethod,a=n.compatibility.selectors.mergeablePseudoClasses,s=n.compatibility.selectors.mergeablePseudoElements,l=n.compatibility.selectors.multiplePseudoMerging,u={},c=e.length-1;c>=0;c--){var d=e[c];if(d[0]==tb.RULE){d[2].length>0&&!r&&nb(eb(d[1]))&&(u={}),d[2].length>0&&r&&rb(d)&&ob(d,u);var p=Jv(d[2]),m=u[p];m&&$v(eb(d[1]),a,s,l)&&$v(eb(m[1]),a,s,l)&&(d[2].length>0?(d[1]=Zv(m[1].concat(d[1]),!1,i,!1,t.warnings),d[1]=d[1].length>1?Qv(d[1],o):d[1]):d[1]=m[1].concat(d[1]),m[2]=[],u[p]=null),u[Jv(d[2])]=d}}},sb=Wv,lb=Nv,ub=nv,cb=Bf,db=np;var pb=function e(t){for(var n=t.slice(0),r=0,i=n.length;r<i;r++)Array.isArray(n[r])&&(n[r]=e(n[r]));return n},mb=_g,hb=nv,fb=pb,gb=np,yb=Lf,vb=Bf;function bb(e){for(var t=[],n=0;n<e.length;n++)t.push([e[n][1]]);return t}function Sb(e,t,n,r,i){for(var o=[],a=[],s=[],l=t.length-1;l>=0;l--)if(!n.filterOut(l,o)){var u=t[l].where,c=e[u],d=fb(c[2]);o=o.concat(d),a.push(d),s.push(u)}hb(o,!0,!1,i);for(var p=s.length,m=o.length-1,h=p-1;h>=0;)if((0===h||o[m]&&a[h].indexOf(o[m])>-1)&&m>-1)m--;else{var f=o.splice(m+1);n.callback(e[s[h]],f,p,h),h--}}var xb=function(e,t){for(var n=t.options,r=n.compatibility.selectors.mergeablePseudoClasses,i=n.compatibility.selectors.mergeablePseudoElements,o=n.compatibility.selectors.multiplePseudoMerging,a={},s=[],l=e.length-1;l>=0;l--){var u=e[l];if(u[0]==gb.RULE&&0!==u[2].length)for(var c=vb(u[1]),d=u[1].length>1&&mb(c,r,i,o),p=bb(u[1]),m=d?[c].concat(p):[c],h=0,f=m.length;h<f;h++){var g=m[h];a[g]?s.push(g):a[g]=[],a[g].push({where:l,list:p,isPartial:d&&h>0,isComplex:d&&0===h})}}!function(e,t,n,r,i){function o(e,t){return u[e].isPartial&&0===t.length}function a(e,t,n,r){u[n-r-1].isPartial||(e[2]=t)}for(var s=0,l=t.length;s<l;s++){var u=n[t[s]];Sb(e,u,{filterOut:o,callback:a},r,i)}}(e,s,a,n,t),function(e,t,n,r){var i=n.compatibility.selectors.mergeablePseudoClasses,o=n.compatibility.selectors.mergeablePseudoElements,a=n.compatibility.selectors.multiplePseudoMerging,s={};function l(e){return s.data[e].where<s.intoPosition}function u(e,t,n,r){0===r&&s.reducedBodies.push(t)}e:for(var c in t){var d=t[c];if(d[0].isComplex){var p=d[d.length-1].where,m=e[p],h=[],f=mb(c,i,o,a)?d[0].list:[c];s.intoPosition=p,s.reducedBodies=h;for(var g=0,y=f.length;g<y;g++){var v=t[f[g]];if(v.length<2)continue e;if(s.data=v,Sb(e,v,{filterOut:l,callback:u},n,r),yb(h[h.length-1])!=yb(h[0]))continue e}m[2]=h[0]}}}(e,a,n,t)},wb=np,Cb=Rf;var kb=function(e){var t,n,r,i,o=[];for(r=0,i=e.length;r<i;r++)(t=e[r])[0]!=wb.AT_RULE_BLOCK&&"@font-face"!=t[1][0][1]||(n=Cb([t]),o.indexOf(n)>-1?t[2]=[]:o.push(n))},Ob=np,Tb=Rf,Eb=Bf;var Ab=function(e){var t,n,r,i,o,a={};for(i=0,o=e.length;i<o;i++)(n=e[i])[0]==Ob.NESTED_BLOCK&&((t=a[r=Eb(n[1])+"%"+Tb(n[2])])&&(t[2]=[]),a[r]=n)},_b=np,zb=Lf,Rb=Bf;var Lb=function(e){for(var t,n,r,i,o={},a=[],s=0,l=e.length;s<l;s++)(n=e[s])[0]==_b.RULE&&(o[t=Rb(n[1])]&&1==o[t].length?a.push(t):o[t]=o[t]||[],o[t].push(s));for(s=0,l=a.length;s<l;s++){i=[];for(var u=o[t=a[s]].length-1;u>=0;u--)n=e[o[t][u]],r=zb(n[2]),i.indexOf(r)>-1?n[2]=[]:i.push(r)}},Pb=Ug,Bb=pp,Wb=tp,Mb=np,Ub=/^(\-moz\-|\-o\-|\-webkit\-)?animation-name$/,Ib=/^(\-moz\-|\-o\-|\-webkit\-)?animation$/,qb=/^@(\-moz\-|\-o\-|\-webkit\-)?keyframes /,Nb=/\s{0,31}!important$/,Db=/^(['"]?)(.*)\1$/;function Vb(e){return e.replace(Db,"$2").replace(Nb,"")}function jb(e,t,n,r){var i,o,a,s,l,u={};for(s=0,l=e.length;s<l;s++)t(e[s],u);if(0!==Object.keys(u).length)for(i in Fb(e,n,u,r),u)for(s=0,l=(o=u[i]).length;s<l;s++)(a=o[s])[a[0]==Mb.AT_RULE?1:2]=[]}function Fb(e,t,n,r){var i,o,a=t(n);for(i=0,o=e.length;i<o;i++)switch(e[i][0]){case Mb.RULE:a(e[i],r);break;case Mb.NESTED_BLOCK:Fb(e[i][2],t,n,r)}}function Gb(e,t){var n;e[0]==Mb.AT_RULE_BLOCK&&0===e[1][0][1].indexOf("@counter-style")&&(t[n=e[1][0][1].split(" ")[1]]=t[n]||[],t[n].push(e))}function Kb(e){return function(t,n){var r,i,o,a;for(o=0,a=t[2].length;o<a;o++)"list-style"==(r=t[2][o])[1][1]&&(i=Bb(r),Pb([i],n.validator,n.warnings),i.components[0].value[0][1]in e&&delete e[r[2][1]],Wb([i])),"list-style-type"==r[1][1]&&r[2][1]in e&&delete e[r[2][1]]}}function Yb(e,t){var n,r,i,o;if(e[0]==Mb.AT_RULE_BLOCK&&"@font-face"==e[1][0][1])for(i=0,o=e[2].length;i<o;i++)if("font-family"==(n=e[2][i])[1][1]){t[r=Vb(n[2][1].toLowerCase())]=t[r]||[],t[r].push(e);break}}function Hb(e){return function(t,n){var r,i,o,a,s,l,u,c;for(s=0,l=t[2].length;s<l;s++){if("font"==(r=t[2][s])[1][1]){for(i=Bb(r),Pb([i],n.validator,n.warnings),u=0,c=(o=i.components[6]).value.length;u<c;u++)(a=Vb(o.value[u][1].toLowerCase()))in e&&delete e[a];Wb([i])}if("font-family"==r[1][1])for(u=2,c=r.length;u<c;u++)(a=Vb(r[u][1].toLowerCase()))in e&&delete e[a]}}}function $b(e,t){var n;e[0]==Mb.NESTED_BLOCK&&qb.test(e[1][0][1])&&(t[n=e[1][0][1].split(" ")[1]]=t[n]||[],t[n].push(e))}function Qb(e){return function(t,n){var r,i,o,a,s,l,u;for(a=0,s=t[2].length;a<s;a++){if(r=t[2][a],Ib.test(r[1][1])){for(i=Bb(r),Pb([i],n.validator,n.warnings),l=0,u=(o=i.components[7]).value.length;l<u;l++)o.value[l][1]in e&&delete e[o.value[l][1]];Wb([i])}if(Ub.test(r[1][1]))for(l=2,u=r.length;l<u;l++)r[l][1]in e&&delete e[r[l][1]]}}}function Zb(e,t){var n;e[0]==Mb.AT_RULE&&0===e[1].indexOf("@namespace")&&(t[n=e[1].split(" ")[1]]=t[n]||[],t[n].push(e))}function Xb(e){var t=new RegExp(Object.keys(e).join("\\||")+"\\|","g");return function(n){var r,i,o,a,s,l;for(o=0,a=n[1].length;o<a;o++)for(s=0,l=(r=n[1][o][1].match(t)).length;s<l;s++)(i=r[s].substring(0,r[s].length-1))in e&&delete e[i]}}function Jb(e,t){return e[1]>t[1]?1:-1}var eS=Av,tS=Nv,nS=_g,rS=function(e){for(var t=[],n=[],r=0,i=e.length;r<i;r++){var o=e[r];-1==n.indexOf(o[1])&&(n.push(o[1]),t.push(o))}return t.sort(Jb)},iS=np,oS=pb,aS=Lf,sS=Bf;function lS(e,t){return e>t?1:-1}var uS=dv,cS=function(e,t){for(var n=t.options.level[Kv.Two].mergeSemantically,r=t.cache.specificity,i={},o=[],a=e.length-1;a>=0;a--){var s=e[a];if(s[0]==Yv.NESTED_BLOCK){var l=Gv(s[1]),u=i[l];u||(u=[],i[l]=u),u.push(a)}}for(var c in i){var d=i[c];e:for(var p=d.length-1;p>0;p--){var m=d[p],h=e[m],f=d[p-1],g=e[f];t:for(var y=1;y>=-1;y-=2){for(var v=1==y,b=v?m+1:f-1,S=v?f:m,x=v?1:-1,w=v?h:g,C=v?g:h,k=jv(w);b!=S;){var O=jv(e[b]);if(b+=x,!(n&&Hv(k,O,r)||Dv(k,O,r)))continue t}C[2]=v?w[2].concat(C[2]):C[2].concat(w[2]),w[2]=[],o.push(C);continue e}}}return o},dS=ab,pS=function(e,t){var n,r=t.cache.specificity,i={},o=[];for(n=e.length-1;n>=0;n--)if(e[n][0]==db.RULE&&0!==e[n][2].length){var a=cb(e[n][1]);i[a]=[n].concat(i[a]||[]),2==i[a].length&&o.push(a)}for(n=o.length-1;n>=0;n--){var s=i[o[n]];e:for(var l=s.length-1;l>0;l--){var u=s[l-1],c=e[u],d=s[l],p=e[d];t:for(var m=1;m>=-1;m-=2){for(var h=1==m,f=h?u+1:d-1,g=h?d:u,y=h?1:-1,v=h?c:p,b=h?p:c,S=lb(v);f!=g;){var x=lb(e[f]);f+=y;var w=h?sb(S,x,r):sb(x,S,r);if(!w&&!h)continue e;if(!w&&h)continue t}h?(Array.prototype.push.apply(v[2],b[2]),b[2]=v[2]):Array.prototype.push.apply(b[2],v[2]),ub(b[2],!0,!0,t),v[2]=[]}}}},mS=xb,hS=kb,fS=Ab,gS=Lb,yS=function(e,t){jb(e,Gb,Kb,t),jb(e,Yb,Hb,t),jb(e,$b,Qb,t),jb(e,Zb,Xb,t)},vS=function(e,t){var n,r,i,o=t.options,a=o.compatibility.selectors.mergeablePseudoClasses,s=o.compatibility.selectors.mergeablePseudoElements,l=o.compatibility.selectors.mergeLimit,u=o.compatibility.selectors.multiplePseudoMerging,c=t.cache.specificity,d={},p=[],m={},h=[],f="%";function g(e,t){var n=function(e){for(var t=[],n=0,r=e.length;n<r;n++)t.push(sS(e[n][1]));return t.join(f)}(t);return m[n]=m[n]||[],m[n].push([e,t]),n}function y(e){var t,n=e.split(f),r=[];for(var i in m){var o=i.split(f);for(t=o.length-1;t>=0;t--)if(n.indexOf(o[t])>-1){r.push(i);break}}for(t=r.length-1;t>=0;t--)delete m[r[t]]}function v(e){for(var t=[],n=[],r=e.length-1;r>=0;r--)nS(sS(e[r][1]),a,s,u)&&(n.unshift(e[r]),e[r][2].length>0&&-1==t.indexOf(e[r])&&t.push(e[r]));return t.length>1?n:[]}function b(e,t){var n=t[0],r=t[1],i=t[4],o=n.length+r.length+1,a=[],s=[],l=v(d[i]);if(!(l.length<2)){var u=x(l,o,1),c=u[0];if(c[1]>0)return function(e,t,n){for(var r=n.length-1;r>=0;r--){var i=g(t,n[r][0]);if(m[i].length>1&&T(e,m[i])){y(i);break}}}(e,t,u);for(var p=c[0].length-1;p>=0;p--)a=c[0][p][1].concat(a),s.unshift(c[0][p]);k(e,[t],a=rS(a),s)}}function S(e,t){return e[1]>t[1]?1:e[1]==t[1]?0:-1}function x(e,t,n){return w(e,t,n,1).sort(S)}function w(e,t,n,r){var i=[[e,C(e,t,n)]];if(e.length>2&&r>0)for(var o=e.length-1;o>=0;o--){var a=Array.prototype.slice.call(e,0);a.splice(o,1),i=i.concat(w(a,t,n,r-1))}return i}function C(e,t,n){for(var r=0,i=e.length-1;i>=0;i--)r+=e[i][2].length>n?sS(e[i][1]).length:-1;return r-(e.length-1)*t+1}function k(t,n,r,i){var o,a,s,l,u=[];for(o=i.length-1;o>=0;o--){var c=i[o];for(a=c[2].length-1;a>=0;a--){var d=c[2][a];for(s=0,l=n.length;s<l;s++){var p=n[s],m=d[1][1],h=p[0],f=p[4];if(m==h&&aS([d])==f){c[2].splice(a,1);break}}}}for(o=n.length-1;o>=0;o--)u.unshift(n[o][3]);var g=[iS.RULE,r,u];e.splice(t,0,g)}function O(e,t){var n=t[4],r=d[n];r&&r.length>1&&(function(e,t){var n,r,i=[],o=[],a=t[4],s=v(d[a]);if(s.length<2)return;e:for(var l in d){var u=d[l];for(n=s.length-1;n>=0;n--)if(-1==u.indexOf(s[n]))continue e;i.push(l)}if(i.length<2)return!1;for(n=i.length-1;n>=0;n--)for(r=p.length-1;r>=0;r--)if(p[r][4]==i[n]){o.unshift([p[r],s]);break}return T(e,o)}(e,t)||b(e,t))}function T(e,t){for(var n,r=0,i=[],o=t.length-1;o>=0;o--){r+=(n=t[o][0])[4].length+(o>0?1:0),i.push(n)}var a=x(t[0][1],r,i.length)[0];if(a[1]>0)return!1;var s=[],l=[];for(o=a[0].length-1;o>=0;o--)s=a[0][o][1].concat(s),l.unshift(a[0][o]);for(k(e,i,s=rS(s),l),o=i.length-1;o>=0;o--){n=i[o];var u=p.indexOf(n);delete d[n[4]],u>-1&&-1==h.indexOf(u)&&h.push(u)}return!0}function E(e,t,n){if(e[0]!=t[0])return!1;var r=t[4],i=d[r];return i&&i.indexOf(n)>-1}for(var A=e.length-1;A>=0;A--){var _,z,R,L,P,B=e[A];if(B[0]==iS.RULE)_=!0;else{if(B[0]!=iS.NESTED_BLOCK)continue;_=!1}var W=p.length,M=tS(B);h=[];var U=[];for(z=M.length-1;z>=0;z--)for(R=z-1;R>=0;R--)if(!eS(M[z],M[R],c)){U.push(z);break}for(z=M.length-1;z>=0;z--){var I=M[z],q=!1;for(R=0;R<W;R++){var N=p[R];-1==h.indexOf(R)&&(!eS(I,N,c)&&!E(I,N,B)||d[N[4]]&&d[N[4]].length===l)&&(O(A+1,N),-1==h.indexOf(R)&&(h.push(R),delete d[N[4]])),q||(q=I[0]==N[0]&&I[1]==N[1])&&(P=R)}if(_&&!(U.indexOf(z)>-1)){var D=I[4];q&&p[P][5].length+I[5].length>l?(O(A+1,p[P]),p.splice(P,1),d[D]=[B],q=!1):(d[D]=d[D]||[],d[D].push(B)),q?p[P]=(n=p[P],r=I,i=void 0,(i=oS(n))[5]=i[5].concat(r[5]),i):p.push(I)}}for(z=0,L=(h=h.sort(lS)).length;z<L;z++){var V=h[z]-z;p.splice(V,1)}}for(var j=e[0]&&e[0][0]==iS.AT_RULE&&0===e[0][1].indexOf("@charset")?1:0;j<e.length-1;j++){var F=e[j][0]===iS.AT_RULE&&0===e[j][1].indexOf("@import"),G=e[j][0]===iS.COMMENT;if(!F&&!G)break}for(A=0;A<p.length;A++)O(j,p[A])},bS=nv,SS=cm,xS=np;function wS(e){for(var t=0,n=e.length;t<n;t++){var r=e[t],i=!1;switch(r[0]){case xS.RULE:i=0===r[1].length||0===r[2].length;break;case xS.NESTED_BLOCK:wS(r[2]),i=0===r[2].length;break;case xS.AT_RULE:i=0===r[1].length;break;case xS.AT_RULE_BLOCK:i=0===r[2].length}i&&(e.splice(t,1),t--,n--)}}function CS(e,t){for(var n=0,r=e.length;n<r;n++){var i=e[n];switch(i[0]){case xS.RULE:bS(i[2],!0,!0,t);break;case xS.NESTED_BLOCK:CS(i[2],t)}}}function kS(e,t,n){var r,i,o=t.options.level[SS.Two],a=t.options.plugins.level2Block;if(function(e,t){for(var n=0,r=e.length;n<r;n++){var i=e[n];if(i[0]==xS.NESTED_BLOCK){var o=/@(-moz-|-o-|-webkit-)?keyframes/.test(i[1][0][1]);kS(i[2],t,!o)}}}(e,t),CS(e,t),o.removeDuplicateRules&&gS(e),o.mergeAdjacentRules&&uS(e,t),o.reduceNonAdjacentRules&&mS(e,t),o.mergeNonAdjacentRules&&"body"!=o.mergeNonAdjacentRules&&pS(e,t),o.mergeNonAdjacentRules&&"selector"!=o.mergeNonAdjacentRules&&dS(e,t),o.restructureRules&&o.mergeAdjacentRules&&n&&(vS(e,t),uS(e,t)),o.restructureRules&&!o.mergeAdjacentRules&&n&&vS(e,t),o.removeDuplicateFontRules&&hS(e),o.removeDuplicateMediaBlocks&&fS(e),o.removeUnusedAtRules&&yS(e,t),o.mergeMedia)for(i=(r=cS(e,t)).length-1;i>=0;i--)kS(r[i][2],t,!1);for(i=0;i<a.length;i++)a[i](e);return o.removeEmpty&&wS(e),e}var OS=kS,TS=new RegExp("^(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)$","i"),ES=/[0-9]/,AS=new RegExp("^(var\\(\\-\\-[^\\)]+\\)|[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)|\\-(\\-|[A-Z]|[0-9])+\\(.*?\\))$","i"),_S=/^#(?:[0-9a-f]{4}|[0-9a-f]{8})$/i,zS=/^hsl\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31}\)|hsla\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\.?\d+\s{0,31}\)$/,RS=/^(\-[a-z0-9_][a-z0-9\-_]*|[a-z_][a-z0-9\-_]*)$/i,LS=/^[a-z]+$/i,PS=/^-([a-z0-9]|-)*$/i,BS=/^("[^"]*"|'[^']*')$/i,WS=/^rgb\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31}\)|rgba\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\.\d]+\s{0,31}\)$/i,MS=/\d+(s|ms)/,US=/^(cubic\-bezier|steps)\([^\)]+\)$/,IS=["ms","s"],qS=/^url\([\s\S]+\)$/i,NS=new RegExp("^var\\(\\-\\-[^\\)]+\\)$","i"),DS=/^#[0-9a-f]{8}$/i,VS=/^#[0-9a-f]{4}$/i,jS=/^#[0-9a-f]{6}$/i,FS=/^#[0-9a-f]{3}$/i,GS={"^":["inherit","initial","unset"],"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"*-timing-function":["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"],"animation-direction":["alternate","alternate-reverse","normal","reverse"],"animation-fill-mode":["backwards","both","forwards","none"],"animation-iteration-count":["infinite"],"animation-name":["none"],"animation-play-state":["paused","running"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],color:["transparent"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],font:["caption","icon","menu","message-box","small-caption","status-bar","unset"],"font-size":["large","larger","medium","small","smaller","x-large","x-small","xx-large","xx-small"],"font-stretch":["condensed","expanded","extra-condensed","extra-expanded","normal","semi-condensed","semi-expanded","ultra-condensed","ultra-expanded"],"font-style":["italic","normal","oblique"],"font-variant":["normal","small-caps"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"line-height":["normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},KS=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"];function YS(e){return"auto"!=e&&(nx("color")(e)||function(e){return FS.test(e)||VS.test(e)||jS.test(e)||DS.test(e)}(e)||HS(e)||function(e){return LS.test(e)}(e))}function HS(e){return ix(e)||ZS(e)}function $S(e){return TS.test(e)}function QS(e){return AS.test(e)}function ZS(e){return zS.test(e)}function XS(e){return _S.test(e)}function JS(e){return RS.test(e)}function ex(e){return BS.test(e)}function tx(e){return"none"==e||"inherit"==e||cx(e)}function nx(e){return function(t){return GS[e].indexOf(t)>-1}}function rx(e){return px(e)==e.length}function ix(e){return WS.test(e)}function ox(e){return PS.test(e)}function ax(e){return rx(e)&&parseFloat(e)>=0}function sx(e){return NS.test(e)}function lx(e){var t=px(e);return t==e.length&&0===parseInt(e)||t>-1&&IS.indexOf(e.slice(t+1))>-1||function(e){return QS(e)&&MS.test(e)}(e)}function ux(e,t){var n=px(t);return n==t.length&&0===parseInt(t)||n>-1&&e.indexOf(t.slice(n+1).toLowerCase())>-1||"auto"==t||"inherit"==t}function cx(e){return qS.test(e)}function dx(e){return"auto"==e||rx(e)||nx("^")(e)}function px(e){var t,n,r,i=!1,o=!1;for(n=0,r=e.length;n<r;n++)if(t=e[n],0!==n||"+"!=t&&"-"!=t){if(n>0&&o&&("+"==t||"-"==t))return n-1;if("."!=t||i){if("."==t&&i)return n-1;if(ES.test(t))continue;return n-1}i=!0}else o=!0;return n}var mx=function(e){var t,n=KS.slice(0).filter((function(t){return!(t in e.units)||!0===e.units[t]}));return e.customUnits.rpx&&n.push("rpx"),{colorOpacity:e.colors.opacity,colorHexAlpha:e.colors.hexAlpha,isAnimationDirectionKeyword:nx("animation-direction"),isAnimationFillModeKeyword:nx("animation-fill-mode"),isAnimationIterationCountKeyword:nx("animation-iteration-count"),isAnimationNameKeyword:nx("animation-name"),isAnimationPlayStateKeyword:nx("animation-play-state"),isTimingFunction:(t=nx("*-timing-function"),function(e){return t(e)||US.test(e)}),isBackgroundAttachmentKeyword:nx("background-attachment"),isBackgroundClipKeyword:nx("background-clip"),isBackgroundOriginKeyword:nx("background-origin"),isBackgroundPositionKeyword:nx("background-position"),isBackgroundRepeatKeyword:nx("background-repeat"),isBackgroundSizeKeyword:nx("background-size"),isColor:YS,isColorFunction:HS,isDynamicUnit:$S,isFontKeyword:nx("font"),isFontSizeKeyword:nx("font-size"),isFontStretchKeyword:nx("font-stretch"),isFontStyleKeyword:nx("font-style"),isFontVariantKeyword:nx("font-variant"),isFontWeightKeyword:nx("font-weight"),isFunction:QS,isGlobal:nx("^"),isHexAlphaColor:XS,isHslColor:ZS,isIdentifier:JS,isImage:tx,isKeyword:nx,isLineHeightKeyword:nx("line-height"),isListStylePositionKeyword:nx("list-style-position"),isListStyleTypeKeyword:nx("list-style-type"),isNumber:rx,isPrefixed:ox,isPositiveNumber:ax,isQuotedText:ex,isRgbColor:ix,isStyleKeyword:nx("*-style"),isTime:lx,isUnit:ux.bind(null,n),isUrl:cx,isVariable:sx,isWidth:nx("width"),isZIndex:dx}},hx={"*":{colors:{hexAlpha:!1,opacity:!0},customUnits:{rpx:!1},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!0,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"],mergeLimit:8191,multiplePseudoMerging:!0},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};function fx(e,t){for(var n in e){var r=e[n];"object"!=typeof r||Array.isArray(r)?t[n]=n in t?t[n]:r:t[n]=fx(r,t[n]||{})}return t}hx.ie11=fx(hx["*"],{properties:{ieSuffixHack:!0}}),hx.ie10=fx(hx["*"],{properties:{ieSuffixHack:!0}}),hx.ie9=fx(hx["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),hx.ie8=fx(hx.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),hx.ie7=fx(hx.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}});var gx=function(e){return fx(hx["*"],function(e){if("object"==typeof e)return e;if(!/[,\+\-]/.test(e))return hx[e]||hx["*"];var t=e.split(","),n=t[0]in hx?hx[t.shift()]:hx["*"];return e={},t.forEach((function(t){var n="+"==t[0],r=t.substring(1).split("."),i=r[0],o=r[1];e[i]=e[i]||{},e[i][o]=n})),fx(n,e)}(e))},yx=[],vx=[],bx="undefined"!=typeof Uint8Array?Uint8Array:Array,Sx=!1;function xx(){Sx=!0;for(var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",t=0,n=e.length;t<n;++t)yx[t]=e[t],vx[e.charCodeAt(t)]=t;vx["-".charCodeAt(0)]=62,vx["_".charCodeAt(0)]=63}function wx(e,t,n){for(var r,i,o=[],a=t;a<n;a+=3)r=(e[a]<<16)+(e[a+1]<<8)+e[a+2],o.push(yx[(i=r)>>18&63]+yx[i>>12&63]+yx[i>>6&63]+yx[63&i]);return o.join("")}function Cx(e){var t;Sx||xx();for(var n=e.length,r=n%3,i="",o=[],a=16383,s=0,l=n-r;s<l;s+=a)o.push(wx(e,s,s+a>l?l:s+a));return 1===r?(t=e[n-1],i+=yx[t>>2],i+=yx[t<<4&63],i+="=="):2===r&&(t=(e[n-2]<<8)+e[n-1],i+=yx[t>>10],i+=yx[t>>4&63],i+=yx[t<<2&63],i+="="),o.push(i),o.join("")}function kx(e,t,n,r,i){var o,a,s=8*i-r-1,l=(1<<s)-1,u=l>>1,c=-7,d=n?i-1:0,p=n?-1:1,m=e[t+d];for(d+=p,o=m&(1<<-c)-1,m>>=-c,c+=s;c>0;o=256*o+e[t+d],d+=p,c-=8);for(a=o&(1<<-c)-1,o>>=-c,c+=r;c>0;a=256*a+e[t+d],d+=p,c-=8);if(0===o)o=1-u;else{if(o===l)return a?NaN:1/0*(m?-1:1);a+=Math.pow(2,r),o-=u}return(m?-1:1)*a*Math.pow(2,o-r)}function Ox(e,t,n,r,i,o){var a,s,l,u=8*o-i-1,c=(1<<u)-1,d=c>>1,p=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,m=r?0:o-1,h=r?1:-1,f=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-a))<1&&(a--,l*=2),(t+=a+d>=1?p/l:p*Math.pow(2,1-d))*l>=2&&(a++,l/=2),a+d>=c?(s=0,a=c):a+d>=1?(s=(t*l-1)*Math.pow(2,i),a+=d):(s=t*Math.pow(2,d-1)*Math.pow(2,i),a=0));i>=8;e[n+m]=255&s,m+=h,s/=256,i-=8);for(a=a<<i|s,u+=i;u>0;e[n+m]=255&a,m+=h,a/=256,u-=8);e[n+m-h]|=128*f}var Tx={}.toString,Ex=Array.isArray||function(e){return"[object Array]"==Tx.call(e)};function Ax(){return zx.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function _x(e,t){if(Ax()<t)throw new RangeError("Invalid typed array length");return zx.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t)).__proto__=zx.prototype:(null===e&&(e=new zx(t)),e.length=t),e}function zx(e,t,n){if(!(zx.TYPED_ARRAY_SUPPORT||this instanceof zx))return new zx(e,t,n);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return Px(this,e)}return Rx(this,e,t,n)}function Rx(e,t,n,r){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?function(e,t,n,r){if(t.byteLength,n<0||t.byteLength<n)throw new RangeError("'offset' is out of bounds");if(t.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");t=void 0===n&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,n):new Uint8Array(t,n,r);zx.TYPED_ARRAY_SUPPORT?(e=t).__proto__=zx.prototype:e=Bx(e,t);return e}(e,t,n,r):"string"==typeof t?function(e,t,n){"string"==typeof n&&""!==n||(n="utf8");if(!zx.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|Ux(t,n),i=(e=_x(e,r)).write(t,n);i!==r&&(e=e.slice(0,i));return e}(e,t,n):function(e,t){if(Mx(t)){var n=0|Wx(t.length);return 0===(e=_x(e,n)).length||t.copy(e,0,0,n),e}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||(r=t.length)!=r?_x(e,0):Bx(e,t);if("Buffer"===t.type&&Ex(t.data))return Bx(e,t.data)}var r;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(e,t)}function Lx(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function Px(e,t){if(Lx(t),e=_x(e,t<0?0:0|Wx(t)),!zx.TYPED_ARRAY_SUPPORT)for(var n=0;n<t;++n)e[n]=0;return e}function Bx(e,t){var n=t.length<0?0:0|Wx(t.length);e=_x(e,n);for(var r=0;r<n;r+=1)e[r]=255&t[r];return e}function Wx(e){if(e>=Ax())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Ax().toString(16)+" bytes");return 0|e}function Mx(e){return!(null==e||!e._isBuffer)}function Ux(e,t){if(Mx(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return cw(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return dw(e).length;default:if(r)return cw(e).length;t=(""+t).toLowerCase(),r=!0}}function Ix(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return Jx(this,t,n);case"utf8":case"utf-8":return $x(this,t,n);case"ascii":return Zx(this,t,n);case"latin1":case"binary":return Xx(this,t,n);case"base64":return Hx(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ew(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function qx(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function Nx(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=zx.from(t,r)),Mx(t))return 0===t.length?-1:Dx(e,t,n,r,i);if("number"==typeof t)return t&=255,zx.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):Dx(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function Dx(e,t,n,r,i){var o,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function u(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var c=-1;for(o=n;o<s;o++)if(u(e,o)===u(t,-1===c?0:o-c)){if(-1===c&&(c=o),o-c+1===l)return c*a}else-1!==c&&(o-=o-c),c=-1}else for(n+l>s&&(n=s-l),o=n;o>=0;o--){for(var d=!0,p=0;p<l;p++)if(u(e,o+p)!==u(t,p)){d=!1;break}if(d)return o}return-1}function Vx(e,t,n,r){n=Number(n)||0;var i=e.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");r>o/2&&(r=o/2);for(var a=0;a<r;++a){var s=parseInt(t.substr(2*a,2),16);if(isNaN(s))return a;e[n+a]=s}return a}function jx(e,t,n,r){return pw(cw(t,e.length-n),e,n,r)}function Fx(e,t,n,r){return pw(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function Gx(e,t,n,r){return Fx(e,t,n,r)}function Kx(e,t,n,r){return pw(dw(t),e,n,r)}function Yx(e,t,n,r){return pw(function(e,t){for(var n,r,i,o=[],a=0;a<e.length&&!((t-=2)<0);++a)r=(n=e.charCodeAt(a))>>8,i=n%256,o.push(i),o.push(r);return o}(t,e.length-n),e,n,r)}function Hx(e,t,n){return 0===t&&n===e.length?Cx(e):Cx(e.slice(t,n))}function $x(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i<n;){var o,a,s,l,u=e[i],c=null,d=u>239?4:u>223?3:u>191?2:1;if(i+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:128==(192&(o=e[i+1]))&&(l=(31&u)<<6|63&o)>127&&(c=l);break;case 3:o=e[i+1],a=e[i+2],128==(192&o)&&128==(192&a)&&(l=(15&u)<<12|(63&o)<<6|63&a)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:o=e[i+1],a=e[i+2],s=e[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(l=(15&u)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(c=l)}null===c?(c=65533,d=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),i+=d}return function(e){var t=e.length;if(t<=Qx)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=Qx));return n}(r)}zx.TYPED_ARRAY_SUPPORT=void 0===dc.TYPED_ARRAY_SUPPORT||dc.TYPED_ARRAY_SUPPORT,zx.poolSize=8192,zx._augment=function(e){return e.__proto__=zx.prototype,e},zx.from=function(e,t,n){return Rx(null,e,t,n)},zx.TYPED_ARRAY_SUPPORT&&(zx.prototype.__proto__=Uint8Array.prototype,zx.__proto__=Uint8Array),zx.alloc=function(e,t,n){return function(e,t,n,r){return Lx(t),t<=0?_x(e,t):void 0!==n?"string"==typeof r?_x(e,t).fill(n,r):_x(e,t).fill(n):_x(e,t)}(null,e,t,n)},zx.allocUnsafe=function(e){return Px(null,e)},zx.allocUnsafeSlow=function(e){return Px(null,e)},zx.isBuffer=mw,zx.compare=function(e,t){if(!Mx(e)||!Mx(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i<o;++i)if(e[i]!==t[i]){n=e[i],r=t[i];break}return n<r?-1:r<n?1:0},zx.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},zx.concat=function(e,t){if(!Ex(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return zx.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=zx.allocUnsafe(t),i=0;for(n=0;n<e.length;++n){var o=e[n];if(!Mx(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i),i+=o.length}return r},zx.byteLength=Ux,zx.prototype._isBuffer=!0,zx.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)qx(this,t,t+1);return this},zx.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)qx(this,t,t+3),qx(this,t+1,t+2);return this},zx.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)qx(this,t,t+7),qx(this,t+1,t+6),qx(this,t+2,t+5),qx(this,t+3,t+4);return this},zx.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?$x(this,0,e):Ix.apply(this,arguments)},zx.prototype.equals=function(e){if(!Mx(e))throw new TypeError("Argument must be a Buffer");return this===e||0===zx.compare(this,e)},zx.prototype.inspect=function(){var e="";return this.length>0&&(e=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(e+=" ... ")),"<Buffer "+e+">"},zx.prototype.compare=function(e,t,n,r,i){if(!Mx(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(i>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(o,a),l=this.slice(r,i),u=e.slice(t,n),c=0;c<s;++c)if(l[c]!==u[c]){o=l[c],a=u[c];break}return o<a?-1:a<o?1:0},zx.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},zx.prototype.indexOf=function(e,t,n){return Nx(this,e,t,n,!0)},zx.prototype.lastIndexOf=function(e,t,n){return Nx(this,e,t,n,!1)},zx.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return Vx(this,e,t,n);case"utf8":case"utf-8":return jx(this,e,t,n);case"ascii":return Fx(this,e,t,n);case"latin1":case"binary":return Gx(this,e,t,n);case"base64":return Kx(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Yx(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},zx.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Qx=4096;function Zx(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(127&e[i]);return r}function Xx(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(e[i]);return r}function Jx(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=t;o<n;++o)i+=uw(e[o]);return i}function ew(e,t,n){for(var r=e.slice(t,n),i="",o=0;o<r.length;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function tw(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function nw(e,t,n,r,i,o){if(!Mx(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||t<o)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function rw(e,t,n,r){t<0&&(t=65535+t+1);for(var i=0,o=Math.min(e.length-n,2);i<o;++i)e[n+i]=(t&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function iw(e,t,n,r){t<0&&(t=4294967295+t+1);for(var i=0,o=Math.min(e.length-n,4);i<o;++i)e[n+i]=t>>>8*(r?i:3-i)&255}function ow(e,t,n,r,i,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function aw(e,t,n,r,i){return i||ow(e,0,n,4),Ox(e,t,n,r,23,4),n+4}function sw(e,t,n,r,i){return i||ow(e,0,n,8),Ox(e,t,n,r,52,8),n+8}zx.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t<e&&(t=e),zx.TYPED_ARRAY_SUPPORT)(n=this.subarray(e,t)).__proto__=zx.prototype;else{var i=t-e;n=new zx(i,void 0);for(var o=0;o<i;++o)n[o]=this[o+e]}return n},zx.prototype.readUIntLE=function(e,t,n){e|=0,t|=0,n||tw(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r},zx.prototype.readUIntBE=function(e,t,n){e|=0,t|=0,n||tw(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},zx.prototype.readUInt8=function(e,t){return t||tw(e,1,this.length),this[e]},zx.prototype.readUInt16LE=function(e,t){return t||tw(e,2,this.length),this[e]|this[e+1]<<8},zx.prototype.readUInt16BE=function(e,t){return t||tw(e,2,this.length),this[e]<<8|this[e+1]},zx.prototype.readUInt32LE=function(e,t){return t||tw(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},zx.prototype.readUInt32BE=function(e,t){return t||tw(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},zx.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||tw(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*t)),r},zx.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||tw(e,t,this.length);for(var r=t,i=1,o=this[e+--r];r>0&&(i*=256);)o+=this[e+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},zx.prototype.readInt8=function(e,t){return t||tw(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},zx.prototype.readInt16LE=function(e,t){t||tw(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},zx.prototype.readInt16BE=function(e,t){t||tw(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},zx.prototype.readInt32LE=function(e,t){return t||tw(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},zx.prototype.readInt32BE=function(e,t){return t||tw(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},zx.prototype.readFloatLE=function(e,t){return t||tw(e,4,this.length),kx(this,e,!0,23,4)},zx.prototype.readFloatBE=function(e,t){return t||tw(e,4,this.length),kx(this,e,!1,23,4)},zx.prototype.readDoubleLE=function(e,t){return t||tw(e,8,this.length),kx(this,e,!0,52,8)},zx.prototype.readDoubleBE=function(e,t){return t||tw(e,8,this.length),kx(this,e,!1,52,8)},zx.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||nw(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[t]=255&e;++o<n&&(i*=256);)this[t+o]=e/i&255;return t+n},zx.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||nw(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[t+i]=255&e;--i>=0&&(o*=256);)this[t+i]=e/o&255;return t+n},zx.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,1,255,0),zx.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},zx.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,2,65535,0),zx.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):rw(this,e,t,!0),t+2},zx.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,2,65535,0),zx.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):rw(this,e,t,!1),t+2},zx.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,4,4294967295,0),zx.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):iw(this,e,t,!0),t+4},zx.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,4,4294967295,0),zx.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):iw(this,e,t,!1),t+4},zx.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);nw(this,e,t,n,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o<n&&(a*=256);)e<0&&0===s&&0!==this[t+o-1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},zx.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);nw(this,e,t,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},zx.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,1,127,-128),zx.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},zx.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,2,32767,-32768),zx.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):rw(this,e,t,!0),t+2},zx.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,2,32767,-32768),zx.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):rw(this,e,t,!1),t+2},zx.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,4,2147483647,-2147483648),zx.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):iw(this,e,t,!0),t+4},zx.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||nw(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),zx.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):iw(this,e,t,!1),t+4},zx.prototype.writeFloatLE=function(e,t,n){return aw(this,e,t,!0,n)},zx.prototype.writeFloatBE=function(e,t,n){return aw(this,e,t,!1,n)},zx.prototype.writeDoubleLE=function(e,t,n){return sw(this,e,t,!0,n)},zx.prototype.writeDoubleBE=function(e,t,n){return sw(this,e,t,!1,n)},zx.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var i,o=r-n;if(this===e&&n<t&&t<r)for(i=o-1;i>=0;--i)e[i+t]=this[i+n];else if(o<1e3||!zx.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)e[i+t]=this[i+n];else Uint8Array.prototype.set.call(e,this.subarray(n,n+o),t);return o},zx.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===e.length){var i=e.charCodeAt(0);i<256&&(e=i)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!zx.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var o;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o<n;++o)this[o]=e;else{var a=Mx(e)?e:cw(new zx(e,r).toString()),s=a.length;for(o=0;o<n-t;++o)this[o+t]=a[o%s]}return this};var lw=/[^+\/0-9A-Za-z-_]/g;function uw(e){return e<16?"0"+e.toString(16):e.toString(16)}function cw(e,t){var n;t=t||1/0;for(var r=e.length,i=null,o=[],a=0;a<r;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function dw(e){return function(e){var t,n,r,i,o,a;Sx||xx();var s=e.length;if(s%4>0)throw new Error("Invalid string. Length must be a multiple of 4");o="="===e[s-2]?2:"="===e[s-1]?1:0,a=new bx(3*s/4-o),r=o>0?s-4:s;var l=0;for(t=0,n=0;t<r;t+=4,n+=3)i=vx[e.charCodeAt(t)]<<18|vx[e.charCodeAt(t+1)]<<12|vx[e.charCodeAt(t+2)]<<6|vx[e.charCodeAt(t+3)],a[l++]=i>>16&255,a[l++]=i>>8&255,a[l++]=255&i;return 2===o?(i=vx[e.charCodeAt(t)]<<2|vx[e.charCodeAt(t+1)]>>4,a[l++]=255&i):1===o&&(i=vx[e.charCodeAt(t)]<<10|vx[e.charCodeAt(t+1)]<<4|vx[e.charCodeAt(t+2)]>>2,a[l++]=i>>8&255,a[l++]=255&i),a}(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(lw,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function pw(e,t,n,r){for(var i=0;i<r&&!(i+n>=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function mw(e){return null!=e&&(!!e._isBuffer||hw(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&hw(e.slice(0,0))}(e))}function hw(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}var fw,gw,yw=Tw(dc.fetch)&&Tw(dc.ReadableStream);function vw(e){gw||(gw=new dc.XMLHttpRequest).open("GET",dc.location.host?"/":"https://example.com");try{return gw.responseType=e,gw.responseType===e}catch(e){return!1}}var bw=void 0!==dc.ArrayBuffer,Sw=bw&&Tw(dc.ArrayBuffer.prototype.slice),xw=bw&&vw("arraybuffer"),ww=!yw&&Sw&&vw("ms-stream"),Cw=!yw&&bw&&vw("moz-chunked-arraybuffer"),kw=Tw(gw.overrideMimeType),Ow=Tw(dc.VBArray);function Tw(e){return"function"==typeof e}gw=null;var Ew,Aw,_w={exports:{}},zw=_w.exports={};function Rw(){throw new Error("setTimeout has not been defined")}function Lw(){throw new Error("clearTimeout has not been defined")}function Pw(e){if(Ew===setTimeout)return setTimeout(e,0);if((Ew===Rw||!Ew)&&setTimeout)return Ew=setTimeout,setTimeout(e,0);try{return Ew(e,0)}catch(t){try{return Ew.call(null,e,0)}catch(t){return Ew.call(this,e,0)}}}!function(){try{Ew="function"==typeof setTimeout?setTimeout:Rw}catch(e){Ew=Rw}try{Aw="function"==typeof clearTimeout?clearTimeout:Lw}catch(e){Aw=Lw}}();var Bw,Ww=[],Mw=!1,Uw=-1;function Iw(){Mw&&Bw&&(Mw=!1,Bw.length?Ww=Bw.concat(Ww):Uw=-1,Ww.length&&qw())}function qw(){if(!Mw){var e=Pw(Iw);Mw=!0;for(var t=Ww.length;t;){for(Bw=Ww,Ww=[];++Uw<t;)Bw&&Bw[Uw].run();Uw=-1,t=Ww.length}Bw=null,Mw=!1,function(e){if(Aw===clearTimeout)return clearTimeout(e);if((Aw===Lw||!Aw)&&clearTimeout)return Aw=clearTimeout,clearTimeout(e);try{Aw(e)}catch(t){try{return Aw.call(null,e)}catch(t){return Aw.call(this,e)}}}(e)}}function Nw(e,t){this.fun=e,this.array=t}function Dw(){}zw.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];Ww.push(new Nw(e,t)),1!==Ww.length||Mw||Pw(qw)},Nw.prototype.run=function(){this.fun.apply(null,this.array)},zw.title="browser",zw.browser=!0,zw.env={},zw.argv=[],zw.version="",zw.versions={},zw.on=Dw,zw.addListener=Dw,zw.once=Dw,zw.off=Dw,zw.removeListener=Dw,zw.removeAllListeners=Dw,zw.emit=Dw,zw.prependListener=Dw,zw.prependOnceListener=Dw,zw.listeners=function(e){return[]},zw.binding=function(e){throw new Error("process.binding is not supported")},zw.cwd=function(){return"/"},zw.chdir=function(e){throw new Error("process.chdir is not supported")},zw.umask=function(){return 0};var Vw=_w.exports,jw="function"==typeof Object.create?function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e},Fw=/%[sdj%]/g;function Gw(e){if(!rC(e)){for(var t=[],n=0;n<arguments.length;n++)t.push($w(arguments[n]));return t.join(" ")}n=1;for(var r=arguments,i=r.length,o=String(e).replace(Fw,(function(e){if("%%"===e)return"%";if(n>=i)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(e){return"[Circular]"}default:return e}})),a=r[n];n<i;a=r[++n])nC(a)||!aC(a)?o+=" "+a:o+=" "+$w(a);return o}function Kw(e,t){if(iC(dc.process))return function(){return Kw(e,t).apply(this,arguments)};if(!0===Vw.noDeprecation)return e;var n=!1;return function(){if(!n){if(Vw.throwDeprecation)throw new Error(t);Vw.traceDeprecation?console.trace(t):console.error(t),n=!0}return e.apply(this,arguments)}}var Yw,Hw={};function $w(e,t){var n={seen:[],stylize:Zw};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),tC(t)?n.showHidden=t:t&&dC(n,t),iC(n.showHidden)&&(n.showHidden=!1),iC(n.depth)&&(n.depth=2),iC(n.colors)&&(n.colors=!1),iC(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=Qw),Xw(n,e,n.depth)}function Qw(e,t){var n=$w.styles[t];return n?"["+$w.colors[n][0]+"m"+e+"["+$w.colors[n][1]+"m":e}function Zw(e,t){return e}function Xw(e,t,n){if(e.customInspect&&t&&uC(t.inspect)&&t.inspect!==$w&&(!t.constructor||t.constructor.prototype!==t)){var r=t.inspect(n,e);return rC(r)||(r=Xw(e,r,n)),r}var i=function(e,t){if(iC(t))return e.stylize("undefined","undefined");if(rC(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}if(r=t,"number"==typeof r)return e.stylize(""+t,"number");var r;if(tC(t))return e.stylize(""+t,"boolean");if(nC(t))return e.stylize("null","null")}(e,t);if(i)return i;var o=Object.keys(t),a=function(e){var t={};return e.forEach((function(e,n){t[e]=!0})),t}(o);if(e.showHidden&&(o=Object.getOwnPropertyNames(t)),lC(t)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return Jw(t);if(0===o.length){if(uC(t)){var s=t.name?": "+t.name:"";return e.stylize("[Function"+s+"]","special")}if(oC(t))return e.stylize(RegExp.prototype.toString.call(t),"regexp");if(sC(t))return e.stylize(Date.prototype.toString.call(t),"date");if(lC(t))return Jw(t)}var l,u,c="",d=!1,p=["{","}"];(l=t,Array.isArray(l)&&(d=!0,p=["[","]"]),uC(t))&&(c=" [Function"+(t.name?": "+t.name:"")+"]");return oC(t)&&(c=" "+RegExp.prototype.toString.call(t)),sC(t)&&(c=" "+Date.prototype.toUTCString.call(t)),lC(t)&&(c=" "+Jw(t)),0!==o.length||d&&0!=t.length?n<0?oC(t)?e.stylize(RegExp.prototype.toString.call(t),"regexp"):e.stylize("[Object]","special"):(e.seen.push(t),u=d?function(e,t,n,r,i){for(var o=[],a=0,s=t.length;a<s;++a)pC(t,String(a))?o.push(eC(e,t,n,r,String(a),!0)):o.push("");return i.forEach((function(i){i.match(/^\d+$/)||o.push(eC(e,t,n,r,i,!0))})),o}(e,t,n,a,o):o.map((function(r){return eC(e,t,n,a,r,d)})),e.seen.pop(),function(e,t,n){if(e.reduce((function(e,t){return t.indexOf("\n"),e+t.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60)return n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1];return n[0]+t+" "+e.join(", ")+" "+n[1]}(u,c,p)):p[0]+c+p[1]}function Jw(e){return"["+Error.prototype.toString.call(e)+"]"}function eC(e,t,n,r,i,o){var a,s,l;if((l=Object.getOwnPropertyDescriptor(t,i)||{value:t[i]}).get?s=l.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):l.set&&(s=e.stylize("[Setter]","special")),pC(r,i)||(a="["+i+"]"),s||(e.seen.indexOf(l.value)<0?(s=nC(n)?Xw(e,l.value,null):Xw(e,l.value,n-1)).indexOf("\n")>-1&&(s=o?s.split("\n").map((function(e){return" "+e})).join("\n").substr(2):"\n"+s.split("\n").map((function(e){return" "+e})).join("\n")):s=e.stylize("[Circular]","special")),iC(a)){if(o&&i.match(/^\d+$/))return s;(a=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+s}function tC(e){return"boolean"==typeof e}function nC(e){return null===e}function rC(e){return"string"==typeof e}function iC(e){return void 0===e}function oC(e){return aC(e)&&"[object RegExp]"===cC(e)}function aC(e){return"object"==typeof e&&null!==e}function sC(e){return aC(e)&&"[object Date]"===cC(e)}function lC(e){return aC(e)&&("[object Error]"===cC(e)||e instanceof Error)}function uC(e){return"function"==typeof e}function cC(e){return Object.prototype.toString.call(e)}function dC(e,t){if(!t||!aC(t))return e;for(var n=Object.keys(t),r=n.length;r--;)e[n[r]]=t[n[r]];return e}function pC(e,t){return Object.prototype.hasOwnProperty.call(e,t)}$w.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},$w.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};var mC,hC={exports:{}},fC="object"==typeof Reflect?Reflect:null,gC=fC&&"function"==typeof fC.apply?fC.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};mC=fC&&"function"==typeof fC.ownKeys?fC.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var yC=Number.isNaN||function(e){return e!=e};function vC(){vC.init.call(this)}hC.exports=vC,hC.exports.once=function(e,t){return new Promise((function(n,r){function i(n){e.removeListener(t,o),r(n)}function o(){"function"==typeof e.removeListener&&e.removeListener("error",i),n([].slice.call(arguments))}AC(e,t,o,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&AC(e,"error",t,n)}(e,i,{once:!0})}))},vC.EventEmitter=vC,vC.prototype._events=void 0,vC.prototype._eventsCount=0,vC.prototype._maxListeners=void 0;var bC=10;function SC(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function xC(e){return void 0===e._maxListeners?vC.defaultMaxListeners:e._maxListeners}function wC(e,t,n,r){var i,o,a,s;if(SC(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=xC(e))>0&&a.length>i&&!a.warned){a.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=a.length,s=l,console&&console.warn&&console.warn(s)}return e}function CC(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function kC(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=CC.bind(r);return i.listener=n,r.wrapFn=i,i}function OC(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):EC(i,i.length)}function TC(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function EC(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function AC(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function i(o){r.once&&e.removeEventListener(t,i),n(o)}))}}Object.defineProperty(vC,"defaultMaxListeners",{enumerable:!0,get:function(){return bC},set:function(e){if("number"!=typeof e||e<0||yC(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");bC=e}}),vC.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},vC.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||yC(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},vC.prototype.getMaxListeners=function(){return xC(this)},vC.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var o;if(t.length>0&&(o=t[0]),o instanceof Error)throw o;var a=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw a.context=o,a}var s=i[e];if(void 0===s)return!1;if("function"==typeof s)gC(s,this,t);else{var l=s.length,u=EC(s,l);for(n=0;n<l;++n)gC(u[n],this,t)}return!0},vC.prototype.addListener=function(e,t){return wC(this,e,t,!1)},vC.prototype.on=vC.prototype.addListener,vC.prototype.prependListener=function(e,t){return wC(this,e,t,!0)},vC.prototype.once=function(e,t){return SC(t),this.on(e,kC(this,e,t)),this},vC.prototype.prependOnceListener=function(e,t){return SC(t),this.prependListener(e,kC(this,e,t)),this},vC.prototype.removeListener=function(e,t){var n,r,i,o,a;if(SC(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},vC.prototype.off=vC.prototype.removeListener,vC.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},vC.prototype.listeners=function(e){return OC(this,e,!0)},vC.prototype.rawListeners=function(e){return OC(this,e,!1)},vC.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):TC.call(e,t)},vC.prototype.listenerCount=TC,vC.prototype.eventNames=function(){return this._eventsCount>0?mC(this._events):[]};for(var _C=hC.exports,zC={},RC={byteLength:function(e){var t=IC(e),n=t[0],r=t[1];return 3*(n+r)/4-r},toByteArray:function(e){var t,n,r=IC(e),i=r[0],o=r[1],a=new BC(function(e,t,n){return 3*(t+n)/4-n}(0,i,o)),s=0,l=o>0?i-4:i;for(n=0;n<l;n+=4)t=PC[e.charCodeAt(n)]<<18|PC[e.charCodeAt(n+1)]<<12|PC[e.charCodeAt(n+2)]<<6|PC[e.charCodeAt(n+3)],a[s++]=t>>16&255,a[s++]=t>>8&255,a[s++]=255&t;2===o&&(t=PC[e.charCodeAt(n)]<<2|PC[e.charCodeAt(n+1)]>>4,a[s++]=255&t);1===o&&(t=PC[e.charCodeAt(n)]<<10|PC[e.charCodeAt(n+1)]<<4|PC[e.charCodeAt(n+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t);return a},fromByteArray:function(e){for(var t,n=e.length,r=n%3,i=[],o=16383,a=0,s=n-r;a<s;a+=o)i.push(qC(e,a,a+o>s?s:a+o));1===r?(t=e[n-1],i.push(LC[t>>2]+LC[t<<4&63]+"==")):2===r&&(t=(e[n-2]<<8)+e[n-1],i.push(LC[t>>10]+LC[t>>4&63]+LC[t<<2&63]+"="));return i.join("")}},LC=[],PC=[],BC="undefined"!=typeof Uint8Array?Uint8Array:Array,WC="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",MC=0,UC=WC.length;MC<UC;++MC)LC[MC]=WC[MC],PC[WC.charCodeAt(MC)]=MC;function IC(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function qC(e,t,n){for(var r,i,o=[],a=t;a<n;a+=3)r=(e[a]<<16&16711680)+(e[a+1]<<8&65280)+(255&e[a+2]),o.push(LC[(i=r)>>18&63]+LC[i>>12&63]+LC[i>>6&63]+LC[63&i]);return o.join("")}PC["-".charCodeAt(0)]=62,PC["_".charCodeAt(0)]=63;var NC={};
|
2 |
-
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */function
|
3 |
/*!
|
4 |
* The buffer module from node.js, for the browser.
|
5 |
*
|
6 |
* @author Feross Aboukhadijeh <https://feross.org>
|
7 |
* @license MIT
|
8 |
*/
|
9 |
-
function(e){var t=RC,n=NC,r="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=a,e.SlowBuffer=function(e){+e!=e&&(e=0);return a.alloc(+e)},e.INSPECT_MAX_BYTES=50;var i=2147483647;function o(e){if(e>i)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return Object.setPrototypeOf(t,a.prototype),t}function a(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return u(e)}return s(e,t,n)}function s(e,t,n){if("string"==typeof e)return function(e,t){"string"==typeof t&&""!==t||(t="utf8");if(!a.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|m(e,t),r=o(n),i=r.write(e,t);i!==n&&(r=r.slice(0,i));return r}(e,t);if(ArrayBuffer.isView(e))return function(e){if(q(e,Uint8Array)){var t=new Uint8Array(e);return d(t.buffer,t.byteOffset,t.byteLength)}return c(e)}(e);if(null==e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(q(e,ArrayBuffer)||e&&q(e.buffer,ArrayBuffer))return d(e,t,n);if("undefined"!=typeof SharedArrayBuffer&&(q(e,SharedArrayBuffer)||e&&q(e.buffer,SharedArrayBuffer)))return d(e,t,n);if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return a.from(r,t,n);var i=function(e){if(a.isBuffer(e)){var t=0|p(e.length),n=o(t);return 0===n.length||e.copy(n,0,0,t),n}if(void 0!==e.length)return"number"!=typeof e.length||N(e.length)?o(0):c(e);if("Buffer"===e.type&&Array.isArray(e.data))return c(e.data)}(e);if(i)return i;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return a.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function l(e){if("number"!=typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function u(e){return l(e),o(e<0?0:0|p(e))}function c(e){for(var t=e.length<0?0:0|p(e.length),n=o(t),r=0;r<t;r+=1)n[r]=255&e[r];return n}function d(e,t,n){if(t<0||e.byteLength<t)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<t+(n||0))throw new RangeError('"length" is outside of buffer bounds');var r;return r=void 0===t&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,t):new Uint8Array(e,t,n),Object.setPrototypeOf(r,a.prototype),r}function p(e){if(e>=i)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+i.toString(16)+" bytes");return 0|e}function m(e,t){if(a.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||q(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var i=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return M(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return U(e).length;default:if(i)return r?-1:M(e).length;t=(""+t).toLowerCase(),i=!0}}function h(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return A(this,t,n);case"utf8":case"utf-8":return k(this,t,n);case"ascii":return T(this,t,n);case"latin1":case"binary":return E(this,t,n);case"base64":return C(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function f(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function g(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),N(n=+n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=a.from(t,r)),a.isBuffer(t))return 0===t.length?-1:y(e,t,n,r,i);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):y(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function y(e,t,n,r,i){var o,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function u(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var c=-1;for(o=n;o<s;o++)if(u(e,o)===u(t,-1===c?0:o-c)){if(-1===c&&(c=o),o-c+1===l)return c*a}else-1!==c&&(o-=o-c),c=-1}else for(n+l>s&&(n=s-l),o=n;o>=0;o--){for(var d=!0,p=0;p<l;p++)if(u(e,o+p)!==u(t,p)){d=!1;break}if(d)return o}return-1}function v(e,t,n,r){n=Number(n)||0;var i=e.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=t.length;r>o/2&&(r=o/2);for(var a=0;a<r;++a){var s=parseInt(t.substr(2*a,2),16);if(N(s))return a;e[n+a]=s}return a}function b(e,t,n,r){return I(M(t,e.length-n),e,n,r)}function S(e,t,n,r){return I(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function x(e,t,n,r){return I(U(t),e,n,r)}function w(e,t,n,r){return I(function(e,t){for(var n,r,i,o=[],a=0;a<e.length&&!((t-=2)<0);++a)r=(n=e.charCodeAt(a))>>8,i=n%256,o.push(i),o.push(r);return o}(t,e.length-n),e,n,r)}function C(e,n,r){return 0===n&&r===e.length?t.fromByteArray(e):t.fromByteArray(e.slice(n,r))}function k(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i<n;){var o,a,s,l,u=e[i],c=null,d=u>239?4:u>223?3:u>191?2:1;if(i+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:128==(192&(o=e[i+1]))&&(l=(31&u)<<6|63&o)>127&&(c=l);break;case 3:o=e[i+1],a=e[i+2],128==(192&o)&&128==(192&a)&&(l=(15&u)<<12|(63&o)<<6|63&a)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:o=e[i+1],a=e[i+2],s=e[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(l=(15&u)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(c=l)}null===c?(c=65533,d=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),i+=d}return function(e){var t=e.length;if(t<=O)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=O));return n}(r)}e.kMaxLength=i,a.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(e,t),42===e.foo()}catch(e){return!1}}(),a.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(a.prototype,"parent",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.buffer}}),Object.defineProperty(a.prototype,"offset",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.byteOffset}}),a.poolSize=8192,a.from=function(e,t,n){return s(e,t,n)},Object.setPrototypeOf(a.prototype,Uint8Array.prototype),Object.setPrototypeOf(a,Uint8Array),a.alloc=function(e,t,n){return function(e,t,n){return l(e),e<=0?o(e):void 0!==t?"string"==typeof n?o(e).fill(t,n):o(e).fill(t):o(e)}(e,t,n)},a.allocUnsafe=function(e){return u(e)},a.allocUnsafeSlow=function(e){return u(e)},a.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==a.prototype},a.compare=function(e,t){if(q(e,Uint8Array)&&(e=a.from(e,e.offset,e.byteLength)),q(t,Uint8Array)&&(t=a.from(t,t.offset,t.byteLength)),!a.isBuffer(e)||!a.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i<o;++i)if(e[i]!==t[i]){n=e[i],r=t[i];break}return n<r?-1:r<n?1:0},a.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},a.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return a.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=a.allocUnsafe(t),i=0;for(n=0;n<e.length;++n){var o=e[n];if(q(o,Uint8Array))i+o.length>r.length?a.from(o).copy(r,i):Uint8Array.prototype.set.call(r,o,i);else{if(!a.isBuffer(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i)}i+=o.length}return r},a.byteLength=m,a.prototype._isBuffer=!0,a.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)f(this,t,t+1);return this},a.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)f(this,t,t+3),f(this,t+1,t+2);return this},a.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)f(this,t,t+7),f(this,t+1,t+6),f(this,t+2,t+5),f(this,t+3,t+4);return this},a.prototype.toString=function(){var e=this.length;return 0===e?"":0===arguments.length?k(this,0,e):h.apply(this,arguments)},a.prototype.toLocaleString=a.prototype.toString,a.prototype.equals=function(e){if(!a.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===a.compare(this,e)},a.prototype.inspect=function(){var t="",n=e.INSPECT_MAX_BYTES;return t=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(t+=" ... "),"<Buffer "+t+">"},r&&(a.prototype[r]=a.prototype.inspect),a.prototype.compare=function(e,t,n,r,i){if(q(e,Uint8Array)&&(e=a.from(e,e.offset,e.byteLength)),!a.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(i>>>=0)-(r>>>=0),s=(n>>>=0)-(t>>>=0),l=Math.min(o,s),u=this.slice(r,i),c=e.slice(t,n),d=0;d<l;++d)if(u[d]!==c[d]){o=u[d],s=c[d];break}return o<s?-1:s<o?1:0},a.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},a.prototype.indexOf=function(e,t,n){return g(this,e,t,n,!0)},a.prototype.lastIndexOf=function(e,t,n){return g(this,e,t,n,!1)},a.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return v(this,e,t,n);case"utf8":case"utf-8":return b(this,e,t,n);case"ascii":case"latin1":case"binary":return S(this,e,t,n);case"base64":return x(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return w(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},a.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var O=4096;function T(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(127&e[i]);return r}function E(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(e[i]);return r}function A(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=t;o<n;++o)i+=D[e[o]];return i}function _(e,t,n){for(var r=e.slice(t,n),i="",o=0;o<r.length-1;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function z(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function R(e,t,n,r,i,o){if(!a.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||t<o)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function L(e,t,n,r,i,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function P(e,t,r,i,o){return t=+t,r>>>=0,o||L(e,0,r,4),n.write(e,t,r,i,23,4),r+4}function B(e,t,r,i,o){return t=+t,r>>>=0,o||L(e,0,r,8),n.write(e,t,r,i,52,8),r+8}a.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t<e&&(t=e);var r=this.subarray(e,t);return Object.setPrototypeOf(r,a.prototype),r},a.prototype.readUintLE=a.prototype.readUIntLE=function(e,t,n){e>>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r},a.prototype.readUintBE=a.prototype.readUIntBE=function(e,t,n){e>>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},a.prototype.readUint8=a.prototype.readUInt8=function(e,t){return e>>>=0,t||z(e,1,this.length),this[e]},a.prototype.readUint16LE=a.prototype.readUInt16LE=function(e,t){return e>>>=0,t||z(e,2,this.length),this[e]|this[e+1]<<8},a.prototype.readUint16BE=a.prototype.readUInt16BE=function(e,t){return e>>>=0,t||z(e,2,this.length),this[e]<<8|this[e+1]},a.prototype.readUint32LE=a.prototype.readUInt32LE=function(e,t){return e>>>=0,t||z(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},a.prototype.readUint32BE=a.prototype.readUInt32BE=function(e,t){return e>>>=0,t||z(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},a.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||z(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*t)),r},a.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||z(e,t,this.length);for(var r=t,i=1,o=this[e+--r];r>0&&(i*=256);)o+=this[e+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},a.prototype.readInt8=function(e,t){return e>>>=0,t||z(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},a.prototype.readInt16LE=function(e,t){e>>>=0,t||z(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt16BE=function(e,t){e>>>=0,t||z(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},a.prototype.readInt32LE=function(e,t){return e>>>=0,t||z(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},a.prototype.readInt32BE=function(e,t){return e>>>=0,t||z(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},a.prototype.readFloatLE=function(e,t){return e>>>=0,t||z(e,4,this.length),n.read(this,e,!0,23,4)},a.prototype.readFloatBE=function(e,t){return e>>>=0,t||z(e,4,this.length),n.read(this,e,!1,23,4)},a.prototype.readDoubleLE=function(e,t){return e>>>=0,t||z(e,8,this.length),n.read(this,e,!0,52,8)},a.prototype.readDoubleBE=function(e,t){return e>>>=0,t||z(e,8,this.length),n.read(this,e,!1,52,8)},a.prototype.writeUintLE=a.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t>>>=0,n>>>=0,r)||R(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[t]=255&e;++o<n&&(i*=256);)this[t+o]=e/i&255;return t+n},a.prototype.writeUintBE=a.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t>>>=0,n>>>=0,r)||R(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[t+i]=255&e;--i>=0&&(o*=256);)this[t+i]=e/o&255;return t+n},a.prototype.writeUint8=a.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,1,255,0),this[t]=255&e,t+1},a.prototype.writeUint16LE=a.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},a.prototype.writeUint16BE=a.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},a.prototype.writeUint32LE=a.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},a.prototype.writeUint32BE=a.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},a.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);R(this,e,t,n,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o<n&&(a*=256);)e<0&&0===s&&0!==this[t+o-1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},a.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var i=Math.pow(2,8*n-1);R(this,e,t,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},a.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},a.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},a.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},a.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},a.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||R(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},a.prototype.writeFloatLE=function(e,t,n){return P(this,e,t,!0,n)},a.prototype.writeFloatBE=function(e,t,n){return P(this,e,t,!1,n)},a.prototype.writeDoubleLE=function(e,t,n){return B(this,e,t,!0,n)},a.prototype.writeDoubleBE=function(e,t,n){return B(this,e,t,!1,n)},a.prototype.copy=function(e,t,n,r){if(!a.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var i=r-n;return this===e&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(t,n,r):Uint8Array.prototype.set.call(e,this.subarray(n,r),t),i},a.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!a.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===e.length){var i=e.charCodeAt(0);("utf8"===r&&i<128||"latin1"===r)&&(e=i)}}else"number"==typeof e?e&=255:"boolean"==typeof e&&(e=Number(e));if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var o;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o<n;++o)this[o]=e;else{var s=a.isBuffer(e)?e:a.from(e,r),l=s.length;if(0===l)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(o=0;o<n-t;++o)this[o+t]=s[o%l]}return this};var W=/[^+/0-9A-Za-z-_]/g;function M(e,t){var n;t=t||1/0;for(var r=e.length,i=null,o=[],a=0;a<r;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function U(e){return t.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(W,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function I(e,t,n,r){for(var i=0;i<r&&!(i+n>=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function q(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function N(e){return e!=e}var D=function(){for(var e="0123456789abcdef",t=new Array(256),n=0;n<16;++n)for(var r=16*n,i=0;i<16;++i)t[r+i]=e[n]+e[i];return t}()}(zC),DC.prototype.push=function(e){var t={data:e,next:null};this.length>0?this.tail.next=t:this.head=t,this.tail=t,++this.length},DC.prototype.unshift=function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length},DC.prototype.shift=function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}},DC.prototype.clear=function(){this.head=this.tail=null,this.length=0},DC.prototype.join=function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n},DC.prototype.concat=function(e){if(0===this.length)return zC.Buffer.alloc(0);if(1===this.length)return this.head.data;for(var t=zC.Buffer.allocUnsafe(e>>>0),n=this.head,r=0;n;)n.data.copy(t,r),r+=n.data.length,n=n.next;return t};var VC={exports:{}};
|
10 |
-
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */!function(e,t){var n=zC,r=n.Buffer;function i(e,t){for(var n in e)t[n]=e[n]}function o(e,t,n){return r(e,t,n)}r.from&&r.alloc&&r.allocUnsafe&&r.allocUnsafeSlow?e.exports=n:(i(n,t),t.Buffer=o),o.prototype=Object.create(r.prototype),i(r,o),o.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return r(e,t,n)},o.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var i=r(e);return void 0!==t?"string"==typeof n?i.fill(t,n):i.fill(t):i.fill(0),i},o.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return r(e)},o.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return n.SlowBuffer(e)}}(VC,VC.exports);var jC=VC.exports.Buffer,FC=jC.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};var GC=KC;function KC(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!=typeof t&&(jC.isEncoding===FC||!FC(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=$C,this.end=QC,t=4;break;case"utf8":this.fillLast=HC,t=4;break;case"base64":this.text=ZC,this.end=XC,t=3;break;default:return this.write=JC,void(this.end=ek)}this.lastNeed=0,this.lastTotal=0,this.lastChar=jC.allocUnsafe(t)}function YC(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function HC(e){var t=this.lastTotal-this.lastNeed,n=function(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�"}}(this,e);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function $C(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function QC(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function ZC(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function XC(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function JC(e){return e.toString(this.encoding)}function ek(e){return e&&e.length?this.write(e):""}KC.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n<e.length?t?t+this.text(e,n):this.text(e,n):t||""},KC.prototype.end=function(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+"�":t},KC.prototype.text=function(e,t){var n=function(e,t,n){var r=t.length-1;if(r<n)return 0;var i=YC(t[r]);if(i>=0)return i>0&&(e.lastNeed=i-1),i;if(--r<n||-2===i)return 0;if((i=YC(t[r]))>=0)return i>0&&(e.lastNeed=i-2),i;if(--r<n||-2===i)return 0;if((i=YC(t[r]))>=0)return i>0&&(2===i?i=0:e.lastNeed=i-3),i;return 0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,r),e.toString("utf8",t,r)},KC.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length},rk.ReadableState=nk;var tk=function(e){if(iC(Yw)&&(Yw=Vw.env.NODE_DEBUG||""),e=e.toUpperCase(),!Hw[e])if(new RegExp("\\b"+e+"\\b","i").test(Yw)){Hw[e]=function(){var t=Gw.apply(null,arguments);console.error("%s %d: %s",e,0,t)}}else Hw[e]=function(){};return Hw[e]}("stream");function nk(e,t){e=e||{},this.objectMode=!!e.objectMode,t instanceof Rk&&(this.objectMode=this.objectMode||!!e.readableObjectMode);var n=e.highWaterMark,r=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:r,this.highWaterMark=~~this.highWaterMark,this.buffer=new DC,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.ranOut=!1,this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(this.decoder=new GC(e.encoding),this.encoding=e.encoding)}function rk(e){if(!(this instanceof rk))return new rk(e);this._readableState=new nk(e,this),this.readable=!0,e&&"function"==typeof e.read&&(this._read=e.read),_C.call(this)}function ik(e,t,n,r,i){var o=function(e,t){var n=null;mw(t)||"string"==typeof t||null==t||e.objectMode||(n=new TypeError("Invalid non-string/buffer chunk"));return n}(t,n);if(o)e.emit("error",o);else if(null===n)t.reading=!1,function(e,t){if(t.ended)return;if(t.decoder){var n=t.decoder.end();n&&n.length&&(t.buffer.push(n),t.length+=t.objectMode?1:n.length)}t.ended=!0,sk(e)}(e,t);else if(t.objectMode||n&&n.length>0)if(t.ended&&!i){var a=new Error("stream.push() after EOF");e.emit("error",a)}else if(t.endEmitted&&i){var s=new Error("stream.unshift() after end event");e.emit("error",s)}else{var l;!t.decoder||i||r||(n=t.decoder.write(n),l=!t.objectMode&&0===n.length),i||(t.reading=!1),l||(t.flowing&&0===t.length&&!t.sync?(e.emit("data",n),e.read(0)):(t.length+=t.objectMode?1:n.length,i?t.buffer.unshift(n):t.buffer.push(n),t.needReadable&&sk(e))),function(e,t){t.readingMore||(t.readingMore=!0,_w.exports.nextTick(uk,e,t))}(e,t)}else i||(t.reading=!1);return function(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||0===e.length)}(t)}jw(rk,_C),rk.prototype.push=function(e,t){var n=this._readableState;return n.objectMode||"string"!=typeof e||(t=t||n.defaultEncoding)!==n.encoding&&(e=zx.from(e,t),t=""),ik(this,n,e,t,!1)},rk.prototype.unshift=function(e){return ik(this,this._readableState,e,"",!0)},rk.prototype.isPaused=function(){return!1===this._readableState.flowing},rk.prototype.setEncoding=function(e){return this._readableState.decoder=new GC(e),this._readableState.encoding=e,this};var ok=8388608;function ak(e,t){return e<=0||0===t.length&&t.ended?0:t.objectMode?1:e!=e?t.flowing&&t.length?t.buffer.head.data.length:t.length:(e>t.highWaterMark&&(t.highWaterMark=function(e){return e>=ok?e=ok:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function sk(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(tk("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?_w.exports.nextTick(lk,e):lk(e))}function lk(e){tk("emit readable"),e.emit("readable"),pk(e)}function uk(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark&&(tk("maybeReadMore read 0"),e.read(0),n!==t.length);)n=t.length;t.readingMore=!1}function ck(e){tk("readable nexttick read 0"),e.read(0)}function dk(e,t){t.reading||(tk("resume read 0"),e.read(0)),t.resumeScheduled=!1,t.awaitDrain=0,e.emit("resume"),pk(e),t.flowing&&!t.reading&&e.read(0)}function pk(e){var t=e._readableState;for(tk("flow",t.flowing);t.flowing&&null!==e.read(););}function mk(e,t){return 0===t.length?null:(t.objectMode?n=t.buffer.shift():!e||e>=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=function(e,t,n){var r;e<t.head.data.length?(r=t.head.data.slice(0,e),t.head.data=t.head.data.slice(e)):r=e===t.head.data.length?t.shift():n?function(e,t){var n=t.head,r=1,i=n.data;e-=i.length;for(;n=n.next;){var o=n.data,a=e>o.length?o.length:e;if(a===o.length?i+=o:i+=o.slice(0,e),0===(e-=a)){a===o.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n,n.data=o.slice(a));break}++r}return t.length-=r,i}(e,t):function(e,t){var n=zx.allocUnsafe(e),r=t.head,i=1;r.data.copy(n),e-=r.data.length;for(;r=r.next;){var o=r.data,a=e>o.length?o.length:e;if(o.copy(n,n.length-e,0,a),0===(e-=a)){a===o.length?(++i,r.next?t.head=r.next:t
|
1 |
+
var CriticalCSSGenerator=function(){"use strict";var e="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function t(e){if(e.__esModule)return e;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach((function(n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})})),t}class n{constructor(){this.urlErrors={}}trackUrlError(e,t){this.urlErrors[e]=t}filterValidUrls(e){return e.filter((e=>!this.urlErrors[e]))}async runInPage(e,t,n,...r){throw new Error("Undefined interface method: BrowserInterface.runInPage()")}async fetch(e,t,n){throw new Error("Undefined interface method: BrowserInterface.fetch()")}async cleanup(){}async getCssIncludes(e){return await this.runInPage(e,null,n.innerGetCssIncludes)}static innerGetCssIncludes({innerWindow:e}){return[...(e=null===e?window:e).document.getElementsByTagName("link")].filter((e=>"stylesheet"===e.rel)).reduce(((e,t)=>(e[t.href]={media:t.media||null},e)),{})}static innerFindMatchingSelectors({innerWindow:e,args:[t]}){return e=null===e?window:e,Object.keys(t).filter((n=>{try{return!!e.document.querySelector(t[n])}catch(e){return!1}}))}static innerFindAboveFoldSelectors({innerWindow:e,args:[t,n]}){e=null===e?window:e;const r=t=>{const n=t.style.clear||"";t.style.clear="none";const r=t.getBoundingClientRect();return t.style.clear=n,r.top<e.innerHeight};return n.filter((n=>{if("*"===t[n])return!0;const i=e.document.querySelectorAll(t[n]);for(const e of i)if(r(e))return!0;return!1}))}}var r=n,i={exports:{}};!function(e,t){var n=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if(void 0!==n)return n;throw new Error("unable to locate global object")}();e.exports=t=n.fetch,n.fetch&&(t.default=n.fetch.bind(n)),t.Headers=n.Headers,t.Request=n.Request,t.Response=n.Response}(i,i.exports);const o=r;var a=class extends o{constructor(e){super(),this.pages=e}async runInPage(e,t,n,...r){const i=this.pages[e];if(!i)throw new Error(`Puppeteer interface does not include URL ${e}`);return t&&await i.setViewport(t),i.evaluate(n,{innerWindow:null,args:r})}async fetch(e,t,n){return(0,i.exports)(e,t)}};const s=r;var l=class extends s{constructor(e){super(),this.pages=e}async runInPage(e,t,n,...r){const i=this.pages[e];if(!i)throw new Error(`Playwright interface does not include URL ${e}`);return t&&await i.setViewportSize(t),i.evaluate(n,{innerWindow:null,args:r})}async fetch(e,t,n){return(0,i.exports)(e,t)}};class u extends Error{constructor(e){super("Insufficient pages loaded to meet success target. Errors:\n"+Object.values(e).map((e=>e.message)).join("\n")),this.isSuccessTargetError=!0,this.urlErrors={};for(const[t,n]of Object.entries(e))this.urlErrors[t]={message:n.message,type:n.type||"UnknownError",meta:n.meta||{}}}}class c extends Error{constructor(e,t,n){super(n),this.type=e,this.meta=t}}var d={SuccessTargetError:u,UrlError:c,HttpError:class extends c{constructor({url:e,code:t}){super("HttpError",{url:e,code:t},`HTTP error ${t} on URL ${e}`)}},UnknownError:class extends c{constructor({url:e,message:t}){super("UnknownError",{url:e,message:t},`Error while loading ${e}: ${t}`)}},CrossDomainError:class extends c{constructor({url:e}){super("CrossDomainError",{url:e},`Failed to fetch cross-domain content at ${e}`)}},LoadTimeoutError:class extends c{constructor({url:e}){super("LoadTimeoutError",{url:e},`Timeout while reading ${e}`)}},RedirectError:class extends c{constructor({url:e,redirectUrl:t}){super("RedirectError",{url:e,redirectUrl:t},`Failed to process ${e} because it redirects to ${t} which cannot be verified`)}},UrlVerifyError:class extends c{constructor({url:e}){super("UrlVerifyError",{url:e},`Failed to verify page at ${e}`)}},EmptyCSSError:class extends c{constructor({url:e}){super("EmptyCSSError",{url:e},`The ${e} does not have any CSS in its external style sheet(s).`)}},XFrameDenyError:class extends c{constructor({url:e}){super("XFrameDenyError",{url:e},`Failed to load ${e} due to the "X-Frame-Options: DENY" header`)}}};const p=r,{CrossDomainError:m,HttpError:h,LoadTimeoutError:f,RedirectError:g,UrlVerifyError:y,UnknownError:v,XFrameDenyError:b}=d;var S=class extends p{constructor({requestGetParameters:e,loadTimeout:t,verifyPage:n,allowScripts:r}={}){if(super(),this.requestGetParameters=e||{},this.loadTimeout=t||6e4,this.verifyPage=n,r=!1!==r,!n)throw new Error("You must specify a page verification callback");this.currentUrl=null,this.currentSize={width:void 0,height:void 0},this.wrapperDiv=document.createElement("div"),this.wrapperDiv.setAttribute("style","position:fixed; z-index: -1000; opacity: 0; top: 50px;"),document.body.append(this.wrapperDiv),this.iframe=document.createElement("iframe"),this.iframe.setAttribute("style","max-width: none; max-height: none; border: 0px;"),this.iframe.setAttribute("aria-hidden","true"),this.iframe.setAttribute("sandbox","allow-same-origin "+(r?"allow-scripts":"")),this.wrapperDiv.append(this.iframe)}cleanup(){this.iframe.remove(),this.wrapperDiv.remove()}async fetch(e,t,n){return window.fetch(e,t)}async runInPage(e,t,n,...r){return await this.loadPage(e),t&&await this.resize(t),n({innerWindow:this.iframe.contentWindow,args:r})}addGetParameters(e){const t=new URL(e);for(const e of Object.keys(this.requestGetParameters))t.searchParams.append(e,this.requestGetParameters[e]);return t.toString()}async diagnoseUrlError(e){try{const t=await this.fetch(e,{redirect:"manual"},"html");return"DENY"===t.headers.get("x-frame-options")?new b({url:e}):"opaqueredirect"===t.type?new g({url:e,redirectUrl:t.url}):200===t.status?null:new h({url:e,code:t.status})}catch(t){return new v({url:e,message:t.message})}}sameOrigin(e){return new URL(e).origin===window.location.origin}async loadPage(e){if(e===this.currentUrl)return;const t=this.addGetParameters(e);await new Promise(((n,r)=>{const i=t=>{this.trackUrlError(e,t),r(t)};if(!this.sameOrigin(t))return void i(new m({url:t}));const o=setTimeout((()=>{this.iframe.onload=void 0,i(new f({url:t}))}),this.loadTimeout);this.iframe.onload=async()=>{try{if(this.iframe.onload=void 0,clearTimeout(o),!this.iframe.contentDocument)throw await this.diagnoseUrlError(t)||new m({url:t});if(!this.verifyPage(e,this.iframe.contentWindow,this.iframe.contentDocument))throw await this.diagnoseUrlError(t)||new y({url:t});n()}catch(e){i(e)}},this.iframe.src=t}))}async resize({width:e,height:t}){if(this.currentSize.width!==e||this.currentSize.height!==t)return new Promise((n=>{this.iframe.width=e,this.iframe.height=t,setTimeout(n,1)}))}},x={exports:{}},w={};function C(e){return{prev:null,next:null,data:e}}function k(e,t,n){var r;return null!==T?(r=T,T=T.cursor,r.prev=t,r.next=n,r.cursor=e.cursor):r={prev:t,next:n,cursor:e.cursor},e.cursor=r,r}function O(e){var t=e.cursor;e.cursor=t.cursor,t.prev=null,t.next=null,t.cursor=T,T=t}var T=null,E=function(){this.cursor=null,this.head=null,this.tail=null};E.createItem=C,E.prototype.createItem=C,E.prototype.updateCursors=function(e,t,n,r){for(var i=this.cursor;null!==i;)i.prev===e&&(i.prev=t),i.next===n&&(i.next=r),i=i.cursor},E.prototype.getSize=function(){for(var e=0,t=this.head;t;)e++,t=t.next;return e},E.prototype.fromArray=function(e){var t=null;this.head=null;for(var n=0;n<e.length;n++){var r=C(e[n]);null!==t?t.next=r:this.head=r,r.prev=t,t=r}return this.tail=t,this},E.prototype.toArray=function(){for(var e=this.head,t=[];e;)t.push(e.data),e=e.next;return t},E.prototype.toJSON=E.prototype.toArray,E.prototype.isEmpty=function(){return null===this.head},E.prototype.first=function(){return this.head&&this.head.data},E.prototype.last=function(){return this.tail&&this.tail.data},E.prototype.each=function(e,t){var n;void 0===t&&(t=this);for(var r=k(this,null,this.head);null!==r.next;)n=r.next,r.next=n.next,e.call(t,n.data,n,this);O(this)},E.prototype.forEach=E.prototype.each,E.prototype.eachRight=function(e,t){var n;void 0===t&&(t=this);for(var r=k(this,this.tail,null);null!==r.prev;)n=r.prev,r.prev=n.prev,e.call(t,n.data,n,this);O(this)},E.prototype.forEachRight=E.prototype.eachRight,E.prototype.reduce=function(e,t,n){var r;void 0===n&&(n=this);for(var i=k(this,null,this.head),o=t;null!==i.next;)r=i.next,i.next=r.next,o=e.call(n,o,r.data,r,this);return O(this),o},E.prototype.reduceRight=function(e,t,n){var r;void 0===n&&(n=this);for(var i=k(this,this.tail,null),o=t;null!==i.prev;)r=i.prev,i.prev=r.prev,o=e.call(n,o,r.data,r,this);return O(this),o},E.prototype.nextUntil=function(e,t,n){if(null!==e){var r;void 0===n&&(n=this);for(var i=k(this,null,e);null!==i.next&&(r=i.next,i.next=r.next,!t.call(n,r.data,r,this)););O(this)}},E.prototype.prevUntil=function(e,t,n){if(null!==e){var r;void 0===n&&(n=this);for(var i=k(this,e,null);null!==i.prev&&(r=i.prev,i.prev=r.prev,!t.call(n,r.data,r,this)););O(this)}},E.prototype.some=function(e,t){var n=this.head;for(void 0===t&&(t=this);null!==n;){if(e.call(t,n.data,n,this))return!0;n=n.next}return!1},E.prototype.map=function(e,t){var n=new E,r=this.head;for(void 0===t&&(t=this);null!==r;)n.appendData(e.call(t,r.data,r,this)),r=r.next;return n},E.prototype.filter=function(e,t){var n=new E,r=this.head;for(void 0===t&&(t=this);null!==r;)e.call(t,r.data,r,this)&&n.appendData(r.data),r=r.next;return n},E.prototype.clear=function(){this.head=null,this.tail=null},E.prototype.copy=function(){for(var e=new E,t=this.head;null!==t;)e.insert(C(t.data)),t=t.next;return e},E.prototype.prepend=function(e){return this.updateCursors(null,e,this.head,e),null!==this.head?(this.head.prev=e,e.next=this.head):this.tail=e,this.head=e,this},E.prototype.prependData=function(e){return this.prepend(C(e))},E.prototype.append=function(e){return this.insert(e)},E.prototype.appendData=function(e){return this.insert(C(e))},E.prototype.insert=function(e,t){if(null!=t)if(this.updateCursors(t.prev,e,t,e),null===t.prev){if(this.head!==t)throw new Error("before doesn't belong to list");this.head=e,t.prev=e,e.next=t,this.updateCursors(null,e)}else t.prev.next=e,e.prev=t.prev,t.prev=e,e.next=t;else this.updateCursors(this.tail,e,null,e),null!==this.tail?(this.tail.next=e,e.prev=this.tail):this.head=e,this.tail=e;return this},E.prototype.insertData=function(e,t){return this.insert(C(e),t)},E.prototype.remove=function(e){if(this.updateCursors(e,e.prev,e,e.next),null!==e.prev)e.prev.next=e.next;else{if(this.head!==e)throw new Error("item doesn't belong to list");this.head=e.next}if(null!==e.next)e.next.prev=e.prev;else{if(this.tail!==e)throw new Error("item doesn't belong to list");this.tail=e.prev}return e.prev=null,e.next=null,e},E.prototype.push=function(e){this.insert(C(e))},E.prototype.pop=function(){if(null!==this.tail)return this.remove(this.tail)},E.prototype.unshift=function(e){this.prepend(C(e))},E.prototype.shift=function(){if(null!==this.head)return this.remove(this.head)},E.prototype.prependList=function(e){return this.insertList(e,this.head)},E.prototype.appendList=function(e){return this.insertList(e)},E.prototype.insertList=function(e,t){return null===e.head||(null!=t?(this.updateCursors(t.prev,e.tail,t,e.head),null!==t.prev?(t.prev.next=e.head,e.head.prev=t.prev):this.head=e.head,t.prev=e.tail,e.tail.next=t):(this.updateCursors(this.tail,e.tail,null,e.head),null!==this.tail?(this.tail.next=e.head,e.head.prev=this.tail):this.head=e.head,this.tail=e.tail),e.head=null,e.tail=null),this},E.prototype.replace=function(e,t){"head"in t?this.insertList(t,e):this.insert(t,e),this.remove(e)};var A=E,_=function(e,t){var n=Object.create(SyntaxError.prototype),r=new Error;return n.name=e,n.message=t,Object.defineProperty(n,"stack",{get:function(){return(r.stack||"").replace(/^(.+\n){1,3}/,e+": "+t+"\n")}}),n},z=_,R=" ";function L(e,t){function n(e,t){return r.slice(e,t).map((function(t,n){for(var r=String(e+n+1);r.length<l;)r=" "+r;return r+" |"+t})).join("\n")}var r=e.source.split(/\r\n?|\n|\f/),i=e.line,o=e.column,a=Math.max(1,i-t)-1,s=Math.min(i+t,r.length+1),l=Math.max(4,String(s).length)+1,u=0;(o+=(R.length-1)*(r[i-1].substr(0,o-1).match(/\t/g)||[]).length)>100&&(u=o-60+3,o=58);for(var c=a;c<=s;c++)c>=0&&c<r.length&&(r[c]=r[c].replace(/\t/g,R),r[c]=(u>0&&r[c].length>u?"…":"")+r[c].substr(u,98)+(r[c].length>u+100-1?"…":""));return[n(a,i),new Array(o+l+2).join("-")+"^",n(i,s)].filter(Boolean).join("\n")}var P=function(e,t,n,r,i){var o=z("SyntaxError",e);return o.source=t,o.offset=n,o.line=r,o.column=i,o.sourceFragment=function(e){return L(o,isNaN(e)?0:e)},Object.defineProperty(o,"formattedMessage",{get:function(){return"Parse error: "+o.message+"\n"+L(o,2)}}),o.parseError={offset:n,line:r,column:i},o},B={EOF:0,Ident:1,Function:2,AtKeyword:3,Hash:4,String:5,BadString:6,Url:7,BadUrl:8,Delim:9,Number:10,Percentage:11,Dimension:12,WhiteSpace:13,CDO:14,CDC:15,Colon:16,Semicolon:17,Comma:18,LeftSquareBracket:19,RightSquareBracket:20,LeftParenthesis:21,RightParenthesis:22,LeftCurlyBracket:23,RightCurlyBracket:24,Comment:25},W=Object.keys(B).reduce((function(e,t){return e[B[t]]=t,e}),{}),M={TYPE:B,NAME:W};function U(e){return e>=48&&e<=57}function I(e){return e>=65&&e<=90}function N(e){return e>=97&&e<=122}function q(e){return I(e)||N(e)}function D(e){return e>=128}function V(e){return q(e)||D(e)||95===e}function j(e){return e>=0&&e<=8||11===e||e>=14&&e<=31||127===e}function F(e){return 10===e||13===e||12===e}function G(e){return F(e)||32===e||9===e}function K(e,t){return 92===e&&(!F(t)&&0!==t)}var Y=new Array(128);$.Eof=128,$.WhiteSpace=130,$.Digit=131,$.NameStart=132,$.NonPrintable=133;for(var H=0;H<Y.length;H++)switch(!0){case G(H):Y[H]=$.WhiteSpace;break;case U(H):Y[H]=$.Digit;break;case V(H):Y[H]=$.NameStart;break;case j(H):Y[H]=$.NonPrintable;break;default:Y[H]=H||$.Eof}function $(e){return e<128?Y[e]:$.NameStart}var Q={isDigit:U,isHexDigit:function(e){return U(e)||e>=65&&e<=70||e>=97&&e<=102},isUppercaseLetter:I,isLowercaseLetter:N,isLetter:q,isNonAscii:D,isNameStart:V,isName:function(e){return V(e)||U(e)||45===e},isNonPrintable:j,isNewline:F,isWhiteSpace:G,isValidEscape:K,isIdentifierStart:function(e,t,n){return 45===e?V(t)||45===t||K(t,n):!!V(e)||92===e&&K(e,t)},isNumberStart:function(e,t,n){return 43===e||45===e?U(t)?2:46===t&&U(n)?3:0:46===e?U(t)?2:0:U(e)?1:0},isBOM:function(e){return 65279===e||65534===e?1:0},charCodeCategory:$},Z=Q.isDigit,X=Q.isHexDigit,J=Q.isUppercaseLetter,ee=Q.isName,te=Q.isWhiteSpace,ne=Q.isValidEscape;function re(e,t){return t<e.length?e.charCodeAt(t):0}function ie(e,t,n){return 13===n&&10===re(e,t+1)?2:1}function oe(e,t,n){var r=e.charCodeAt(t);return J(r)&&(r|=32),r===n}function ae(e,t){for(;t<e.length&&Z(e.charCodeAt(t));t++);return t}function se(e,t){if(X(re(e,(t+=2)-1))){for(var n=Math.min(e.length,t+5);t<n&&X(re(e,t));t++);var r=re(e,t);te(r)&&(t+=ie(e,t,r))}return t}var le={consumeEscaped:se,consumeName:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(!ee(n)){if(!ne(n,re(e,t+1)))break;t=se(e,t)-1}}return t},consumeNumber:function(e,t){var n=e.charCodeAt(t);if(43!==n&&45!==n||(n=e.charCodeAt(t+=1)),Z(n)&&(t=ae(e,t+1),n=e.charCodeAt(t)),46===n&&Z(e.charCodeAt(t+1))&&(n=e.charCodeAt(t+=2),t=ae(e,t)),oe(e,t,101)){var r=0;45!==(n=e.charCodeAt(t+1))&&43!==n||(r=1,n=e.charCodeAt(t+2)),Z(n)&&(t=ae(e,t+1+r+1))}return t},consumeBadUrlRemnants:function(e,t){for(;t<e.length;t++){var n=e.charCodeAt(t);if(41===n){t++;break}ne(n,re(e,t+1))&&(t=se(e,t))}return t},cmpChar:oe,cmpStr:function(e,t,n,r){if(n-t!==r.length)return!1;if(t<0||n>e.length)return!1;for(var i=t;i<n;i++){var o=e.charCodeAt(i),a=r.charCodeAt(i-t);if(J(o)&&(o|=32),o!==a)return!1}return!0},getNewlineLength:ie,findWhiteSpaceStart:function(e,t){for(;t>=0&&te(e.charCodeAt(t));t--);return t+1},findWhiteSpaceEnd:function(e,t){for(;t<e.length&&te(e.charCodeAt(t));t++);return t}},ue=M.TYPE,ce=M.NAME,de=le.cmpStr,pe=ue.EOF,me=ue.WhiteSpace,he=ue.Comment,fe=16777215,ge=24,ye=function(){this.offsetAndType=null,this.balance=null,this.reset()};ye.prototype={reset:function(){this.eof=!1,this.tokenIndex=-1,this.tokenType=0,this.tokenStart=this.firstCharOffset,this.tokenEnd=this.firstCharOffset},lookupType:function(e){return(e+=this.tokenIndex)<this.tokenCount?this.offsetAndType[e]>>ge:pe},lookupOffset:function(e){return(e+=this.tokenIndex)<this.tokenCount?this.offsetAndType[e-1]&fe:this.source.length},lookupValue:function(e,t){return(e+=this.tokenIndex)<this.tokenCount&&de(this.source,this.offsetAndType[e-1]&fe,this.offsetAndType[e]&fe,t)},getTokenStart:function(e){return e===this.tokenIndex?this.tokenStart:e>0?e<this.tokenCount?this.offsetAndType[e-1]&fe:this.offsetAndType[this.tokenCount]&fe:this.firstCharOffset},getRawLength:function(e,t){var n,r=e,i=this.offsetAndType[Math.max(r-1,0)]&fe;e:for(;r<this.tokenCount&&!((n=this.balance[r])<e);r++)switch(t(this.offsetAndType[r]>>ge,this.source,i)){case 1:break e;case 2:r++;break e;default:this.balance[n]===r&&(r=n),i=this.offsetAndType[r]&fe}return r-this.tokenIndex},isBalanceEdge:function(e){return this.balance[this.tokenIndex]<e},isDelim:function(e,t){return t?this.lookupType(t)===ue.Delim&&this.source.charCodeAt(this.lookupOffset(t))===e:this.tokenType===ue.Delim&&this.source.charCodeAt(this.tokenStart)===e},getTokenValue:function(){return this.source.substring(this.tokenStart,this.tokenEnd)},getTokenLength:function(){return this.tokenEnd-this.tokenStart},substrToCursor:function(e){return this.source.substring(e,this.tokenStart)},skipWS:function(){for(var e=this.tokenIndex,t=0;e<this.tokenCount&&this.offsetAndType[e]>>ge===me;e++,t++);t>0&&this.skip(t)},skipSC:function(){for(;this.tokenType===me||this.tokenType===he;)this.next()},skip:function(e){var t=this.tokenIndex+e;t<this.tokenCount?(this.tokenIndex=t,this.tokenStart=this.offsetAndType[t-1]&fe,t=this.offsetAndType[t],this.tokenType=t>>ge,this.tokenEnd=t&fe):(this.tokenIndex=this.tokenCount,this.next())},next:function(){var e=this.tokenIndex+1;e<this.tokenCount?(this.tokenIndex=e,this.tokenStart=this.tokenEnd,e=this.offsetAndType[e],this.tokenType=e>>ge,this.tokenEnd=e&fe):(this.tokenIndex=this.tokenCount,this.eof=!0,this.tokenType=pe,this.tokenStart=this.tokenEnd=this.source.length)},forEachToken(e){for(var t=0,n=this.firstCharOffset;t<this.tokenCount;t++){var r=n,i=this.offsetAndType[t],o=i&fe;n=o,e(i>>ge,r,o,t)}},dump(){var e=new Array(this.tokenCount);return this.forEachToken(((t,n,r,i)=>{e[i]={idx:i,type:ce[t],chunk:this.source.substring(n,r),balance:this.balance[i]}})),e}};var ve=ye;function be(e){return e}function Se(e,t,n,r){var i,o;switch(e.type){case"Group":i=function(e,t,n,r){var i=" "===e.combinator||r?e.combinator:" "+e.combinator+" ",o=e.terms.map((function(e){return Se(e,t,n,r)})).join(i);return(e.explicit||n)&&(o=(r||","===o[0]?"[":"[ ")+o+(r?"]":" ]")),o}(e,t,n,r)+(e.disallowEmpty?"!":"");break;case"Multiplier":return Se(e.term,t,n,r)+t(0===(o=e).min&&0===o.max?"*":0===o.min&&1===o.max?"?":1===o.min&&0===o.max?o.comma?"#":"+":1===o.min&&1===o.max?"":(o.comma?"#":"")+(o.min===o.max?"{"+o.min+"}":"{"+o.min+","+(0!==o.max?o.max:"")+"}"),e);case"Type":i="<"+e.name+(e.opts?t(function(e){if("Range"===e.type)return" ["+(null===e.min?"-∞":e.min)+","+(null===e.max?"∞":e.max)+"]";throw new Error("Unknown node type `"+e.type+"`")}(e.opts),e.opts):"")+">";break;case"Property":i="<'"+e.name+"'>";break;case"Keyword":i=e.name;break;case"AtKeyword":i="@"+e.name;break;case"Function":i=e.name+"(";break;case"String":case"Token":i=e.value;break;case"Comma":i=",";break;default:throw new Error("Unknown node type `"+e.type+"`")}return t(i,e)}var xe=function(e,t){var n=be,r=!1,i=!1;return"function"==typeof t?n=t:t&&(r=Boolean(t.forceBraces),i=Boolean(t.compact),"function"==typeof t.decorate&&(n=t.decorate)),Se(e,n,r,i)};const we=_,Ce=xe,ke={offset:0,line:1,column:1};function Oe(e,t){const n=e&&e.loc&&e.loc[t];return n?"line"in n?Te(n):n:null}function Te({offset:e,line:t,column:n},r){const i={offset:e,line:t,column:n};if(r){const e=r.split(/\n|\r\n?|\f/);i.offset+=r.length,i.line+=e.length-1,i.column=1===e.length?i.column+r.length:e.pop().length+1}return i}var Ee=function(e,t){const n=we("SyntaxReferenceError",e+(t?" `"+t+"`":""));return n.reference=t,n},Ae=function(e,t,n,r){const i=we("SyntaxMatchError",e),{css:o,mismatchOffset:a,mismatchLength:s,start:l,end:u}=function(e,t){const n=e.tokens,r=e.longestMatch,i=r<n.length&&n[r].node||null,o=i!==t?i:null;let a,s,l=0,u=0,c=0,d="";for(let e=0;e<n.length;e++){const t=n[e].value;e===r&&(u=t.length,l=d.length),null!==o&&n[e].node===o&&(e<=r?c++:c=0),d+=t}return r===n.length||c>1?(a=Oe(o||t,"end")||Te(ke,d),s=Te(a)):(a=Oe(o,"start")||Te(Oe(t,"start")||ke,d.slice(0,l)),s=Oe(o,"end")||Te(a,d.substr(l,u))),{css:d,mismatchOffset:l,mismatchLength:u,start:a,end:s}}(r,n);return i.rawMessage=e,i.syntax=t?Ce(t):"<generic>",i.css=o,i.mismatchOffset=a,i.mismatchLength=s,i.message=e+"\n syntax: "+i.syntax+"\n value: "+(o||"<empty string>")+"\n --------"+new Array(i.mismatchOffset+1).join("-")+"^",Object.assign(i,l),i.loc={source:n&&n.loc&&n.loc.source||"<unknown>",start:l,end:u},i},_e=Object.prototype.hasOwnProperty,ze=Object.create(null),Re=Object.create(null);function Le(e,t){return t=t||0,e.length-t>=2&&45===e.charCodeAt(t)&&45===e.charCodeAt(t+1)}function Pe(e,t){if(t=t||0,e.length-t>=3&&45===e.charCodeAt(t)&&45!==e.charCodeAt(t+1)){var n=e.indexOf("-",t+2);if(-1!==n)return e.substring(t,n+1)}return""}var Be={keyword:function(e){if(_e.call(ze,e))return ze[e];var t=e.toLowerCase();if(_e.call(ze,t))return ze[e]=ze[t];var n=Le(t,0),r=n?"":Pe(t,0);return ze[e]=Object.freeze({basename:t.substr(r.length),name:t,vendor:r,prefix:r,custom:n})},property:function(e){if(_e.call(Re,e))return Re[e];var t=e,n=e[0];"/"===n?n="/"===e[1]?"//":"/":"_"!==n&&"*"!==n&&"$"!==n&&"#"!==n&&"+"!==n&&"&"!==n&&(n="");var r=Le(t,n.length);if(!r&&(t=t.toLowerCase(),_e.call(Re,t)))return Re[e]=Re[t];var i=r?"":Pe(t,n.length),o=t.substr(0,n.length+i.length);return Re[e]=Object.freeze({basename:t.substr(o.length),name:t.substr(n.length),hack:n,vendor:i,prefix:o,custom:r})},isCustomProperty:Le,vendorPrefix:Pe},We="undefined"!=typeof Uint32Array?Uint32Array:Array,Me=function(e,t){return null===e||e.length<t?new We(Math.max(t+1024,16384)):e},Ue=ve,Ie=Me,Ne=M,qe=Ne.TYPE,De=Q,Ve=De.isNewline,je=De.isName,Fe=De.isValidEscape,Ge=De.isNumberStart,Ke=De.isIdentifierStart,Ye=De.charCodeCategory,He=De.isBOM,$e=le,Qe=$e.cmpStr,Ze=$e.getNewlineLength,Xe=$e.findWhiteSpaceEnd,Je=$e.consumeEscaped,et=$e.consumeName,tt=$e.consumeNumber,nt=$e.consumeBadUrlRemnants,rt=16777215,it=24;function ot(e,t){function n(t){return t<a?e.charCodeAt(t):0}function r(){return d=tt(e,d),Ke(n(d),n(d+1),n(d+2))?(g=qe.Dimension,void(d=et(e,d))):37===n(d)?(g=qe.Percentage,void d++):void(g=qe.Number)}function i(){const t=d;return d=et(e,d),Qe(e,t,d,"url")&&40===n(d)?34===n(d=Xe(e,d+1))||39===n(d)?(g=qe.Function,void(d=t+4)):void function(){for(g=qe.Url,d=Xe(e,d);d<e.length;d++){var t=e.charCodeAt(d);switch(Ye(t)){case 41:return void d++;case Ye.Eof:return;case Ye.WhiteSpace:return 41===n(d=Xe(e,d))||d>=e.length?void(d<e.length&&d++):(d=nt(e,d),void(g=qe.BadUrl));case 34:case 39:case 40:case Ye.NonPrintable:return d=nt(e,d),void(g=qe.BadUrl);case 92:if(Fe(t,n(d+1))){d=Je(e,d)-1;break}return d=nt(e,d),void(g=qe.BadUrl)}}}():40===n(d)?(g=qe.Function,void d++):void(g=qe.Ident)}function o(t){for(t||(t=n(d++)),g=qe.String;d<e.length;d++){var r=e.charCodeAt(d);switch(Ye(r)){case t:return void d++;case Ye.Eof:return;case Ye.WhiteSpace:if(Ve(r))return d+=Ze(e,d,r),void(g=qe.BadString);break;case 92:if(d===e.length-1)break;var i=n(d+1);Ve(i)?d+=Ze(e,d+1,i):Fe(r,i)&&(d=Je(e,d)-1)}}}t||(t=new Ue);for(var a=(e=String(e||"")).length,s=Ie(t.offsetAndType,a+1),l=Ie(t.balance,a+1),u=0,c=He(n(0)),d=c,p=0,m=0,h=0;d<a;){var f=e.charCodeAt(d),g=0;switch(l[u]=a,Ye(f)){case Ye.WhiteSpace:g=qe.WhiteSpace,d=Xe(e,d+1);break;case 34:o();break;case 35:je(n(d+1))||Fe(n(d+1),n(d+2))?(g=qe.Hash,d=et(e,d+1)):(g=qe.Delim,d++);break;case 39:o();break;case 40:g=qe.LeftParenthesis,d++;break;case 41:g=qe.RightParenthesis,d++;break;case 43:Ge(f,n(d+1),n(d+2))?r():(g=qe.Delim,d++);break;case 44:g=qe.Comma,d++;break;case 45:Ge(f,n(d+1),n(d+2))?r():45===n(d+1)&&62===n(d+2)?(g=qe.CDC,d+=3):Ke(f,n(d+1),n(d+2))?i():(g=qe.Delim,d++);break;case 46:Ge(f,n(d+1),n(d+2))?r():(g=qe.Delim,d++);break;case 47:42===n(d+1)?(g=qe.Comment,1===(d=e.indexOf("*/",d+2)+2)&&(d=e.length)):(g=qe.Delim,d++);break;case 58:g=qe.Colon,d++;break;case 59:g=qe.Semicolon,d++;break;case 60:33===n(d+1)&&45===n(d+2)&&45===n(d+3)?(g=qe.CDO,d+=4):(g=qe.Delim,d++);break;case 64:Ke(n(d+1),n(d+2),n(d+3))?(g=qe.AtKeyword,d=et(e,d+1)):(g=qe.Delim,d++);break;case 91:g=qe.LeftSquareBracket,d++;break;case 92:Fe(f,n(d+1))?i():(g=qe.Delim,d++);break;case 93:g=qe.RightSquareBracket,d++;break;case 123:g=qe.LeftCurlyBracket,d++;break;case 125:g=qe.RightCurlyBracket,d++;break;case Ye.Digit:r();break;case Ye.NameStart:i();break;case Ye.Eof:break;default:g=qe.Delim,d++}switch(g){case p:for(p=(m=l[h=m&rt])>>it,l[u]=h,l[h++]=u;h<u;h++)l[h]===a&&(l[h]=u);break;case qe.LeftParenthesis:case qe.Function:l[u]=m,m=(p=qe.RightParenthesis)<<it|u;break;case qe.LeftSquareBracket:l[u]=m,m=(p=qe.RightSquareBracket)<<it|u;break;case qe.LeftCurlyBracket:l[u]=m,m=(p=qe.RightCurlyBracket)<<it|u}s[u++]=g<<it|d}for(s[u]=qe.EOF<<it|d,l[u]=a,l[a]=a;0!==m;)m=l[h=m&rt],l[h]=a;return t.source=e,t.firstCharOffset=c,t.offsetAndType=s,t.tokenCount=u,t.balance=l,t.reset(),t.next(),t}Object.keys(Ne).forEach((function(e){ot[e]=Ne[e]})),Object.keys(De).forEach((function(e){ot[e]=De[e]})),Object.keys($e).forEach((function(e){ot[e]=$e[e]}));var at=ot,st=at.isDigit,lt=at.cmpChar,ut=at.TYPE,ct=ut.Delim,dt=ut.WhiteSpace,pt=ut.Comment,mt=ut.Ident,ht=ut.Number,ft=ut.Dimension,gt=45,yt=!0;function vt(e,t){return null!==e&&e.type===ct&&e.value.charCodeAt(0)===t}function bt(e,t,n){for(;null!==e&&(e.type===dt||e.type===pt);)e=n(++t);return t}function St(e,t,n,r){if(!e)return 0;var i=e.value.charCodeAt(t);if(43===i||i===gt){if(n)return 0;t++}for(;t<e.value.length;t++)if(!st(e.value.charCodeAt(t)))return 0;return r+1}function xt(e,t,n){var r=!1,i=bt(e,t,n);if(null===(e=n(i)))return t;if(e.type!==ht){if(!vt(e,43)&&!vt(e,gt))return t;if(r=!0,i=bt(n(++i),i,n),null===(e=n(i))&&e.type!==ht)return 0}if(!r){var o=e.value.charCodeAt(0);if(43!==o&&o!==gt)return 0}return St(e,r?0:1,r,i)}var wt=at.isHexDigit,Ct=at.cmpChar,kt=at.TYPE,Ot=kt.Ident,Tt=kt.Delim,Et=kt.Number,At=kt.Dimension;function _t(e,t){return null!==e&&e.type===Tt&&e.value.charCodeAt(0)===t}function zt(e,t){return e.value.charCodeAt(0)===t}function Rt(e,t,n){for(var r=t,i=0;r<e.value.length;r++){var o=e.value.charCodeAt(r);if(45===o&&n&&0!==i)return Rt(e,t+i+1,!1)>0?6:0;if(!wt(o))return 0;if(++i>6)return 0}return i}function Lt(e,t,n){if(!e)return 0;for(;_t(n(t),63);){if(++e>6)return 0;t++}return t}var Pt=at,Bt=Pt.isIdentifierStart,Wt=Pt.isHexDigit,Mt=Pt.isDigit,Ut=Pt.cmpStr,It=Pt.consumeNumber,Nt=Pt.TYPE,qt=function(e,t){var n=0;if(!e)return 0;if(e.type===ht)return St(e,0,false,n);if(e.type===mt&&e.value.charCodeAt(0)===gt){if(!lt(e.value,1,110))return 0;switch(e.value.length){case 2:return xt(t(++n),n,t);case 3:return e.value.charCodeAt(2)!==gt?0:(n=bt(t(++n),n,t),St(e=t(n),0,yt,n));default:return e.value.charCodeAt(2)!==gt?0:St(e,3,yt,n)}}else if(e.type===mt||vt(e,43)&&t(n+1).type===mt){if(e.type!==mt&&(e=t(++n)),null===e||!lt(e.value,0,110))return 0;switch(e.value.length){case 1:return xt(t(++n),n,t);case 2:return e.value.charCodeAt(1)!==gt?0:(n=bt(t(++n),n,t),St(e=t(n),0,yt,n));default:return e.value.charCodeAt(1)!==gt?0:St(e,2,yt,n)}}else if(e.type===ft){for(var r=e.value.charCodeAt(0),i=43===r||r===gt?1:0,o=i;o<e.value.length&&st(e.value.charCodeAt(o));o++);return o===i?0:lt(e.value,o,110)?o+1===e.value.length?xt(t(++n),n,t):e.value.charCodeAt(o+1)!==gt?0:o+2===e.value.length?(n=bt(t(++n),n,t),St(e=t(n),0,yt,n)):St(e,o+2,yt,n):0}return 0},Dt=function(e,t){var n=0;if(null===e||e.type!==Ot||!Ct(e.value,0,117))return 0;if(null===(e=t(++n)))return 0;if(_t(e,43))return null===(e=t(++n))?0:e.type===Ot?Lt(Rt(e,0,!0),++n,t):_t(e,63)?Lt(1,++n,t):0;if(e.type===Et){if(!zt(e,43))return 0;var r=Rt(e,1,!0);return 0===r?0:null===(e=t(++n))?n:e.type===At||e.type===Et?zt(e,45)&&Rt(e,1,!1)?n+1:0:Lt(r,n,t)}return e.type===At&&zt(e,43)?Lt(Rt(e,1,!0),++n,t):0},Vt=["unset","initial","inherit"],jt=["calc(","-moz-calc(","-webkit-calc("];function Ft(e,t){return t<e.length?e.charCodeAt(t):0}function Gt(e,t){return Ut(e,0,e.length,t)}function Kt(e,t){for(var n=0;n<t.length;n++)if(Gt(e,t[n]))return!0;return!1}function Yt(e,t){return t===e.length-2&&(92===e.charCodeAt(t)&&Mt(e.charCodeAt(t+1)))}function Ht(e,t,n){if(e&&"Range"===e.type){var r=Number(void 0!==n&&n!==t.length?t.substr(0,n):t);if(isNaN(r))return!0;if(null!==e.min&&r<e.min)return!0;if(null!==e.max&&r>e.max)return!0}return!1}function $t(e,t){var n=e.index,r=0;do{if(r++,e.balance<=n)break}while(e=t(r));return r}function Qt(e){return function(t,n,r){return null===t?0:t.type===Nt.Function&&Kt(t.value,jt)?$t(t,n):e(t,n,r)}}function Zt(e){return function(t){return null===t||t.type!==e?0:1}}function Xt(e){return function(t,n,r){if(null===t||t.type!==Nt.Dimension)return 0;var i=It(t.value,0);if(null!==e){var o=t.value.indexOf("\\",i),a=-1!==o&&Yt(t.value,o)?t.value.substring(i,o):t.value.substr(i);if(!1===e.hasOwnProperty(a.toLowerCase()))return 0}return Ht(r,t.value,i)?0:1}}function Jt(e){return"function"!=typeof e&&(e=function(){return 0}),function(t,n,r){return null!==t&&t.type===Nt.Number&&0===Number(t.value)?1:e(t,n,r)}}var en={"ident-token":Zt(Nt.Ident),"function-token":Zt(Nt.Function),"at-keyword-token":Zt(Nt.AtKeyword),"hash-token":Zt(Nt.Hash),"string-token":Zt(Nt.String),"bad-string-token":Zt(Nt.BadString),"url-token":Zt(Nt.Url),"bad-url-token":Zt(Nt.BadUrl),"delim-token":Zt(Nt.Delim),"number-token":Zt(Nt.Number),"percentage-token":Zt(Nt.Percentage),"dimension-token":Zt(Nt.Dimension),"whitespace-token":Zt(Nt.WhiteSpace),"CDO-token":Zt(Nt.CDO),"CDC-token":Zt(Nt.CDC),"colon-token":Zt(Nt.Colon),"semicolon-token":Zt(Nt.Semicolon),"comma-token":Zt(Nt.Comma),"[-token":Zt(Nt.LeftSquareBracket),"]-token":Zt(Nt.RightSquareBracket),"(-token":Zt(Nt.LeftParenthesis),")-token":Zt(Nt.RightParenthesis),"{-token":Zt(Nt.LeftCurlyBracket),"}-token":Zt(Nt.RightCurlyBracket),string:Zt(Nt.String),ident:Zt(Nt.Ident),"custom-ident":function(e){if(null===e||e.type!==Nt.Ident)return 0;var t=e.value.toLowerCase();return Kt(t,Vt)||Gt(t,"default")?0:1},"custom-property-name":function(e){return null===e||e.type!==Nt.Ident||45!==Ft(e.value,0)||45!==Ft(e.value,1)?0:1},"hex-color":function(e){if(null===e||e.type!==Nt.Hash)return 0;var t=e.value.length;if(4!==t&&5!==t&&7!==t&&9!==t)return 0;for(var n=1;n<t;n++)if(!Wt(e.value.charCodeAt(n)))return 0;return 1},"id-selector":function(e){return null===e||e.type!==Nt.Hash?0:Bt(Ft(e.value,1),Ft(e.value,2),Ft(e.value,3))?1:0},"an-plus-b":qt,urange:Dt,"declaration-value":function(e,t){if(!e)return 0;var n=0,r=0,i=e.index;e:do{switch(e.type){case Nt.BadString:case Nt.BadUrl:break e;case Nt.RightCurlyBracket:case Nt.RightParenthesis:case Nt.RightSquareBracket:if(e.balance>e.index||e.balance<i)break e;r--;break;case Nt.Semicolon:if(0===r)break e;break;case Nt.Delim:if("!"===e.value&&0===r)break e;break;case Nt.Function:case Nt.LeftParenthesis:case Nt.LeftSquareBracket:case Nt.LeftCurlyBracket:r++}if(n++,e.balance<=i)break}while(e=t(n));return n},"any-value":function(e,t){if(!e)return 0;var n=e.index,r=0;e:do{switch(e.type){case Nt.BadString:case Nt.BadUrl:break e;case Nt.RightCurlyBracket:case Nt.RightParenthesis:case Nt.RightSquareBracket:if(e.balance>e.index||e.balance<n)break e}if(r++,e.balance<=n)break}while(e=t(r));return r},dimension:Qt(Xt(null)),angle:Qt(Xt({deg:!0,grad:!0,rad:!0,turn:!0})),decibel:Qt(Xt({db:!0})),frequency:Qt(Xt({hz:!0,khz:!0})),flex:Qt(Xt({fr:!0})),length:Qt(Jt(Xt({px:!0,mm:!0,cm:!0,in:!0,pt:!0,pc:!0,q:!0,em:!0,ex:!0,ch:!0,rem:!0,vh:!0,vw:!0,vmin:!0,vmax:!0,vm:!0}))),resolution:Qt(Xt({dpi:!0,dpcm:!0,dppx:!0,x:!0})),semitones:Qt(Xt({st:!0})),time:Qt(Xt({s:!0,ms:!0})),percentage:Qt((function(e,t,n){return null===e||e.type!==Nt.Percentage||Ht(n,e.value,e.value.length-1)?0:1})),zero:Jt(),number:Qt((function(e,t,n){if(null===e)return 0;var r=It(e.value,0);return r===e.value.length||Yt(e.value,r)?Ht(n,e.value,r)?0:1:0})),integer:Qt((function(e,t,n){if(null===e||e.type!==Nt.Number)return 0;for(var r=43===e.value.charCodeAt(0)||45===e.value.charCodeAt(0)?1:0;r<e.value.length;r++)if(!Mt(e.value.charCodeAt(r)))return 0;return Ht(n,e.value,r)?0:1})),"-ms-legacy-expression":function(e){return e+="(",function(t,n){return null!==t&&Gt(t.value,e)?$t(t,n):0}}("expression")},tn=_,nn=function(e,t,n){var r=tn("SyntaxError",e);return r.input=t,r.offset=n,r.rawMessage=e,r.message=r.rawMessage+"\n "+r.input+"\n--"+new Array((r.offset||r.input.length)+1).join("-")+"^",r},rn=nn,on=function(e){this.str=e,this.pos=0};on.prototype={charCodeAt:function(e){return e<this.str.length?this.str.charCodeAt(e):0},charCode:function(){return this.charCodeAt(this.pos)},nextCharCode:function(){return this.charCodeAt(this.pos+1)},nextNonWsCode:function(e){return this.charCodeAt(this.findWsEnd(e))},findWsEnd:function(e){for(;e<this.str.length;e++){var t=this.str.charCodeAt(e);if(13!==t&&10!==t&&12!==t&&32!==t&&9!==t)break}return e},substringToPos:function(e){return this.str.substring(this.pos,this.pos=e)},eat:function(e){this.charCode()!==e&&this.error("Expect `"+String.fromCharCode(e)+"`"),this.pos++},peek:function(){return this.pos<this.str.length?this.str.charAt(this.pos++):""},error:function(e){throw new rn(e,this.str,this.pos)}};var an=on,sn=123,ln=function(e){for(var t="function"==typeof Uint32Array?new Uint32Array(128):new Array(128),n=0;n<128;n++)t[n]=e(String.fromCharCode(n))?1:0;return t}((function(e){return/[a-zA-Z0-9\-]/.test(e)})),un={" ":1,"&&":2,"||":3,"|":4};function cn(e){return e.substringToPos(e.findWsEnd(e.pos))}function dn(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n>=128||0===ln[n])break}return e.pos===t&&e.error("Expect a keyword"),e.substringToPos(t)}function pn(e){for(var t=e.pos;t<e.str.length;t++){var n=e.str.charCodeAt(t);if(n<48||n>57)break}return e.pos===t&&e.error("Expect a number"),e.substringToPos(t)}function mn(e){var t=e.str.indexOf("'",e.pos+1);return-1===t&&(e.pos=e.str.length,e.error("Expect an apostrophe")),e.substringToPos(t+1)}function hn(e){var t,n=null;return e.eat(sn),t=pn(e),44===e.charCode()?(e.pos++,125!==e.charCode()&&(n=pn(e))):n=t,e.eat(125),{min:Number(t),max:n?Number(n):0}}function fn(e,t){var n=function(e){var t=null,n=!1;switch(e.charCode()){case 42:e.pos++,t={min:0,max:0};break;case 43:e.pos++,t={min:1,max:0};break;case 63:e.pos++,t={min:0,max:1};break;case 35:e.pos++,n=!0,t=e.charCode()===sn?hn(e):{min:1,max:0};break;case sn:t=hn(e);break;default:return null}return{type:"Multiplier",comma:n,min:t.min,max:t.max,term:null}}(e);return null!==n?(n.term=t,n):t}function gn(e){var t=e.peek();return""===t?null:{type:"Token",value:t}}function yn(e){var t,n=null;return e.eat(60),t=dn(e),40===e.charCode()&&41===e.nextCharCode()&&(e.pos+=2,t+="()"),91===e.charCodeAt(e.findWsEnd(e.pos))&&(cn(e),n=function(e){var t=null,n=null,r=1;return e.eat(91),45===e.charCode()&&(e.peek(),r=-1),-1==r&&8734===e.charCode()?e.peek():t=r*Number(pn(e)),cn(e),e.eat(44),cn(e),8734===e.charCode()?e.peek():(r=1,45===e.charCode()&&(e.peek(),r=-1),n=r*Number(pn(e))),e.eat(93),null===t&&null===n?null:{type:"Range",min:t,max:n}}(e)),e.eat(62),fn(e,{type:"Type",name:t,opts:n})}function vn(e,t){function n(e,t){return{type:"Group",terms:e,combinator:t,disallowEmpty:!1,explicit:!1}}for(t=Object.keys(t).sort((function(e,t){return un[e]-un[t]}));t.length>0;){for(var r=t.shift(),i=0,o=0;i<e.length;i++){var a=e[i];"Combinator"===a.type&&(a.value===r?(-1===o&&(o=i-1),e.splice(i,1),i--):(-1!==o&&i-o>1&&(e.splice(o,i-o,n(e.slice(o,i),r)),i=o+1),o=-1))}-1!==o&&t.length&&e.splice(o,i-o,n(e.slice(o,i),r))}return r}function bn(e){for(var t,n=[],r={},i=null,o=e.pos;t=Sn(e);)"Spaces"!==t.type&&("Combinator"===t.type?(null!==i&&"Combinator"!==i.type||(e.pos=o,e.error("Unexpected combinator")),r[t.value]=!0):null!==i&&"Combinator"!==i.type&&(r[" "]=!0,n.push({type:"Combinator",value:" "})),n.push(t),i=t,o=e.pos);return null!==i&&"Combinator"===i.type&&(e.pos-=o,e.error("Unexpected combinator")),{type:"Group",terms:n,combinator:vn(n,r)||" ",disallowEmpty:!1,explicit:!1}}function Sn(e){var t=e.charCode();if(t<128&&1===ln[t])return function(e){var t;return t=dn(e),40===e.charCode()?(e.pos++,{type:"Function",name:t}):fn(e,{type:"Keyword",name:t})}(e);switch(t){case 93:break;case 91:return fn(e,function(e){var t;return e.eat(91),t=bn(e),e.eat(93),t.explicit=!0,33===e.charCode()&&(e.pos++,t.disallowEmpty=!0),t}(e));case 60:return 39===e.nextCharCode()?function(e){var t;return e.eat(60),e.eat(39),t=dn(e),e.eat(39),e.eat(62),fn(e,{type:"Property",name:t})}(e):yn(e);case 124:return{type:"Combinator",value:e.substringToPos(124===e.nextCharCode()?e.pos+2:e.pos+1)};case 38:return e.pos++,e.eat(38),{type:"Combinator",value:"&&"};case 44:return e.pos++,{type:"Comma"};case 39:return fn(e,{type:"String",value:mn(e)});case 32:case 9:case 10:case 13:case 12:return{type:"Spaces",value:cn(e)};case 64:return(t=e.nextCharCode())<128&&1===ln[t]?(e.pos++,{type:"AtKeyword",name:dn(e)}):gn(e);case 42:case 43:case 63:case 35:case 33:break;case sn:if((t=e.nextCharCode())<48||t>57)return gn(e);break;default:return gn(e)}}function xn(e){var t=new an(e),n=bn(t);return t.pos!==e.length&&t.error("Unexpected input"),1===n.terms.length&&"Group"===n.terms[0].type&&(n=n.terms[0]),n}xn("[a&&<b>#|<'c'>*||e() f{2} /,(% g#{1,2} h{2,})]!");var wn=xn,Cn=function(){};function kn(e){return"function"==typeof e?e:Cn}var On=function(e,t,n){var r=Cn,i=Cn;if("function"==typeof t?r=t:t&&(r=kn(t.enter),i=kn(t.leave)),r===Cn&&i===Cn)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");!function e(t){switch(r.call(n,t),t.type){case"Group":t.terms.forEach(e);break;case"Multiplier":e(t.term);break;case"Type":case"Property":case"Keyword":case"AtKeyword":case"Function":case"String":case"Token":case"Comma":break;default:throw new Error("Unknown type: "+t.type)}i.call(n,t)}(e)},Tn=at,En=new ve,An={decorator:function(e){var t=null,n={len:0,node:null},r=[n],i="";return{children:e.children,node:function(n){var r=t;t=n,e.node.call(this,n),t=r},chunk:function(e){i+=e,n.node!==t?r.push({len:e.length,node:t}):n.len+=e.length},result:function(){return _n(i,r)}}}};function _n(e,t){var n=[],r=0,i=0,o=t?t[i].node:null;for(Tn(e,En);!En.eof;){if(t)for(;i<t.length&&r+t[i].len<=En.tokenStart;)r+=t[i++].len,o=t[i].node;n.push({type:En.tokenType,value:En.getTokenValue(),index:En.tokenIndex,balance:En.balance[En.tokenIndex],node:o}),En.next()}return n}var zn=wn,Rn={type:"Match"},Ln={type:"Mismatch"},Pn={type:"DisallowEmpty"};function Bn(e,t,n){return t===Rn&&n===Ln||e===Rn&&t===Rn&&n===Rn?e:("If"===e.type&&e.else===Ln&&t===Rn&&(t=e.then,e=e.match),{type:"If",match:e,then:t,else:n})}function Wn(e){return e.length>2&&40===e.charCodeAt(e.length-2)&&41===e.charCodeAt(e.length-1)}function Mn(e){return"Keyword"===e.type||"AtKeyword"===e.type||"Function"===e.type||"Type"===e.type&&Wn(e.name)}function Un(e,t,n){switch(e){case" ":for(var r=Rn,i=t.length-1;i>=0;i--){r=Bn(s=t[i],r,Ln)}return r;case"|":r=Ln;var o=null;for(i=t.length-1;i>=0;i--){if(Mn(s=t[i])&&(null===o&&i>0&&Mn(t[i-1])&&(r=Bn({type:"Enum",map:o=Object.create(null)},Rn,r)),null!==o)){var a=(Wn(s.name)?s.name.slice(0,-1):s.name).toLowerCase();if(a in o==!1){o[a]=s;continue}}o=null,r=Bn(s,Rn,r)}return r;case"&&":if(t.length>5)return{type:"MatchOnce",terms:t,all:!0};for(r=Ln,i=t.length-1;i>=0;i--){var s=t[i];l=t.length>1?Un(e,t.filter((function(e){return e!==s})),!1):Rn,r=Bn(s,l,r)}return r;case"||":if(t.length>5)return{type:"MatchOnce",terms:t,all:!1};for(r=n?Rn:Ln,i=t.length-1;i>=0;i--){var l;s=t[i];l=t.length>1?Un(e,t.filter((function(e){return e!==s})),!0):Rn,r=Bn(s,l,r)}return r}}function In(e){if("function"==typeof e)return{type:"Generic",fn:e};switch(e.type){case"Group":var t=Un(e.combinator,e.terms.map(In),!1);return e.disallowEmpty&&(t=Bn(t,Pn,Ln)),t;case"Multiplier":return function(e){var t=Rn,n=In(e.term);if(0===e.max)n=Bn(n,Pn,Ln),(t=Bn(n,null,Ln)).then=Bn(Rn,Rn,t),e.comma&&(t.then.else=Bn({type:"Comma",syntax:e},t,Ln));else for(var r=e.min||1;r<=e.max;r++)e.comma&&t!==Rn&&(t=Bn({type:"Comma",syntax:e},t,Ln)),t=Bn(n,Bn(Rn,Rn,t),Ln);if(0===e.min)t=Bn(Rn,Rn,t);else for(r=0;r<e.min-1;r++)e.comma&&t!==Rn&&(t=Bn({type:"Comma",syntax:e},t,Ln)),t=Bn(n,t,Ln);return t}(e);case"Type":case"Property":return{type:e.type,name:e.name,syntax:e};case"Keyword":return{type:e.type,name:e.name.toLowerCase(),syntax:e};case"AtKeyword":return{type:e.type,name:"@"+e.name.toLowerCase(),syntax:e};case"Function":return{type:e.type,name:e.name.toLowerCase()+"(",syntax:e};case"String":return 3===e.value.length?{type:"Token",value:e.value.charAt(1),syntax:e}:{type:e.type,value:e.value.substr(1,e.value.length-2).replace(/\\'/g,"'"),syntax:e};case"Token":return{type:e.type,value:e.value,syntax:e};case"Comma":return{type:e.type,syntax:e};default:throw new Error("Unknown node type:",e.type)}}var Nn={MATCH:Rn,MISMATCH:Ln,DISALLOW_EMPTY:Pn,buildMatchGraph:function(e,t){return"string"==typeof e&&(e=zn(e)),{type:"MatchGraph",match:In(e),syntax:t||null,source:e}}},qn=Object.prototype.hasOwnProperty,Dn=Nn.MATCH,Vn=Nn.MISMATCH,jn=Nn.DISALLOW_EMPTY,Fn=M.TYPE,Gn="Match";function Kn(e){for(var t=null,n=null,r=e;null!==r;)n=r.prev,r.prev=t,t=r,r=n;return t}function Yn(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r>=65&&r<=90&&(r|=32),r!==t.charCodeAt(n))return!1}return!0}function Hn(e){return null===e||(e.type===Fn.Comma||e.type===Fn.Function||e.type===Fn.LeftParenthesis||e.type===Fn.LeftSquareBracket||e.type===Fn.LeftCurlyBracket||function(e){return e.type===Fn.Delim&&"?"!==e.value}(e))}function $n(e){return null===e||(e.type===Fn.RightParenthesis||e.type===Fn.RightSquareBracket||e.type===Fn.RightCurlyBracket||e.type===Fn.Delim)}function Qn(e,t,n){function r(){do{y++,g=y<e.length?e[y]:null}while(null!==g&&(g.type===Fn.WhiteSpace||g.type===Fn.Comment))}function i(t){var n=y+t;return n<e.length?e[n]:null}function o(e,t){return{nextState:e,matchStack:b,syntaxStack:c,thenStack:d,tokenIndex:y,prev:t}}function a(e){d={nextState:e,matchStack:b,syntaxStack:c,prev:d}}function s(e){p=o(e,p)}function l(){b={type:1,syntax:t.syntax,token:g,prev:b},r(),m=null,y>v&&(v=y)}function u(){b=2===b.type?b.prev:{type:3,syntax:c.syntax,token:b.token,prev:b},c=c.prev}var c=null,d=null,p=null,m=null,h=0,f=null,g=null,y=-1,v=0,b={type:0,syntax:null,token:null,prev:null};for(r();null===f&&++h<15e3;)switch(t.type){case"Match":if(null===d){if(null!==g&&(y!==e.length-1||"\\0"!==g.value&&"\\9"!==g.value)){t=Vn;break}f=Gn;break}if((t=d.nextState)===jn){if(d.matchStack===b){t=Vn;break}t=Dn}for(;d.syntaxStack!==c;)u();d=d.prev;break;case"Mismatch":if(null!==m&&!1!==m)(null===p||y>p.tokenIndex)&&(p=m,m=!1);else if(null===p){f="Mismatch";break}t=p.nextState,d=p.thenStack,c=p.syntaxStack,b=p.matchStack,y=p.tokenIndex,g=y<e.length?e[y]:null,p=p.prev;break;case"MatchGraph":t=t.match;break;case"If":t.else!==Vn&&s(t.else),t.then!==Dn&&a(t.then),t=t.match;break;case"MatchOnce":t={type:"MatchOnceBuffer",syntax:t,index:0,mask:0};break;case"MatchOnceBuffer":var S=t.syntax.terms;if(t.index===S.length){if(0===t.mask||t.syntax.all){t=Vn;break}t=Dn;break}if(t.mask===(1<<S.length)-1){t=Dn;break}for(;t.index<S.length;t.index++){var x=1<<t.index;if(0==(t.mask&x)){s(t),a({type:"AddMatchOnce",syntax:t.syntax,mask:t.mask|x}),t=S[t.index++];break}}break;case"AddMatchOnce":t={type:"MatchOnceBuffer",syntax:t.syntax,index:0,mask:t.mask};break;case"Enum":if(null!==g)if(-1!==(T=g.value.toLowerCase()).indexOf("\\")&&(T=T.replace(/\\[09].*$/,"")),qn.call(t.map,T)){t=t.map[T];break}t=Vn;break;case"Generic":var w=null!==c?c.opts:null,C=y+Math.floor(t.fn(g,i,w));if(!isNaN(C)&&C>y){for(;y<C;)l();t=Dn}else t=Vn;break;case"Type":case"Property":var k="Type"===t.type?"types":"properties",O=qn.call(n,k)?n[k][t.name]:null;if(!O||!O.match)throw new Error("Bad syntax reference: "+("Type"===t.type?"<"+t.name+">":"<'"+t.name+"'>"));if(!1!==m&&null!==g&&"Type"===t.type)if("custom-ident"===t.name&&g.type===Fn.Ident||"length"===t.name&&"0"===g.value){null===m&&(m=o(t,p)),t=Vn;break}c={syntax:t.syntax,opts:t.syntax.opts||null!==c&&c.opts||null,prev:c},b={type:2,syntax:t.syntax,token:b.token,prev:b},t=O.match;break;case"Keyword":var T=t.name;if(null!==g){var E=g.value;if(-1!==E.indexOf("\\")&&(E=E.replace(/\\[09].*$/,"")),Yn(E,T)){l(),t=Dn;break}}t=Vn;break;case"AtKeyword":case"Function":if(null!==g&&Yn(g.value,t.name)){l(),t=Dn;break}t=Vn;break;case"Token":if(null!==g&&g.value===t.value){l(),t=Dn;break}t=Vn;break;case"Comma":null!==g&&g.type===Fn.Comma?Hn(b.token)?t=Vn:(l(),t=$n(g)?Vn:Dn):t=Hn(b.token)||$n(g)?Dn:Vn;break;case"String":var A="";for(C=y;C<e.length&&A.length<t.value.length;C++)A+=e[C].value;if(Yn(A,t.value)){for(;y<C;)l();t=Dn}else t=Vn;break;default:throw new Error("Unknown node type: "+t.type)}switch(h,f){case null:console.warn("[csstree-match] BREAK after 15000 iterations"),f="Maximum iteration number exceeded (please fill an issue on https://github.com/csstree/csstree/issues)",b=null;break;case Gn:for(;null!==c;)u();break;default:b=null}return{tokens:e,reason:f,iterations:h,match:b,longestMatch:v}}var Zn=function(e,t,n){var r=Qn(e,t,n||{});if(null===r.match)return r;var i=r.match,o=r.match={syntax:t.syntax||null,match:[]},a=[o];for(i=Kn(i).prev;null!==i;){switch(i.type){case 2:o.match.push(o={syntax:i.syntax,match:[]}),a.push(o);break;case 3:a.pop(),o=a[a.length-1];break;default:o.match.push({syntax:i.syntax||null,token:i.token.value,node:i.token.node})}i=i.prev}return r};function Xn(e){function t(e){return null!==e&&("Type"===e.type||"Property"===e.type||"Keyword"===e.type)}var n=null;return null!==this.matched&&function r(i){if(Array.isArray(i.match)){for(var o=0;o<i.match.length;o++)if(r(i.match[o]))return t(i.syntax)&&n.unshift(i.syntax),!0}else if(i.node===e)return n=t(i.syntax)?[i.syntax]:[],!0;return!1}(this.matched),n}function Jn(e,t,n){var r=Xn.call(e,t);return null!==r&&r.some(n)}var er={getTrace:Xn,isType:function(e,t){return Jn(this,e,(function(e){return"Type"===e.type&&e.name===t}))},isProperty:function(e,t){return Jn(this,e,(function(e){return"Property"===e.type&&e.name===t}))},isKeyword:function(e){return Jn(this,e,(function(e){return"Keyword"===e.type}))}},tr=A;function nr(e){return"node"in e?e.node:nr(e.match[0])}function rr(e){return"node"in e?e.node:rr(e.match[e.match.length-1])}var ir={matchFragments:function(e,t,n,r,i){var o=[];return null!==n.matched&&function n(a){if(null!==a.syntax&&a.syntax.type===r&&a.syntax.name===i){var s=nr(a),l=rr(a);e.syntax.walk(t,(function(e,t,n){if(e===s){var r=new tr;do{if(r.appendData(t.data),t.data===l)break;t=t.next}while(null!==t);o.push({parent:n,nodes:r})}}))}Array.isArray(a.match)&&a.match.forEach(n)}(n.matched),o}},or=A,ar=Object.prototype.hasOwnProperty;function sr(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e&&e>=0}function lr(e){return Boolean(e)&&sr(e.offset)&&sr(e.line)&&sr(e.column)}function ur(e,t){return function(n,r){if(!n||n.constructor!==Object)return r(n,"Type of node should be an Object");for(var i in n){var o=!0;if(!1!==ar.call(n,i)){if("type"===i)n.type!==e&&r(n,"Wrong node type `"+n.type+"`, expected `"+e+"`");else if("loc"===i){if(null===n.loc)continue;if(n.loc&&n.loc.constructor===Object)if("string"!=typeof n.loc.source)i+=".source";else if(lr(n.loc.start)){if(lr(n.loc.end))continue;i+=".end"}else i+=".start";o=!1}else if(t.hasOwnProperty(i)){var a=0;for(o=!1;!o&&a<t[i].length;a++){var s=t[i][a];switch(s){case String:o="string"==typeof n[i];break;case Boolean:o="boolean"==typeof n[i];break;case null:o=null===n[i];break;default:"string"==typeof s?o=n[i]&&n[i].type===s:Array.isArray(s)&&(o=n[i]instanceof or)}}}else r(n,"Unknown field `"+i+"` for "+e+" node type");o||r(n,"Bad value for `"+e+"."+i+"`")}}for(var i in t)ar.call(t,i)&&!1===ar.call(n,i)&&r(n,"Field `"+e+"."+i+"` is missed")}}function cr(e,t){var n=t.structure,r={type:String,loc:!0},i={type:'"'+e+'"'};for(var o in n)if(!1!==ar.call(n,o)){for(var a=[],s=r[o]=Array.isArray(n[o])?n[o].slice():[n[o]],l=0;l<s.length;l++){var u=s[l];if(u===String||u===Boolean)a.push(u.name);else if(null===u)a.push("null");else if("string"==typeof u)a.push("<"+u+">");else{if(!Array.isArray(u))throw new Error("Wrong value `"+u+"` in `"+e+"."+o+"` structure definition");a.push("List")}}i[o]=a.join(" | ")}return{docs:i,check:ur(e,r)}}var dr=function(e){var t={};if(e.node)for(var n in e.node)if(ar.call(e.node,n)){var r=e.node[n];if(!r.structure)throw new Error("Missed `structure` field in `"+n+"` node type definition");t[n]=cr(n,r)}return t},pr=Ee,mr=Ae,hr=Be,fr=en,gr=wn,yr=xe,vr=On,br=function(e,t){return"string"==typeof e?_n(e,null):t.generate(e,An)},Sr=Nn.buildMatchGraph,xr=Zn,wr=er,Cr=ir,kr=dr,Or=Sr("inherit | initial | unset"),Tr=Sr("inherit | initial | unset | <-ms-legacy-expression>");function Er(e,t,n){var r={};for(var i in e)e[i].syntax&&(r[i]=n?e[i].syntax:yr(e[i].syntax,{compact:t}));return r}function Ar(e,t,n){const r={};for(const[i,o]of Object.entries(e))r[i]={prelude:o.prelude&&(n?o.prelude.syntax:yr(o.prelude.syntax,{compact:t})),descriptors:o.descriptors&&Er(o.descriptors,t,n)};return r}function _r(e,t,n){return{matched:e,iterations:n,error:t,getTrace:wr.getTrace,isType:wr.isType,isProperty:wr.isProperty,isKeyword:wr.isKeyword}}function zr(e,t,n,r){var i,o=br(n,e.syntax);return function(e){for(var t=0;t<e.length;t++)if("var("===e[t].value.toLowerCase())return!0;return!1}(o)?_r(null,new Error("Matching for a tree with var() is not supported")):(r&&(i=xr(o,e.valueCommonSyntax,e)),r&&i.match||(i=xr(o,t.match,e)).match?_r(i.match,null,i.iterations):_r(null,new mr(i.reason,t.syntax,n,i),i.iterations))}var Rr=function(e,t,n){if(this.valueCommonSyntax=Or,this.syntax=t,this.generic=!1,this.atrules={},this.properties={},this.types={},this.structure=n||kr(e),e){if(e.types)for(var r in e.types)this.addType_(r,e.types[r]);if(e.generic)for(var r in this.generic=!0,fr)this.addType_(r,fr[r]);if(e.atrules)for(var r in e.atrules)this.addAtrule_(r,e.atrules[r]);if(e.properties)for(var r in e.properties)this.addProperty_(r,e.properties[r])}};Rr.prototype={structure:{},checkStructure:function(e){function t(e,t){r.push({node:e,message:t})}var n=this.structure,r=[];return this.syntax.walk(e,(function(e){n.hasOwnProperty(e.type)?n[e.type].check(e,t):t(e,"Unknown node type `"+e.type+"`")})),!!r.length&&r},createDescriptor:function(e,t,n,r=null){var i={type:t,name:n},o={type:t,name:n,parent:r,syntax:null,match:null};return"function"==typeof e?o.match=Sr(e,i):("string"==typeof e?Object.defineProperty(o,"syntax",{get:function(){return Object.defineProperty(o,"syntax",{value:gr(e)}),o.syntax}}):o.syntax=e,Object.defineProperty(o,"match",{get:function(){return Object.defineProperty(o,"match",{value:Sr(o.syntax,i)}),o.match}})),o},addAtrule_:function(e,t){t&&(this.atrules[e]={type:"Atrule",name:e,prelude:t.prelude?this.createDescriptor(t.prelude,"AtrulePrelude",e):null,descriptors:t.descriptors?Object.keys(t.descriptors).reduce(((n,r)=>(n[r]=this.createDescriptor(t.descriptors[r],"AtruleDescriptor",r,e),n)),{}):null})},addProperty_:function(e,t){t&&(this.properties[e]=this.createDescriptor(t,"Property",e))},addType_:function(e,t){t&&(this.types[e]=this.createDescriptor(t,"Type",e),t===fr["-ms-legacy-expression"]&&(this.valueCommonSyntax=Tr))},checkAtruleName:function(e){if(!this.getAtrule(e))return new pr("Unknown at-rule","@"+e)},checkAtrulePrelude:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var r=this.getAtrule(e);return!r.prelude&&t?new SyntaxError("At-rule `@"+e+"` should not contain a prelude"):r.prelude&&!t?new SyntaxError("At-rule `@"+e+"` should contain a prelude"):void 0},checkAtruleDescriptorName:function(e,t){let n=this.checkAtruleName(e);if(n)return n;var r=this.getAtrule(e),i=hr.keyword(t);return r.descriptors?r.descriptors[i.name]||r.descriptors[i.basename]?void 0:new pr("Unknown at-rule descriptor",t):new SyntaxError("At-rule `@"+e+"` has no known descriptors")},checkPropertyName:function(e){return hr.property(e).custom?new Error("Lexer matching doesn't applicable for custom properties"):this.getProperty(e)?void 0:new pr("Unknown property",e)},matchAtrulePrelude:function(e,t){var n=this.checkAtrulePrelude(e,t);return n?_r(null,n):t?zr(this,this.getAtrule(e).prelude,t,!1):_r(null,null)},matchAtruleDescriptor:function(e,t,n){var r=this.checkAtruleDescriptorName(e,t);if(r)return _r(null,r);var i=this.getAtrule(e),o=hr.keyword(t);return zr(this,i.descriptors[o.name]||i.descriptors[o.basename],n,!1)},matchDeclaration:function(e){return"Declaration"!==e.type?_r(null,new Error("Not a Declaration node")):this.matchProperty(e.property,e.value)},matchProperty:function(e,t){var n=this.checkPropertyName(e);return n?_r(null,n):zr(this,this.getProperty(e),t,!0)},matchType:function(e,t){var n=this.getType(e);return n?zr(this,n,t,!1):_r(null,new pr("Unknown type",e))},match:function(e,t){return"string"==typeof e||e&&e.type?("string"!=typeof e&&e.match||(e=this.createDescriptor(e,"Type","anonymous")),zr(this,e,t,!1)):_r(null,new pr("Bad syntax"))},findValueFragments:function(e,t,n,r){return Cr.matchFragments(this,t,this.matchProperty(e,t),n,r)},findDeclarationValueFragments:function(e,t,n){return Cr.matchFragments(this,e.value,this.matchDeclaration(e),t,n)},findAllFragments:function(e,t,n){var r=[];return this.syntax.walk(e,{visit:"Declaration",enter:function(e){r.push.apply(r,this.findDeclarationValueFragments(e,t,n))}.bind(this)}),r},getAtrule:function(e,t=!0){var n=hr.keyword(e);return(n.vendor&&t?this.atrules[n.name]||this.atrules[n.basename]:this.atrules[n.name])||null},getAtrulePrelude:function(e,t=!0){const n=this.getAtrule(e,t);return n&&n.prelude||null},getAtruleDescriptor:function(e,t){return this.atrules.hasOwnProperty(e)&&this.atrules.declarators&&this.atrules[e].declarators[t]||null},getProperty:function(e,t=!0){var n=hr.property(e);return(n.vendor&&t?this.properties[n.name]||this.properties[n.basename]:this.properties[n.name])||null},getType:function(e){return this.types.hasOwnProperty(e)?this.types[e]:null},validate:function(){function e(r,i,o,a){if(o.hasOwnProperty(i))return o[i];o[i]=!1,null!==a.syntax&&vr(a.syntax,(function(a){if("Type"===a.type||"Property"===a.type){var s="Type"===a.type?r.types:r.properties,l="Type"===a.type?t:n;s.hasOwnProperty(a.name)&&!e(r,a.name,l,s[a.name])||(o[i]=!0)}}),this)}var t={},n={};for(var r in this.types)e(this,r,t,this.types[r]);for(var r in this.properties)e(this,r,n,this.properties[r]);return t=Object.keys(t).filter((function(e){return t[e]})),n=Object.keys(n).filter((function(e){return n[e]})),t.length||n.length?{types:t,properties:n}:null},dump:function(e,t){return{generic:this.generic,types:Er(this.types,!t,e),properties:Er(this.properties,!t,e),atrules:Ar(this.atrules,!t,e)}},toString:function(){return JSON.stringify(this.dump())}};var Lr=Rr,Pr={SyntaxError:nn,parse:wn,generate:xe,walk:On},Br=Me,Wr=at.isBOM;var Mr=function(){this.lines=null,this.columns=null,this.linesAndColumnsComputed=!1};Mr.prototype={setSource:function(e,t,n,r){this.source=e,this.startOffset=void 0===t?0:t,this.startLine=void 0===n?1:n,this.startColumn=void 0===r?1:r,this.linesAndColumnsComputed=!1},ensureLinesAndColumnsComputed:function(){this.linesAndColumnsComputed||(!function(e,t){for(var n=t.length,r=Br(e.lines,n),i=e.startLine,o=Br(e.columns,n),a=e.startColumn,s=t.length>0?Wr(t.charCodeAt(0)):0;s<n;s++){var l=t.charCodeAt(s);r[s]=i,o[s]=a++,10!==l&&13!==l&&12!==l||(13===l&&s+1<n&&10===t.charCodeAt(s+1)&&(r[++s]=i,o[s]=a),i++,a=1)}r[s]=i,o[s]=a,e.lines=r,e.columns=o}(this,this.source),this.linesAndColumnsComputed=!0)},getLocation:function(e,t){return this.ensureLinesAndColumnsComputed(),{source:t,offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]}},getLocationRange:function(e,t,n){return this.ensureLinesAndColumnsComputed(),{source:n,start:{offset:this.startOffset+e,line:this.lines[e],column:this.columns[e]},end:{offset:this.startOffset+t,line:this.lines[t],column:this.columns[t]}}}};var Ur=Mr,Ir=at.TYPE,Nr=Ir.WhiteSpace,qr=Ir.Comment,Dr=Ur,Vr=P,jr=ve,Fr=A,Gr=at,Kr=M,{findWhiteSpaceStart:Yr,cmpStr:Hr}=le,$r=function(e){var t=this.createList(),n=null,r={recognizer:e,space:null,ignoreWS:!1,ignoreWSAfter:!1};for(this.scanner.skipSC();!this.scanner.eof;){switch(this.scanner.tokenType){case qr:this.scanner.next();continue;case Nr:r.ignoreWS?this.scanner.next():r.space=this.WhiteSpace();continue}if(void 0===(n=e.getNode.call(this,r)))break;null!==r.space&&(t.push(r.space),r.space=null),t.push(n),r.ignoreWSAfter?(r.ignoreWSAfter=!1,r.ignoreWS=!0):r.ignoreWS=!1}return t},Qr=function(){},Zr=Kr.TYPE,Xr=Kr.NAME,Jr=Zr.WhiteSpace,ei=Zr.Comment,ti=Zr.Ident,ni=Zr.Function,ri=Zr.Url,ii=Zr.Hash,oi=Zr.Percentage,ai=Zr.Number;function si(e){return function(){return this[e]()}}var li={},ui={},ci={},di="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");ci.encode=function(e){if(0<=e&&e<di.length)return di[e];throw new TypeError("Must be between 0 and 63: "+e)},ci.decode=function(e){return 65<=e&&e<=90?e-65:97<=e&&e<=122?e-97+26:48<=e&&e<=57?e-48+52:43==e?62:47==e?63:-1};var pi=ci;ui.encode=function(e){var t,n="",r=function(e){return e<0?1+(-e<<1):0+(e<<1)}(e);do{t=31&r,(r>>>=5)>0&&(t|=32),n+=pi.encode(t)}while(r>0);return n},ui.decode=function(e,t,n){var r,i,o,a,s=e.length,l=0,u=0;do{if(t>=s)throw new Error("Expected more digits in base 64 VLQ value.");if(-1===(i=pi.decode(e.charCodeAt(t++))))throw new Error("Invalid base64 digit: "+e.charAt(t-1));r=!!(32&i),l+=(i&=31)<<u,u+=5}while(r);n.value=(a=(o=l)>>1,1==(1&o)?-a:a),n.rest=t};var mi={};!function(e){e.getArg=function(e,t,n){if(t in e)return e[t];if(3===arguments.length)return n;throw new Error('"'+t+'" is a required argument.')};var t=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/,n=/^data:.+\,.+$/;function r(e){var n=e.match(t);return n?{scheme:n[1],auth:n[2],host:n[3],port:n[4],path:n[5]}:null}function i(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth&&(t+=e.auth+"@"),e.host&&(t+=e.host),e.port&&(t+=":"+e.port),e.path&&(t+=e.path),t}function o(t){var n=t,o=r(t);if(o){if(!o.path)return t;n=o.path}for(var a,s=e.isAbsolute(n),l=n.split(/\/+/),u=0,c=l.length-1;c>=0;c--)"."===(a=l[c])?l.splice(c,1):".."===a?u++:u>0&&(""===a?(l.splice(c+1,u),u=0):(l.splice(c,2),u--));return""===(n=l.join("/"))&&(n=s?"/":"."),o?(o.path=n,i(o)):n}function a(e,t){""===e&&(e="."),""===t&&(t=".");var a=r(t),s=r(e);if(s&&(e=s.path||"/"),a&&!a.scheme)return s&&(a.scheme=s.scheme),i(a);if(a||t.match(n))return t;if(s&&!s.host&&!s.path)return s.host=t,i(s);var l="/"===t.charAt(0)?t:o(e.replace(/\/+$/,"")+"/"+t);return s?(s.path=l,i(s)):l}e.urlParse=r,e.urlGenerate=i,e.normalize=o,e.join=a,e.isAbsolute=function(e){return"/"===e.charAt(0)||t.test(e)},e.relative=function(e,t){""===e&&(e="."),e=e.replace(/\/$/,"");for(var n=0;0!==t.indexOf(e+"/");){var r=e.lastIndexOf("/");if(r<0)return t;if((e=e.slice(0,r)).match(/^([^\/]+:\/)?\/*$/))return t;++n}return Array(n+1).join("../")+t.substr(e.length+1)};var s=!("__proto__"in Object.create(null));function l(e){return e}function u(e){if(!e)return!1;var t=e.length;if(t<9)return!1;if(95!==e.charCodeAt(t-1)||95!==e.charCodeAt(t-2)||111!==e.charCodeAt(t-3)||116!==e.charCodeAt(t-4)||111!==e.charCodeAt(t-5)||114!==e.charCodeAt(t-6)||112!==e.charCodeAt(t-7)||95!==e.charCodeAt(t-8)||95!==e.charCodeAt(t-9))return!1;for(var n=t-10;n>=0;n--)if(36!==e.charCodeAt(n))return!1;return!0}function c(e,t){return e===t?0:null===e?1:null===t?-1:e>t?1:-1}e.toSetString=s?l:function(e){return u(e)?"$"+e:e},e.fromSetString=s?l:function(e){return u(e)?e.slice(1):e},e.compareByOriginalPositions=function(e,t,n){var r=c(e.source,t.source);return 0!==r||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)||n||0!==(r=e.generatedColumn-t.generatedColumn)||0!==(r=e.generatedLine-t.generatedLine)?r:c(e.name,t.name)},e.compareByGeneratedPositionsDeflated=function(e,t,n){var r=e.generatedLine-t.generatedLine;return 0!==r||0!==(r=e.generatedColumn-t.generatedColumn)||n||0!==(r=c(e.source,t.source))||0!==(r=e.originalLine-t.originalLine)||0!==(r=e.originalColumn-t.originalColumn)?r:c(e.name,t.name)},e.compareByGeneratedPositionsInflated=function(e,t){var n=e.generatedLine-t.generatedLine;return 0!==n||0!==(n=e.generatedColumn-t.generatedColumn)||0!==(n=c(e.source,t.source))||0!==(n=e.originalLine-t.originalLine)||0!==(n=e.originalColumn-t.originalColumn)?n:c(e.name,t.name)},e.parseSourceMapInput=function(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))},e.computeSourceURL=function(e,t,n){if(t=t||"",e&&("/"!==e[e.length-1]&&"/"!==t[0]&&(e+="/"),t=e+t),n){var s=r(n);if(!s)throw new Error("sourceMapURL could not be parsed");if(s.path){var l=s.path.lastIndexOf("/");l>=0&&(s.path=s.path.substring(0,l+1))}t=a(i(s),t)}return o(t)}}(mi);var hi={},fi=mi,gi=Object.prototype.hasOwnProperty,yi="undefined"!=typeof Map;function vi(){this._array=[],this._set=yi?new Map:Object.create(null)}vi.fromArray=function(e,t){for(var n=new vi,r=0,i=e.length;r<i;r++)n.add(e[r],t);return n},vi.prototype.size=function(){return yi?this._set.size:Object.getOwnPropertyNames(this._set).length},vi.prototype.add=function(e,t){var n=yi?e:fi.toSetString(e),r=yi?this.has(e):gi.call(this._set,n),i=this._array.length;r&&!t||this._array.push(e),r||(yi?this._set.set(e,i):this._set[n]=i)},vi.prototype.has=function(e){if(yi)return this._set.has(e);var t=fi.toSetString(e);return gi.call(this._set,t)},vi.prototype.indexOf=function(e){if(yi){var t=this._set.get(e);if(t>=0)return t}else{var n=fi.toSetString(e);if(gi.call(this._set,n))return this._set[n]}throw new Error('"'+e+'" is not in the set.')},vi.prototype.at=function(e){if(e>=0&&e<this._array.length)return this._array[e];throw new Error("No element indexed by "+e)},vi.prototype.toArray=function(){return this._array.slice()},hi.ArraySet=vi;var bi={},Si=mi;function xi(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}xi.prototype.unsortedForEach=function(e,t){this._array.forEach(e,t)},xi.prototype.add=function(e){var t,n,r,i,o,a;t=this._last,n=e,r=t.generatedLine,i=n.generatedLine,o=t.generatedColumn,a=n.generatedColumn,i>r||i==r&&a>=o||Si.compareByGeneratedPositionsInflated(t,n)<=0?(this._last=e,this._array.push(e)):(this._sorted=!1,this._array.push(e))},xi.prototype.toArray=function(){return this._sorted||(this._array.sort(Si.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},bi.MappingList=xi;var wi=ui,Ci=mi,ki=hi.ArraySet,Oi=bi.MappingList;function Ti(e){e||(e={}),this._file=Ci.getArg(e,"file",null),this._sourceRoot=Ci.getArg(e,"sourceRoot",null),this._skipValidation=Ci.getArg(e,"skipValidation",!1),this._sources=new ki,this._names=new ki,this._mappings=new Oi,this._sourcesContents=null}Ti.prototype._version=3,Ti.fromSourceMap=function(e){var t=e.sourceRoot,n=new Ti({file:e.file,sourceRoot:t});return e.eachMapping((function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};null!=e.source&&(r.source=e.source,null!=t&&(r.source=Ci.relative(t,r.source)),r.original={line:e.originalLine,column:e.originalColumn},null!=e.name&&(r.name=e.name)),n.addMapping(r)})),e.sources.forEach((function(r){var i=r;null!==t&&(i=Ci.relative(t,r)),n._sources.has(i)||n._sources.add(i);var o=e.sourceContentFor(r);null!=o&&n.setSourceContent(r,o)})),n},Ti.prototype.addMapping=function(e){var t=Ci.getArg(e,"generated"),n=Ci.getArg(e,"original",null),r=Ci.getArg(e,"source",null),i=Ci.getArg(e,"name",null);this._skipValidation||this._validateMapping(t,n,r,i),null!=r&&(r=String(r),this._sources.has(r)||this._sources.add(r)),null!=i&&(i=String(i),this._names.has(i)||this._names.add(i)),this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:null!=n&&n.line,originalColumn:null!=n&&n.column,source:r,name:i})},Ti.prototype.setSourceContent=function(e,t){var n=e;null!=this._sourceRoot&&(n=Ci.relative(this._sourceRoot,n)),null!=t?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[Ci.toSetString(n)]=t):this._sourcesContents&&(delete this._sourcesContents[Ci.toSetString(n)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},Ti.prototype.applySourceMap=function(e,t,n){var r=t;if(null==t){if(null==e.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');r=e.file}var i=this._sourceRoot;null!=i&&(r=Ci.relative(i,r));var o=new ki,a=new ki;this._mappings.unsortedForEach((function(t){if(t.source===r&&null!=t.originalLine){var s=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});null!=s.source&&(t.source=s.source,null!=n&&(t.source=Ci.join(n,t.source)),null!=i&&(t.source=Ci.relative(i,t.source)),t.originalLine=s.line,t.originalColumn=s.column,null!=s.name&&(t.name=s.name))}var l=t.source;null==l||o.has(l)||o.add(l);var u=t.name;null==u||a.has(u)||a.add(u)}),this),this._sources=o,this._names=a,e.sources.forEach((function(t){var r=e.sourceContentFor(t);null!=r&&(null!=n&&(t=Ci.join(n,t)),null!=i&&(t=Ci.relative(i,t)),this.setSourceContent(t,r))}),this)},Ti.prototype._validateMapping=function(e,t,n,r){if(t&&"number"!=typeof t.line&&"number"!=typeof t.column)throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if((!(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0)||t||n||r)&&!(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n))throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))},Ti.prototype._serializeMappings=function(){for(var e,t,n,r,i=0,o=1,a=0,s=0,l=0,u=0,c="",d=this._mappings.toArray(),p=0,m=d.length;p<m;p++){if(e="",(t=d[p]).generatedLine!==o)for(i=0;t.generatedLine!==o;)e+=";",o++;else if(p>0){if(!Ci.compareByGeneratedPositionsInflated(t,d[p-1]))continue;e+=","}e+=wi.encode(t.generatedColumn-i),i=t.generatedColumn,null!=t.source&&(r=this._sources.indexOf(t.source),e+=wi.encode(r-u),u=r,e+=wi.encode(t.originalLine-1-s),s=t.originalLine-1,e+=wi.encode(t.originalColumn-a),a=t.originalColumn,null!=t.name&&(n=this._names.indexOf(t.name),e+=wi.encode(n-l),l=n)),c+=e}return c},Ti.prototype._generateSourcesContent=function(e,t){return e.map((function(e){if(!this._sourcesContents)return null;null!=t&&(e=Ci.relative(t,e));var n=Ci.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null}),this)},Ti.prototype.toJSON=function(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(e.file=this._file),null!=this._sourceRoot&&(e.sourceRoot=this._sourceRoot),this._sourcesContents&&(e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)),e},Ti.prototype.toString=function(){return JSON.stringify(this.toJSON())},li.SourceMapGenerator=Ti;var Ei=li.SourceMapGenerator,Ai={Atrule:!0,Selector:!0,Declaration:!0},_i=function(e){var t=new Ei,n=1,r=0,i={line:1,column:0},o={line:0,column:0},a=!1,s={line:1,column:0},l={generated:s},u=e.node;e.node=function(e){if(e.loc&&e.loc.start&&Ai.hasOwnProperty(e.type)){var c=e.loc.start.line,d=e.loc.start.column-1;o.line===c&&o.column===d||(o.line=c,o.column=d,i.line=n,i.column=r,a&&(a=!1,i.line===s.line&&i.column===s.column||t.addMapping(l)),a=!0,t.addMapping({source:e.loc.source,original:o,generated:i}))}u.call(this,e),a&&Ai.hasOwnProperty(e.type)&&(s.line=n,s.column=r)};var c=e.chunk;e.chunk=function(e){for(var t=0;t<e.length;t++)10===e.charCodeAt(t)?(n++,r=0):r++;c(e)};var d=e.result;return e.result=function(){return a&&t.addMapping(l),{css:d(),map:t}},e},zi=Object.prototype.hasOwnProperty;function Ri(e,t){var n=e.children,r=null;"function"!=typeof t?n.forEach(this.node,this):n.forEach((function(e){null!==r&&t.call(this,r),this.node(e),r=e}),this)}var Li=A,Pi=Object.prototype.hasOwnProperty,Bi=function(){};function Wi(e){return"function"==typeof e?e:Bi}function Mi(e,t){return function(n,r,i){n.type===t&&e.call(this,n,r,i)}}function Ui(e,t){var n=t.structure,r=[];for(var i in n)if(!1!==Pi.call(n,i)){var o=n[i],a={name:i,type:!1,nullable:!1};Array.isArray(n[i])||(o=[n[i]]);for(var s=0;s<o.length;s++){var l=o[s];null===l?a.nullable=!0:"string"==typeof l?a.type="node":Array.isArray(l)&&(a.type="list")}a.type&&r.push(a)}return r.length?{context:t.walkContext,fields:r}:null}function Ii(e,t){var n=e.fields.slice(),r=e.context,i="string"==typeof r;return t&&n.reverse(),function(e,o,a,s){var l;i&&(l=o[r],o[r]=e);for(var u=0;u<n.length;u++){var c=n[u],d=e[c.name];if(!c.nullable||d)if("list"===c.type){if(t?d.reduceRight(s,!1):d.reduce(s,!1))return!0}else if(a(d))return!0}i&&(o[r]=l)}}function Ni(e){return{Atrule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Rule:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block},Declaration:{StyleSheet:e.StyleSheet,Atrule:e.Atrule,Rule:e.Rule,Block:e.Block,DeclarationList:e.DeclarationList}}}var qi=A;const Di=Object.prototype.hasOwnProperty,Vi={generic:!0,types:Ki,atrules:{prelude:Yi,descriptors:Yi},properties:Ki,parseContext:function(e,t){return Object.assign(e,t)},scope:function e(t,n){for(const r in n)Di.call(n,r)&&(ji(t[r])?e(t[r],Fi(n[r])):t[r]=Fi(n[r]));return t},atrule:["parse"],pseudo:["parse"],node:["name","structure","parse","generate","walkContext"]};function ji(e){return e&&e.constructor===Object}function Fi(e){return ji(e)?Object.assign({},e):e}function Gi(e,t){return"string"==typeof t&&/^\s*\|/.test(t)?"string"==typeof e?e+t:t.replace(/^\s*\|\s*/,""):t||null}function Ki(e,t){if("string"==typeof t)return Gi(e,t);const n=Object.assign({},e);for(let r in t)Di.call(t,r)&&(n[r]=Gi(Di.call(e,r)?e[r]:void 0,t[r]));return n}function Yi(e,t){const n=Ki(e,t);return!ji(n)||Object.keys(n).length?n:null}function Hi(e,t,n){for(const r in n)if(!1!==Di.call(n,r))if(!0===n[r])r in t&&Di.call(t,r)&&(e[r]=Fi(t[r]));else if(n[r])if("function"==typeof n[r]){const i=n[r];e[r]=i({},e[r]),e[r]=i(e[r]||{},t[r])}else if(ji(n[r])){const i={};for(let t in e[r])i[t]=Hi({},e[r][t],n[r]);for(let e in t[r])i[e]=Hi(i[e]||{},t[r][e],n[r]);e[r]=i}else if(Array.isArray(n[r])){const i={},o=n[r].reduce((function(e,t){return e[t]=!0,e}),{});for(const[t,n]of Object.entries(e[r]||{}))i[t]={},n&&Hi(i[t],n,o);for(const e in t[r])Di.call(t[r],e)&&(i[e]||(i[e]={}),t[r]&&t[r][e]&&Hi(i[e],t[r][e],o));e[r]=i}return e}var $i=A,Qi=P,Zi=ve,Xi=Lr,Ji=Pr,eo=at,to=function(e){var t={scanner:new jr,locationMap:new Dr,filename:"<unknown>",needPositions:!1,onParseError:Qr,onParseErrorThrow:!1,parseAtrulePrelude:!0,parseRulePrelude:!0,parseValue:!0,parseCustomProperty:!1,readSequence:$r,createList:function(){return new Fr},createSingleNodeList:function(e){return(new Fr).appendData(e)},getFirstListNode:function(e){return e&&e.first()},getLastListNode:function(e){return e.last()},parseWithFallback:function(e,t){var n=this.scanner.tokenIndex;try{return e.call(this)}catch(e){if(this.onParseErrorThrow)throw e;var r=t.call(this,n);return this.onParseErrorThrow=!0,this.onParseError(e,r),this.onParseErrorThrow=!1,r}},lookupNonWSType:function(e){do{var t=this.scanner.lookupType(e++);if(t!==Jr)return t}while(0!==t);return 0},eat:function(e){if(this.scanner.tokenType!==e){var t=this.scanner.tokenStart,n=Xr[e]+" is expected";switch(e){case ti:this.scanner.tokenType===ni||this.scanner.tokenType===ri?(t=this.scanner.tokenEnd-1,n="Identifier is expected but function found"):n="Identifier is expected";break;case ii:this.scanner.isDelim(35)&&(this.scanner.next(),t++,n="Name is expected");break;case oi:this.scanner.tokenType===ai&&(t=this.scanner.tokenEnd,n="Percent sign is expected");break;default:this.scanner.source.charCodeAt(this.scanner.tokenStart)===e&&(t+=1)}this.error(n,t)}this.scanner.next()},consume:function(e){var t=this.scanner.getTokenValue();return this.eat(e),t},consumeFunctionName:function(){var e=this.scanner.source.substring(this.scanner.tokenStart,this.scanner.tokenEnd-1);return this.eat(ni),e},getLocation:function(e,t){return this.needPositions?this.locationMap.getLocationRange(e,t,this.filename):null},getLocationFromList:function(e){if(this.needPositions){var t=this.getFirstListNode(e),n=this.getLastListNode(e);return this.locationMap.getLocationRange(null!==t?t.loc.start.offset-this.locationMap.startOffset:this.scanner.tokenStart,null!==n?n.loc.end.offset-this.locationMap.startOffset:this.scanner.tokenStart,this.filename)}return null},error:function(e,t){var n=void 0!==t&&t<this.scanner.source.length?this.locationMap.getLocation(t):this.scanner.eof?this.locationMap.getLocation(Yr(this.scanner.source,this.scanner.source.length-1)):this.locationMap.getLocation(this.scanner.tokenStart);throw new Vr(e||"Unexpected input",this.scanner.source,n.offset,n.line,n.column)}};for(var n in e=function(e){var t={context:{},scope:{},atrule:{},pseudo:{}};if(e.parseContext)for(var n in e.parseContext)switch(typeof e.parseContext[n]){case"function":t.context[n]=e.parseContext[n];break;case"string":t.context[n]=si(e.parseContext[n])}if(e.scope)for(var n in e.scope)t.scope[n]=e.scope[n];if(e.atrule)for(var n in e.atrule){var r=e.atrule[n];r.parse&&(t.atrule[n]=r.parse)}if(e.pseudo)for(var n in e.pseudo){var i=e.pseudo[n];i.parse&&(t.pseudo[n]=i.parse)}if(e.node)for(var n in e.node)t[n]=e.node[n].parse;return t}(e||{}),e)t[n]=e[n];return function(e,n){var r,i=(n=n||{}).context||"default",o=n.onComment;if(Gr(e,t.scanner),t.locationMap.setSource(e,n.offset,n.line,n.column),t.filename=n.filename||"<unknown>",t.needPositions=Boolean(n.positions),t.onParseError="function"==typeof n.onParseError?n.onParseError:Qr,t.onParseErrorThrow=!1,t.parseAtrulePrelude=!("parseAtrulePrelude"in n)||Boolean(n.parseAtrulePrelude),t.parseRulePrelude=!("parseRulePrelude"in n)||Boolean(n.parseRulePrelude),t.parseValue=!("parseValue"in n)||Boolean(n.parseValue),t.parseCustomProperty="parseCustomProperty"in n&&Boolean(n.parseCustomProperty),!t.context.hasOwnProperty(i))throw new Error("Unknown context `"+i+"`");return"function"==typeof o&&t.scanner.forEachToken(((n,r,i)=>{if(n===ei){const n=t.getLocation(r,i),a=Hr(e,i-2,i,"*/")?e.slice(r+2,i-2):e.slice(r+2,i);o(a,n)}})),r=t.context[i].call(t,n),t.scanner.eof||t.error(),r}},no=function(e){function t(e){if(!zi.call(n,e.type))throw new Error("Unknown node type: "+e.type);n[e.type].call(this,e)}var n={};if(e.node)for(var r in e.node)n[r]=e.node[r].generate;return function(e,n){var r="",i={children:Ri,node:t,chunk:function(e){r+=e},result:function(){return r}};return n&&("function"==typeof n.decorator&&(i=n.decorator(i)),n.sourceMap&&(i=_i(i))),i.node(e),i.result()}},ro=function(e){return{fromPlainObject:function(t){return e(t,{enter:function(e){e.children&&e.children instanceof Li==!1&&(e.children=(new Li).fromArray(e.children))}}),t},toPlainObject:function(t){return e(t,{leave:function(e){e.children&&e.children instanceof Li&&(e.children=e.children.toArray())}}),t}}},io=function(e){var t=function(e){var t={};for(var n in e.node)if(Pi.call(e.node,n)){var r=e.node[n];if(!r.structure)throw new Error("Missed `structure` field in `"+n+"` node type definition");t[n]=Ui(0,r)}return t}(e),n={},r={},i=Symbol("break-walk"),o=Symbol("skip-node");for(var a in t)Pi.call(t,a)&&null!==t[a]&&(n[a]=Ii(t[a],!1),r[a]=Ii(t[a],!0));var s=Ni(n),l=Ni(r),u=function(e,a){function u(e,t,n){var r=d.call(h,e,t,n);return r===i||r!==o&&(!(!m.hasOwnProperty(e.type)||!m[e.type](e,h,u,c))||p.call(h,e,t,n)===i)}var c=(e,t,n,r)=>e||u(t,n,r),d=Bi,p=Bi,m=n,h={break:i,skip:o,root:e,stylesheet:null,atrule:null,atrulePrelude:null,rule:null,selector:null,block:null,declaration:null,function:null};if("function"==typeof a)d=a;else if(a&&(d=Wi(a.enter),p=Wi(a.leave),a.reverse&&(m=r),a.visit)){if(s.hasOwnProperty(a.visit))m=a.reverse?l[a.visit]:s[a.visit];else if(!t.hasOwnProperty(a.visit))throw new Error("Bad value `"+a.visit+"` for `visit` option (should be: "+Object.keys(t).join(", ")+")");d=Mi(d,a.visit),p=Mi(p,a.visit)}if(d===Bi&&p===Bi)throw new Error("Neither `enter` nor `leave` walker handler is set or both aren't a function");u(e)};return u.break=i,u.skip=o,u.find=function(e,t){var n=null;return u(e,(function(e,r,o){if(t.call(this,e,r,o))return n=e,i})),n},u.findLast=function(e,t){var n=null;return u(e,{reverse:!0,enter:function(e,r,o){if(t.call(this,e,r,o))return n=e,i}}),n},u.findAll=function(e,t){var n=[];return u(e,(function(e,r,i){t.call(this,e,r,i)&&n.push(e)})),n},u},oo=function e(t){var n={};for(var r in t){var i=t[r];i&&(Array.isArray(i)||i instanceof qi?i=i.map(e):i.constructor===Object&&(i=e(i))),n[r]=i}return n},ao=Be,so=(e,t)=>Hi(e,t,Vi);function lo(e){var t=to(e),n=io(e),r=no(e),i=ro(n),o={List:$i,SyntaxError:Qi,TokenStream:Zi,Lexer:Xi,vendorPrefix:ao.vendorPrefix,keyword:ao.keyword,property:ao.property,isCustomProperty:ao.isCustomProperty,definitionSyntax:Ji,lexer:null,createLexer:function(e){return new Xi(e,o,o.lexer.structure)},tokenize:eo,parse:t,walk:n,generate:r,find:n.find,findLast:n.findLast,findAll:n.findAll,clone:oo,fromPlainObject:i.fromPlainObject,toPlainObject:i.toPlainObject,createSyntax:function(e){return lo(so({},e))},fork:function(t){var n=so({},e);return lo("function"==typeof t?t(n,Object.assign):so(n,t))}};return o.lexer=new Xi({generic:!0,types:e.types,atrules:e.atrules,properties:e.properties,node:e.node},o),o}w.create=function(e){return lo(so({},e))};const uo={"@charset":{syntax:'@charset "<charset>";',groups:["CSS Charsets"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@charset"},"@counter-style":{syntax:"@counter-style <counter-style-name> {\n [ system: <counter-system>; ] ||\n [ symbols: <counter-symbols>; ] ||\n [ additive-symbols: <additive-symbols>; ] ||\n [ negative: <negative-symbol>; ] ||\n [ prefix: <prefix>; ] ||\n [ suffix: <suffix>; ] ||\n [ range: <range>; ] ||\n [ pad: <padding>; ] ||\n [ speak-as: <speak-as>; ] ||\n [ fallback: <counter-style-name>; ]\n}",interfaces:["CSSCounterStyleRule"],groups:["CSS Counter Styles"],descriptors:{"additive-symbols":{syntax:"[ <integer> && <symbol> ]#",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},fallback:{syntax:"<counter-style-name>",media:"all",initial:"decimal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},negative:{syntax:"<symbol> <symbol>?",media:"all",initial:'"-" hyphen-minus',percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},pad:{syntax:"<integer> && <symbol>",media:"all",initial:'0 ""',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},prefix:{syntax:"<symbol>",media:"all",initial:'""',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},range:{syntax:"[ [ <integer> | infinite ]{2} ]# | auto",media:"all",initial:"auto",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"speak-as":{syntax:"auto | bullets | numbers | words | spell-out | <counter-style-name>",media:"all",initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},suffix:{syntax:"<symbol>",media:"all",initial:'". "',percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},symbols:{syntax:"<symbol>+",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},system:{syntax:"cyclic | numeric | alphabetic | symbolic | additive | [ fixed <integer>? ] | [ extends <counter-style-name> ]",media:"all",initial:"symbolic",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@counter-style"},"@document":{syntax:"@document [ <url> | url-prefix(<string>) | domain(<string>) | media-document(<string>) | regexp(<string>) ]# {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule"],groups:["CSS Conditional Rules"],status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@document"},"@font-face":{syntax:"@font-face {\n [ font-family: <family-name>; ] ||\n [ src: <src>; ] ||\n [ unicode-range: <unicode-range>; ] ||\n [ font-variant: <font-variant>; ] ||\n [ font-feature-settings: <font-feature-settings>; ] ||\n [ font-variation-settings: <font-variation-settings>; ] ||\n [ font-stretch: <font-stretch>; ] ||\n [ font-weight: <font-weight>; ] ||\n [ font-style: <font-style>; ]\n}",interfaces:["CSSFontFaceRule"],groups:["CSS Fonts"],descriptors:{"font-display":{syntax:"[ auto | block | swap | fallback | optional ]",media:"visual",percentages:"no",initial:"auto",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"font-family":{syntax:"<family-name>",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-feature-settings":{syntax:"normal | <feature-tag-value>#",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"font-variation-settings":{syntax:"normal | [ <string> <number> ]#",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"font-stretch":{syntax:"<font-stretch-absolute>{1,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-style":{syntax:"normal | italic | oblique <angle>{0,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-weight":{syntax:"<font-weight-absolute>{1,2}",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"font-variant":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic(<feature-value-name>) || historical-forms || styleset(<feature-value-name>#) || character-variant(<feature-value-name>#) || swash(<feature-value-name>) || ornaments(<feature-value-name>) || annotation(<feature-value-name>) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"all",initial:"normal",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},src:{syntax:"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},"unicode-range":{syntax:"<unicode-range>#",media:"all",initial:"U+0-10FFFF",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@font-face"},"@font-feature-values":{syntax:"@font-feature-values <family-name># {\n <feature-value-block-list>\n}",interfaces:["CSSFontFeatureValuesRule"],groups:["CSS Fonts"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@font-feature-values"},"@import":{syntax:"@import [ <string> | <url> ] [ <media-query-list> ]?;",groups:["Media Queries"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@import"},"@keyframes":{syntax:"@keyframes <keyframes-name> {\n <keyframe-block-list>\n}",interfaces:["CSSKeyframeRule","CSSKeyframesRule"],groups:["CSS Animations"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@keyframes"},"@media":{syntax:"@media <media-query-list> {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule","CSSMediaRule","CSSCustomMediaRule"],groups:["CSS Conditional Rules","Media Queries"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@media"},"@namespace":{syntax:"@namespace <namespace-prefix>? [ <string> | <url> ];",groups:["CSS Namespaces"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@namespace"},"@page":{syntax:"@page <page-selector-list> {\n <page-body>\n}",interfaces:["CSSPageRule"],groups:["CSS Pages"],descriptors:{bleed:{syntax:"auto | <length>",media:["visual","paged"],initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},marks:{syntax:"none | [ crop || cross ]",media:["visual","paged"],initial:"none",percentages:"no",computed:"asSpecified",order:"orderOfAppearance",status:"standard"},size:{syntax:"<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]",media:["visual","paged"],initial:"auto",percentages:"no",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"orderOfAppearance",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@page"},"@property":{syntax:"@property <custom-property-name> {\n <declaration-list>\n}",interfaces:["CSS","CSSPropertyRule"],groups:["CSS Houdini"],descriptors:{syntax:{syntax:"<string>",media:"all",percentages:"no",initial:"n/a (required)",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},inherits:{syntax:"true | false",media:"all",percentages:"no",initial:"auto",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"initial-value":{syntax:"<string>",media:"all",initial:"n/a (required)",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"experimental"}},status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@property"},"@supports":{syntax:"@supports <supports-condition> {\n <group-rule-body>\n}",interfaces:["CSSGroupingRule","CSSConditionRule","CSSSupportsRule"],groups:["CSS Conditional Rules"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@supports"},"@viewport":{syntax:"@viewport {\n <group-rule-body>\n}",interfaces:["CSSViewportRule"],groups:["CSS Device Adaptation"],descriptors:{height:{syntax:"<viewport-length>{1,2}",media:["visual","continuous"],initial:["min-height","max-height"],percentages:["min-height","max-height"],computed:["min-height","max-height"],order:"orderOfAppearance",status:"standard"},"max-height":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToHeightOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"max-width":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToWidthOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"max-zoom":{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"},"min-height":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToHeightOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"min-width":{syntax:"<viewport-length>",media:["visual","continuous"],initial:"auto",percentages:"referToWidthOfInitialViewport",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard"},"min-zoom":{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"},orientation:{syntax:"auto | portrait | landscape",media:["visual","continuous"],initial:"auto",percentages:"referToSizeOfBoundingBox",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"user-zoom":{syntax:"zoom | fixed",media:["visual","continuous"],initial:"zoom",percentages:"referToSizeOfBoundingBox",computed:"asSpecified",order:"uniqueOrder",status:"standard"},"viewport-fit":{syntax:"auto | contain | cover",media:["visual","continuous"],initial:"auto",percentages:"no",computed:"asSpecified",order:"uniqueOrder",status:"standard"},width:{syntax:"<viewport-length>{1,2}",media:["visual","continuous"],initial:["min-width","max-width"],percentages:["min-width","max-width"],computed:["min-width","max-width"],order:"orderOfAppearance",status:"standard"},zoom:{syntax:"auto | <number> | <percentage>",media:["visual","continuous"],initial:"auto",percentages:"the zoom factor itself",computed:"autoNonNegativeOrPercentage",order:"uniqueOrder",status:"standard"}},status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/@viewport"}},co={"--*":{syntax:"<declaration-value>",media:"all",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Variables"],initial:"seeProse",appliesto:"allElements",computed:"asSpecifiedWithVarsSubstituted",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/--*"},"-ms-accelerator":{syntax:"false | true",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"false",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator"},"-ms-block-progression":{syntax:"tb | rl | bt | lr",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"tb",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression"},"-ms-content-zoom-chaining":{syntax:"none | chained",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining"},"-ms-content-zooming":{syntax:"none | zoom",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"zoomForTheTopLevelNoneForTheRest",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming"},"-ms-content-zoom-limit":{syntax:"<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],groups:["Microsoft Extensions"],initial:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-content-zoom-limit-max","-ms-content-zoom-limit-min"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit"},"-ms-content-zoom-limit-max":{syntax:"<percentage>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"maxZoomFactor",groups:["Microsoft Extensions"],initial:"400%",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max"},"-ms-content-zoom-limit-min":{syntax:"<percentage>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"minZoomFactor",groups:["Microsoft Extensions"],initial:"100%",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min"},"-ms-content-zoom-snap":{syntax:"<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-content-zoom-snap-type","-ms-content-zoom-snap-points"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap"},"-ms-content-zoom-snap-points":{syntax:"snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0%, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points"},"-ms-content-zoom-snap-type":{syntax:"none | proximity | mandatory",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type"},"-ms-filter":{syntax:"<string>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:'""',appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-filter"},"-ms-flow-from":{syntax:"[ none | <custom-ident> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from"},"-ms-flow-into":{syntax:"[ none | <custom-ident> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"iframeElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into"},"-ms-grid-columns":{syntax:"none | <track-list> | <auto-track-list>",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-columns"},"-ms-grid-rows":{syntax:"none | <track-list> | <auto-track-list>",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-grid-rows"},"-ms-high-contrast-adjust":{syntax:"auto | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust"},"-ms-hyphenate-limit-chars":{syntax:"auto | <integer>{1,3}",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars"},"-ms-hyphenate-limit-lines":{syntax:"no-limit | <integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"no-limit",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines"},"-ms-hyphenate-limit-zone":{syntax:"<percentage> | <length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"referToLineBoxWidth",groups:["Microsoft Extensions"],initial:"0",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone"},"-ms-ime-align":{syntax:"auto | after",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align"},"-ms-overflow-style":{syntax:"auto | none | scrollbar | -ms-autohiding-scrollbar",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style"},"-ms-scrollbar-3dlight-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color"},"-ms-scrollbar-arrow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ButtonText",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color"},"-ms-scrollbar-base-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color"},"-ms-scrollbar-darkshadow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDDarkShadow",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color"},"-ms-scrollbar-face-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDFace",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color"},"-ms-scrollbar-highlight-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDHighlight",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color"},"-ms-scrollbar-shadow-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"ThreeDDarkShadow",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color"},"-ms-scrollbar-track-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"Scrollbar",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color"},"-ms-scroll-chaining":{syntax:"chained | none",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"chained",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining"},"-ms-scroll-limit":{syntax:"<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-limit-x-min","-ms-scroll-limit-y-min","-ms-scroll-limit-x-max","-ms-scroll-limit-y-max"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit"},"-ms-scroll-limit-x-max":{syntax:"auto | <length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max"},"-ms-scroll-limit-x-min":{syntax:"<length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min"},"-ms-scroll-limit-y-max":{syntax:"auto | <length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max"},"-ms-scroll-limit-y-min":{syntax:"<length>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min"},"-ms-scroll-rails":{syntax:"none | railed",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"railed",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails"},"-ms-scroll-snap-points-x":{syntax:"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0px, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x"},"-ms-scroll-snap-points-y":{syntax:"snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"snapInterval(0px, 100%)",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y"},"-ms-scroll-snap-type":{syntax:"none | proximity | mandatory",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type"},"-ms-scroll-snap-x":{syntax:"<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-snap-type","-ms-scroll-snap-points-x"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x"},"-ms-scroll-snap-y":{syntax:"<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],appliesto:"nonReplacedBlockAndInlineBlockElements",computed:["-ms-scroll-snap-type","-ms-scroll-snap-points-y"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y"},"-ms-scroll-translation":{syntax:"none | vertical-to-horizontal",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation"},"-ms-text-autospace":{syntax:"none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace"},"-ms-touch-select":{syntax:"grippers | none",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"grippers",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select"},"-ms-user-select":{syntax:"none | element | text",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"text",appliesto:"nonReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-user-select"},"-ms-wrap-flow":{syntax:"auto | both | start | end | maximum | clear",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow"},"-ms-wrap-margin":{syntax:"<length>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"0",appliesto:"exclusionElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin"},"-ms-wrap-through":{syntax:"wrap | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Microsoft Extensions"],initial:"wrap",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through"},"-moz-appearance":{syntax:"none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"noneButOverriddenInUserAgentCSS",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-moz-binding":{syntax:"<url> | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElementsExceptGeneratedContentOrPseudoElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-binding"},"-moz-border-bottom-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-bottom-colors"},"-moz-border-left-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-left-colors"},"-moz-border-right-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-right-colors"},"-moz-border-top-colors":{syntax:"<color>+ | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-border-top-colors"},"-moz-context-properties":{syntax:"none | [ fill | fill-opacity | stroke | stroke-opacity ]#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElementsThatCanReferenceImages",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties"},"-moz-float-edge":{syntax:"border-box | content-box | margin-box | padding-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"content-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-float-edge"},"-moz-force-broken-image-icon":{syntax:"<integer [0,1]>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"0",appliesto:"images",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-force-broken-image-icon"},"-moz-image-region":{syntax:"<shape> | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"auto",appliesto:"xulImageElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-image-region"},"-moz-orient":{syntax:"inline | block | horizontal | vertical",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"inline",appliesto:"anyElementEffectOnProgressAndMeter",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-orient"},"-moz-outline-radius":{syntax:"<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?",media:"visual",inherited:!1,animationType:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],percentages:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],groups:["Mozilla Extensions"],initial:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],appliesto:"allElements",computed:["-moz-outline-radius-topleft","-moz-outline-radius-topright","-moz-outline-radius-bottomright","-moz-outline-radius-bottomleft"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius"},"-moz-outline-radius-bottomleft":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft"},"-moz-outline-radius-bottomright":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright"},"-moz-outline-radius-topleft":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft"},"-moz-outline-radius-topright":{syntax:"<outline-radius>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["Mozilla Extensions"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright"},"-moz-stack-sizing":{syntax:"ignore | stretch-to-fit",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"stretch-to-fit",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-stack-sizing"},"-moz-text-blink":{syntax:"none | blink",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-text-blink"},"-moz-user-focus":{syntax:"ignore | normal | select-after | select-before | select-menu | select-same | select-all | none",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-focus"},"-moz-user-input":{syntax:"auto | none | enabled | disabled",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-input"},"-moz-user-modify":{syntax:"read-only | read-write | write-only",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"read-only",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-user-modify"},"-moz-window-dragging":{syntax:"drag | no-drag",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"drag",appliesto:"allElementsCreatingNativeWindows",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-window-dragging"},"-moz-window-shadow":{syntax:"default | menu | tooltip | sheet | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"default",appliesto:"allElementsCreatingNativeWindows",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-moz-window-shadow"},"-webkit-appearance":{syntax:"none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"noneButOverriddenInUserAgentCSS",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"-webkit-border-before":{syntax:"<'border-width'> || <'border-style'> || <'color'>",media:"visual",inherited:!0,animationType:"discrete",percentages:["-webkit-border-before-width"],groups:["WebKit Extensions"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","color"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before"},"-webkit-border-before-color":{syntax:"<'color'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard"},"-webkit-border-before-style":{syntax:"<'border-style'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard"},"-webkit-border-before-width":{syntax:"<'border-width'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["WebKit Extensions"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"nonstandard"},"-webkit-box-reflect":{syntax:"[ above | below | right | left ]? <length>? <image>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect"},"-webkit-line-clamp":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["WebKit Extensions","CSS Overflow"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp"},"-webkit-mask":{syntax:"[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],appliesto:"allElements",computed:["-webkit-mask-image","-webkit-mask-repeat","-webkit-mask-attachment","-webkit-mask-position","-webkit-mask-origin","-webkit-mask-clip"],order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask"},"-webkit-mask-attachment":{syntax:"<attachment>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"scroll",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment"},"-webkit-mask-clip":{syntax:"[ <box> | border | padding | content | text ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"border",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"-webkit-mask-composite":{syntax:"<composite-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"source-over",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite"},"-webkit-mask-image":{syntax:"<mask-reference>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"none",appliesto:"allElements",computed:"absoluteURIOrNone",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"-webkit-mask-origin":{syntax:"[ <box> | border | padding | content ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"padding",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"-webkit-mask-position":{syntax:"<position>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0% 0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"-webkit-mask-position-x":{syntax:"[ <length-percentage> | left | center | right ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x"},"-webkit-mask-position-y":{syntax:"[ <length-percentage> | top | center | bottom ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfElement",groups:["WebKit Extensions"],initial:"0%",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y"},"-webkit-mask-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"-webkit-mask-repeat-x":{syntax:"repeat | no-repeat | space | round",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x"},"-webkit-mask-repeat-y":{syntax:"repeat | no-repeat | space | round",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"repeat",appliesto:"allElements",computed:"absoluteLengthOrPercentage",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y"},"-webkit-mask-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"relativeToBackgroundPositioningArea",groups:["WebKit Extensions"],initial:"auto auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"-webkit-overflow-scrolling":{syntax:"auto | touch",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"orderOfAppearance",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling"},"-webkit-tap-highlight-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"black",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color"},"-webkit-text-fill-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color"},"-webkit-text-stroke":{syntax:"<length> || <color>",media:"visual",inherited:!0,animationType:["-webkit-text-stroke-width","-webkit-text-stroke-color"],percentages:"no",groups:["WebKit Extensions"],initial:["-webkit-text-stroke-width","-webkit-text-stroke-color"],appliesto:"allElements",computed:["-webkit-text-stroke-width","-webkit-text-stroke-color"],order:"canonicalOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke"},"-webkit-text-stroke-color":{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["WebKit Extensions"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color"},"-webkit-text-stroke-width":{syntax:"<length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"0",appliesto:"allElements",computed:"absoluteLength",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width"},"-webkit-touch-callout":{syntax:"default | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"default",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout"},"-webkit-user-modify":{syntax:"read-only | read-write | read-write-plaintext-only",media:"interactive",inherited:!0,animationType:"discrete",percentages:"no",groups:["WebKit Extensions"],initial:"read-only",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard"},"align-content":{syntax:"normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multilineFlexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-content"},"align-items":{syntax:"normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-items"},"align-self":{syntax:"auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"auto",appliesto:"flexItemsGridItemsAndAbsolutelyPositionedBoxes",computed:"autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-self"},"align-tracks":{syntax:"[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"normal",appliesto:"gridContainersWithMasonryLayoutInTheirBlockAxis",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/align-tracks"},all:{syntax:"initial | inherit | unset | revert",media:"noPracticalMedia",inherited:!1,animationType:"eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection",percentages:"no",groups:["CSS Miscellaneous"],initial:"noPracticalInitialValue",appliesto:"allElements",computed:"asSpecifiedAppliesToEachProperty",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/all"},animation:{syntax:"<single-animation>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:["animation-name","animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state"],appliesto:"allElementsAndPseudos",computed:["animation-name","animation-duration","animation-timing-function","animation-delay","animation-direction","animation-iteration-count","animation-fill-mode","animation-play-state"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation"},"animation-delay":{syntax:"<time>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-delay"},"animation-direction":{syntax:"<single-animation-direction>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"normal",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-direction"},"animation-duration":{syntax:"<time>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-duration"},"animation-fill-mode":{syntax:"<single-animation-fill-mode>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"none",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode"},"animation-iteration-count":{syntax:"<single-animation-iteration-count>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"1",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count"},"animation-name":{syntax:"[ none | <keyframes-name> ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"none",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-name"},"animation-play-state":{syntax:"<single-animation-play-state>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"running",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-play-state"},"animation-timing-function":{syntax:"<timing-function>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Animations"],initial:"ease",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/animation-timing-function"},appearance:{syntax:"none | auto | textfield | menulist-button | <compat-auto>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/appearance"},"aspect-ratio":{syntax:"auto | <ratio>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes",computed:"asSpecified",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/aspect-ratio"},azimuth:{syntax:"<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards",media:"aural",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Speech"],initial:"center",appliesto:"allElements",computed:"normalizedAngle",order:"orderOfAppearance",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/azimuth"},"backdrop-filter":{syntax:"none | <filter-function-list>",media:"visual",inherited:!1,animationType:"filterList",percentages:"no",groups:["Filter Effects"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/backdrop-filter"},"backface-visibility":{syntax:"visible | hidden",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"visible",appliesto:"transformableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/backface-visibility"},background:{syntax:"[ <bg-layer> , ]* <final-bg-layer>",media:"visual",inherited:!1,animationType:["background-color","background-image","background-clip","background-position","background-size","background-repeat","background-attachment"],percentages:["background-position","background-size"],groups:["CSS Backgrounds and Borders"],initial:["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],appliesto:"allElements",computed:["background-image","background-position","background-size","background-repeat","background-origin","background-clip","background-attachment","background-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background"},"background-attachment":{syntax:"<attachment>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"scroll",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-attachment"},"background-blend-mode":{syntax:"<blend-mode>#",media:"none",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"normal",appliesto:"allElementsSVGContainerGraphicsAndGraphicsReferencingElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-blend-mode"},"background-clip":{syntax:"<box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"border-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-clip"},"background-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"transparent",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-color"},"background-image":{syntax:"<bg-image>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-image"},"background-origin":{syntax:"<box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"padding-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-origin"},"background-position":{syntax:"<bg-position>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize",groups:["CSS Backgrounds and Borders"],initial:"0% 0%",appliesto:"allElements",computed:"listEachItemTwoKeywordsOriginOffsets",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position"},"background-position-x":{syntax:"[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToWidthOfBackgroundPositioningAreaMinusBackgroundImageHeight",groups:["CSS Backgrounds and Borders"],initial:"left",appliesto:"allElements",computed:"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position-x"},"background-position-y":{syntax:"[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight",groups:["CSS Backgrounds and Borders"],initial:"top",appliesto:"allElements",computed:"listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-position-y"},"background-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"repeat",appliesto:"allElements",computed:"listEachItemHasTwoKeywordsOnePerDimension",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-repeat"},"background-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"relativeToBackgroundPositioningArea",groups:["CSS Backgrounds and Borders"],initial:"auto auto",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/background-size"},"block-overflow":{syntax:"clip | ellipsis | <string>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"clip",appliesto:"blockContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"block-size":{syntax:"<'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"sameAsWidthAndHeight",computed:"sameAsWidthAndHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/block-size"},border:{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-color","border-style","border-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-width","border-style","border-color"],appliesto:"allElements",computed:["border-width","border-style","border-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border"},"border-block":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block"},"border-block-color":{syntax:"<'border-top-color'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-color"},"border-block-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-style"},"border-block-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-width"},"border-block-end":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-block-end-color","border-block-end-style","border-block-end-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end"},"border-block-end-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-color"},"border-block-end-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-style"},"border-block-end-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-end-width"},"border-block-start":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-block-start-color","border-block-start-style","border-block-start-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-block-start-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start"},"border-block-start-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-color"},"border-block-start-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-style"},"border-block-start-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-block-start-width"},"border-bottom":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-bottom-color","border-bottom-style","border-bottom-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-bottom-width","border-bottom-style","border-bottom-color"],appliesto:"allElements",computed:["border-bottom-width","border-bottom-style","border-bottom-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom"},"border-bottom-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-color"},"border-bottom-left-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius"},"border-bottom-right-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius"},"border-bottom-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-style"},"border-bottom-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderBottomStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-bottom-width"},"border-collapse":{syntax:"collapse | separate",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"separate",appliesto:"tableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-collapse"},"border-color":{syntax:"<color>{1,4}",media:"visual",inherited:!1,animationType:["border-bottom-color","border-left-color","border-right-color","border-top-color"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-color","border-right-color","border-bottom-color","border-left-color"],appliesto:"allElements",computed:["border-bottom-color","border-left-color","border-right-color","border-top-color"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-color"},"border-end-end-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius"},"border-end-start-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius"},"border-image":{syntax:"<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>",media:"visual",inherited:!1,animationType:"discrete",percentages:["border-image-slice","border-image-width"],groups:["CSS Backgrounds and Borders"],initial:["border-image-source","border-image-slice","border-image-width","border-image-outset","border-image-repeat"],appliesto:"allElementsExceptTableElementsWhenCollapse",computed:["border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image"},"border-image-outset":{syntax:"[ <length> | <number> ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-outset"},"border-image-repeat":{syntax:"[ stretch | repeat | round | space ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"stretch",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-repeat"},"border-image-slice":{syntax:"<number-percentage>{1,4} && fill?",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToSizeOfBorderImage",groups:["CSS Backgrounds and Borders"],initial:"100%",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"oneToFourPercentagesOrAbsoluteLengthsPlusFill",order:"percentagesOrLengthsFollowedByFill",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-slice"},"border-image-source":{syntax:"none | <image>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"noneOrImageWithAbsoluteURI",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-source"},"border-image-width":{syntax:"[ <length-percentage> | <number> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToWidthOrHeightOfBorderImageArea",groups:["CSS Backgrounds and Borders"],initial:"1",appliesto:"allElementsExceptTableElementsWhenCollapse",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-image-width"},"border-inline":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline"},"border-inline-end":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-inline-end-color","border-inline-end-style","border-inline-end-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-inline-end-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end"},"border-inline-color":{syntax:"<'border-top-color'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-color"},"border-inline-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-style"},"border-inline-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-width"},"border-inline-end-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color"},"border-inline-end-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style"},"border-inline-end-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width"},"border-inline-start":{syntax:"<'border-top-width'> || <'border-top-style'> || <'color'>",media:"visual",inherited:!1,animationType:["border-inline-start-color","border-inline-start-style","border-inline-start-width"],percentages:"no",groups:["CSS Logical Properties"],initial:["border-width","border-style","color"],appliesto:"allElements",computed:["border-width","border-style","border-inline-start-color"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start"},"border-inline-start-color":{syntax:"<'border-top-color'>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Logical Properties"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color"},"border-inline-start-style":{syntax:"<'border-top-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Logical Properties"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style"},"border-inline-start-width":{syntax:"<'border-top-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthZeroIfBorderStyleNoneOrHidden",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width"},"border-left":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-left-color","border-left-style","border-left-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-left-width","border-left-style","border-left-color"],appliesto:"allElements",computed:["border-left-width","border-left-style","border-left-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left"},"border-left-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-color"},"border-left-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-style"},"border-left-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderLeftStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-left-width"},"border-radius":{syntax:"<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?",media:"visual",inherited:!1,animationType:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:["border-bottom-left-radius","border-bottom-right-radius","border-top-left-radius","border-top-right-radius"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-radius"},"border-right":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-right-color","border-right-style","border-right-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-right-width","border-right-style","border-right-color"],appliesto:"allElements",computed:["border-right-width","border-right-style","border-right-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right"},"border-right-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-color"},"border-right-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-style"},"border-right-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderRightStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-right-width"},"border-spacing":{syntax:"<length> <length>?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"0",appliesto:"tableElements",computed:"twoAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-spacing"},"border-start-end-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius"},"border-start-start-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius"},"border-style":{syntax:"<line-style>{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-style","border-right-style","border-bottom-style","border-left-style"],appliesto:"allElements",computed:["border-bottom-style","border-left-style","border-right-style","border-top-style"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-style"},"border-top":{syntax:"<line-width> || <line-style> || <color>",media:"visual",inherited:!1,animationType:["border-top-color","border-top-style","border-top-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-width","border-top-style","border-top-color"],appliesto:"allElements",computed:["border-top-width","border-top-style","border-top-color"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top"},"border-top-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-color"},"border-top-left-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius"},"border-top-right-radius":{syntax:"<length-percentage>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfBorderBox",groups:["CSS Backgrounds and Borders"],initial:"0",appliesto:"allElementsUAsNotRequiredWhenCollapse",computed:"twoAbsoluteLengthOrPercentages",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius"},"border-top-style":{syntax:"<line-style>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-style"},"border-top-width":{syntax:"<line-width>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"medium",appliesto:"allElements",computed:"absoluteLengthOr0IfBorderTopStyleNoneOrHidden",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-top-width"},"border-width":{syntax:"<line-width>{1,4}",media:"visual",inherited:!1,animationType:["border-bottom-width","border-left-width","border-right-width","border-top-width"],percentages:"no",groups:["CSS Backgrounds and Borders"],initial:["border-top-width","border-right-width","border-bottom-width","border-left-width"],appliesto:"allElements",computed:["border-bottom-width","border-left-width","border-right-width","border-top-width"],order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/border-width"},bottom:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToContainingBlockHeight",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/bottom"},"box-align":{syntax:"start | center | end | baseline | stretch",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"stretch",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-align"},"box-decoration-break":{syntax:"slice | clone",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"slice",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-decoration-break"},"box-direction":{syntax:"normal | reverse | inherit",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"normal",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-direction"},"box-flex":{syntax:"<number>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"0",appliesto:"directChildrenOfElementsWithDisplayMozBoxMozInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-flex"},"box-flex-group":{syntax:"<integer>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"1",appliesto:"inFlowChildrenOfBoxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-flex-group"},"box-lines":{syntax:"single | multiple",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"single",appliesto:"boxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-lines"},"box-ordinal-group":{syntax:"<integer>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"1",appliesto:"childrenOfBoxElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group"},"box-orient":{syntax:"horizontal | vertical | inline-axis | block-axis | inherit",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"inlineAxisHorizontalInXUL",appliesto:"elementsWithDisplayBoxOrInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-orient"},"box-pack":{syntax:"start | center | end | justify",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions","WebKit Extensions"],initial:"start",appliesto:"elementsWithDisplayMozBoxMozInlineBox",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-pack"},"box-shadow":{syntax:"none | <shadow>#",media:"visual",inherited:!1,animationType:"shadowList",percentages:"no",groups:["CSS Backgrounds and Borders"],initial:"none",appliesto:"allElements",computed:"absoluteLengthsSpecifiedColorAsSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-shadow"},"box-sizing":{syntax:"content-box | border-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"content-box",appliesto:"allElementsAcceptingWidthOrHeight",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/box-sizing"},"break-after":{syntax:"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-after"},"break-before":{syntax:"auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-before"},"break-inside":{syntax:"auto | avoid | avoid-page | avoid-column | avoid-region",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"auto",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/break-inside"},"caption-side":{syntax:"top | bottom | block-start | block-end | inline-start | inline-end",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"top",appliesto:"tableCaptionElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/caption-side"},"caret-color":{syntax:"auto | <color>",media:"interactive",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asAutoOrColor",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/caret-color"},clear:{syntax:"none | left | right | both | inline-start | inline-end",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"none",appliesto:"blockLevelElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clear"},clip:{syntax:"<shape> | auto",media:"visual",inherited:!1,animationType:"rectangle",percentages:"no",groups:["CSS Masking"],initial:"auto",appliesto:"absolutelyPositionedElements",computed:"autoOrRectangle",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clip"},"clip-path":{syntax:"<clip-source> | [ <basic-shape> || <geometry-box> ] | none",media:"visual",inherited:!1,animationType:"basicShapeOtherwiseNo",percentages:"referToReferenceBoxWhenSpecifiedOtherwiseBorderBox",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/clip-path"},color:{syntax:"<color>",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Color"],initial:"variesFromBrowserToBrowser",appliesto:"allElements",computed:"translucentValuesRGBAOtherwiseRGB",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/color"},"color-adjust":{syntax:"economy | exact",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Color"],initial:"economy",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/color-adjust"},"column-count":{syntax:"<integer> | auto",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Columns"],initial:"auto",appliesto:"blockContainersExceptTableWrappers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-count"},"column-fill":{syntax:"auto | balance | balance-all",media:"visualInContinuousMediaNoEffectInOverflowColumns",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"balance",appliesto:"multicolElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-fill"},"column-gap":{syntax:"normal | <length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfContentArea",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multiColumnElementsFlexContainersGridContainers",computed:"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"column-rule":{syntax:"<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>",media:"visual",inherited:!1,animationType:["column-rule-color","column-rule-style","column-rule-width"],percentages:"no",groups:["CSS Columns"],initial:["column-rule-width","column-rule-style","column-rule-color"],appliesto:"multicolElements",computed:["column-rule-color","column-rule-style","column-rule-width"],order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule"},"column-rule-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Columns"],initial:"currentcolor",appliesto:"multicolElements",computed:"computedColor",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-color"},"column-rule-style":{syntax:"<'border-style'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"none",appliesto:"multicolElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-style"},"column-rule-width":{syntax:"<'border-width'>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Columns"],initial:"medium",appliesto:"multicolElements",computed:"absoluteLength0IfColumnRuleStyleNoneOrHidden",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-rule-width"},"column-span":{syntax:"none | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Columns"],initial:"none",appliesto:"inFlowBlockLevelElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-span"},"column-width":{syntax:"<length> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Columns"],initial:"auto",appliesto:"blockContainersExceptTableWrappers",computed:"absoluteLengthZeroOrLarger",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-width"},columns:{syntax:"<'column-width'> || <'column-count'>",media:"visual",inherited:!1,animationType:["column-width","column-count"],percentages:"no",groups:["CSS Columns"],initial:["column-width","column-count"],appliesto:"blockContainersExceptTableWrappers",computed:["column-width","column-count"],order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/columns"},contain:{syntax:"none | strict | content | [ size || layout || style || paint ]",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Containment"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/contain"},content:{syntax:"normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Generated Content"],initial:"normal",appliesto:"beforeAndAfterPseudos",computed:"normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/content"},"counter-increment":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-increment"},"counter-reset":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-reset"},"counter-set":{syntax:"[ <custom-ident> <integer>? ]+ | none",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Counter Styles"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/counter-set"},cursor:{syntax:"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]",media:["visual","interactive"],inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecifiedURLsAbsolute",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/cursor"},direction:{syntax:"ltr | rtl",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"ltr",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/direction"},display:{syntax:"[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Display"],initial:"inline",appliesto:"allElements",computed:"asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/display"},"empty-cells":{syntax:"show | hide",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"show",appliesto:"tableCellElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/empty-cells"},filter:{syntax:"none | <filter-function-list>",media:"visual",inherited:!1,animationType:"filterList",percentages:"no",groups:["Filter Effects"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/filter"},flex:{syntax:"none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",media:"visual",inherited:!1,animationType:["flex-grow","flex-shrink","flex-basis"],percentages:"no",groups:["CSS Flexible Box Layout"],initial:["flex-grow","flex-shrink","flex-basis"],appliesto:"flexItemsAndInFlowPseudos",computed:["flex-grow","flex-shrink","flex-basis"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex"},"flex-basis":{syntax:"content | <'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToFlexContainersInnerMainSize",groups:["CSS Flexible Box Layout"],initial:"auto",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"lengthOrPercentageBeforeKeywordIfBothPresent",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-basis"},"flex-direction":{syntax:"row | row-reverse | column | column-reverse",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"row",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-direction"},"flex-flow":{syntax:"<'flex-direction'> || <'flex-wrap'>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:["flex-direction","flex-wrap"],appliesto:"flexContainers",computed:["flex-direction","flex-wrap"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-flow"},"flex-grow":{syntax:"<number>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"0",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-grow"},"flex-shrink":{syntax:"<number>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"1",appliesto:"flexItemsAndInFlowPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-shrink"},"flex-wrap":{syntax:"nowrap | wrap | wrap-reverse",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"nowrap",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/flex-wrap"},float:{syntax:"left | right | none | inline-start | inline-end",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"none",appliesto:"allElementsNoEffectIfDisplayNone",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/float"},font:{syntax:"[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar",media:"visual",inherited:!0,animationType:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],percentages:["font-size","line-height"],groups:["CSS Fonts"],initial:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],appliesto:"allElements",computed:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font"},"font-family":{syntax:"[ <family-name> | <generic-family> ]#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-family"},"font-feature-settings":{syntax:"normal | <feature-tag-value>#",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-feature-settings"},"font-kerning":{syntax:"auto | normal | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-kerning"},"font-language-override":{syntax:"normal | <string>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-language-override"},"font-optical-sizing":{syntax:"auto | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing"},"font-variation-settings":{syntax:"normal | [ <string> <number> ]#",media:"visual",inherited:!0,animationType:"transform",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variation-settings"},"font-size":{syntax:"<absolute-size> | <relative-size> | <length-percentage>",media:"visual",inherited:!0,animationType:"length",percentages:"referToParentElementsFontSize",groups:["CSS Fonts"],initial:"medium",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-size"},"font-size-adjust":{syntax:"none | <number>",media:"visual",inherited:!0,animationType:"number",percentages:"no",groups:["CSS Fonts"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-size-adjust"},"font-smooth":{syntax:"auto | never | always | <absolute-size> | <length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-smooth"},"font-stretch":{syntax:"<font-stretch-absolute>",media:"visual",inherited:!0,animationType:"fontStretch",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-stretch"},"font-style":{syntax:"normal | italic | oblique <angle>?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-style"},"font-synthesis":{syntax:"none | [ weight || style ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"weight style",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-synthesis"},"font-variant":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant"},"font-variant-alternates":{syntax:"normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates"},"font-variant-caps":{syntax:"normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-caps"},"font-variant-east-asian":{syntax:"normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian"},"font-variant-ligatures":{syntax:"normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures"},"font-variant-numeric":{syntax:"normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric"},"font-variant-position":{syntax:"normal | sub | super",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-variant-position"},"font-weight":{syntax:"<font-weight-absolute> | bolder | lighter",media:"visual",inherited:!0,animationType:"fontWeight",percentages:"no",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"keywordOrNumericalValueBolderLighterTransformedToRealValue",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/font-weight"},gap:{syntax:"<'row-gap'> <'column-gap'>?",media:"visual",inherited:!1,animationType:["row-gap","column-gap"],percentages:"no",groups:["CSS Box Alignment"],initial:["row-gap","column-gap"],appliesto:"multiColumnElementsFlexContainersGridContainers",computed:["row-gap","column-gap"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/gap"},grid:{syntax:"<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>",media:"visual",inherited:!1,animationType:"discrete",percentages:["grid-template-rows","grid-template-columns","grid-auto-rows","grid-auto-columns"],groups:["CSS Grid Layout"],initial:["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],appliesto:"gridContainers",computed:["grid-template-rows","grid-template-columns","grid-template-areas","grid-auto-rows","grid-auto-columns","grid-auto-flow","grid-column-gap","grid-row-gap","column-gap","row-gap"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid"},"grid-area":{syntax:"<grid-line> [ / <grid-line> ]{0,3}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-row-start","grid-column-start","grid-row-end","grid-column-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-area"},"grid-auto-columns":{syntax:"<track-size>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns"},"grid-auto-flow":{syntax:"[ row | column ] || dense",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"row",appliesto:"gridContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow"},"grid-auto-rows":{syntax:"<track-size>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows"},"grid-column":{syntax:"<grid-line> [ / <grid-line> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-column-start","grid-column-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-column-start","grid-column-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column"},"grid-column-end":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column-end"},"grid-column-gap":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"0",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/column-gap"},"grid-column-start":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-column-start"},"grid-gap":{syntax:"<'grid-row-gap'> <'grid-column-gap'>?",media:"visual",inherited:!1,animationType:["grid-row-gap","grid-column-gap"],percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-gap","grid-column-gap"],appliesto:"gridContainers",computed:["grid-row-gap","grid-column-gap"],order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/gap"},"grid-row":{syntax:"<grid-line> [ / <grid-line> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:["grid-row-start","grid-row-end"],appliesto:"gridItemsAndBoxesWithinGridContainer",computed:["grid-row-start","grid-row-end"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row"},"grid-row-end":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row-end"},"grid-row-gap":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"0",appliesto:"gridContainers",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"grid-row-start":{syntax:"<grid-line>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"auto",appliesto:"gridItemsAndBoxesWithinGridContainer",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-row-start"},"grid-template":{syntax:"none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?",media:"visual",inherited:!1,animationType:"discrete",percentages:["grid-template-columns","grid-template-rows"],groups:["CSS Grid Layout"],initial:["grid-template-columns","grid-template-rows","grid-template-areas"],appliesto:"gridContainers",computed:["grid-template-columns","grid-template-rows","grid-template-areas"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template"},"grid-template-areas":{syntax:"none | <string>+",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-areas"},"grid-template-columns":{syntax:"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-columns"},"grid-template-rows":{syntax:"none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",media:"visual",inherited:!1,animationType:"simpleListOfLpcDifferenceLpc",percentages:"referToDimensionOfContentArea",groups:["CSS Grid Layout"],initial:"none",appliesto:"gridContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/grid-template-rows"},"hanging-punctuation":{syntax:"none | [ first || [ force-end | allow-end ] || last ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation"},height:{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAutoOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/height"},hyphens:{syntax:"none | manual | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"manual",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/hyphens"},"image-orientation":{syntax:"from-image | <angle> | [ <angle>? flip ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"from-image",appliesto:"allElements",computed:"angleRoundedToNextQuarter",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/image-orientation"},"image-rendering":{syntax:"auto | crisp-edges | pixelated",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/image-rendering"},"image-resolution":{syntax:"[ from-image || <resolution> ] && snap?",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"1dppx",appliesto:"allElements",computed:"asSpecifiedWithExceptionOfResolution",order:"uniqueOrder",status:"experimental"},"ime-mode":{syntax:"auto | normal | active | inactive | disabled",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"textFields",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ime-mode"},"initial-letter":{syntax:"normal | [ <number> <integer>? ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Inline"],initial:"normal",appliesto:"firstLetterPseudoElementsAndInlineLevelFirstChildren",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/initial-letter"},"initial-letter-align":{syntax:"[ auto | alphabetic | hanging | ideographic ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Inline"],initial:"auto",appliesto:"firstLetterPseudoElementsAndInlineLevelFirstChildren",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/initial-letter-align"},"inline-size":{syntax:"<'width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"sameAsWidthAndHeight",computed:"sameAsWidthAndHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inline-size"},inset:{syntax:"<'top'>{1,4}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset"},"inset-block":{syntax:"<'top'>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block"},"inset-block-end":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block-end"},"inset-block-start":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalHeightOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-block-start"},"inset-inline":{syntax:"<'top'>{1,2}",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline"},"inset-inline-end":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline-end"},"inset-inline-start":{syntax:"<'top'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"auto",appliesto:"positionedElements",computed:"sameAsBoxOffsets",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/inset-inline-start"},isolation:{syntax:"auto | isolate",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"auto",appliesto:"allElementsSVGContainerGraphicsAndGraphicsReferencingElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/isolation"},"justify-content":{syntax:"normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"flexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-content"},"justify-items":{syntax:"normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"legacy",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-items"},"justify-self":{syntax:"auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"auto",appliesto:"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-self"},"justify-tracks":{syntax:"[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"normal",appliesto:"gridContainersWithMasonryLayoutInTheirInlineAxis",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/justify-tracks"},left:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/left"},"letter-spacing":{syntax:"normal | <length>",media:"visual",inherited:!0,animationType:"length",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"optimumValueOfAbsoluteLengthOrNormal",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/letter-spacing"},"line-break":{syntax:"auto | loose | normal | strict | anywhere",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-break"},"line-clamp":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Overflow"],initial:"none",appliesto:"blockContainersExceptMultiColumnContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"line-height":{syntax:"normal | <number> | <length> | <percentage>",media:"visual",inherited:!0,animationType:"numberOrLength",percentages:"referToElementFontSize",groups:["CSS Fonts"],initial:"normal",appliesto:"allElements",computed:"absoluteLengthOrAsSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-height"},"line-height-step":{syntax:"<length>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fonts"],initial:"0",appliesto:"blockContainers",computed:"absoluteLength",order:"perGrammar",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/line-height-step"},"list-style":{syntax:"<'list-style-type'> || <'list-style-position'> || <'list-style-image'>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:["list-style-type","list-style-position","list-style-image"],appliesto:"listItems",computed:["list-style-image","list-style-position","list-style-type"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style"},"list-style-image":{syntax:"<url> | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"none",appliesto:"listItems",computed:"noneOrImageWithAbsoluteURI",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-image"},"list-style-position":{syntax:"inside | outside",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"outside",appliesto:"listItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-position"},"list-style-type":{syntax:"<counter-style> | <string> | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Lists and Counters"],initial:"disc",appliesto:"listItems",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/list-style-type"},margin:{syntax:"[ <length> | <percentage> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:["margin-bottom","margin-left","margin-right","margin-top"],appliesto:"allElementsExceptTableDisplayTypes",computed:["margin-bottom","margin-left","margin-right","margin-top"],order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin"},"margin-block":{syntax:"<'margin-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block"},"margin-block-end":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block-end"},"margin-block-start":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-block-start"},"margin-bottom":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-bottom"},"margin-inline":{syntax:"<'margin-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline"},"margin-inline-end":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline-end"},"margin-inline-start":{syntax:"<'margin-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"dependsOnLayoutModel",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsMargin",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-inline-start"},"margin-left":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-left"},"margin-right":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-right"},"margin-top":{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-top"},"margin-trim":{syntax:"none | in-flow | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"none",appliesto:"blockContainersAndMultiColumnContainers",computed:"asSpecified",order:"perGrammar",alsoAppliesTo:["::first-letter","::first-line"],status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/margin-trim"},mask:{syntax:"<mask-layer>#",media:"visual",inherited:!1,animationType:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],percentages:["mask-position"],groups:["CSS Masking"],initial:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],appliesto:"allElementsSVGContainerElements",computed:["mask-image","mask-mode","mask-repeat","mask-position","mask-clip","mask-origin","mask-size","mask-composite"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask"},"mask-border":{syntax:"<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>",media:"visual",inherited:!1,animationType:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],percentages:["mask-border-slice","mask-border-width"],groups:["CSS Masking"],initial:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],appliesto:"allElementsSVGContainerElements",computed:["mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border"},"mask-border-mode":{syntax:"luminance | alpha",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"alpha",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-mode"},"mask-border-outset":{syntax:"[ <length> | <number> ]{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"0",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-outset"},"mask-border-repeat":{syntax:"[ stretch | repeat | round | space ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"stretch",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat"},"mask-border-slice":{syntax:"<number-percentage>{1,4} fill?",media:"visual",inherited:!1,animationType:"discrete",percentages:"referToSizeOfMaskBorderImage",groups:["CSS Masking"],initial:"0",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-slice"},"mask-border-source":{syntax:"none | <image>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-source"},"mask-border-width":{syntax:"[ <length-percentage> | <number> | auto ]{1,4}",media:"visual",inherited:!1,animationType:"discrete",percentages:"relativeToMaskBorderImageArea",groups:["CSS Masking"],initial:"auto",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-border-width"},"mask-clip":{syntax:"[ <geometry-box> | no-clip ]#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"border-box",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-clip"},"mask-composite":{syntax:"<compositing-operator>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"add",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-composite"},"mask-image":{syntax:"<mask-reference>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"none",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedURLsAbsolute",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-image"},"mask-mode":{syntax:"<masking-mode>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"match-source",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-mode"},"mask-origin":{syntax:"<geometry-box>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"border-box",appliesto:"allElementsSVGContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-origin"},"mask-position":{syntax:"<position>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToSizeOfMaskPaintingArea",groups:["CSS Masking"],initial:"center",appliesto:"allElementsSVGContainerElements",computed:"consistsOfTwoKeywordsForOriginAndOffsets",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-position"},"mask-repeat":{syntax:"<repeat-style>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"no-repeat",appliesto:"allElementsSVGContainerElements",computed:"consistsOfTwoDimensionKeywords",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-repeat"},"mask-size":{syntax:"<bg-size>#",media:"visual",inherited:!1,animationType:"repeatableListOfSimpleListOfLpc",percentages:"no",groups:["CSS Masking"],initial:"auto",appliesto:"allElementsSVGContainerElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-size"},"mask-type":{syntax:"luminance | alpha",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Masking"],initial:"luminance",appliesto:"maskElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mask-type"},"masonry-auto-flow":{syntax:"[ pack | next ] || [ definite-first | ordered ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Grid Layout"],initial:"pack",appliesto:"gridContainersWithMasonryLayout",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow"},"math-style":{syntax:"normal | compact",media:"visual",inherited:!0,animationType:"notAnimatable",percentages:"no",groups:["MathML"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/math-style"},"max-block-size":{syntax:"<'max-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMaxWidthAndMaxHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-block-size"},"max-height":{syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentagesNone",groups:["CSS Box Model"],initial:"none",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAsSpecifiedAbsoluteLengthOrNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-height"},"max-inline-size":{syntax:"<'max-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMaxWidthAndMaxHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-inline-size"},"max-lines":{syntax:"none | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Overflow"],initial:"none",appliesto:"blockContainersExceptMultiColumnContainers",computed:"asSpecified",order:"perGrammar",status:"experimental"},"max-width":{syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"none",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAsSpecifiedAbsoluteLengthOrNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/max-width"},"min-block-size":{syntax:"<'min-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"blockSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMinWidthAndMinHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-block-size"},"min-height":{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"regardingHeightOfGeneratedBoxContainingBlockPercentages0",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableColumns",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-height"},"min-inline-size":{syntax:"<'min-width'>",media:"visual",inherited:!1,animationType:"lpc",percentages:"inlineSizeOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"sameAsWidthAndHeight",computed:"sameAsMinWidthAndMinHeight",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-inline-size"},"min-width":{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/min-width"},"mix-blend-mode":{syntax:"<blend-mode>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Compositing and Blending"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode"},"object-fit":{syntax:"fill | contain | cover | none | scale-down",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Images"],initial:"fill",appliesto:"replacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/object-fit"},"object-position":{syntax:"<position>",media:"visual",inherited:!0,animationType:"repeatableListOfSimpleListOfLpc",percentages:"referToWidthAndHeightOfElement",groups:["CSS Images"],initial:"50% 50%",appliesto:"replacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/object-position"},offset:{syntax:"[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?",media:"visual",inherited:!1,animationType:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],percentages:["offset-position","offset-distance","offset-anchor"],groups:["CSS Motion Path"],initial:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],appliesto:"transformableElements",computed:["offset-position","offset-path","offset-distance","offset-anchor","offset-rotate"],order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset"},"offset-anchor":{syntax:"auto | <position>",media:"visual",inherited:!1,animationType:"position",percentages:"relativeToWidthAndHeight",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"standard"},"offset-distance":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToTotalPathLength",groups:["CSS Motion Path"],initial:"0",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-distance"},"offset-path":{syntax:"none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]",media:"visual",inherited:!1,animationType:"angleOrBasicShapeOrPath",percentages:"no",groups:["CSS Motion Path"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-path"},"offset-position":{syntax:"auto | <position>",media:"visual",inherited:!1,animationType:"position",percentages:"referToSizeOfContainingBlock",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"perGrammar",status:"experimental"},"offset-rotate":{syntax:"[ auto | reverse ] || <angle>",media:"visual",inherited:!1,animationType:"angleOrBasicShapeOrPath",percentages:"no",groups:["CSS Motion Path"],initial:"auto",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/offset-rotate"},opacity:{syntax:"<alpha-value>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Color"],initial:"1.0",appliesto:"allElements",computed:"specifiedValueClipped0To1",order:"uniqueOrder",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/opacity"},order:{syntax:"<integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Flexible Box Layout"],initial:"0",appliesto:"flexItemsGridItemsAbsolutelyPositionedContainerChildren",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/order"},orphans:{syntax:"<integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"2",appliesto:"blockContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/orphans"},outline:{syntax:"[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]",media:["visual","interactive"],inherited:!1,animationType:["outline-color","outline-width","outline-style"],percentages:"no",groups:["CSS Basic User Interface"],initial:["outline-color","outline-style","outline-width"],appliesto:"allElements",computed:["outline-color","outline-width","outline-style"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline"},"outline-color":{syntax:"<color> | invert",media:["visual","interactive"],inherited:!1,animationType:"color",percentages:"no",groups:["CSS Basic User Interface"],initial:"invertOrCurrentColor",appliesto:"allElements",computed:"invertForTranslucentColorRGBAOtherwiseRGB",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-color"},"outline-offset":{syntax:"<length>",media:["visual","interactive"],inherited:!1,animationType:"length",percentages:"no",groups:["CSS Basic User Interface"],initial:"0",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-offset"},"outline-style":{syntax:"auto | <'border-style'>",media:["visual","interactive"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-style"},"outline-width":{syntax:"<line-width>",media:["visual","interactive"],inherited:!1,animationType:"length",percentages:"no",groups:["CSS Basic User Interface"],initial:"medium",appliesto:"allElements",computed:"absoluteLength0ForNone",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/outline-width"},overflow:{syntax:"[ visible | hidden | clip | scroll | auto ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:["overflow-x","overflow-y"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow"},"overflow-anchor":{syntax:"auto | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Anchoring"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard"},"overflow-block":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"perGrammar",status:"standard"},"overflow-clip-box":{syntax:"padding-box | content-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Mozilla Extensions"],initial:"padding-box",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Mozilla/CSS/overflow-clip-box"},"overflow-inline":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"perGrammar",status:"standard"},"overflow-wrap":{syntax:"normal | break-word | anywhere",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"nonReplacedInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"overflow-x":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-x"},"overflow-y":{syntax:"visible | hidden | clip | scroll | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"visible",appliesto:"blockContainersFlexContainersGridContainers",computed:"asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-y"},"overscroll-behavior":{syntax:"[ contain | none | auto ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior"},"overscroll-behavior-block":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block"},"overscroll-behavior-inline":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline"},"overscroll-behavior-x":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x"},"overscroll-behavior-y":{syntax:"contain | none | auto",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Model"],initial:"auto",appliesto:"nonReplacedBlockAndInlineBlockElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y"},padding:{syntax:"[ <length> | <percentage> ]{1,4}",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:["padding-bottom","padding-left","padding-right","padding-top"],appliesto:"allElementsExceptInternalTableDisplayTypes",computed:["padding-bottom","padding-left","padding-right","padding-top"],order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding"},"padding-block":{syntax:"<'padding-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block"},"padding-block-end":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block-end"},"padding-block-start":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-block-start"},"padding-bottom":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-bottom"},"padding-inline":{syntax:"<'padding-left'>{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline"},"padding-inline-end":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline-end"},"padding-inline-start":{syntax:"<'padding-left'>",media:"visual",inherited:!1,animationType:"length",percentages:"logicalWidthOfContainingBlock",groups:["CSS Logical Properties"],initial:"0",appliesto:"allElements",computed:"asLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-inline-start"},"padding-left":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-left"},"padding-right":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-right"},"padding-top":{syntax:"<length> | <percentage>",media:"visual",inherited:!1,animationType:"length",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"0",appliesto:"allElementsExceptInternalTableDisplayTypes",computed:"percentageAsSpecifiedOrAbsoluteLength",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/padding-top"},"page-break-after":{syntax:"auto | always | avoid | left | right | recto | verso",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-after"},"page-break-before":{syntax:"auto | always | avoid | left | right | recto | verso",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-before"},"page-break-inside":{syntax:"auto | avoid",media:["visual","paged"],inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Pages"],initial:"auto",appliesto:"blockElementsInNormalFlow",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/page-break-inside"},"paint-order":{syntax:"normal | [ fill || stroke || markers ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"textElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/paint-order"},perspective:{syntax:"none | <length>",media:"visual",inherited:!1,animationType:"length",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"absoluteLengthOrNone",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/perspective"},"perspective-origin":{syntax:"<position>",media:"visual",inherited:!1,animationType:"simpleListOfLpc",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"50% 50%",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"oneOrTwoValuesLengthAbsoluteKeywordsPercentages",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/perspective-origin"},"place-content":{syntax:"<'align-content'> <'justify-content'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multilineFlexContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-content"},"place-items":{syntax:"<'align-items'> <'justify-items'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:["align-items","justify-items"],appliesto:"allElements",computed:["align-items","justify-items"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-items"},"place-self":{syntax:"<'align-self'> <'justify-self'>?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Box Alignment"],initial:["align-self","justify-self"],appliesto:"blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",computed:["align-self","justify-self"],order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/place-self"},"pointer-events":{syntax:"auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["Pointer Events"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/pointer-events"},position:{syntax:"static | relative | absolute | sticky | fixed",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Positioning"],initial:"static",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/position"},quotes:{syntax:"none | auto | [ <string> <string> ]+",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Generated Content"],initial:"dependsOnUserAgent",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/quotes"},resize:{syntax:"none | both | horizontal | vertical | block | inline",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"none",appliesto:"elementsWithOverflowNotVisibleAndReplacedElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/resize"},right:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/right"},rotate:{syntax:"none | <angle> | [ x | y | z | <number>{3} ] && <angle>",media:"visual",inherited:!1,animationType:"transform",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/rotate"},"row-gap":{syntax:"normal | <length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToDimensionOfContentArea",groups:["CSS Box Alignment"],initial:"normal",appliesto:"multiColumnElementsFlexContainersGridContainers",computed:"asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/row-gap"},"ruby-align":{syntax:"start | center | space-between | space-around",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"space-around",appliesto:"rubyBasesAnnotationsBaseAnnotationContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ruby-align"},"ruby-merge":{syntax:"separate | collapse | auto",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"separate",appliesto:"rubyAnnotationsContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental"},"ruby-position":{syntax:"over | under | inter-character",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Ruby"],initial:"over",appliesto:"rubyAnnotationsContainers",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/ruby-position"},scale:{syntax:"none | <number>{1,3}",media:"visual",inherited:!1,animationType:"transform",percentages:"no",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scale"},"scrollbar-color":{syntax:"auto | dark | light | <color>{2}",media:"visual",inherited:!0,animationType:"color",percentages:"no",groups:["CSS Scrollbars"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-color"},"scrollbar-gutter":{syntax:"auto | [ stable | always ] && both? && force?",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Overflow"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter"},"scrollbar-width":{syntax:"auto | thin | none",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scrollbars"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scrollbar-width"},"scroll-behavior":{syntax:"auto | smooth",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSSOM View"],initial:"auto",appliesto:"scrollingBoxes",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-behavior"},"scroll-margin":{syntax:"<length>{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin"},"scroll-margin-block":{syntax:"<length>{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block"},"scroll-margin-block-start":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start"},"scroll-margin-block-end":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end"},"scroll-margin-bottom":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom"},"scroll-margin-inline":{syntax:"<length>{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline"},"scroll-margin-inline-start":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start"},"scroll-margin-inline-end":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end"},"scroll-margin-left":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left"},"scroll-margin-right":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right"},"scroll-margin-top":{syntax:"<length>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"no",groups:["CSS Scroll Snap"],initial:"0",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top"},"scroll-padding":{syntax:"[ auto | <length-percentage> ]{1,4}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding"},"scroll-padding-block":{syntax:"[ auto | <length-percentage> ]{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block"},"scroll-padding-block-start":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start"},"scroll-padding-block-end":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end"},"scroll-padding-bottom":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom"},"scroll-padding-inline":{syntax:"[ auto | <length-percentage> ]{1,2}",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline"},"scroll-padding-inline-start":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start"},"scroll-padding-inline-end":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end"},"scroll-padding-left":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left"},"scroll-padding-right":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right"},"scroll-padding-top":{syntax:"auto | <length-percentage>",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"relativeToTheScrollContainersScrollport",groups:["CSS Scroll Snap"],initial:"auto",appliesto:"scrollContainers",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top"},"scroll-snap-align":{syntax:"[ none | start | end | center ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align"},"scroll-snap-coordinate":{syntax:"none | <position>#",media:"interactive",inherited:!1,animationType:"position",percentages:"referToBorderBox",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate"},"scroll-snap-destination":{syntax:"<position>",media:"interactive",inherited:!1,animationType:"position",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"0px 0px",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination"},"scroll-snap-points-x":{syntax:"none | repeat( <length-percentage> )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x"},"scroll-snap-points-y":{syntax:"none | repeat( <length-percentage> )",media:"interactive",inherited:!1,animationType:"discrete",percentages:"relativeToScrollContainerPaddingBoxAxis",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y"},"scroll-snap-stop":{syntax:"normal | always",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop"},"scroll-snap-type":{syntax:"none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type"},"scroll-snap-type-x":{syntax:"none | mandatory | proximity",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x"},"scroll-snap-type-y":{syntax:"none | mandatory | proximity",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Scroll Snap"],initial:"none",appliesto:"scrollContainers",computed:"asSpecified",order:"uniqueOrder",status:"obsolete",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"},"shape-image-threshold":{syntax:"<alpha-value>",media:"visual",inherited:!1,animationType:"number",percentages:"no",groups:["CSS Shapes"],initial:"0.0",appliesto:"floats",computed:"specifiedValueNumberClipped0To1",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold"},"shape-margin":{syntax:"<length-percentage>",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Shapes"],initial:"0",appliesto:"floats",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-margin"},"shape-outside":{syntax:"none | <shape-box> || <basic-shape> | <image>",media:"visual",inherited:!1,animationType:"basicShapeOtherwiseNo",percentages:"no",groups:["CSS Shapes"],initial:"none",appliesto:"floats",computed:"asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/shape-outside"},"tab-size":{syntax:"<integer> | <length>",media:"visual",inherited:!0,animationType:"length",percentages:"no",groups:["CSS Text"],initial:"8",appliesto:"blockContainers",computed:"specifiedIntegerOrAbsoluteLength",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/tab-size"},"table-layout":{syntax:"auto | fixed",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Table"],initial:"auto",appliesto:"tableElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/table-layout"},"text-align":{syntax:"start | end | left | right | center | justify | match-parent",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"startOrNamelessValueIfLTRRightIfRTL",appliesto:"blockContainers",computed:"asSpecifiedExceptMatchParent",order:"orderOfAppearance",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-align"},"text-align-last":{syntax:"auto | start | end | left | right | center | justify",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"blockContainers",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-align-last"},"text-combine-upright":{syntax:"none | all | [ digits <integer>? ]",media:"visual",inherited:!0,animationType:"notAnimatable",percentages:"no",groups:["CSS Writing Modes"],initial:"none",appliesto:"nonReplacedInlineElements",computed:"keywordPlusIntegerIfDigits",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-combine-upright"},"text-decoration":{syntax:"<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>",media:"visual",inherited:!1,animationType:["text-decoration-color","text-decoration-style","text-decoration-line","text-decoration-thickness"],percentages:"no",groups:["CSS Text Decoration"],initial:["text-decoration-color","text-decoration-style","text-decoration-line"],appliesto:"allElements",computed:["text-decoration-line","text-decoration-style","text-decoration-color","text-decoration-thickness"],order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration"},"text-decoration-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Text Decoration"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-color"},"text-decoration-line":{syntax:"none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-line"},"text-decoration-skip":{syntax:"none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"objects",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip"},"text-decoration-skip-ink":{syntax:"auto | all | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink"},"text-decoration-style":{syntax:"solid | double | dotted | dashed | wavy",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"solid",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-style"},"text-decoration-thickness":{syntax:"auto | from-font | <length> | <percentage> ",media:"visual",inherited:!1,animationType:"byComputedValueType",percentages:"referToElementFontSize",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness"},"text-emphasis":{syntax:"<'text-emphasis-style'> || <'text-emphasis-color'>",media:"visual",inherited:!1,animationType:["text-emphasis-color","text-emphasis-style"],percentages:"no",groups:["CSS Text Decoration"],initial:["text-emphasis-style","text-emphasis-color"],appliesto:"allElements",computed:["text-emphasis-style","text-emphasis-color"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis"},"text-emphasis-color":{syntax:"<color>",media:"visual",inherited:!1,animationType:"color",percentages:"no",groups:["CSS Text Decoration"],initial:"currentcolor",appliesto:"allElements",computed:"computedColor",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color"},"text-emphasis-position":{syntax:"[ over | under ] && [ right | left ]",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"over right",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position"},"text-emphasis-style":{syntax:"none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style"},"text-indent":{syntax:"<length-percentage> && hanging? && each-line?",media:"visual",inherited:!0,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Text"],initial:"0",appliesto:"blockContainers",computed:"percentageOrAbsoluteLengthPlusKeywords",order:"lengthOrPercentageBeforeKeywords",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-indent"},"text-justify":{syntax:"auto | inter-character | inter-word | none",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"auto",appliesto:"inlineLevelAndTableCellElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-justify"},"text-orientation":{syntax:"mixed | upright | sideways",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"mixed",appliesto:"allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-orientation"},"text-overflow":{syntax:"[ clip | ellipsis | <string> ]{1,2}",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"clip",appliesto:"blockContainerElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-overflow"},"text-rendering":{syntax:"auto | optimizeSpeed | optimizeLegibility | geometricPrecision",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Miscellaneous"],initial:"auto",appliesto:"textElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-rendering"},"text-shadow":{syntax:"none | <shadow-t>#",media:"visual",inherited:!0,animationType:"shadowList",percentages:"no",groups:["CSS Text Decoration"],initial:"none",appliesto:"allElements",computed:"colorPlusThreeAbsoluteLengths",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-shadow"},"text-size-adjust":{syntax:"none | auto | <percentage>",media:"visual",inherited:!0,animationType:"discrete",percentages:"referToSizeOfFont",groups:["CSS Text"],initial:"autoForSmartphoneBrowsersSupportingInflation",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"experimental",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-size-adjust"},"text-transform":{syntax:"none | capitalize | uppercase | lowercase | full-width | full-size-kana",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"none",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-transform"},"text-underline-offset":{syntax:"auto | <length> | <percentage> ",media:"visual",inherited:!0,animationType:"byComputedValueType",percentages:"referToElementFontSize",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-underline-offset"},"text-underline-position":{syntax:"auto | from-font | [ under || [ left | right ] ]",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text Decoration"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/text-underline-position"},top:{syntax:"<length> | <percentage> | auto",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToContainingBlockHeight",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/top"},"touch-action":{syntax:"auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["Pointer Events"],initial:"auto",appliesto:"allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/touch-action"},transform:{syntax:"none | <transform-list>",media:"visual",inherited:!1,animationType:"transform",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform"},"transform-box":{syntax:"content-box | border-box | fill-box | stroke-box | view-box",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"view-box",appliesto:"transformableElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-box"},"transform-origin":{syntax:"[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?",media:"visual",inherited:!1,animationType:"simpleListOfLpc",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"50% 50% 0",appliesto:"transformableElements",computed:"forLengthAbsoluteValueOtherwisePercentage",order:"oneOrTwoValuesLengthAbsoluteKeywordsPercentages",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-origin"},"transform-style":{syntax:"flat | preserve-3d",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transforms"],initial:"flat",appliesto:"transformableElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transform-style"},transition:{syntax:"<single-transition>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:["transition-delay","transition-duration","transition-property","transition-timing-function"],appliesto:"allElementsAndPseudos",computed:["transition-delay","transition-duration","transition-property","transition-timing-function"],order:"orderOfAppearance",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition"},"transition-delay":{syntax:"<time>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-delay"},"transition-duration":{syntax:"<time>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"0s",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-duration"},"transition-property":{syntax:"none | <single-transition-property>#",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"all",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-property"},"transition-timing-function":{syntax:"<timing-function>#",media:"interactive",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Transitions"],initial:"ease",appliesto:"allElementsAndPseudos",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/transition-timing-function"},translate:{syntax:"none | <length-percentage> [ <length-percentage> <length>? ]?",media:"visual",inherited:!1,animationType:"transform",percentages:"referToSizeOfBoundingBox",groups:["CSS Transforms"],initial:"none",appliesto:"transformableElements",computed:"asSpecifiedRelativeToAbsoluteLengths",order:"perGrammar",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/translate"},"unicode-bidi":{syntax:"normal | embed | isolate | bidi-override | isolate-override | plaintext",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"normal",appliesto:"allElementsSomeValuesNoEffectOnNonInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/unicode-bidi"},"user-select":{syntax:"auto | text | none | contain | all",media:"visual",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Basic User Interface"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/user-select"},"vertical-align":{syntax:"baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>",media:"visual",inherited:!1,animationType:"length",percentages:"referToLineHeight",groups:["CSS Table"],initial:"baseline",appliesto:"inlineLevelAndTableCellElements",computed:"absoluteLengthOrKeyword",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/vertical-align"},visibility:{syntax:"visible | hidden | collapse",media:"visual",inherited:!0,animationType:"visibility",percentages:"no",groups:["CSS Box Model"],initial:"visible",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/visibility"},"white-space":{syntax:"normal | pre | nowrap | pre-wrap | pre-line | break-spaces",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/white-space"},widows:{syntax:"<integer>",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Fragmentation"],initial:"2",appliesto:"blockContainerElements",computed:"asSpecified",order:"perGrammar",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/widows"},width:{syntax:"auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",media:"visual",inherited:!1,animationType:"lpc",percentages:"referToWidthOfContainingBlock",groups:["CSS Box Model"],initial:"auto",appliesto:"allElementsButNonReplacedAndTableRows",computed:"percentageAutoOrAbsoluteLength",order:"lengthOrPercentageBeforeKeywordIfBothPresent",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/width"},"will-change":{syntax:"auto | <animateable-feature>#",media:"all",inherited:!1,animationType:"discrete",percentages:"no",groups:["CSS Will Change"],initial:"auto",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/will-change"},"word-break":{syntax:"normal | break-all | keep-all | break-word",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/word-break"},"word-spacing":{syntax:"normal | <length-percentage>",media:"visual",inherited:!0,animationType:"length",percentages:"referToWidthOfAffectedGlyph",groups:["CSS Text"],initial:"normal",appliesto:"allElements",computed:"optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal",order:"uniqueOrder",alsoAppliesTo:["::first-letter","::first-line","::placeholder"],status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/word-spacing"},"word-wrap":{syntax:"normal | break-word",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Text"],initial:"normal",appliesto:"nonReplacedInlineElements",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"},"writing-mode":{syntax:"horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr",media:"visual",inherited:!0,animationType:"discrete",percentages:"no",groups:["CSS Writing Modes"],initial:"horizontal-tb",appliesto:"allElementsExceptTableRowColumnGroupsTableRowsColumns",computed:"asSpecified",order:"uniqueOrder",status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/writing-mode"},"z-index":{syntax:"auto | <integer>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["CSS Positioning"],initial:"auto",appliesto:"positionedElements",computed:"asSpecified",order:"uniqueOrder",stacking:!0,status:"standard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/z-index"},zoom:{syntax:"normal | reset | <number> | <percentage>",media:"visual",inherited:!1,animationType:"integer",percentages:"no",groups:["Microsoft Extensions"],initial:"normal",appliesto:"allElements",computed:"asSpecified",order:"uniqueOrder",status:"nonstandard",mdn_url:"https://developer.mozilla.org/docs/Web/CSS/zoom"}},po={atrules:{charset:{prelude:"<string>"},"font-face":{descriptors:{"unicode-range":{comment:"replaces <unicode-range>, an old production name",syntax:"<urange>#"}}}},properties:{"-moz-background-clip":{comment:"deprecated syntax in old Firefox, https://developer.mozilla.org/en/docs/Web/CSS/background-clip",syntax:"padding | border"},"-moz-border-radius-bottomleft":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-left-radius",syntax:"<'border-bottom-left-radius'>"},"-moz-border-radius-bottomright":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius",syntax:"<'border-bottom-right-radius'>"},"-moz-border-radius-topleft":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-left-radius",syntax:"<'border-top-left-radius'>"},"-moz-border-radius-topright":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/border-bottom-right-radius",syntax:"<'border-bottom-right-radius'>"},"-moz-control-character-visibility":{comment:"firefox specific keywords, https://bugzilla.mozilla.org/show_bug.cgi?id=947588",syntax:"visible | hidden"},"-moz-osx-font-smoothing":{comment:"misssed old syntax https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth",syntax:"auto | grayscale"},"-moz-user-select":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/user-select",syntax:"none | text | all | -moz-none"},"-ms-flex-align":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align",syntax:"start | end | center | baseline | stretch"},"-ms-flex-item-align":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-align",syntax:"auto | start | end | center | baseline | stretch"},"-ms-flex-line-pack":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-line-pack",syntax:"start | end | center | justify | distribute | stretch"},"-ms-flex-negative":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-shrink'>"},"-ms-flex-pack":{comment:"misssed old syntax implemented in IE, https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/#flex-pack",syntax:"start | end | center | justify | distribute"},"-ms-flex-order":{comment:"misssed old syntax implemented in IE; https://msdn.microsoft.com/en-us/library/jj127303(v=vs.85).aspx",syntax:"<integer>"},"-ms-flex-positive":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-grow'>"},"-ms-flex-preferred-size":{comment:"misssed old syntax implemented in IE; TODO: find references for comfirmation",syntax:"<'flex-basis'>"},"-ms-interpolation-mode":{comment:"https://msdn.microsoft.com/en-us/library/ff521095(v=vs.85).aspx",syntax:"nearest-neighbor | bicubic"},"-ms-grid-column-align":{comment:"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466338.aspx",syntax:"start | end | center | stretch"},"-ms-grid-row-align":{comment:"add this property first since it uses as fallback for flexbox, https://msdn.microsoft.com/en-us/library/windows/apps/hh466348.aspx",syntax:"start | end | center | stretch"},"-ms-hyphenate-limit-last":{comment:"misssed old syntax implemented in IE; https://www.w3.org/TR/css-text-4/#hyphenate-line-limits",syntax:"none | always | column | page | spread"},"-webkit-appearance":{comment:"webkit specific keywords",references:["http://css-infos.net/property/-webkit-appearance"],syntax:"none | button | button-bevel | caps-lock-indicator | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbargripper-horizontal | scrollbargripper-vertical | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button"},"-webkit-background-clip":{comment:"https://developer.mozilla.org/en/docs/Web/CSS/background-clip",syntax:"[ <box> | border | padding | content | text ]#"},"-webkit-column-break-after":{comment:"added, http://help.dottoro.com/lcrthhhv.php",syntax:"always | auto | avoid"},"-webkit-column-break-before":{comment:"added, http://help.dottoro.com/lcxquvkf.php",syntax:"always | auto | avoid"},"-webkit-column-break-inside":{comment:"added, http://help.dottoro.com/lclhnthl.php",syntax:"always | auto | avoid"},"-webkit-font-smoothing":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth",syntax:"auto | none | antialiased | subpixel-antialiased"},"-webkit-mask-box-image":{comment:"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image",syntax:"[ <url> | <gradient> | none ] [ <length-percentage>{4} <-webkit-mask-box-repeat>{2} ]?"},"-webkit-print-color-adjust":{comment:"missed",references:["https://developer.mozilla.org/en/docs/Web/CSS/-webkit-print-color-adjust"],syntax:"economy | exact"},"-webkit-text-security":{comment:"missed; http://help.dottoro.com/lcbkewgt.php",syntax:"none | circle | disc | square"},"-webkit-user-drag":{comment:"missed; http://help.dottoro.com/lcbixvwm.php",syntax:"none | element | auto"},"-webkit-user-select":{comment:"auto is supported by old webkit, https://developer.mozilla.org/en-US/docs/Web/CSS/user-select",syntax:"auto | none | text | all"},"alignment-baseline":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#AlignmentBaselineProperty"],syntax:"auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical"},"baseline-shift":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#BaselineShiftProperty"],syntax:"baseline | sub | super | <svg-length>"},behavior:{comment:"added old IE property https://msdn.microsoft.com/en-us/library/ms530723(v=vs.85).aspx",syntax:"<url>+"},"clip-rule":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/masking.html#ClipRuleProperty"],syntax:"nonzero | evenodd"},cue:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'cue-before'> <'cue-after'>?"},"cue-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<url> <decibel>? | none"},"cue-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<url> <decibel>? | none"},cursor:{comment:"added legacy keywords: hand, -webkit-grab. -webkit-grabbing, -webkit-zoom-in, -webkit-zoom-out, -moz-grab, -moz-grabbing, -moz-zoom-in, -moz-zoom-out",references:["https://www.sitepoint.com/css3-cursor-styles/"],syntax:"[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing | hand | -webkit-grab | -webkit-grabbing | -webkit-zoom-in | -webkit-zoom-out | -moz-grab | -moz-grabbing | -moz-zoom-in | -moz-zoom-out ] ]"},display:{comment:"extended with -ms-flexbox",syntax:"| <-non-standard-display>"},position:{comment:"extended with -webkit-sticky",syntax:"| -webkit-sticky"},"dominant-baseline":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#DominantBaselineProperty"],syntax:"auto | use-script | no-change | reset-size | ideographic | alphabetic | hanging | mathematical | central | middle | text-after-edge | text-before-edge"},"image-rendering":{comment:"extended with <-non-standard-image-rendering>, added SVG keywords optimizeSpeed and optimizeQuality",references:["https://developer.mozilla.org/en/docs/Web/CSS/image-rendering","https://www.w3.org/TR/SVG/painting.html#ImageRenderingProperty"],syntax:"| optimizeSpeed | optimizeQuality | <-non-standard-image-rendering>"},fill:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"<paint>"},"fill-opacity":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"<number-zero-one>"},"fill-rule":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#FillProperty"],syntax:"nonzero | evenodd"},filter:{comment:"extend with IE legacy syntaxes",syntax:"| <-ms-filter-function-list>"},"glyph-orientation-horizontal":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#GlyphOrientationHorizontalProperty"],syntax:"<angle>"},"glyph-orientation-vertical":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#GlyphOrientationVerticalProperty"],syntax:"<angle>"},kerning:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#KerningProperty"],syntax:"auto | <svg-length>"},"letter-spacing":{comment:"fix syntax <length> -> <length-percentage>",references:["https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/letter-spacing"],syntax:"normal | <length-percentage>"},marker:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-end":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-mid":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"marker-start":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#MarkerProperties"],syntax:"none | <url>"},"max-width":{comment:"fix auto -> none (https://github.com/mdn/data/pull/431); extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/max-width",syntax:"none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},width:{comment:"per spec fit-content should be a function, however browsers are supporting it as a keyword (https://github.com/csstree/stylelint-validator/issues/29)",syntax:"| fit-content | -moz-fit-content | -webkit-fit-content"},"min-width":{comment:"extend by non-standard width keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width",syntax:"auto | <length-percentage> | min-content | max-content | fit-content(<length-percentage>) | <-non-standard-width>"},overflow:{comment:"extend by vendor keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow",syntax:"| <-non-standard-overflow>"},pause:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'pause-before'> <'pause-after'>?"},"pause-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"pause-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},rest:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<'rest-before'> <'rest-after'>?"},"rest-after":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"rest-before":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<time> | none | x-weak | weak | medium | strong | x-strong"},"shape-rendering":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#ShapeRenderingPropert"],syntax:"auto | optimizeSpeed | crispEdges | geometricPrecision"},src:{comment:"added @font-face's src property https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/src",syntax:"[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#"},speak:{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"auto | none | normal"},"speak-as":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"normal | spell-out || digits || [ literal-punctuation | no-punctuation ]"},stroke:{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<paint>"},"stroke-dasharray":{comment:"added SVG property; a list of comma and/or white space separated <length>s and <percentage>s",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"none | [ <svg-length>+ ]#"},"stroke-dashoffset":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<svg-length>"},"stroke-linecap":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"butt | round | square"},"stroke-linejoin":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"miter | round | bevel"},"stroke-miterlimit":{comment:"added SVG property (<miterlimit> = <number-one-or-greater>) ",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<number-one-or-greater>"},"stroke-opacity":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<number-zero-one>"},"stroke-width":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/painting.html#StrokeProperties"],syntax:"<svg-length>"},"text-anchor":{comment:"added SVG property",references:["https://www.w3.org/TR/SVG/text.html#TextAlignmentProperties"],syntax:"start | middle | end"},"unicode-bidi":{comment:"added prefixed keywords https://developer.mozilla.org/en-US/docs/Web/CSS/unicode-bidi",syntax:"| -moz-isolate | -moz-isolate-override | -moz-plaintext | -webkit-isolate | -webkit-isolate-override | -webkit-plaintext"},"unicode-range":{comment:"added missed property https://developer.mozilla.org/en-US/docs/Web/CSS/%40font-face/unicode-range",syntax:"<urange>#"},"voice-balance":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<number> | left | center | right | leftwards | rightwards"},"voice-duration":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"auto | <time>"},"voice-family":{comment:"<name> -> <family-name>, https://www.w3.org/TR/css3-speech/#property-index",syntax:"[ [ <family-name> | <generic-voice> ] , ]* [ <family-name> | <generic-voice> ] | preserve"},"voice-pitch":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-range":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"<frequency> && absolute | [ [ x-low | low | medium | high | x-high ] || [ <frequency> | <semitones> | <percentage> ] ]"},"voice-rate":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"[ normal | x-slow | slow | medium | fast | x-fast ] || <percentage>"},"voice-stress":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"normal | strong | moderate | none | reduced"},"voice-volume":{comment:"https://www.w3.org/TR/css3-speech/#property-index",syntax:"silent | [ [ x-soft | soft | medium | loud | x-loud ] || <decibel> ]"},"writing-mode":{comment:"extend with SVG keywords",syntax:"| <svg-writing-mode>"}},syntaxes:{"-legacy-gradient":{comment:"added collection of legacy gradient syntaxes",syntax:"<-webkit-gradient()> | <-legacy-linear-gradient> | <-legacy-repeating-linear-gradient> | <-legacy-radial-gradient> | <-legacy-repeating-radial-gradient>"},"-legacy-linear-gradient":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"-moz-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-repeating-linear-gradient":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> ) | -o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )"},"-legacy-linear-gradient-arguments":{comment:"like standard syntax but w/o `to` keyword https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient",syntax:"[ <angle> | <side-or-corner> ]? , <color-stop-list>"},"-legacy-radial-gradient":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"-moz-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-repeating-radial-gradient":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> ) | -o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )"},"-legacy-radial-gradient-arguments":{comment:"deprecated syntax that implemented by some browsers https://www.w3.org/TR/2011/WD-css3-images-20110908/#radial-gradients",syntax:"[ <position> , ]? [ [ [ <-legacy-radial-gradient-shape> || <-legacy-radial-gradient-size> ] | [ <length> | <percentage> ]{2} ] , ]? <color-stop-list>"},"-legacy-radial-gradient-size":{comment:"before a standard it contains 2 extra keywords (`contain` and `cover`) https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltsize",syntax:"closest-side | closest-corner | farthest-side | farthest-corner | contain | cover"},"-legacy-radial-gradient-shape":{comment:"define to double sure it doesn't extends in future https://www.w3.org/TR/2011/WD-css3-images-20110908/#ltshape",syntax:"circle | ellipse"},"-non-standard-font":{comment:"non standard fonts",references:["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],syntax:"-apple-system-body | -apple-system-headline | -apple-system-subheadline | -apple-system-caption1 | -apple-system-caption2 | -apple-system-footnote | -apple-system-short-body | -apple-system-short-headline | -apple-system-short-subheadline | -apple-system-short-caption1 | -apple-system-short-footnote | -apple-system-tall-body"},"-non-standard-color":{comment:"non standard colors",references:["http://cssdot.ru/%D0%A1%D0%BF%D1%80%D0%B0%D0%B2%D0%BE%D1%87%D0%BD%D0%B8%D0%BA_CSS/color-i305.html","https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#Mozilla_Color_Preference_Extensions"],syntax:"-moz-ButtonDefault | -moz-ButtonHoverFace | -moz-ButtonHoverText | -moz-CellHighlight | -moz-CellHighlightText | -moz-Combobox | -moz-ComboboxText | -moz-Dialog | -moz-DialogText | -moz-dragtargetzone | -moz-EvenTreeRow | -moz-Field | -moz-FieldText | -moz-html-CellHighlight | -moz-html-CellHighlightText | -moz-mac-accentdarkestshadow | -moz-mac-accentdarkshadow | -moz-mac-accentface | -moz-mac-accentlightesthighlight | -moz-mac-accentlightshadow | -moz-mac-accentregularhighlight | -moz-mac-accentregularshadow | -moz-mac-chrome-active | -moz-mac-chrome-inactive | -moz-mac-focusring | -moz-mac-menuselect | -moz-mac-menushadow | -moz-mac-menutextselect | -moz-MenuHover | -moz-MenuHoverText | -moz-MenuBarText | -moz-MenuBarHoverText | -moz-nativehyperlinktext | -moz-OddTreeRow | -moz-win-communicationstext | -moz-win-mediatext | -moz-activehyperlinktext | -moz-default-background-color | -moz-default-color | -moz-hyperlinktext | -moz-visitedhyperlinktext | -webkit-activelink | -webkit-focus-ring-color | -webkit-link | -webkit-text"},"-non-standard-image-rendering":{comment:"non-standard keywords http://phrogz.net/tmp/canvas_image_zoom.html",syntax:"optimize-contrast | -moz-crisp-edges | -o-crisp-edges | -webkit-optimize-contrast"},"-non-standard-overflow":{comment:"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/overflow",syntax:"-moz-scrollbars-none | -moz-scrollbars-horizontal | -moz-scrollbars-vertical | -moz-hidden-unscrollable"},"-non-standard-width":{comment:"non-standard keywords https://developer.mozilla.org/en-US/docs/Web/CSS/width",syntax:"fill-available | min-intrinsic | intrinsic | -moz-available | -moz-fit-content | -moz-min-content | -moz-max-content | -webkit-min-content | -webkit-max-content"},"-webkit-gradient()":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/ - TODO: simplify when after match algorithm improvement ( [, point, radius | , point] -> [, radius]? , point )",syntax:"-webkit-gradient( <-webkit-gradient-type>, <-webkit-gradient-point> [, <-webkit-gradient-point> | , <-webkit-gradient-radius>, <-webkit-gradient-point> ] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )"},"-webkit-gradient-color-stop":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"from( <color> ) | color-stop( [ <number-zero-one> | <percentage> ] , <color> ) | to( <color> )"},"-webkit-gradient-point":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"[ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]"},"-webkit-gradient-radius":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"<length> | <percentage>"},"-webkit-gradient-type":{comment:"first Apple proposal gradient syntax https://webkit.org/blog/175/introducing-css-gradients/",syntax:"linear | radial"},"-webkit-mask-box-repeat":{comment:"missed; https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-mask-box-image",syntax:"repeat | stretch | round"},"-webkit-mask-clip-style":{comment:"missed; there is no enough information about `-webkit-mask-clip` property, but looks like all those keywords are working",syntax:"border | border-box | padding | padding-box | content | content-box | text"},"-ms-filter-function-list":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<-ms-filter-function>+"},"-ms-filter-function":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<-ms-filter-function-progid> | <-ms-filter-function-legacy>"},"-ms-filter-function-progid":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"'progid:' [ <ident-token> '.' ]* [ <ident-token> | <function-token> <any-value>? ) ]"},"-ms-filter-function-legacy":{comment:"https://developer.mozilla.org/en-US/docs/Web/CSS/-ms-filter",syntax:"<ident-token> | <function-token> <any-value>? )"},"-ms-filter":{syntax:"<string>"},age:{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"child | young | old"},"attr-name":{syntax:"<wq-name>"},"attr-fallback":{syntax:"<any-value>"},"border-radius":{comment:"missed, https://drafts.csswg.org/css-backgrounds-3/#the-border-radius",syntax:"<length-percentage>{1,2}"},bottom:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"content-list":{comment:"missed -> https://drafts.csswg.org/css-content/#typedef-content-list (document-url, <target> and leader() is omitted util stabilization)",syntax:"[ <string> | contents | <image> | <quote> | <target> | <leader()> | <attr()> | counter( <ident>, <'list-style-type'>? ) ]+"},"element()":{comment:"https://drafts.csswg.org/css-gcpm/#element-syntax & https://drafts.csswg.org/css-images-4/#element-notation",syntax:"element( <custom-ident> , [ first | start | last | first-except ]? ) | element( <id-selector> )"},"generic-voice":{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"[ <age>? <gender> <integer>? ]"},gender:{comment:"https://www.w3.org/TR/css3-speech/#voice-family",syntax:"male | female | neutral"},"generic-family":{comment:"added -apple-system",references:["https://webkit.org/blog/3709/using-the-system-font-in-web-content/"],syntax:"| -apple-system"},gradient:{comment:"added legacy syntaxes support",syntax:"| <-legacy-gradient>"},left:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"mask-image":{comment:"missed; https://drafts.fxtf.org/css-masking-1/#the-mask-image",syntax:"<mask-reference>#"},"name-repeat":{comment:"missed, and looks like obsolete, keep it as is since other property syntaxes should be changed too; https://www.w3.org/TR/2015/WD-css-grid-1-20150917/#typedef-name-repeat",syntax:"repeat( [ <positive-integer> | auto-fill ], <line-names>+)"},"named-color":{comment:"added non standard color names",syntax:"| <-non-standard-color>"},paint:{comment:"used by SVG https://www.w3.org/TR/SVG/painting.html#SpecifyingPaint",syntax:"none | <color> | <url> [ none | <color> ]? | context-fill | context-stroke"},"page-size":{comment:"https://www.w3.org/TR/css-page-3/#typedef-page-size-page-size",syntax:"A5 | A4 | A3 | B5 | B4 | JIS-B5 | JIS-B4 | letter | legal | ledger"},ratio:{comment:"missed, https://drafts.csswg.org/mediaqueries-4/#typedef-ratio",syntax:"<integer> / <integer>"},right:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},shape:{comment:"missed spaces in function body and add backwards compatible syntax",syntax:"rect( <top>, <right>, <bottom>, <left> ) | rect( <top> <right> <bottom> <left> )"},"svg-length":{comment:"All coordinates and lengths in SVG can be specified with or without a unit identifier",references:["https://www.w3.org/TR/SVG11/coords.html#Units"],syntax:"<percentage> | <length> | <number>"},"svg-writing-mode":{comment:"SVG specific keywords (deprecated for CSS)",references:["https://developer.mozilla.org/en/docs/Web/CSS/writing-mode","https://www.w3.org/TR/SVG/text.html#WritingModeProperty"],syntax:"lr-tb | rl-tb | tb-rl | lr | rl | tb"},top:{comment:"missed; not sure we should add it, but no others except `shape` is using it so it's ok for now; https://drafts.fxtf.org/css-masking-1/#funcdef-clip-rect",syntax:"<length> | auto"},"track-group":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"'(' [ <string>* <track-minmax> <string>* ]+ ')' [ '[' <positive-integer> ']' ]? | <track-minmax>"},"track-list-v0":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"[ <string>* <track-group> <string>* ]+ | none"},"track-minmax":{comment:"used by old grid-columns and grid-rows syntax v0",syntax:"minmax( <track-breadth> , <track-breadth> ) | auto | <track-breadth> | fit-content"},x:{comment:"missed; not sure we should add it, but no others except `cursor` is using it so it's ok for now; https://drafts.csswg.org/css-ui-3/#cursor",syntax:"<number>"},y:{comment:"missed; not sure we should add it, but no others except `cursor` is using so it's ok for now; https://drafts.csswg.org/css-ui-3/#cursor",syntax:"<number>"},declaration:{comment:"missed, restored by https://drafts.csswg.org/css-syntax",syntax:"<ident-token> : <declaration-value>? [ '!' important ]?"},"declaration-list":{comment:"missed, restored by https://drafts.csswg.org/css-syntax",syntax:"[ <declaration>? ';' ]* <declaration>?"},url:{comment:"https://drafts.csswg.org/css-values-4/#urls",syntax:"url( <string> <url-modifier>* ) | <url-token>"},"url-modifier":{comment:"https://drafts.csswg.org/css-values-4/#typedef-url-modifier",syntax:"<ident> | <function-token> <any-value> )"},"number-zero-one":{syntax:"<number [0,1]>"},"number-one-or-greater":{syntax:"<number [1,∞]>"},"positive-integer":{syntax:"<integer [0,∞]>"},"-non-standard-display":{syntax:"-ms-inline-flexbox | -ms-grid | -ms-inline-grid | -webkit-flex | -webkit-inline-flex | -webkit-box | -webkit-inline-box | -moz-inline-stack | -moz-box | -moz-inline-box"}}},mo=/^\s*\|\s*/;function ho(e,t){const n={};for(const t in e)n[t]=e[t].syntax||e[t];for(const r in t)r in e?t[r].syntax?n[r]=mo.test(t[r].syntax)?n[r]+" "+t[r].syntax.trim():t[r].syntax:delete n[r]:t[r].syntax&&(n[r]=t[r].syntax.replace(mo,""));return n}function fo(e){const t={};for(const n in e)t[n]=e[n].syntax;return t}var go={types:ho({"absolute-size":{syntax:"xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large"},"alpha-value":{syntax:"<number> | <percentage>"},"angle-percentage":{syntax:"<angle> | <percentage>"},"angular-color-hint":{syntax:"<angle-percentage>"},"angular-color-stop":{syntax:"<color> && <color-stop-angle>?"},"angular-color-stop-list":{syntax:"[ <angular-color-stop> [, <angular-color-hint>]? ]# , <angular-color-stop>"},"animateable-feature":{syntax:"scroll-position | contents | <custom-ident>"},attachment:{syntax:"scroll | fixed | local"},"attr()":{syntax:"attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )"},"attr-matcher":{syntax:"[ '~' | '|' | '^' | '$' | '*' ]? '='"},"attr-modifier":{syntax:"i | s"},"attribute-selector":{syntax:"'[' <wq-name> ']' | '[' <wq-name> <attr-matcher> [ <string-token> | <ident-token> ] <attr-modifier>? ']'"},"auto-repeat":{syntax:"repeat( [ auto-fill | auto-fit ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"auto-track-list":{syntax:"[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>? <auto-repeat>\n[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>?"},"baseline-position":{syntax:"[ first | last ]? baseline"},"basic-shape":{syntax:"<inset()> | <circle()> | <ellipse()> | <polygon()> | <path()>"},"bg-image":{syntax:"none | <image>"},"bg-layer":{syntax:"<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"bg-position":{syntax:"[ [ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] | [ center | [ left | right ] <length-percentage>? ] && [ center | [ top | bottom ] <length-percentage>? ] ]"},"bg-size":{syntax:"[ <length-percentage> | auto ]{1,2} | cover | contain"},"blur()":{syntax:"blur( <length> )"},"blend-mode":{syntax:"normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosity"},box:{syntax:"border-box | padding-box | content-box"},"brightness()":{syntax:"brightness( <number-percentage> )"},"calc()":{syntax:"calc( <calc-sum> )"},"calc-sum":{syntax:"<calc-product> [ [ '+' | '-' ] <calc-product> ]*"},"calc-product":{syntax:"<calc-value> [ '*' <calc-value> | '/' <number> ]*"},"calc-value":{syntax:"<number> | <dimension> | <percentage> | ( <calc-sum> )"},"cf-final-image":{syntax:"<image> | <color>"},"cf-mixing-image":{syntax:"<percentage>? && <image>"},"circle()":{syntax:"circle( [ <shape-radius> ]? [ at <position> ]? )"},"clamp()":{syntax:"clamp( <calc-sum>#{3} )"},"class-selector":{syntax:"'.' <ident-token>"},"clip-source":{syntax:"<url>"},color:{syntax:"<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hex-color> | <named-color> | currentcolor | <deprecated-system-color>"},"color-stop":{syntax:"<color-stop-length> | <color-stop-angle>"},"color-stop-angle":{syntax:"<angle-percentage>{1,2}"},"color-stop-length":{syntax:"<length-percentage>{1,2}"},"color-stop-list":{syntax:"[ <linear-color-stop> [, <linear-color-hint>]? ]# , <linear-color-stop>"},combinator:{syntax:"'>' | '+' | '~' | [ '||' ]"},"common-lig-values":{syntax:"[ common-ligatures | no-common-ligatures ]"},"compat-auto":{syntax:"searchfield | textarea | push-button | slider-horizontal | checkbox | radio | square-button | menulist | listbox | meter | progress-bar | button"},"composite-style":{syntax:"clear | copy | source-over | source-in | source-out | source-atop | destination-over | destination-in | destination-out | destination-atop | xor"},"compositing-operator":{syntax:"add | subtract | intersect | exclude"},"compound-selector":{syntax:"[ <type-selector>? <subclass-selector>* [ <pseudo-element-selector> <pseudo-class-selector>* ]* ]!"},"compound-selector-list":{syntax:"<compound-selector>#"},"complex-selector":{syntax:"<compound-selector> [ <combinator>? <compound-selector> ]*"},"complex-selector-list":{syntax:"<complex-selector>#"},"conic-gradient()":{syntax:"conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )"},"contextual-alt-values":{syntax:"[ contextual | no-contextual ]"},"content-distribution":{syntax:"space-between | space-around | space-evenly | stretch"},"content-list":{syntax:"[ <string> | contents | <image> | <quote> | <target> | <leader()> ]+"},"content-position":{syntax:"center | start | end | flex-start | flex-end"},"content-replacement":{syntax:"<image>"},"contrast()":{syntax:"contrast( [ <number-percentage> ] )"},"counter()":{syntax:"counter( <custom-ident>, <counter-style>? )"},"counter-style":{syntax:"<counter-style-name> | symbols()"},"counter-style-name":{syntax:"<custom-ident>"},"counters()":{syntax:"counters( <custom-ident>, <string>, <counter-style>? )"},"cross-fade()":{syntax:"cross-fade( <cf-mixing-image> , <cf-final-image>? )"},"cubic-bezier-timing-function":{syntax:"ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)"},"deprecated-system-color":{syntax:"ActiveBorder | ActiveCaption | AppWorkspace | Background | ButtonFace | ButtonHighlight | ButtonShadow | ButtonText | CaptionText | GrayText | Highlight | HighlightText | InactiveBorder | InactiveCaption | InactiveCaptionText | InfoBackground | InfoText | Menu | MenuText | Scrollbar | ThreeDDarkShadow | ThreeDFace | ThreeDHighlight | ThreeDLightShadow | ThreeDShadow | Window | WindowFrame | WindowText"},"discretionary-lig-values":{syntax:"[ discretionary-ligatures | no-discretionary-ligatures ]"},"display-box":{syntax:"contents | none"},"display-inside":{syntax:"flow | flow-root | table | flex | grid | ruby"},"display-internal":{syntax:"table-row-group | table-header-group | table-footer-group | table-row | table-cell | table-column-group | table-column | table-caption | ruby-base | ruby-text | ruby-base-container | ruby-text-container"},"display-legacy":{syntax:"inline-block | inline-list-item | inline-table | inline-flex | inline-grid"},"display-listitem":{syntax:"<display-outside>? && [ flow | flow-root ]? && list-item"},"display-outside":{syntax:"block | inline | run-in"},"drop-shadow()":{syntax:"drop-shadow( <length>{2,3} <color>? )"},"east-asian-variant-values":{syntax:"[ jis78 | jis83 | jis90 | jis04 | simplified | traditional ]"},"east-asian-width-values":{syntax:"[ full-width | proportional-width ]"},"element()":{syntax:"element( <id-selector> )"},"ellipse()":{syntax:"ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )"},"ending-shape":{syntax:"circle | ellipse"},"env()":{syntax:"env( <custom-ident> , <declaration-value>? )"},"explicit-track-list":{syntax:"[ <line-names>? <track-size> ]+ <line-names>?"},"family-name":{syntax:"<string> | <custom-ident>+"},"feature-tag-value":{syntax:"<string> [ <integer> | on | off ]?"},"feature-type":{syntax:"@stylistic | @historical-forms | @styleset | @character-variant | @swash | @ornaments | @annotation"},"feature-value-block":{syntax:"<feature-type> '{' <feature-value-declaration-list> '}'"},"feature-value-block-list":{syntax:"<feature-value-block>+"},"feature-value-declaration":{syntax:"<custom-ident>: <integer>+;"},"feature-value-declaration-list":{syntax:"<feature-value-declaration>"},"feature-value-name":{syntax:"<custom-ident>"},"fill-rule":{syntax:"nonzero | evenodd"},"filter-function":{syntax:"<blur()> | <brightness()> | <contrast()> | <drop-shadow()> | <grayscale()> | <hue-rotate()> | <invert()> | <opacity()> | <saturate()> | <sepia()>"},"filter-function-list":{syntax:"[ <filter-function> | <url> ]+"},"final-bg-layer":{syntax:"<'background-color'> || <bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>"},"fit-content()":{syntax:"fit-content( [ <length> | <percentage> ] )"},"fixed-breadth":{syntax:"<length-percentage>"},"fixed-repeat":{syntax:"repeat( [ <positive-integer> ] , [ <line-names>? <fixed-size> ]+ <line-names>? )"},"fixed-size":{syntax:"<fixed-breadth> | minmax( <fixed-breadth> , <track-breadth> ) | minmax( <inflexible-breadth> , <fixed-breadth> )"},"font-stretch-absolute":{syntax:"normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded | <percentage>"},"font-variant-css21":{syntax:"[ normal | small-caps ]"},"font-weight-absolute":{syntax:"normal | bold | <number [1,1000]>"},"frequency-percentage":{syntax:"<frequency> | <percentage>"},"general-enclosed":{syntax:"[ <function-token> <any-value> ) ] | ( <ident> <any-value> )"},"generic-family":{syntax:"serif | sans-serif | cursive | fantasy | monospace"},"generic-name":{syntax:"serif | sans-serif | cursive | fantasy | monospace"},"geometry-box":{syntax:"<shape-box> | fill-box | stroke-box | view-box"},gradient:{syntax:"<linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()>"},"grayscale()":{syntax:"grayscale( <number-percentage> )"},"grid-line":{syntax:"auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]"},"historical-lig-values":{syntax:"[ historical-ligatures | no-historical-ligatures ]"},"hsl()":{syntax:"hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )"},"hsla()":{syntax:"hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )"},hue:{syntax:"<number> | <angle>"},"hue-rotate()":{syntax:"hue-rotate( <angle> )"},"id-selector":{syntax:"<hash-token>"},image:{syntax:"<url> | <image()> | <image-set()> | <element()> | <paint()> | <cross-fade()> | <gradient>"},"image()":{syntax:"image( <image-tags>? [ <image-src>? , <color>? ]! )"},"image-set()":{syntax:"image-set( <image-set-option># )"},"image-set-option":{syntax:"[ <image> | <string> ] <resolution>"},"image-src":{syntax:"<url> | <string>"},"image-tags":{syntax:"ltr | rtl"},"inflexible-breadth":{syntax:"<length> | <percentage> | min-content | max-content | auto"},"inset()":{syntax:"inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )"},"invert()":{syntax:"invert( <number-percentage> )"},"keyframes-name":{syntax:"<custom-ident> | <string>"},"keyframe-block":{syntax:"<keyframe-selector># {\n <declaration-list>\n}"},"keyframe-block-list":{syntax:"<keyframe-block>+"},"keyframe-selector":{syntax:"from | to | <percentage>"},"leader()":{syntax:"leader( <leader-type> )"},"leader-type":{syntax:"dotted | solid | space | <string>"},"length-percentage":{syntax:"<length> | <percentage>"},"line-names":{syntax:"'[' <custom-ident>* ']'"},"line-name-list":{syntax:"[ <line-names> | <name-repeat> ]+"},"line-style":{syntax:"none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset"},"line-width":{syntax:"<length> | thin | medium | thick"},"linear-color-hint":{syntax:"<length-percentage>"},"linear-color-stop":{syntax:"<color> <color-stop-length>?"},"linear-gradient()":{syntax:"linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"mask-layer":{syntax:"<mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <compositing-operator> || <masking-mode>"},"mask-position":{syntax:"[ <length-percentage> | left | center | right ] [ <length-percentage> | top | center | bottom ]?"},"mask-reference":{syntax:"none | <image> | <mask-source>"},"mask-source":{syntax:"<url>"},"masking-mode":{syntax:"alpha | luminance | match-source"},"matrix()":{syntax:"matrix( <number>#{6} )"},"matrix3d()":{syntax:"matrix3d( <number>#{16} )"},"max()":{syntax:"max( <calc-sum># )"},"media-and":{syntax:"<media-in-parens> [ and <media-in-parens> ]+"},"media-condition":{syntax:"<media-not> | <media-and> | <media-or> | <media-in-parens>"},"media-condition-without-or":{syntax:"<media-not> | <media-and> | <media-in-parens>"},"media-feature":{syntax:"( [ <mf-plain> | <mf-boolean> | <mf-range> ] )"},"media-in-parens":{syntax:"( <media-condition> ) | <media-feature> | <general-enclosed>"},"media-not":{syntax:"not <media-in-parens>"},"media-or":{syntax:"<media-in-parens> [ or <media-in-parens> ]+"},"media-query":{syntax:"<media-condition> | [ not | only ]? <media-type> [ and <media-condition-without-or> ]?"},"media-query-list":{syntax:"<media-query>#"},"media-type":{syntax:"<ident>"},"mf-boolean":{syntax:"<mf-name>"},"mf-name":{syntax:"<ident>"},"mf-plain":{syntax:"<mf-name> : <mf-value>"},"mf-range":{syntax:"<mf-name> [ '<' | '>' ]? '='? <mf-value>\n| <mf-value> [ '<' | '>' ]? '='? <mf-name>\n| <mf-value> '<' '='? <mf-name> '<' '='? <mf-value>\n| <mf-value> '>' '='? <mf-name> '>' '='? <mf-value>"},"mf-value":{syntax:"<number> | <dimension> | <ident> | <ratio>"},"min()":{syntax:"min( <calc-sum># )"},"minmax()":{syntax:"minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )"},"named-color":{syntax:"transparent | aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen"},"namespace-prefix":{syntax:"<ident>"},"ns-prefix":{syntax:"[ <ident-token> | '*' ]? '|'"},"number-percentage":{syntax:"<number> | <percentage>"},"numeric-figure-values":{syntax:"[ lining-nums | oldstyle-nums ]"},"numeric-fraction-values":{syntax:"[ diagonal-fractions | stacked-fractions ]"},"numeric-spacing-values":{syntax:"[ proportional-nums | tabular-nums ]"},nth:{syntax:"<an-plus-b> | even | odd"},"opacity()":{syntax:"opacity( [ <number-percentage> ] )"},"overflow-position":{syntax:"unsafe | safe"},"outline-radius":{syntax:"<length> | <percentage>"},"page-body":{syntax:"<declaration>? [ ; <page-body> ]? | <page-margin-box> <page-body>"},"page-margin-box":{syntax:"<page-margin-box-type> '{' <declaration-list> '}'"},"page-margin-box-type":{syntax:"@top-left-corner | @top-left | @top-center | @top-right | @top-right-corner | @bottom-left-corner | @bottom-left | @bottom-center | @bottom-right | @bottom-right-corner | @left-top | @left-middle | @left-bottom | @right-top | @right-middle | @right-bottom"},"page-selector-list":{syntax:"[ <page-selector># ]?"},"page-selector":{syntax:"<pseudo-page>+ | <ident> <pseudo-page>*"},"path()":{syntax:"path( [ <fill-rule>, ]? <string> )"},"paint()":{syntax:"paint( <ident>, <declaration-value>? )"},"perspective()":{syntax:"perspective( <length> )"},"polygon()":{syntax:"polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )"},position:{syntax:"[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]"},"pseudo-class-selector":{syntax:"':' <ident-token> | ':' <function-token> <any-value> ')'"},"pseudo-element-selector":{syntax:"':' <pseudo-class-selector>"},"pseudo-page":{syntax:": [ left | right | first | blank ]"},quote:{syntax:"open-quote | close-quote | no-open-quote | no-close-quote"},"radial-gradient()":{syntax:"radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"relative-selector":{syntax:"<combinator>? <complex-selector>"},"relative-selector-list":{syntax:"<relative-selector>#"},"relative-size":{syntax:"larger | smaller"},"repeat-style":{syntax:"repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}"},"repeating-linear-gradient()":{syntax:"repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )"},"repeating-radial-gradient()":{syntax:"repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )"},"rgb()":{syntax:"rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )"},"rgba()":{syntax:"rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )"},"rotate()":{syntax:"rotate( [ <angle> | <zero> ] )"},"rotate3d()":{syntax:"rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )"},"rotateX()":{syntax:"rotateX( [ <angle> | <zero> ] )"},"rotateY()":{syntax:"rotateY( [ <angle> | <zero> ] )"},"rotateZ()":{syntax:"rotateZ( [ <angle> | <zero> ] )"},"saturate()":{syntax:"saturate( <number-percentage> )"},"scale()":{syntax:"scale( <number> , <number>? )"},"scale3d()":{syntax:"scale3d( <number> , <number> , <number> )"},"scaleX()":{syntax:"scaleX( <number> )"},"scaleY()":{syntax:"scaleY( <number> )"},"scaleZ()":{syntax:"scaleZ( <number> )"},"self-position":{syntax:"center | start | end | self-start | self-end | flex-start | flex-end"},"shape-radius":{syntax:"<length-percentage> | closest-side | farthest-side"},"skew()":{syntax:"skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )"},"skewX()":{syntax:"skewX( [ <angle> | <zero> ] )"},"skewY()":{syntax:"skewY( [ <angle> | <zero> ] )"},"sepia()":{syntax:"sepia( <number-percentage> )"},shadow:{syntax:"inset? && <length>{2,4} && <color>?"},"shadow-t":{syntax:"[ <length>{2,3} && <color>? ]"},shape:{syntax:"rect(<top>, <right>, <bottom>, <left>)"},"shape-box":{syntax:"<box> | margin-box"},"side-or-corner":{syntax:"[ left | right ] || [ top | bottom ]"},"single-animation":{syntax:"<time> || <timing-function> || <time> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ]"},"single-animation-direction":{syntax:"normal | reverse | alternate | alternate-reverse"},"single-animation-fill-mode":{syntax:"none | forwards | backwards | both"},"single-animation-iteration-count":{syntax:"infinite | <number>"},"single-animation-play-state":{syntax:"running | paused"},"single-transition":{syntax:"[ none | <single-transition-property> ] || <time> || <timing-function> || <time>"},"single-transition-property":{syntax:"all | <custom-ident>"},size:{syntax:"closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>{2}"},"step-position":{syntax:"jump-start | jump-end | jump-none | jump-both | start | end"},"step-timing-function":{syntax:"step-start | step-end | steps(<integer>[, <step-position>]?)"},"subclass-selector":{syntax:"<id-selector> | <class-selector> | <attribute-selector> | <pseudo-class-selector>"},"supports-condition":{syntax:"not <supports-in-parens> | <supports-in-parens> [ and <supports-in-parens> ]* | <supports-in-parens> [ or <supports-in-parens> ]*"},"supports-in-parens":{syntax:"( <supports-condition> ) | <supports-feature> | <general-enclosed>"},"supports-feature":{syntax:"<supports-decl> | <supports-selector-fn>"},"supports-decl":{syntax:"( <declaration> )"},"supports-selector-fn":{syntax:"selector( <complex-selector> )"},symbol:{syntax:"<string> | <image> | <custom-ident>"},target:{syntax:"<target-counter()> | <target-counters()> | <target-text()>"},"target-counter()":{syntax:"target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )"},"target-counters()":{syntax:"target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )"},"target-text()":{syntax:"target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )"},"time-percentage":{syntax:"<time> | <percentage>"},"timing-function":{syntax:"linear | <cubic-bezier-timing-function> | <step-timing-function>"},"track-breadth":{syntax:"<length-percentage> | <flex> | min-content | max-content | auto"},"track-list":{syntax:"[ <line-names>? [ <track-size> | <track-repeat> ] ]+ <line-names>?"},"track-repeat":{syntax:"repeat( [ <positive-integer> ] , [ <line-names>? <track-size> ]+ <line-names>? )"},"track-size":{syntax:"<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( [ <length> | <percentage> ] )"},"transform-function":{syntax:"<matrix()> | <translate()> | <translateX()> | <translateY()> | <scale()> | <scaleX()> | <scaleY()> | <rotate()> | <skew()> | <skewX()> | <skewY()> | <matrix3d()> | <translate3d()> | <translateZ()> | <scale3d()> | <scaleZ()> | <rotate3d()> | <rotateX()> | <rotateY()> | <rotateZ()> | <perspective()>"},"transform-list":{syntax:"<transform-function>+"},"translate()":{syntax:"translate( <length-percentage> , <length-percentage>? )"},"translate3d()":{syntax:"translate3d( <length-percentage> , <length-percentage> , <length> )"},"translateX()":{syntax:"translateX( <length-percentage> )"},"translateY()":{syntax:"translateY( <length-percentage> )"},"translateZ()":{syntax:"translateZ( <length> )"},"type-or-unit":{syntax:"string | color | url | integer | number | length | angle | time | frequency | cap | ch | em | ex | ic | lh | rlh | rem | vb | vi | vw | vh | vmin | vmax | mm | Q | cm | in | pt | pc | px | deg | grad | rad | turn | ms | s | Hz | kHz | %"},"type-selector":{syntax:"<wq-name> | <ns-prefix>? '*'"},"var()":{syntax:"var( <custom-property-name> , <declaration-value>? )"},"viewport-length":{syntax:"auto | <length-percentage>"},"wq-name":{syntax:"<ns-prefix>? <ident-token>"}},po.syntaxes),atrules:function(e,t){const n={};for(const r in e){const i=t[r]&&t[r].descriptors||null;n[r]={prelude:r in t&&"prelude"in t[r]?t[r].prelude:e[r].prelude||null,descriptors:e[r].descriptors?ho(e[r].descriptors,i||{}):i&&fo(i)}}for(const r in t)hasOwnProperty.call(e,r)||(n[r]={prelude:t[r].prelude||null,descriptors:t[r].descriptors&&fo(t[r].descriptors)});return n}(function(e){const t=Object.create(null);for(const n in e){const r=e[n];let i=null;if(r.descriptors){i=Object.create(null);for(const e in r.descriptors)i[e]=r.descriptors[e].syntax}t[n.substr(1)]={prelude:r.syntax.trim().match(/^@\S+\s+([^;\{]*)/)[1].trim()||null,descriptors:i}}return t}(uo),po.atrules),properties:ho(co,po.properties)},yo=at.cmpChar,vo=at.isDigit,bo=at.TYPE,So=bo.WhiteSpace,xo=bo.Comment,wo=bo.Ident,Co=bo.Number,ko=bo.Dimension,Oo=43,To=45,Eo=110,Ao=!0;function _o(e,t){var n=this.scanner.tokenStart+e,r=this.scanner.source.charCodeAt(n);for(r!==Oo&&r!==To||(t&&this.error("Number sign is not allowed"),n++);n<this.scanner.tokenEnd;n++)vo(this.scanner.source.charCodeAt(n))||this.error("Integer is expected",n)}function zo(e){return _o.call(this,0,e)}function Ro(e,t){if(!yo(this.scanner.source,this.scanner.tokenStart+e,t)){var n="";switch(t){case Eo:n="N is expected";break;case To:n="HyphenMinus is expected"}this.error(n,this.scanner.tokenStart+e)}}function Lo(){for(var e=0,t=0,n=this.scanner.tokenType;n===So||n===xo;)n=this.scanner.lookupType(++e);if(n!==Co){if(!this.scanner.isDelim(Oo,e)&&!this.scanner.isDelim(To,e))return null;t=this.scanner.isDelim(Oo,e)?Oo:To;do{n=this.scanner.lookupType(++e)}while(n===So||n===xo);n!==Co&&(this.scanner.skip(e),zo.call(this,Ao))}return e>0&&this.scanner.skip(e),0===t&&(n=this.scanner.source.charCodeAt(this.scanner.tokenStart))!==Oo&&n!==To&&this.error("Number sign is expected"),zo.call(this,0!==t),t===To?"-"+this.consume(Co):this.consume(Co)}var Po={name:"AnPlusB",structure:{a:[String,null],b:[String,null]},parse:function(){var e=this.scanner.tokenStart,t=null,n=null;if(this.scanner.tokenType===Co)zo.call(this,false),n=this.consume(Co);else if(this.scanner.tokenType===wo&&yo(this.scanner.source,this.scanner.tokenStart,To))switch(t="-1",Ro.call(this,1,Eo),this.scanner.getTokenLength()){case 2:this.scanner.next(),n=Lo.call(this);break;case 3:Ro.call(this,2,To),this.scanner.next(),this.scanner.skipSC(),zo.call(this,Ao),n="-"+this.consume(Co);break;default:Ro.call(this,2,To),_o.call(this,3,Ao),this.scanner.next(),n=this.scanner.substrToCursor(e+2)}else if(this.scanner.tokenType===wo||this.scanner.isDelim(Oo)&&this.scanner.lookupType(1)===wo){var r=0;switch(t="1",this.scanner.isDelim(Oo)&&(r=1,this.scanner.next()),Ro.call(this,0,Eo),this.scanner.getTokenLength()){case 1:this.scanner.next(),n=Lo.call(this);break;case 2:Ro.call(this,1,To),this.scanner.next(),this.scanner.skipSC(),zo.call(this,Ao),n="-"+this.consume(Co);break;default:Ro.call(this,1,To),_o.call(this,2,Ao),this.scanner.next(),n=this.scanner.substrToCursor(e+r+1)}}else if(this.scanner.tokenType===ko){for(var i=this.scanner.source.charCodeAt(this.scanner.tokenStart),o=(r=i===Oo||i===To,this.scanner.tokenStart+r);o<this.scanner.tokenEnd&&vo(this.scanner.source.charCodeAt(o));o++);o===this.scanner.tokenStart+r&&this.error("Integer is expected",this.scanner.tokenStart+r),Ro.call(this,o-this.scanner.tokenStart,Eo),t=this.scanner.source.substring(e,o),o+1===this.scanner.tokenEnd?(this.scanner.next(),n=Lo.call(this)):(Ro.call(this,o-this.scanner.tokenStart+1,To),o+2===this.scanner.tokenEnd?(this.scanner.next(),this.scanner.skipSC(),zo.call(this,Ao),n="-"+this.consume(Co)):(_o.call(this,o-this.scanner.tokenStart+2,Ao),this.scanner.next(),n=this.scanner.substrToCursor(o+1)))}else this.error();return null!==t&&t.charCodeAt(0)===Oo&&(t=t.substr(1)),null!==n&&n.charCodeAt(0)===Oo&&(n=n.substr(1)),{type:"AnPlusB",loc:this.getLocation(e,this.scanner.tokenStart),a:t,b:n}},generate:function(e){var t=null!==e.a&&void 0!==e.a,n=null!==e.b&&void 0!==e.b;t?(this.chunk("+1"===e.a?"+n":"1"===e.a?"n":"-1"===e.a?"-n":e.a+"n"),n&&("-"===(n=String(e.b)).charAt(0)||"+"===n.charAt(0)?(this.chunk(n.charAt(0)),this.chunk(n.substr(1))):(this.chunk("+"),this.chunk(n)))):this.chunk(String(e.b))}},Bo=at.TYPE,Wo=Bo.WhiteSpace,Mo=Bo.Semicolon,Uo=Bo.LeftCurlyBracket,Io=Bo.Delim;function No(){return this.scanner.tokenIndex>0&&this.scanner.lookupType(-1)===Wo?this.scanner.tokenIndex>1?this.scanner.getTokenStart(this.scanner.tokenIndex-1):this.scanner.firstCharOffset:this.scanner.tokenStart}function qo(){return 0}var Do={name:"Raw",structure:{value:String},parse:function(e,t,n){var r,i=this.scanner.getTokenStart(e);return this.scanner.skip(this.scanner.getRawLength(e,t||qo)),r=n&&this.scanner.tokenStart>i?No.call(this):this.scanner.tokenStart,{type:"Raw",loc:this.getLocation(i,r),value:this.scanner.source.substring(i,r)}},generate:function(e){this.chunk(e.value)},mode:{default:qo,leftCurlyBracket:function(e){return e===Uo?1:0},leftCurlyBracketOrSemicolon:function(e){return e===Uo||e===Mo?1:0},exclamationMarkOrSemicolon:function(e,t,n){return e===Io&&33===t.charCodeAt(n)||e===Mo?1:0},semicolonIncluded:function(e){return e===Mo?2:0}}},Vo=at.TYPE,jo=Do.mode,Fo=Vo.AtKeyword,Go=Vo.Semicolon,Ko=Vo.LeftCurlyBracket,Yo=Vo.RightCurlyBracket;function Ho(e){return this.Raw(e,jo.leftCurlyBracketOrSemicolon,!0)}function $o(){for(var e,t=1;e=this.scanner.lookupType(t);t++){if(e===Yo)return!0;if(e===Ko||e===Fo)return!1}return!1}var Qo={name:"Atrule",structure:{name:String,prelude:["AtrulePrelude","Raw",null],block:["Block",null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null,i=null;switch(this.eat(Fo),t=(e=this.scanner.substrToCursor(n+1)).toLowerCase(),this.scanner.skipSC(),!1===this.scanner.eof&&this.scanner.tokenType!==Ko&&this.scanner.tokenType!==Go&&(this.parseAtrulePrelude?"AtrulePrelude"===(r=this.parseWithFallback(this.AtrulePrelude.bind(this,e),Ho)).type&&null===r.children.head&&(r=null):r=Ho.call(this,this.scanner.tokenIndex),this.scanner.skipSC()),this.scanner.tokenType){case Go:this.scanner.next();break;case Ko:i=this.atrule.hasOwnProperty(t)&&"function"==typeof this.atrule[t].block?this.atrule[t].block.call(this):this.Block($o.call(this))}return{type:"Atrule",loc:this.getLocation(n,this.scanner.tokenStart),name:e,prelude:r,block:i}},generate:function(e){this.chunk("@"),this.chunk(e.name),null!==e.prelude&&(this.chunk(" "),this.node(e.prelude)),e.block?this.node(e.block):this.chunk(";")},walkContext:"atrule"},Zo=at.TYPE,Xo=Zo.Semicolon,Jo=Zo.LeftCurlyBracket,ea={name:"AtrulePrelude",structure:{children:[[]]},parse:function(e){var t=null;return null!==e&&(e=e.toLowerCase()),this.scanner.skipSC(),t=this.atrule.hasOwnProperty(e)&&"function"==typeof this.atrule[e].prelude?this.atrule[e].prelude.call(this):this.readSequence(this.scope.AtrulePrelude),this.scanner.skipSC(),!0!==this.scanner.eof&&this.scanner.tokenType!==Jo&&this.scanner.tokenType!==Xo&&this.error("Semicolon or block is expected"),null===t&&(t=this.createList()),{type:"AtrulePrelude",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e)},walkContext:"atrulePrelude"},ta=at.TYPE,na=ta.Ident,ra=ta.String,ia=ta.Colon,oa=ta.LeftSquareBracket,aa=ta.RightSquareBracket;function sa(){this.scanner.eof&&this.error("Unexpected end of input");var e=this.scanner.tokenStart,t=!1,n=!0;return this.scanner.isDelim(42)?(t=!0,n=!1,this.scanner.next()):this.scanner.isDelim(124)||this.eat(na),this.scanner.isDelim(124)?61!==this.scanner.source.charCodeAt(this.scanner.tokenStart+1)?(this.scanner.next(),this.eat(na)):t&&this.error("Identifier is expected",this.scanner.tokenEnd):t&&this.error("Vertical line is expected"),n&&this.scanner.tokenType===ia&&(this.scanner.next(),this.eat(na)),{type:"Identifier",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}}function la(){var e=this.scanner.tokenStart,t=this.scanner.source.charCodeAt(e);return 61!==t&&126!==t&&94!==t&&36!==t&&42!==t&&124!==t&&this.error("Attribute selector (=, ~=, ^=, $=, *=, |=) is expected"),this.scanner.next(),61!==t&&(this.scanner.isDelim(61)||this.error("Equal sign is expected"),this.scanner.next()),this.scanner.substrToCursor(e)}var ua={name:"AttributeSelector",structure:{name:"Identifier",matcher:[String,null],value:["String","Identifier",null],flags:[String,null]},parse:function(){var e,t=this.scanner.tokenStart,n=null,r=null,i=null;return this.eat(oa),this.scanner.skipSC(),e=sa.call(this),this.scanner.skipSC(),this.scanner.tokenType!==aa&&(this.scanner.tokenType!==na&&(n=la.call(this),this.scanner.skipSC(),r=this.scanner.tokenType===ra?this.String():this.Identifier(),this.scanner.skipSC()),this.scanner.tokenType===na&&(i=this.scanner.getTokenValue(),this.scanner.next(),this.scanner.skipSC())),this.eat(aa),{type:"AttributeSelector",loc:this.getLocation(t,this.scanner.tokenStart),name:e,matcher:n,value:r,flags:i}},generate:function(e){var t=" ";this.chunk("["),this.node(e.name),null!==e.matcher&&(this.chunk(e.matcher),null!==e.value&&(this.node(e.value),"String"===e.value.type&&(t=""))),null!==e.flags&&(this.chunk(t),this.chunk(e.flags)),this.chunk("]")}},ca=at.TYPE,da=Do.mode,pa=ca.WhiteSpace,ma=ca.Comment,ha=ca.Semicolon,fa=ca.AtKeyword,ga=ca.LeftCurlyBracket,ya=ca.RightCurlyBracket;function va(e){return this.Raw(e,null,!0)}function ba(){return this.parseWithFallback(this.Rule,va)}function Sa(e){return this.Raw(e,da.semicolonIncluded,!0)}function xa(){if(this.scanner.tokenType===ha)return Sa.call(this,this.scanner.tokenIndex);var e=this.parseWithFallback(this.Declaration,Sa);return this.scanner.tokenType===ha&&this.scanner.next(),e}var wa={name:"Block",structure:{children:[["Atrule","Rule","Declaration"]]},parse:function(e){var t=e?xa:ba,n=this.scanner.tokenStart,r=this.createList();this.eat(ga);e:for(;!this.scanner.eof;)switch(this.scanner.tokenType){case ya:break e;case pa:case ma:this.scanner.next();break;case fa:r.push(this.parseWithFallback(this.Atrule,va));break;default:r.push(t.call(this))}return this.scanner.eof||this.eat(ya),{type:"Block",loc:this.getLocation(n,this.scanner.tokenStart),children:r}},generate:function(e){this.chunk("{"),this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")})),this.chunk("}")},walkContext:"block"},Ca=at.TYPE,ka=Ca.LeftSquareBracket,Oa=Ca.RightSquareBracket,Ta={name:"Brackets",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(ka),n=e.call(this,t),this.scanner.eof||this.eat(Oa),{type:"Brackets",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("["),this.children(e),this.chunk("]")}},Ea=at.TYPE.CDC,Aa={name:"CDC",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(Ea),{type:"CDC",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("--\x3e")}},_a=at.TYPE.CDO,za={name:"CDO",structure:[],parse:function(){var e=this.scanner.tokenStart;return this.eat(_a),{type:"CDO",loc:this.getLocation(e,this.scanner.tokenStart)}},generate:function(){this.chunk("\x3c!--")}},Ra=at.TYPE.Ident,La={name:"ClassSelector",structure:{name:String},parse:function(){return this.scanner.isDelim(46)||this.error("Full stop is expected"),this.scanner.next(),{type:"ClassSelector",loc:this.getLocation(this.scanner.tokenStart-1,this.scanner.tokenEnd),name:this.consume(Ra)}},generate:function(e){this.chunk("."),this.chunk(e.name)}},Pa=at.TYPE.Ident,Ba={name:"Combinator",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 62:case 43:case 126:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.tokenType===Pa&&!1!==this.scanner.lookupValue(0,"deep")||this.error("Identifier `deep` is expected"),this.scanner.next(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.scanner.next();break;default:this.error("Combinator is expected")}return{type:"Combinator",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}},Wa=at.TYPE.Comment,Ma={name:"Comment",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=this.scanner.tokenEnd;return this.eat(Wa),t-e+2>=2&&42===this.scanner.source.charCodeAt(t-2)&&47===this.scanner.source.charCodeAt(t-1)&&(t-=2),{type:"Comment",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e+2,t)}},generate:function(e){this.chunk("/*"),this.chunk(e.value),this.chunk("*/")}},Ua=Be.isCustomProperty,Ia=at.TYPE,Na=Do.mode,qa=Ia.Ident,Da=Ia.Hash,Va=Ia.Colon,ja=Ia.Semicolon,Fa=Ia.Delim,Ga=Ia.WhiteSpace;function Ka(e){return this.Raw(e,Na.exclamationMarkOrSemicolon,!0)}function Ya(e){return this.Raw(e,Na.exclamationMarkOrSemicolon,!1)}function Ha(){var e=this.scanner.tokenIndex,t=this.Value();return"Raw"!==t.type&&!1===this.scanner.eof&&this.scanner.tokenType!==ja&&!1===this.scanner.isDelim(33)&&!1===this.scanner.isBalanceEdge(e)&&this.error(),t}var $a={name:"Declaration",structure:{important:[Boolean,String],property:String,value:["Value","Raw"]},parse:function(){var e,t=this.scanner.tokenStart,n=this.scanner.tokenIndex,r=Qa.call(this),i=Ua(r),o=i?this.parseCustomProperty:this.parseValue,a=i?Ya:Ka,s=!1;this.scanner.skipSC(),this.eat(Va);const l=this.scanner.tokenIndex;if(i||this.scanner.skipSC(),e=o?this.parseWithFallback(Ha,a):a.call(this,this.scanner.tokenIndex),i&&"Value"===e.type&&e.children.isEmpty())for(let t=l-this.scanner.tokenIndex;t<=0;t++)if(this.scanner.lookupType(t)===Ga){e.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}return this.scanner.isDelim(33)&&(s=Za.call(this),this.scanner.skipSC()),!1===this.scanner.eof&&this.scanner.tokenType!==ja&&!1===this.scanner.isBalanceEdge(n)&&this.error(),{type:"Declaration",loc:this.getLocation(t,this.scanner.tokenStart),important:s,property:r,value:e}},generate:function(e){this.chunk(e.property),this.chunk(":"),this.node(e.value),e.important&&this.chunk(!0===e.important?"!important":"!"+e.important)},walkContext:"declaration"};function Qa(){var e=this.scanner.tokenStart;if(this.scanner.tokenType===Fa)switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 42:case 36:case 43:case 35:case 38:this.scanner.next();break;case 47:this.scanner.next(),this.scanner.isDelim(47)&&this.scanner.next()}return this.scanner.tokenType===Da?this.eat(Da):this.eat(qa),this.scanner.substrToCursor(e)}function Za(){this.eat(Fa),this.scanner.skipSC();var e=this.consume(qa);return"important"===e||e}var Xa=at.TYPE,Ja=Do.mode,es=Xa.WhiteSpace,ts=Xa.Comment,ns=Xa.Semicolon;function rs(e){return this.Raw(e,Ja.semicolonIncluded,!0)}var is={name:"DeclarationList",structure:{children:[["Declaration"]]},parse:function(){for(var e=this.createList();!this.scanner.eof;)switch(this.scanner.tokenType){case es:case ts:case ns:this.scanner.next();break;default:e.push(this.parseWithFallback(this.Declaration,rs))}return{type:"DeclarationList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(e){"Declaration"===e.type&&this.chunk(";")}))}},os=le.consumeNumber,as=at.TYPE.Dimension,ss={name:"Dimension",structure:{value:String,unit:String},parse:function(){var e=this.scanner.tokenStart,t=os(this.scanner.source,e);return this.eat(as),{type:"Dimension",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t),unit:this.scanner.source.substring(t,this.scanner.tokenStart)}},generate:function(e){this.chunk(e.value),this.chunk(e.unit)}},ls=at.TYPE.RightParenthesis,us={name:"Function",structure:{name:String,children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart,i=this.consumeFunctionName(),o=i.toLowerCase();return n=t.hasOwnProperty(o)?t[o].call(this,t):e.call(this,t),this.scanner.eof||this.eat(ls),{type:"Function",loc:this.getLocation(r,this.scanner.tokenStart),name:i,children:n}},generate:function(e){this.chunk(e.name),this.chunk("("),this.children(e),this.chunk(")")},walkContext:"function"},cs=at.TYPE.Hash,ds={name:"Hash",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(cs),{type:"Hash",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.value)}},ps=at.TYPE.Ident,ms={name:"Identifier",structure:{name:String},parse:function(){return{type:"Identifier",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),name:this.consume(ps)}},generate:function(e){this.chunk(e.name)}},hs=at.TYPE.Hash,fs={name:"IdSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.eat(hs),{type:"IdSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e+1)}},generate:function(e){this.chunk("#"),this.chunk(e.name)}},gs=at.TYPE,ys=gs.Ident,vs=gs.Number,bs=gs.Dimension,Ss=gs.LeftParenthesis,xs=gs.RightParenthesis,ws=gs.Colon,Cs=gs.Delim,ks={name:"MediaFeature",structure:{name:String,value:["Identifier","Number","Dimension","Ratio",null]},parse:function(){var e,t=this.scanner.tokenStart,n=null;if(this.eat(Ss),this.scanner.skipSC(),e=this.consume(ys),this.scanner.skipSC(),this.scanner.tokenType!==xs){switch(this.eat(ws),this.scanner.skipSC(),this.scanner.tokenType){case vs:n=this.lookupNonWSType(1)===Cs?this.Ratio():this.Number();break;case bs:n=this.Dimension();break;case ys:n=this.Identifier();break;default:this.error("Number, dimension, ratio or identifier is expected")}this.scanner.skipSC()}return this.eat(xs),{type:"MediaFeature",loc:this.getLocation(t,this.scanner.tokenStart),name:e,value:n}},generate:function(e){this.chunk("("),this.chunk(e.name),null!==e.value&&(this.chunk(":"),this.node(e.value)),this.chunk(")")}},Os=at.TYPE,Ts=Os.WhiteSpace,Es=Os.Comment,As=Os.Ident,_s=Os.LeftParenthesis,zs={name:"MediaQuery",structure:{children:[["Identifier","MediaFeature","WhiteSpace"]]},parse:function(){this.scanner.skipSC();var e=this.createList(),t=null,n=null;e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case Es:this.scanner.next();continue;case Ts:n=this.WhiteSpace();continue;case As:t=this.Identifier();break;case _s:t=this.MediaFeature();break;default:break e}null!==n&&(e.push(n),n=null),e.push(t)}return null===t&&this.error("Identifier or parenthesis is expected"),{type:"MediaQuery",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}},Rs=at.TYPE.Comma,Ls={name:"MediaQueryList",structure:{children:[["MediaQuery"]]},parse:function(e){var t=this.createList();for(this.scanner.skipSC();!this.scanner.eof&&(t.push(this.MediaQuery(e)),this.scanner.tokenType===Rs);)this.scanner.next();return{type:"MediaQueryList",loc:this.getLocationFromList(t),children:t}},generate:function(e){this.children(e,(function(){this.chunk(",")}))}},Ps=at.TYPE.Number,Bs={name:"Number",structure:{value:String},parse:function(){return{type:"Number",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(Ps)}},generate:function(e){this.chunk(e.value)}},Ws={name:"Operator",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.next(),{type:"Operator",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}},Ms=at.TYPE,Us=Ms.LeftParenthesis,Is=Ms.RightParenthesis,Ns={name:"Parentheses",structure:{children:[[]]},parse:function(e,t){var n,r=this.scanner.tokenStart;return this.eat(Us),n=e.call(this,t),this.scanner.eof||this.eat(Is),{type:"Parentheses",loc:this.getLocation(r,this.scanner.tokenStart),children:n}},generate:function(e){this.chunk("("),this.children(e),this.chunk(")")}},qs=le.consumeNumber,Ds=at.TYPE.Percentage,Vs={name:"Percentage",structure:{value:String},parse:function(){var e=this.scanner.tokenStart,t=qs(this.scanner.source,e);return this.eat(Ds),{type:"Percentage",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.source.substring(e,t)}},generate:function(e){this.chunk(e.value),this.chunk("%")}},js=at.TYPE,Fs=js.Ident,Gs=js.Function,Ks=js.Colon,Ys=js.RightParenthesis,Hs={name:"PseudoClassSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat(Ks),this.scanner.tokenType===Gs?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(Ys)):e=this.consume(Fs),{type:"PseudoClassSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk(":"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"},$s=at.TYPE,Qs=$s.Ident,Zs=$s.Function,Xs=$s.Colon,Js=$s.RightParenthesis,el={name:"PseudoElementSelector",structure:{name:String,children:[["Raw"],null]},parse:function(){var e,t,n=this.scanner.tokenStart,r=null;return this.eat(Xs),this.eat(Xs),this.scanner.tokenType===Zs?(t=(e=this.consumeFunctionName()).toLowerCase(),this.pseudo.hasOwnProperty(t)?(this.scanner.skipSC(),r=this.pseudo[t].call(this),this.scanner.skipSC()):(r=this.createList()).push(this.Raw(this.scanner.tokenIndex,null,!1)),this.eat(Js)):e=this.consume(Qs),{type:"PseudoElementSelector",loc:this.getLocation(n,this.scanner.tokenStart),name:e,children:r}},generate:function(e){this.chunk("::"),this.chunk(e.name),null!==e.children&&(this.chunk("("),this.children(e),this.chunk(")"))},walkContext:"function"},tl=at.isDigit,nl=at.TYPE,rl=nl.Number,il=nl.Delim;function ol(){this.scanner.skipWS();for(var e=this.consume(rl),t=0;t<e.length;t++){var n=e.charCodeAt(t);tl(n)||46===n||this.error("Unsigned number is expected",this.scanner.tokenStart-e.length+t)}return 0===Number(e)&&this.error("Zero number is not allowed",this.scanner.tokenStart-e.length),e}var al={name:"Ratio",structure:{left:String,right:String},parse:function(){var e,t=this.scanner.tokenStart,n=ol.call(this);return this.scanner.skipWS(),this.scanner.isDelim(47)||this.error("Solidus is expected"),this.eat(il),e=ol.call(this),{type:"Ratio",loc:this.getLocation(t,this.scanner.tokenStart),left:n,right:e}},generate:function(e){this.chunk(e.left),this.chunk("/"),this.chunk(e.right)}},sl=at.TYPE,ll=Do.mode,ul=sl.LeftCurlyBracket;function cl(e){return this.Raw(e,ll.leftCurlyBracket,!0)}function dl(){var e=this.SelectorList();return"Raw"!==e.type&&!1===this.scanner.eof&&this.scanner.tokenType!==ul&&this.error(),e}var pl={name:"Rule",structure:{prelude:["SelectorList","Raw"],block:["Block"]},parse:function(){var e,t,n=this.scanner.tokenIndex,r=this.scanner.tokenStart;return e=this.parseRulePrelude?this.parseWithFallback(dl,cl):cl.call(this,n),t=this.Block(!0),{type:"Rule",loc:this.getLocation(r,this.scanner.tokenStart),prelude:e,block:t}},generate:function(e){this.node(e.prelude),this.node(e.block)},walkContext:"rule"},ml=at.TYPE.Comma,hl={name:"SelectorList",structure:{children:[["Selector","Raw"]]},parse:function(){for(var e=this.createList();!this.scanner.eof&&(e.push(this.Selector()),this.scanner.tokenType===ml);)this.scanner.next();return{type:"SelectorList",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e,(function(){this.chunk(",")}))},walkContext:"selector"},fl=at.TYPE.String,gl={name:"String",structure:{value:String},parse:function(){return{type:"String",loc:this.getLocation(this.scanner.tokenStart,this.scanner.tokenEnd),value:this.consume(fl)}},generate:function(e){this.chunk(e.value)}},yl=at.TYPE,vl=yl.WhiteSpace,bl=yl.Comment,Sl=yl.AtKeyword,xl=yl.CDO,wl=yl.CDC;function Cl(e){return this.Raw(e,null,!1)}var kl={name:"StyleSheet",structure:{children:[["Comment","CDO","CDC","Atrule","Rule","Raw"]]},parse:function(){for(var e,t=this.scanner.tokenStart,n=this.createList();!this.scanner.eof;){switch(this.scanner.tokenType){case vl:this.scanner.next();continue;case bl:if(33!==this.scanner.source.charCodeAt(this.scanner.tokenStart+2)){this.scanner.next();continue}e=this.Comment();break;case xl:e=this.CDO();break;case wl:e=this.CDC();break;case Sl:e=this.parseWithFallback(this.Atrule,Cl);break;default:e=this.parseWithFallback(this.Rule,Cl)}n.push(e)}return{type:"StyleSheet",loc:this.getLocation(t,this.scanner.tokenStart),children:n}},generate:function(e){this.children(e)},walkContext:"stylesheet"},Ol=at.TYPE.Ident;function Tl(){this.scanner.tokenType!==Ol&&!1===this.scanner.isDelim(42)&&this.error("Identifier or asterisk is expected"),this.scanner.next()}var El={name:"TypeSelector",structure:{name:String},parse:function(){var e=this.scanner.tokenStart;return this.scanner.isDelim(124)?(this.scanner.next(),Tl.call(this)):(Tl.call(this),this.scanner.isDelim(124)&&(this.scanner.next(),Tl.call(this))),{type:"TypeSelector",loc:this.getLocation(e,this.scanner.tokenStart),name:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.name)}},Al=at.isHexDigit,_l=at.cmpChar,zl=at.TYPE,Rl=at.NAME,Ll=zl.Ident,Pl=zl.Number,Bl=zl.Dimension;function Wl(e,t){for(var n=this.scanner.tokenStart+e,r=0;n<this.scanner.tokenEnd;n++){var i=this.scanner.source.charCodeAt(n);if(45===i&&t&&0!==r)return 0===Wl.call(this,e+r+1,!1)&&this.error(),-1;Al(i)||this.error(t&&0!==r?"HyphenMinus"+(r<6?" or hex digit":"")+" is expected":r<6?"Hex digit is expected":"Unexpected input",n),++r>6&&this.error("Too many hex digits",n)}return this.scanner.next(),r}function Ml(e){for(var t=0;this.scanner.isDelim(63);)++t>e&&this.error("Too many question marks"),this.scanner.next()}function Ul(e){this.scanner.source.charCodeAt(this.scanner.tokenStart)!==e&&this.error(Rl[e]+" is expected")}function Il(){var e=0;return this.scanner.isDelim(43)?(this.scanner.next(),this.scanner.tokenType===Ll?void((e=Wl.call(this,0,!0))>0&&Ml.call(this,6-e)):this.scanner.isDelim(63)?(this.scanner.next(),void Ml.call(this,5)):void this.error("Hex digit or question mark is expected")):this.scanner.tokenType===Pl?(Ul.call(this,43),e=Wl.call(this,1,!0),this.scanner.isDelim(63)?void Ml.call(this,6-e):this.scanner.tokenType===Bl||this.scanner.tokenType===Pl?(Ul.call(this,45),void Wl.call(this,1,!1)):void 0):this.scanner.tokenType===Bl?(Ul.call(this,43),void((e=Wl.call(this,1,!0))>0&&Ml.call(this,6-e))):void this.error()}var Nl={name:"UnicodeRange",structure:{value:String},parse:function(){var e=this.scanner.tokenStart;return _l(this.scanner.source,e,117)||this.error("U is expected"),_l(this.scanner.source,e+1,43)||this.error("Plus sign is expected"),this.scanner.next(),Il.call(this),{type:"UnicodeRange",loc:this.getLocation(e,this.scanner.tokenStart),value:this.scanner.substrToCursor(e)}},generate:function(e){this.chunk(e.value)}},ql=at.isWhiteSpace,Dl=at.cmpStr,Vl=at.TYPE,jl=Vl.Function,Fl=Vl.Url,Gl=Vl.RightParenthesis,Kl={name:"Url",structure:{value:["String","Raw"]},parse:function(){var e,t=this.scanner.tokenStart;switch(this.scanner.tokenType){case Fl:for(var n=t+4,r=this.scanner.tokenEnd-1;n<r&&ql(this.scanner.source.charCodeAt(n));)n++;for(;n<r&&ql(this.scanner.source.charCodeAt(r-1));)r--;e={type:"Raw",loc:this.getLocation(n,r),value:this.scanner.source.substring(n,r)},this.eat(Fl);break;case jl:Dl(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")||this.error("Function name must be `url`"),this.eat(jl),this.scanner.skipSC(),e=this.String(),this.scanner.skipSC(),this.eat(Gl);break;default:this.error("Url or Function is expected")}return{type:"Url",loc:this.getLocation(t,this.scanner.tokenStart),value:e}},generate:function(e){this.chunk("url"),this.chunk("("),this.node(e.value),this.chunk(")")}},Yl=at.TYPE.WhiteSpace,Hl=Object.freeze({type:"WhiteSpace",loc:null,value:" "}),$l={name:"WhiteSpace",structure:{value:String},parse:function(){return this.eat(Yl),Hl},generate:function(e){this.chunk(e.value)}},Ql={AnPlusB:Po,Atrule:Qo,AtrulePrelude:ea,AttributeSelector:ua,Block:wa,Brackets:Ta,CDC:Aa,CDO:za,ClassSelector:La,Combinator:Ba,Comment:Ma,Declaration:$a,DeclarationList:is,Dimension:ss,Function:us,Hash:ds,Identifier:ms,IdSelector:fs,MediaFeature:ks,MediaQuery:zs,MediaQueryList:Ls,Nth:{name:"Nth",structure:{nth:["AnPlusB","Identifier"],selector:["SelectorList",null]},parse:function(e){this.scanner.skipSC();var t,n=this.scanner.tokenStart,r=n,i=null;return t=this.scanner.lookupValue(0,"odd")||this.scanner.lookupValue(0,"even")?this.Identifier():this.AnPlusB(),this.scanner.skipSC(),e&&this.scanner.lookupValue(0,"of")?(this.scanner.next(),i=this.SelectorList(),this.needPositions&&(r=this.getLastListNode(i.children).loc.end.offset)):this.needPositions&&(r=t.loc.end.offset),{type:"Nth",loc:this.getLocation(n,r),nth:t,selector:i}},generate:function(e){this.node(e.nth),null!==e.selector&&(this.chunk(" of "),this.node(e.selector))}},Number:Bs,Operator:Ws,Parentheses:Ns,Percentage:Vs,PseudoClassSelector:Hs,PseudoElementSelector:el,Ratio:al,Raw:Do,Rule:pl,Selector:{name:"Selector",structure:{children:[["TypeSelector","IdSelector","ClassSelector","AttributeSelector","PseudoClassSelector","PseudoElementSelector","Combinator","WhiteSpace"]]},parse:function(){var e=this.readSequence(this.scope.Selector);return null===this.getFirstListNode(e)&&this.error("Selector is expected"),{type:"Selector",loc:this.getLocationFromList(e),children:e}},generate:function(e){this.children(e)}},SelectorList:hl,String:gl,StyleSheet:kl,TypeSelector:El,UnicodeRange:Nl,Url:Kl,Value:{name:"Value",structure:{children:[[]]},parse:function(){var e=this.scanner.tokenStart,t=this.readSequence(this.scope.Value);return{type:"Value",loc:this.getLocation(e,this.scanner.tokenStart),children:t}},generate:function(e){this.children(e)}},WhiteSpace:$l},Zl={generic:!0,types:go.types,atrules:go.atrules,properties:go.properties,node:Ql},Xl=at.cmpChar,Jl=at.cmpStr,eu=at.TYPE,tu=eu.Ident,nu=eu.String,ru=eu.Number,iu=eu.Function,ou=eu.Url,au=eu.Hash,su=eu.Dimension,lu=eu.Percentage,uu=eu.LeftParenthesis,cu=eu.LeftSquareBracket,du=eu.Comma,pu=eu.Delim,mu=function(e){switch(this.scanner.tokenType){case au:return this.Hash();case du:return e.space=null,e.ignoreWSAfter=!0,this.Operator();case uu:return this.Parentheses(this.readSequence,e.recognizer);case cu:return this.Brackets(this.readSequence,e.recognizer);case nu:return this.String();case su:return this.Dimension();case lu:return this.Percentage();case ru:return this.Number();case iu:return Jl(this.scanner.source,this.scanner.tokenStart,this.scanner.tokenEnd,"url(")?this.Url():this.Function(this.readSequence,e.recognizer);case ou:return this.Url();case tu:return Xl(this.scanner.source,this.scanner.tokenStart,117)&&Xl(this.scanner.source,this.scanner.tokenStart+1,43)?this.UnicodeRange():this.Identifier();case pu:var t=this.scanner.source.charCodeAt(this.scanner.tokenStart);if(47===t||42===t||43===t||45===t)return this.Operator();35===t&&this.error("Hex or identifier is expected",this.scanner.tokenStart+1)}},hu={getNode:mu},fu=at.TYPE,gu=fu.Delim,yu=fu.Ident,vu=fu.Dimension,bu=fu.Percentage,Su=fu.Number,xu=fu.Hash,wu=fu.Colon,Cu=fu.LeftSquareBracket;var ku={getNode:function(e){switch(this.scanner.tokenType){case Cu:return this.AttributeSelector();case xu:return this.IdSelector();case wu:return this.scanner.lookupType(1)===wu?this.PseudoElementSelector():this.PseudoClassSelector();case yu:return this.TypeSelector();case Su:case bu:return this.Percentage();case vu:46===this.scanner.source.charCodeAt(this.scanner.tokenStart)&&this.error("Identifier is expected",this.scanner.tokenStart+1);break;case gu:switch(this.scanner.source.charCodeAt(this.scanner.tokenStart)){case 43:case 62:case 126:return e.space=null,e.ignoreWSAfter=!0,this.Combinator();case 47:return this.Combinator();case 46:return this.ClassSelector();case 42:case 124:return this.TypeSelector();case 35:return this.IdSelector()}}}},Ou=at.TYPE,Tu=Do.mode,Eu=Ou.Comma,Au=Ou.WhiteSpace,_u={getNode:mu,expression:function(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))},var:function(){var e=this.createList();if(this.scanner.skipSC(),e.push(this.Identifier()),this.scanner.skipSC(),this.scanner.tokenType===Eu){e.push(this.Operator());const t=this.scanner.tokenIndex,n=this.parseCustomProperty?this.Value(null):this.Raw(this.scanner.tokenIndex,Tu.exclamationMarkOrSemicolon,!1);if("Value"===n.type&&n.children.isEmpty())for(let e=t-this.scanner.tokenIndex;e<=0;e++)if(this.scanner.lookupType(e)===Au){n.children.appendData({type:"WhiteSpace",loc:null,value:" "});break}e.push(n)}return e}},zu={AtrulePrelude:hu,Selector:ku,Value:_u},Ru=at.TYPE,Lu=Ru.String,Pu=Ru.Ident,Bu=Ru.Url,Wu=Ru.Function,Mu=Ru.LeftParenthesis,Uu={parse:{prelude:function(){var e=this.createList();switch(this.scanner.skipSC(),this.scanner.tokenType){case Lu:e.push(this.String());break;case Bu:case Wu:e.push(this.Url());break;default:this.error("String or url() is expected")}return this.lookupNonWSType(0)!==Pu&&this.lookupNonWSType(0)!==Mu||(e.push(this.WhiteSpace()),e.push(this.MediaQueryList())),e},block:null}},Iu=at.TYPE,Nu=Iu.WhiteSpace,qu=Iu.Comment,Du=Iu.Ident,Vu=Iu.Function,ju=Iu.Colon,Fu=Iu.LeftParenthesis;function Gu(){return this.createSingleNodeList(this.Raw(this.scanner.tokenIndex,null,!1))}function Ku(){return this.scanner.skipSC(),this.scanner.tokenType===Du&&this.lookupNonWSType(1)===ju?this.createSingleNodeList(this.Declaration()):Yu.call(this)}function Yu(){var e,t=this.createList(),n=null;this.scanner.skipSC();e:for(;!this.scanner.eof;){switch(this.scanner.tokenType){case Nu:n=this.WhiteSpace();continue;case qu:this.scanner.next();continue;case Vu:e=this.Function(Gu,this.scope.AtrulePrelude);break;case Du:e=this.Identifier();break;case Fu:e=this.Parentheses(Ku,this.scope.AtrulePrelude);break;default:break e}null!==n&&(t.push(n),n=null),t.push(e)}return t}var Hu={parse:function(){return this.createSingleNodeList(this.SelectorList())}},$u={parse:function(){return this.createSingleNodeList(this.Nth(true))}},Qu={parse:function(){return this.createSingleNodeList(this.Nth(false))}},Zu={parseContext:{default:"StyleSheet",stylesheet:"StyleSheet",atrule:"Atrule",atrulePrelude:function(e){return this.AtrulePrelude(e.atrule?String(e.atrule):null)},mediaQueryList:"MediaQueryList",mediaQuery:"MediaQuery",rule:"Rule",selectorList:"SelectorList",selector:"Selector",block:function(){return this.Block(!0)},declarationList:"DeclarationList",declaration:"Declaration",value:"Value"},scope:zu,atrule:{"font-face":{parse:{prelude:null,block:function(){return this.Block(!0)}}},import:Uu,media:{parse:{prelude:function(){return this.createSingleNodeList(this.MediaQueryList())},block:function(){return this.Block(!1)}}},page:{parse:{prelude:function(){return this.createSingleNodeList(this.SelectorList())},block:function(){return this.Block(!0)}}},supports:{parse:{prelude:function(){var e=Yu.call(this);return null===this.getFirstListNode(e)&&this.error("Condition is expected"),e},block:function(){return this.Block(!1)}}}},pseudo:{dir:{parse:function(){return this.createSingleNodeList(this.Identifier())}},has:{parse:function(){return this.createSingleNodeList(this.SelectorList())}},lang:{parse:function(){return this.createSingleNodeList(this.Identifier())}},matches:Hu,not:Hu,"nth-child":$u,"nth-last-child":$u,"nth-last-of-type":Qu,"nth-of-type":Qu,slotted:{parse:function(){return this.createSingleNodeList(this.Selector())}}},node:Ql},Xu={node:Ql},Ju="1.1.3";x.exports=w.create(function(){for(var e={},t=0;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}(Zl,Zu,Xu)),x.exports.version=Ju;const ec=x.exports,tc=["all","print","screen","speech"],nc=/data:[^,]*;base64,/,rc=/^(["']).*\1$/,ic=[/::?(?:-moz-)?selection/],oc=[/(.*)animation/,/(.*)transition(.*)/,/cursor/,/pointer-events/,/(-webkit-)?tap-highlight-color/,/(.*)user-select/];class ac{constructor(e,t,n){this.css=e,this.ast=t,this.errors=n}absolutifyUrls(e){ec.walk(this.ast,{visit:"Url",enter:t=>{if(t.value&&"String"===t.value.type){const n=ac.readValue(t.value),r=new URL(n,e).toString();r!==n&&(t.value.value='"'+r+'"')}}})}pruned(e){const t=new ac(this.css,ec.clone(this.ast),this.errors);return t.pruneMediaQueries(),t.pruneKeyframes(),t.pruneNonCriticalSelectors(e),t.pruneExcludedProperties(),t.pruneLargeBase64Embeds(),t.pruneComments(),t}originalText(e){return e.loc&&e.loc.start&&e.loc.end?this.css.substring(e.loc.start.offset,e.loc.end.offset):""}applyFilters(e){e&&(e.properties&&this.applyPropertiesFilter(e.properties),e.atRules&&this.applyAtRulesFilter(e.atRules))}applyPropertiesFilter(e){ec.walk(this.ast,{visit:"Declaration",enter:(t,n,r)=>{!1===e(t.property,this.originalText(t.value))&&r.remove(n)}})}applyAtRulesFilter(e){ec.walk(this.ast,{visit:"Atrule",enter:(t,n,r)=>{!1===e(t.name)&&r.remove(n)}})}pruneUnusedVariables(e){let t=0;return ec.walk(this.ast,{visit:"Declaration",enter:(n,r,i)=>{n.property.startsWith("--")&&(e.has(n.property)||(i.remove(r),t++))}}),t}getUsedVariables(){const e=new Set;return ec.walk(this.ast,{visit:"Function",enter:t=>{if("var"!==ec.keyword(t.name).name)return;t.children.map(ac.readValue).forEach((t=>e.add(t)))}}),e}pruneComments(){ec.walk(this.ast,{visit:"Comment",enter:(e,t,n)=>{n.remove(t)}})}pruneMediaQueries(){ec.walk(this.ast,{visit:"Atrule",enter:(e,t,n)=>{"media"===ec.keyword(e.name).name&&e.prelude&&(ec.walk(e,{visit:"MediaQueryList",enter:(e,t,n)=>{ec.walk(e,{visit:"MediaQuery",enter:(e,t,n)=>{ac.isUsefulMediaQuery(e)||n.remove(t)}}),e.children&&e.children.isEmpty()&&n.remove(t)}}),e.prelude.children&&e.prelude.children.isEmpty()&&n.remove(t))}})}pruneKeyframes(){ec.walk(this.ast,{visit:"Atrule",enter:(e,t,n)=>{"keyframes"===ec.keyword(e.name).basename&&n.remove(t)}})}static isKeyframeRule(e){return e.atrule&&"keyframes"===ec.keyword(e.atrule.name).basename}forEachSelector(e){ec.walk(this.ast,{visit:"Rule",enter(t){ac.isKeyframeRule(this)||"SelectorList"===t.prelude.type&&t.prelude.children.forEach((t=>{const n=ec.generate(t);ic.some((e=>e.test(n)))||e(n)}))}})}pruneNonCriticalSelectors(e){ec.walk(this.ast,{visit:"Rule",enter(t,n,r){this.atrule&&"keyframes"===ec.keyword(this.atrule.name).basename||("SelectorList"===t.prelude.type?t.block.children.some((e=>"grid-area"===e.property))||(t.prelude.children=t.prelude.children.filter((t=>{if(ic.some((e=>e.test(t))))return!1;const n=ec.generate(t);return e.has(n)})),t.prelude.children&&t.prelude.children.isEmpty()&&r.remove(n)):r.remove(n))}})}pruneLargeBase64Embeds(){ec.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{let r=!1;ec.walk(e,{visit:"Url",enter(e){const t=e.value.value;nc.test(t)&&t.length>1e3&&(r=!0)}}),r&&n.remove(t)}})}pruneExcludedProperties(){ec.walk(this.ast,{visit:"Declaration",enter:(e,t,n)=>{if(e.property){const r=ec.property(e.property).name;oc.some((e=>e.test(r)))&&n.remove(t)}}})}pruneNonCriticalFonts(e){ec.walk(this.ast,{visit:"Atrule",enter:(t,n,r)=>{if("font-face"!==ec.keyword(t.name).basename)return;const i={};ec.walk(t,{visit:"Declaration",enter:(e,t,n)=>{const r=ec.property(e.property).name;if(["src","font-family"].includes(r)&&"children"in e.value){const t=e.value.children.toArray();i[r]=t.map(ac.readValue)}"src"===r&&n.remove(t)}}),i.src&&i["font-family"]&&i["font-family"].some((t=>e.has(t)))||r.remove(n)}})}ruleCount(){let e=0;return ec.walk(this.ast,{visit:"Rule",enter:()=>{e++}}),e}getUsedFontFamilies(){const e=new Set;return ec.walk(this.ast,{visit:"Declaration",enter(t){if(!this.rule)return;ec.lexer.findDeclarationValueFragments(t,"Type","family-name").map((e=>e.nodes.toArray())).flat().map(ac.readValue).forEach((t=>e.add(t)))}}),e}static readValue(e){return"String"===e.type&&rc.test(e.value)?e.value.substr(1,e.value.length-2):"Identifier"===e.type?e.name:e.value}static isUsefulMediaQuery(e){let t=!1;const n={};if(ec.walk(e,{visit:"Identifier",enter:e=>{const r=ec.keyword(e.name).name;"not"!==r?(tc.includes(r)&&(n[r]=!t),t=!1):t=!0}}),0===Object.keys(n).length)return!0;for(const e of["screen","all"])if(Object.prototype.hasOwnProperty.call(n,e))return n[e];return Object.values(n).some((e=>!e))}toCSS(){return ec.generate(this.ast)}static parse(e){const t=[],n=ec.parse(e,{parseCustomProperty:!0,positions:!0,onParseError:e=>{t.push(e)}});return new ac(e,n,t)}}var sc=ac;const{HttpError:lc,UnknownError:uc,UrlError:cc}=d,dc=sc;var pc=class{constructor(e){this.browserInterface=e,this.knownUrls={},this.cssFiles=[],this.errors=[]}async addMultiple(e,t){return Promise.all(Object.keys(t).map((n=>this.add(e,n,t[n]))))}async add(e,t,n={}){if(Object.prototype.hasOwnProperty.call(this.knownUrls,t)){if(this.knownUrls[t]instanceof Error)return;this.addExtraReference(e,t,this.knownUrls[t])}else try{const r=await this.browserInterface.fetch(t,{},"css");if(!r.ok)throw new lc({code:r.code,url:t});let i=await r.text();n.media&&(i="@media "+n.media+" {\n"+i+"\n}"),this.storeCss(e,t,i)}catch(e){let n=e;e instanceof cc||(n=new uc({url:t,message:e.message})),this.storeError(t,n)}}collateSelectorPages(){const e={};for(const t of this.cssFiles)t.ast.forEachSelector((n=>{e[n]||(e[n]=new Set),t.pages.forEach((t=>e[n].add(t)))}));return e}applyFilters(e){for(const t of this.cssFiles)t.ast.applyFilters(e)}prunedAsts(e){let t,n=this.cssFiles.map((t=>t.ast.pruned(e)));for(let e=0;e<10;e++){const e=n.reduce(((e,t)=>(t.getUsedVariables().forEach((t=>e.add(t))),e)),new Set);if(t&&t.size===e.size)break;if(0===n.reduce(((t,n)=>t+=n.pruneUnusedVariables(e)),0))break;t=e}const r=n.reduce(((e,t)=>(t.getUsedFontFamilies().forEach((t=>e.add(t))),e)),new Set);return n.forEach((e=>e.pruneNonCriticalFonts(r))),n=n.filter((e=>e.ruleCount()>0)),n}storeCss(e,t,n){const r=this.cssFiles.find((e=>e.css===n));if(r)return void this.addExtraReference(e,t,r);const i=dc.parse(n);i.absolutifyUrls(t);const o={css:n,ast:i,pages:[e],urls:[t]};this.knownUrls[t]=o,this.cssFiles.push(o)}addExtraReference(e,t,n){this.knownUrls[t]=n,n.pages.push(e),n.urls.includes(t)||n.urls.push(t)}storeError(e,t){this.knownUrls[e]=t,this.errors.push(t)}getErrors(){return this.errors}};const mc=["after","before","first-(line|letter)","(input-)?placeholder","scrollbar","search(results-)?decoration","search-(cancel|results)-button"];let hc;var fc={removeIgnoredPseudoElements:function(e){return e.replace(function(){if(hc)return hc;const e=mc.join("|");return hc=new RegExp("::?(-(moz|ms|webkit)-)?("+e+")"),hc}(),"").trim()}},gc="undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{};function yc(){throw new Error("setTimeout has not been defined")}function vc(){throw new Error("clearTimeout has not been defined")}var bc=yc,Sc=vc;function xc(e){if(bc===setTimeout)return setTimeout(e,0);if((bc===yc||!bc)&&setTimeout)return bc=setTimeout,setTimeout(e,0);try{return bc(e,0)}catch(t){try{return bc.call(null,e,0)}catch(t){return bc.call(this,e,0)}}}"function"==typeof gc.setTimeout&&(bc=setTimeout),"function"==typeof gc.clearTimeout&&(Sc=clearTimeout);var wc,Cc=[],kc=!1,Oc=-1;function Tc(){kc&&wc&&(kc=!1,wc.length?Cc=wc.concat(Cc):Oc=-1,Cc.length&&Ec())}function Ec(){if(!kc){var e=xc(Tc);kc=!0;for(var t=Cc.length;t;){for(wc=Cc,Cc=[];++Oc<t;)wc&&wc[Oc].run();Oc=-1,t=Cc.length}wc=null,kc=!1,function(e){if(Sc===clearTimeout)return clearTimeout(e);if((Sc===vc||!Sc)&&clearTimeout)return Sc=clearTimeout,clearTimeout(e);try{Sc(e)}catch(t){try{return Sc.call(null,e)}catch(t){return Sc.call(this,e)}}}(e)}}function Ac(e,t){this.fun=e,this.array=t}Ac.prototype.run=function(){this.fun.apply(null,this.array)};function _c(){}var zc=_c,Rc=_c,Lc=_c,Pc=_c,Bc=_c,Wc=_c,Mc=_c;var Uc=gc.performance||{},Ic=Uc.now||Uc.mozNow||Uc.msNow||Uc.oNow||Uc.webkitNow||function(){return(new Date).getTime()};var Nc=new Date;var qc={nextTick:function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];Cc.push(new Ac(e,t)),1!==Cc.length||kc||xc(Ec)},title:"browser",browser:!0,env:{},argv:[],version:"",versions:{},on:zc,addListener:Rc,once:Lc,off:Pc,removeListener:Bc,removeAllListeners:Wc,emit:Mc,binding:function(e){throw new Error("process.binding is not supported")},cwd:function(){return"/"},chdir:function(e){throw new Error("process.chdir is not supported")},umask:function(){return 0},hrtime:function(e){var t=.001*Ic.call(Uc),n=Math.floor(t),r=Math.floor(t%1*1e9);return e&&(n-=e[0],(r-=e[1])<0&&(n--,r+=1e9)),[n,r]},platform:"browser",release:{},config:{},uptime:function(){return(new Date-Nc)/1e3}},Dc={exports:{}};var Vc=function(e){return e},jc=/([0-9]+)/;function Fc(e){return""+parseInt(e)==e?parseInt(e):e}var Gc=function(e,t){var n,r,i,o,a=(""+e).split(jc).map(Fc),s=(""+t).split(jc).map(Fc);for(i=0,o=Math.min(a.length,s.length);i<o;i++)if((n=a[i])!=(r=s[i]))return n>r?1:-1;return a.length>s.length?1:a.length==s.length?0:-1},Kc=Gc;function Yc(e,t){return Kc(e[1],t[1])}function Hc(e,t){return e[1]>t[1]?1:-1}var $c,Qc=function(e,t){switch(t){case"natural":return e.sort(Yc);case"standard":return e.sort(Hc);case"none":case!1:return e}};function Zc(){if(void 0===$c){var e=new ArrayBuffer(2),t=new Uint8Array(e),n=new Uint16Array(e);if(t[0]=1,t[1]=2,258===n[0])$c="BE";else{if(513!==n[0])throw new Error("unable to figure out endianess");$c="LE"}}return $c}function Xc(){return void 0!==gc.location?gc.location.hostname:""}function Jc(){return[]}function ed(){return 0}function td(){return Number.MAX_VALUE}function nd(){return Number.MAX_VALUE}function rd(){return[]}function id(){return"Browser"}function od(){return void 0!==gc.navigator?gc.navigator.appVersion:""}function ad(){return{}}function sd(){return{}}function ld(){return"javascript"}function ud(){return"browser"}function cd(){return"/tmp"}var dd=cd,pd={EOL:"\n",arch:ld,platform:ud,tmpdir:dd,tmpDir:cd,networkInterfaces:ad,getNetworkInterfaces:sd,release:od,type:id,cpus:rd,totalmem:nd,freemem:td,uptime:ed,loadavg:Jc,hostname:Xc,endianness:Zc};var md=function e(t,n){var r,i,o,a={};for(r in t)o=t[r],Array.isArray(o)?a[r]=o.slice(0):a[r]="object"==typeof o&&null!==o?e(o,{}):o;for(i in n)o=n[i],i in a&&Array.isArray(o)?a[i]=o.slice(0):a[i]=i in a&&"object"==typeof o&&null!==o?e(a[i],o):o;return a},hd=t(Object.freeze({__proto__:null,endianness:Zc,hostname:Xc,loadavg:Jc,uptime:ed,freemem:td,totalmem:nd,cpus:rd,type:id,release:od,networkInterfaces:ad,getNetworkInterfaces:sd,arch:ld,platform:ud,tmpDir:cd,tmpdir:dd,EOL:"\n",default:pd})).EOL,fd=md,gd={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},yd={CarriageReturnLineFeed:"\r\n",LineFeed:"\n",System:hd},vd=" ",bd="\t",Sd={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},xd={breaks:kd(!1),breakWith:yd.System,indentBy:0,indentWith:vd,spaces:Od(!1),wrapAt:!1,semicolonAfterLastProperty:!1},wd="false",Cd="true";function kd(e){var t={};return t[gd.AfterAtRule]=e,t[gd.AfterBlockBegins]=e,t[gd.AfterBlockEnds]=e,t[gd.AfterComment]=e,t[gd.AfterProperty]=e,t[gd.AfterRuleBegins]=e,t[gd.AfterRuleEnds]=e,t[gd.BeforeBlockEnds]=e,t[gd.BetweenSelectors]=e,t}function Od(e){var t={};return t[Sd.AroundSelectorRelation]=e,t[Sd.BeforeBlockBegins]=e,t[Sd.BeforeValue]=e,t}function Td(e){switch(e){case"windows":case"crlf":case yd.CarriageReturnLineFeed:return yd.CarriageReturnLineFeed;case"unix":case"lf":case yd.LineFeed:return yd.LineFeed;default:return hd}}function Ed(e){switch(e){case"space":return vd;case"tab":return bd;default:return e}}function Ad(e){for(var t in gd){var n=gd[t],r=e.breaks[n];e.breaks[n]=!0===r?e.breakWith:!1===r?"":e.breakWith.repeat(parseInt(r))}return e}var _d=gd,zd=Sd,Rd=function(e){return void 0!==e&&!1!==e&&("object"==typeof e&&"breakWith"in e&&(e=fd(e,{breakWith:Td(e.breakWith)})),"object"==typeof e&&"indentBy"in e&&(e=fd(e,{indentBy:parseInt(e.indentBy)})),"object"==typeof e&&"indentWith"in e&&(e=fd(e,{indentWith:Ed(e.indentWith)})),"object"==typeof e?Ad(fd(xd,e)):"string"==typeof e&&"beautify"==e?Ad(fd(xd,{breaks:kd(!0),indentBy:2,spaces:Od(!0)})):"string"==typeof e&&"keep-breaks"==e?Ad(fd(xd,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}})):"string"==typeof e?Ad(fd(xd,e.split(";").reduce((function(e,t){var n=t.split(":"),r=n[0],i=n[1];return"breaks"==r||"spaces"==r?e[r]=function(e){return e.split(",").reduce((function(e,t){var n=t.split("="),r=n[0],i=n[1];return e[r]=function(e){switch(e){case wd:case"off":return!1;case Cd:case"on":return!0;default:return e}}(i),e}),{})}(i):"indentBy"==r||"wrapAt"==r?e[r]=parseInt(i):"indentWith"==r?e[r]=Ed(i):"breakWith"==r&&(e[r]=Td(i)),e}),{}))):xd)},Ld={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CARRIAGE_RETURN:"\r",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",INTERNAL:"-clean-css-",NEW_LINE_NIX:"\n",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};var Pd=function(e){var t=e[0],n=e[1],r=e[2];return r?r+":"+t+":"+n:t+":"+n},Bd=zd,Wd=Ld,Md=Pd,Ud=/[\s"'][iI]\s*\]/,Id=/([\d\w])([iI])\]/g,Nd=/="([a-zA-Z][a-zA-Z\d\-_]+)"([iI])/g,qd=/="([a-zA-Z][a-zA-Z\d\-_]+)"(\s|\])/g,Dd=/^(?:(?:<!--|-->)\s*)+/,Vd=/='([a-zA-Z][a-zA-Z\d\-_]+)'([iI])/g,jd=/='([a-zA-Z][a-zA-Z\d\-_]+)'(\s|\])/g,Fd=/[>\+~]/,Gd=/\s/,Kd=[":current",":future",":has",":host",":host-context",":is",":not",":past",":where"];function Yd(e){var t,n,r,i,o=!1,a=!1;for(r=0,i=e.length;r<i;r++){if(n=e[r],t);else if(n==Wd.SINGLE_QUOTE||n==Wd.DOUBLE_QUOTE)a=!a;else{if(!(a||n!=Wd.CLOSE_CURLY_BRACKET&&n!=Wd.EXCLAMATION&&"<"!=n&&n!=Wd.SEMICOLON)){o=!0;break}if(!a&&0===r&&Fd.test(n)){o=!0;break}}t=n==Wd.BACK_SLASH}return o}function Hd(e,t){var n,r,i,o,a,s,l,u,c,d,p,m,h,f,g=[],y=0,v=!1,b=!1,S=!1,x=Ud.test(e),w=t&&t.spaces[Bd.AroundSelectorRelation];for(h=0,f=e.length;h<f;h++){if(r=(n=e[h])==Wd.NEW_LINE_NIX,i=n==Wd.NEW_LINE_NIX&&e[h-1]==Wd.CARRIAGE_RETURN,s=l||u,d=!c&&!o&&0===y&&Fd.test(n),p=Gd.test(n),m=(1!=y||n!=Wd.CLOSE_ROUND_BRACKET)&&(m||0===y&&n==Wd.COLON&&$d(e,h)),a&&s&&i)g.pop(),g.pop();else if(o&&s&&r)g.pop();else if(o)g.push(n);else if(n!=Wd.OPEN_SQUARE_BRACKET||s)if(n!=Wd.CLOSE_SQUARE_BRACKET||s)if(n!=Wd.OPEN_ROUND_BRACKET||s)if(n!=Wd.CLOSE_ROUND_BRACKET||s)if(n!=Wd.SINGLE_QUOTE||s)if(n!=Wd.DOUBLE_QUOTE||s)if(n==Wd.SINGLE_QUOTE&&s)g.push(n),l=!1;else if(n==Wd.DOUBLE_QUOTE&&s)g.push(n),u=!1;else{if(p&&b&&!w)continue;!p&&b&&w?(g.push(Wd.SPACE),g.push(n)):p&&!S&&v&&y>0&&m||(p&&!S&&y>0&&m?g.push(n):p&&(c||y>0)&&!s||p&&S&&!s||(i||r)&&(c||y>0)&&s||(d&&S&&!w?(g.pop(),g.push(n)):d&&!S&&w?(g.push(Wd.SPACE),g.push(n)):p?g.push(Wd.SPACE):g.push(n)))}else g.push(n),u=!0;else g.push(n),l=!0;else g.push(n),y--;else g.push(n),y++;else g.push(n),c=!1;else g.push(n),c=!0;a=o,o=n==Wd.BACK_SLASH,b=d,S=p,v=n==Wd.COMMA}return x?g.join("").replace(Id,"$1 $2]"):g.join("")}function $d(e,t){var n=e.substring(t,e.indexOf(Wd.OPEN_ROUND_BRACKET,t));return Kd.indexOf(n)>-1}function Qd(e){return-1==e.indexOf("'")&&-1==e.indexOf('"')?e:e.replace(Vd,"=$1 $2").replace(jd,"=$1$2").replace(Nd,"=$1 $2").replace(qd,"=$1$2")}var Zd=function(e,t,n,r,i){var o=[],a=[];function s(e,t){return i.push("HTML comment '"+t+"' at "+Md(e[2][0])+". Removing."),""}for(var l=0,u=e.length;l<u;l++){var c=e[l],d=c[1];Yd(d=d.replace(Dd,s.bind(null,c)))?i.push("Invalid selector '"+c[1]+"' at "+Md(c[2][0])+". Ignoring."):(d=Qd(d=Hd(d,r)),n&&d.indexOf("nav")>0&&(d=d.replace(/\+nav(\S|$)/,"+ nav$1")),t&&d.indexOf("*+html ")>-1||t&&d.indexOf("*:first-child+html ")>-1||(d.indexOf("*")>-1&&(d=d.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),a.indexOf(d)>-1||(c[1]=d,a.push(d),o.push(c))))}return 1==o.length&&0===o[0][1].length&&(i.push("Empty selector '"+o[0][1]+"' at "+Md(o[0][2][0])+". Ignoring."),o=[]),o},Xd=/^@media\W/,Jd=/^@(?:keyframes|-moz-keyframes|-o-keyframes|-webkit-keyframes)\W/;var ep=function(e,t){var n,r,i;for(i=e.length-1;i>=0;i--)n=!t&&Xd.test(e[i][1]),r=Jd.test(e[i][1]),e[i][1]=e[i][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")"),r&&(e[i][1]=e[i][1].replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1")),n&&(e[i][1]=e[i][1].replace(/\) /g,")"));return e};var tp=function(e){return e.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()},np={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};var rp=function(e){for(var t=e.length-1;t>=0;t--){var n=e[t];n.unused&&n.all.splice(n.position,1)}},ip=np,op=Ld;function ap(e){e.value[e.value.length-1][1]+="!important"}function sp(e){e.hack[0]==ip.UNDERSCORE?e.name="_"+e.name:e.hack[0]==ip.ASTERISK?e.name="*"+e.name:e.hack[0]==ip.BACKSLASH?e.value[e.value.length-1][1]+="\\"+e.hack[1]:e.hack[0]==ip.BANG&&(e.value[e.value.length-1][1]+=op.SPACE+"!ie")}var lp=function(e,t){var n,r,i,o;for(o=e.length-1;o>=0;o--)(n=e[o]).dynamic&&n.important?ap(n):n.dynamic||n.unused||(n.dirty||n.important||n.hack)&&(n.optimizable&&t?(r=t(n),n.value=r):r=n.value,n.important&&ap(n),n.hack&&sp(n),"all"in n&&((i=n.all[n.position])[1][1]=n.name,i.splice(2,i.length-1),Array.prototype.push.apply(i,r)))},up={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RAW:"raw",RULE:"rule",RULE_SCOPE:"rule-scope"},cp=np,dp=Ld,pp=up,mp={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};function hp(e){var t,n,r;for(t=2,n=e.length;t<n;t++)if((r=e[t])[0]==pp.PROPERTY_VALUE&&fp(r[1]))return!0;return!1}function fp(e){return mp.VARIABLE_REFERENCE_PATTERN.test(e)}function gp(e){var t,n,r;for(n=3,r=e.length;n<r;n++)if((t=e[n])[0]==pp.PROPERTY_VALUE&&(t[1]==dp.COMMA||t[1]==dp.FORWARD_SLASH))return!0;return!1}function yp(e){var t=function(e){if(e.length<3)return!1;var t=e[e.length-1];return!!mp.IMPORTANT_TOKEN_PATTERN.test(t[1])||!(!mp.IMPORTANT_WORD_PATTERN.test(t[1])||!mp.SUFFIX_BANG_PATTERN.test(e[e.length-2][1]))}(e);t&&function(e){var t=e[e.length-1],n=e[e.length-2];mp.IMPORTANT_TOKEN_PATTERN.test(t[1])?t[1]=t[1].replace(mp.IMPORTANT_TOKEN_PATTERN,""):(t[1]=t[1].replace(mp.IMPORTANT_WORD_PATTERN,""),n[1]=n[1].replace(mp.SUFFIX_BANG_PATTERN,"")),0===t[1].length&&e.pop(),0===n[1].length&&e.pop()}(e);var n=function(e){var t=!1,n=e[1][1],r=e[e.length-1];return n[0]==mp.UNDERSCORE?t=[cp.UNDERSCORE]:n[0]==mp.ASTERISK?t=[cp.ASTERISK]:r[1][0]!=mp.BANG||r[1].match(mp.IMPORTANT_WORD_PATTERN)?r[1].indexOf(mp.BANG)>0&&!r[1].match(mp.IMPORTANT_WORD_PATTERN)&&mp.BANG_SUFFIX_PATTERN.test(r[1])?t=[cp.BANG]:r[1].indexOf(mp.BACKSLASH)>0&&r[1].indexOf(mp.BACKSLASH)==r[1].length-mp.BACKSLASH.length-1?t=[cp.BACKSLASH,r[1].substring(r[1].indexOf(mp.BACKSLASH)+1)]:0===r[1].indexOf(mp.BACKSLASH)&&2==r[1].length&&(t=[cp.BACKSLASH,r[1].substring(1)]):t=[cp.BANG],t}(e);return n[0]==cp.ASTERISK||n[0]==cp.UNDERSCORE?function(e){e[1][1]=e[1][1].substring(1)}(e):n[0]!=cp.BACKSLASH&&n[0]!=cp.BANG||function(e,t){var n=e[e.length-1];n[1]=n[1].substring(0,n[1].indexOf(t[0]==cp.BACKSLASH?mp.BACKSLASH:mp.BANG)).trim(),0===n[1].length&&e.pop()}(e,n),{block:e[2]&&e[2][0]==pp.PROPERTY_BLOCK,components:[],dirty:!1,dynamic:hp(e),hack:n,important:t,name:e[1][1],multiplex:e.length>3&&gp(e),optimizable:!0,position:0,shorthand:!1,unused:!1,value:e.slice(2)}}var vp=function(e,t){var n,r,i,o=[];for(i=e.length-1;i>=0;i--)(r=e[i])[0]==pp.PROPERTY&&(t&&t.indexOf(r[1][1])>-1||((n=yp(r)).all=e,n.position=i,o.unshift(n)));return o},bp=yp;function Sp(e){this.name="InvalidPropertyError",this.message=e,this.stack=(new Error).stack}Sp.prototype=Object.create(Error.prototype),Sp.prototype.constructor=Sp;var xp=Sp,wp=xp,Cp=bp,kp=up,Op=Ld,Tp=Pd;function Ep(e){var t,n;for(t=0,n=e.length;t<n;t++)if("inherit"==e[t][1])return!0;return!1}function Ap(e,t,n){var r=n[e];return r.doubleValues&&2==r.defaultValue.length?Cp([kp.PROPERTY,[kp.PROPERTY_NAME,e],[kp.PROPERTY_VALUE,r.defaultValue[0]],[kp.PROPERTY_VALUE,r.defaultValue[1]]]):r.doubleValues&&1==r.defaultValue.length?Cp([kp.PROPERTY,[kp.PROPERTY_NAME,e],[kp.PROPERTY_VALUE,r.defaultValue[0]]]):Cp([kp.PROPERTY,[kp.PROPERTY_NAME,e],[kp.PROPERTY_VALUE,r.defaultValue]])}function _p(e,t){var n=t[e.name].components,r=[],i=e.value;if(i.length<1)return[];i.length<2&&(i[1]=i[0].slice(0)),i.length<3&&(i[2]=i[0].slice(0)),i.length<4&&(i[3]=i[1].slice(0));for(var o=n.length-1;o>=0;o--){var a=Cp([kp.PROPERTY,[kp.PROPERTY_NAME,n[o]]]);a.value=[i[o]],r.unshift(a)}return r}function zp(e,t,n){for(var r,i,o,a=t[e.name],s=[Ap(a.components[0],0,t),Ap(a.components[1],0,t),Ap(a.components[2],0,t)],l=0;l<3;l++){var u=s[l];u.name.indexOf("color")>0?r=u:u.name.indexOf("style")>0?i=u:o=u}if(1==e.value.length&&"inherit"==e.value[0][1]||3==e.value.length&&"inherit"==e.value[0][1]&&"inherit"==e.value[1][1]&&"inherit"==e.value[2][1])return r.value=i.value=o.value=[e.value[0]],s;var c,d,p=e.value.slice(0);return p.length>0&&(d=p.filter(function(e){return function(t){return"inherit"!=t[1]&&(e.isWidth(t[1])||e.isUnit(t[1])||e.isDynamicUnit(t[1]))&&!e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n)),(c=d.length>1&&("none"==d[0][1]||"auto"==d[0][1])?d[1]:d[0])&&(o.value=[c],p.splice(p.indexOf(c),1))),p.length>0&&(c=p.filter(function(e){return function(t){return"inherit"!=t[1]&&e.isStyleKeyword(t[1])&&!e.isColorFunction(t[1])}}(n))[0],c&&(i.value=[c],p.splice(p.indexOf(c),1))),p.length>0&&(c=p.filter(function(e){return function(t){return"invert"==t[1]||e.isColor(t[1])||e.isPrefixed(t[1])}}(n))[0],c&&(r.value=[c],p.splice(p.indexOf(c),1))),s}var Rp={animation:function(e,t,n){var r,i,o,a=Ap(e.name+"-duration",0,t),s=Ap(e.name+"-timing-function",0,t),l=Ap(e.name+"-delay",0,t),u=Ap(e.name+"-iteration-count",0,t),c=Ap(e.name+"-direction",0,t),d=Ap(e.name+"-fill-mode",0,t),p=Ap(e.name+"-play-state",0,t),m=Ap(e.name+"-name",0,t),h=[a,s,l,u,c,d,p,m],f=e.value,g=!1,y=!1,v=!1,b=!1,S=!1,x=!1,w=!1,C=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return a.value=s.value=l.value=u.value=c.value=d.value=p.value=m.value=e.value,h;if(f.length>1&&Ep(f))throw new wp("Invalid animation values at "+Tp(f[0][2][0])+". Ignoring.");for(i=0,o=f.length;i<o;i++)if(r=f[i],n.isTime(r[1])&&!g)a.value=[r],g=!0;else if(n.isTime(r[1])&&!v)l.value=[r],v=!0;else if(!n.isGlobal(r[1])&&!n.isTimingFunction(r[1])||y)if(!n.isAnimationIterationCountKeyword(r[1])&&!n.isPositiveNumber(r[1])||b)if(n.isAnimationDirectionKeyword(r[1])&&!S)c.value=[r],S=!0;else if(n.isAnimationFillModeKeyword(r[1])&&!x)d.value=[r],x=!0;else if(n.isAnimationPlayStateKeyword(r[1])&&!w)p.value=[r],w=!0;else{if(!n.isAnimationNameKeyword(r[1])&&!n.isIdentifier(r[1])||C)throw new wp("Invalid animation value at "+Tp(r[2][0])+". Ignoring.");m.value=[r],C=!0}else u.value=[r],b=!0;else s.value=[r],y=!0;return h},background:function(e,t,n){var r=Ap("background-image",0,t),i=Ap("background-position",0,t),o=Ap("background-size",0,t),a=Ap("background-repeat",0,t),s=Ap("background-attachment",0,t),l=Ap("background-origin",0,t),u=Ap("background-clip",0,t),c=Ap("background-color",0,t),d=[r,i,o,a,s,l,u,c],p=e.value,m=!1,h=!1,f=!1,g=!1,y=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return c.value=r.value=a.value=i.value=o.value=l.value=u.value=e.value,d;if(1==e.value.length&&"0 0"==e.value[0][1])return d;for(var v=p.length-1;v>=0;v--){var b=p[v];if(n.isBackgroundAttachmentKeyword(b[1]))s.value=[b],y=!0;else if(n.isBackgroundClipKeyword(b[1])||n.isBackgroundOriginKeyword(b[1]))h?(l.value=[b],f=!0):(u.value=[b],h=!0),y=!0;else if(n.isBackgroundRepeatKeyword(b[1]))g?a.value.unshift(b):(a.value=[b],g=!0),y=!0;else if(n.isBackgroundPositionKeyword(b[1])||n.isBackgroundSizeKeyword(b[1])||n.isUnit(b[1])||n.isDynamicUnit(b[1])){if(v>0){var S=p[v-1];S[1]==Op.FORWARD_SLASH?o.value=[b]:v>1&&p[v-2][1]==Op.FORWARD_SLASH?(o.value=[S,b],v-=2):(m||(i.value=[]),i.value.unshift(b),m=!0)}else m||(i.value=[]),i.value.unshift(b),m=!0;y=!0}else c.value[0][1]!=t[c.name].defaultValue&&"none"!=c.value[0][1]||!n.isColor(b[1])&&!n.isPrefixed(b[1])?(n.isUrl(b[1])||n.isFunction(b[1]))&&(r.value=[b],y=!0):(c.value=[b],y=!0)}if(h&&!f&&(l.value=u.value.slice(0)),!y)throw new wp("Invalid background value at "+Tp(p[0][2][0])+". Ignoring.");return d},border:zp,borderRadius:function(e,t){for(var n=e.value,r=-1,i=0,o=n.length;i<o;i++)if(n[i][1]==Op.FORWARD_SLASH){r=i;break}if(0===r||r===n.length-1)throw new wp("Invalid border-radius value at "+Tp(n[0][2][0])+". Ignoring.");var a=Ap(e.name,0,t);a.value=r>-1?n.slice(0,r):n.slice(0),a.components=_p(a,t);var s=Ap(e.name,0,t);s.value=r>-1?n.slice(r+1):n.slice(0),s.components=_p(s,t);for(var l=0;l<4;l++)a.components[l].multiplex=!0,a.components[l].value=a.components[l].value.concat(s.components[l].value);return a.components},font:function(e,t,n){var r,i,o,a,s=Ap("font-style",0,t),l=Ap("font-variant",0,t),u=Ap("font-weight",0,t),c=Ap("font-stretch",0,t),d=Ap("font-size",0,t),p=Ap("line-height",0,t),m=Ap("font-family",0,t),h=[s,l,u,c,d,p,m],f=e.value,g=0,y=!1,v=!1,b=!1,S=!1,x=!1;if(!f[g])throw new wp("Missing font values at "+Tp(e.all[e.position][1][2][0])+". Ignoring.");if(1==f.length&&"inherit"==f[0][1])return s.value=l.value=u.value=c.value=d.value=p.value=m.value=f,h;if(1==f.length&&(n.isFontKeyword(f[0][1])||n.isGlobal(f[0][1])||n.isPrefixed(f[0][1])))return f[0][1]=Op.INTERNAL+f[0][1],s.value=l.value=u.value=c.value=d.value=p.value=m.value=f,h;if(f.length<2||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isFontSizeKeyword(n[1])||t.isUnit(n[1])&&!t.isDynamicUnit(n[1])||t.isFunction(n[1]))return!0;return!1}(f,n)||!function(e,t){var n,r,i;for(r=0,i=e.length;r<i;r++)if(n=e[r],t.isIdentifier(n[1])||t.isQuotedText(n[1]))return!0;return!1}(f,n))throw new wp("Invalid font values at "+Tp(e.all[e.position][1][2][0])+". Ignoring.");if(f.length>1&&Ep(f))throw new wp("Invalid font values at "+Tp(f[0][2][0])+". Ignoring.");for(;g<4;){if(r=n.isFontStretchKeyword(f[g][1])||n.isGlobal(f[g][1]),i=n.isFontStyleKeyword(f[g][1])||n.isGlobal(f[g][1]),o=n.isFontVariantKeyword(f[g][1])||n.isGlobal(f[g][1]),a=n.isFontWeightKeyword(f[g][1])||n.isGlobal(f[g][1]),i&&!v)s.value=[f[g]],v=!0;else if(o&&!b)l.value=[f[g]],b=!0;else if(a&&!S)u.value=[f[g]],S=!0;else{if(!r||y){if(i&&v||o&&b||a&&S||r&&y)throw new wp("Invalid font style / variant / weight / stretch value at "+Tp(f[0][2][0])+". Ignoring.");break}c.value=[f[g]],y=!0}g++}if(!(n.isFontSizeKeyword(f[g][1])||n.isUnit(f[g][1])&&!n.isDynamicUnit(f[g][1])))throw new wp("Missing font size at "+Tp(f[0][2][0])+". Ignoring.");if(d.value=[f[g]],!f[++g])throw new wp("Missing font family at "+Tp(f[0][2][0])+". Ignoring.");for(f[g]&&f[g][1]==Op.FORWARD_SLASH&&f[g+1]&&(n.isLineHeightKeyword(f[g+1][1])||n.isUnit(f[g+1][1])||n.isNumber(f[g+1][1]))&&(p.value=[f[g+1]],g++,g++),m.value=[];f[g];)f[g][1]==Op.COMMA?x=!1:(x?m.value[m.value.length-1][1]+=Op.SPACE+f[g][1]:m.value.push(f[g]),x=!0),g++;if(0===m.value.length)throw new wp("Missing font family at "+Tp(f[0][2][0])+". Ignoring.");return h},fourValues:_p,listStyle:function(e,t,n){var r=Ap("list-style-type",0,t),i=Ap("list-style-position",0,t),o=Ap("list-style-image",0,t),a=[r,i,o];if(1==e.value.length&&"inherit"==e.value[0][1])return r.value=i.value=o.value=[e.value[0]],a;var s=e.value.slice(0),l=s.length,u=0;for(u=0,l=s.length;u<l;u++)if(n.isUrl(s[u][1])||"0"==s[u][1]){o.value=[s[u]],s.splice(u,1);break}for(u=0,l=s.length;u<l;u++)if(n.isListStylePositionKeyword(s[u][1])){i.value=[s[u]],s.splice(u,1);break}return s.length>0&&(n.isListStyleTypeKeyword(s[0][1])||n.isIdentifier(s[0][1]))&&(r.value=[s[0]]),a},multiplex:function(e){return function(t,n,r){var i,o,a,s,l=[],u=t.value;for(i=0,a=u.length;i<a;i++)","==u[i][1]&&l.push(i);if(0===l.length)return e(t,n,r);var c=[];for(i=0,a=l.length;i<=a;i++){var d=0===i?0:l[i-1]+1,p=i<a?l[i]:u.length,m=Ap(t.name,0,n);m.value=u.slice(d,p),m.value.length>0&&c.push(e(m,n,r))}var h=c[0];for(i=0,a=h.length;i<a;i++)for(h[i].multiplex=!0,o=1,s=c.length;o<s;o++)h[i].value.push([kp.PROPERTY_VALUE,Op.COMMA]),Array.prototype.push.apply(h[i].value,c[o][i].value);return h}},outline:zp,transition:function(e,t,n){var r,i,o,a=Ap(e.name+"-property",0,t),s=Ap(e.name+"-duration",0,t),l=Ap(e.name+"-timing-function",0,t),u=Ap(e.name+"-delay",0,t),c=[a,s,l,u],d=e.value,p=!1,m=!1,h=!1,f=!1;if(1==e.value.length&&"inherit"==e.value[0][1])return a.value=s.value=l.value=u.value=e.value,c;if(d.length>1&&Ep(d))throw new wp("Invalid animation values at "+Tp(d[0][2][0])+". Ignoring.");for(i=0,o=d.length;i<o;i++)if(r=d[i],n.isTime(r[1])&&!p)s.value=[r],p=!0;else if(n.isTime(r[1])&&!m)u.value=[r],m=!0;else if(!n.isGlobal(r[1])&&!n.isTimingFunction(r[1])||f){if(!n.isIdentifier(r[1])||h)throw new wp("Invalid animation value at "+Tp(r[2][0])+". Ignoring.");a.value=[r],h=!0}else l.value=[r],f=!0;return c}},Lp=/(?:^|\W)(\-\w+\-)/g;function Pp(e){for(var t,n=[];null!==(t=Lp.exec(e));)-1==n.indexOf(t[0])&&n.push(t[0]);return n}var Bp=function(e,t){return Pp(e).sort().join(",")==Pp(t).sort().join(",")},Wp=Bp;var Mp=function(e,t,n,r,i){return!!Wp(t,n)&&(!i||e.isVariable(t)===e.isVariable(n))},Up=Mp;function Ip(e,t,n){if(!e.isFunction(t)||!e.isFunction(n))return!1;var r=t.substring(0,t.indexOf("(")),i=n.substring(0,n.indexOf("(")),o=t.substring(r.length+1,t.length-1),a=n.substring(i.length+1,n.length-1);return e.isFunction(o)||e.isFunction(a)?r===i&&Ip(e,o,a):r===i}function Np(e){return function(t,n,r){return!(!Up(t,n,r,0,!0)&&!t.isKeyword(e)(r))&&(!(!t.isVariable(n)||!t.isVariable(r))||t.isKeyword(e)(r))}}function qp(e){return function(t,n,r){return!!(Up(t,n,r,0,!0)||t.isKeyword(e)(r)||t.isGlobal(r))&&(!(!t.isVariable(n)||!t.isVariable(r))||(t.isKeyword(e)(r)||t.isGlobal(r)))}}function Dp(e,t,n){return!!Ip(e,t,n)||t===n}function Vp(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isUnit(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isUnit(t)&&!e.isUnit(n))&&(!!e.isUnit(n)||!e.isUnit(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Dp(e,t,n))))}function jp(e){var t=qp(e);return function(e,n,r){return Vp(e,n,r)||t(e,n,r)}}var Fp={generic:{color:function(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isColor(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(!e.colorOpacity&&(e.isRgbColor(t)||e.isHslColor(t)))&&(!(!e.colorOpacity&&(e.isRgbColor(n)||e.isHslColor(n)))&&(!(!e.colorHexAlpha&&(e.isHexAlphaColor(t)||e.isHexAlphaColor(n)))&&(!(!e.isColor(t)||!e.isColor(n))||Dp(e,t,n)))))},components:function(e){return function(t,n,r,i){return e[i](t,n,r)}},image:function(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isImage(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!!e.isImage(n)||!e.isImage(t)&&Dp(e,t,n)))},propertyName:function(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isIdentifier(n))},time:function(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isTime(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!(e.isTime(t)&&!e.isTime(n))&&(!!e.isTime(n)||!e.isTime(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Dp(e,t,n))))},timingFunction:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isTimingFunction(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isTimingFunction(n)||e.isGlobal(n)))},unit:Vp,unitOrNumber:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isUnit(n)||e.isNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||!((e.isUnit(t)||e.isNumber(t))&&!e.isUnit(n)&&!e.isNumber(n))&&(!(!e.isUnit(n)&&!e.isNumber(n))||!e.isUnit(t)&&!e.isNumber(t)&&(!(!e.isFunction(t)||e.isPrefixed(t)||!e.isFunction(n)||e.isPrefixed(n))||Dp(e,t,n))))}},property:{animationDirection:qp("animation-direction"),animationFillMode:Np("animation-fill-mode"),animationIterationCount:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationIterationCountKeyword(n)||e.isPositiveNumber(n)))},animationName:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isAnimationNameKeyword(n)||e.isIdentifier(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isAnimationNameKeyword(n)||e.isIdentifier(n)))},animationPlayState:qp("animation-play-state"),backgroundAttachment:Np("background-attachment"),backgroundClip:qp("background-clip"),backgroundOrigin:Np("background-origin"),backgroundPosition:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isBackgroundPositionKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundPositionKeyword(n)&&!e.isGlobal(n))||Vp(e,t,n)))},backgroundRepeat:Np("background-repeat"),backgroundSize:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isBackgroundSizeKeyword(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(!(!e.isBackgroundSizeKeyword(n)&&!e.isGlobal(n))||Vp(e,t,n)))},bottom:jp("bottom"),borderCollapse:Np("border-collapse"),borderStyle:qp("*-style"),clear:qp("clear"),cursor:qp("cursor"),display:qp("display"),float:qp("float"),left:jp("left"),fontFamily:function(e,t,n){return Up(e,t,n,0,!0)},fontStretch:qp("font-stretch"),fontStyle:qp("font-style"),fontVariant:qp("font-variant"),fontWeight:qp("font-weight"),listStyleType:qp("list-style-type"),listStylePosition:qp("list-style-position"),outlineStyle:qp("*-style"),overflow:qp("overflow"),position:qp("position"),right:jp("right"),textAlign:qp("text-align"),textDecoration:qp("text-decoration"),textOverflow:qp("text-overflow"),textShadow:function(e,t,n){return!!(Up(e,t,n,0,!0)||e.isUnit(n)||e.isColor(n)||e.isGlobal(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||(e.isUnit(n)||e.isColor(n)||e.isGlobal(n)))},top:jp("top"),transform:Dp,verticalAlign:jp("vertical-align"),visibility:qp("visibility"),whiteSpace:qp("white-space"),zIndex:function(e,t,n){return!(!Up(e,t,n,0,!0)&&!e.isZIndex(n))&&(!(!e.isVariable(t)||!e.isVariable(n))||e.isZIndex(n))}}},Gp=bp,Kp=up;function Yp(e){var t=Gp([Kp.PROPERTY,[Kp.PROPERTY_NAME,e.name]]);return t.important=e.important,t.hack=e.hack,t.unused=!1,t}var Hp=function(e){for(var t=Yp(e),n=e.components.length-1;n>=0;n--){var r=Yp(e.components[n]);r.value=e.components[n].value.slice(0),t.components.unshift(r)}return t.dirty=!0,t.value=e.value.slice(0),t},$p=Yp,Qp=$p,Zp=up,Xp=Ld;function Jp(e){for(var t=0,n=e.length;t<n;t++){var r=e[t][1];if("inherit"!=r&&r!=Xp.COMMA&&r!=Xp.FORWARD_SLASH)return!1}return!0}function em(e){var t=e.components,n=t[0].value[0],r=t[1].value[0],i=t[2].value[0],o=t[3].value[0];return n[1]==r[1]&&n[1]==i[1]&&n[1]==o[1]?[n]:n[1]==i[1]&&r[1]==o[1]?[n,r]:r[1]==o[1]?[n,r,i]:[n,r,i,o]}function tm(e,t,n){var r,i,o;for(i=0,o=e.length;i<o;i++)if((r=e[i]).name==n&&r.value[0][1]==t[n].defaultValue)return!0;return!1}var nm={background:function(e,t,n){var r,i,o=e.components,a=[];function s(e){Array.prototype.unshift.apply(a,e.value)}function l(e){var n=t[e.name];return n.doubleValues&&1==n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(!e.value[1]||e.value[1][1]==n.defaultValue[0]):n.doubleValues&&1!=n.defaultValue.length?e.value[0][1]==n.defaultValue[0]&&(e.value[1]?e.value[1][1]:e.value[0][1])==n.defaultValue[1]:e.value[0][1]==n.defaultValue}for(var u=o.length-1;u>=0;u--){var c=o[u],d=l(c);if("background-clip"==c.name){var p=o[u-1],m=l(p);i=!(r=c.value[0][1]==p.value[0][1])&&(m&&!d||!m&&!d||!m&&d&&c.value[0][1]!=p.value[0][1]),r?s(p):i&&(s(c),s(p)),u--}else if("background-size"==c.name){var h=o[u-1],f=l(h);i=!(r=!f&&d)&&(f&&!d||!f&&!d),r?s(h):i?(s(c),a.unshift([Zp.PROPERTY_VALUE,Xp.FORWARD_SLASH]),s(h)):1==h.value.length&&s(h),u--}else{if(d||t[c.name].multiplexLastOnly&&!n)continue;s(c)}}return 0===a.length&&1==e.value.length&&"0"==e.value[0][1]&&a.push(e.value[0]),0===a.length&&a.push([Zp.PROPERTY_VALUE,t[e.name].defaultValue]),Jp(a)?[a[0]]:a},borderRadius:function(e){if(e.multiplex){for(var t=Qp(e),n=Qp(e),r=0;r<4;r++){var i=e.components[r],o=Qp(e);o.value=[i.value[0]],t.components.push(o);var a=Qp(e);a.value=[i.value[1]||i.value[0]],n.components.push(a)}var s=em(t),l=em(n);return s.length!=l.length||s[0][1]!=l[0][1]||s.length>1&&s[1][1]!=l[1][1]||s.length>2&&s[2][1]!=l[2][1]||s.length>3&&s[3][1]!=l[3][1]?s.concat([[Zp.PROPERTY_VALUE,Xp.FORWARD_SLASH]]).concat(l):s}return em(e)},font:function(e,t){var n,r=e.components,i=[],o=0,a=0;if(0===e.value[0][1].indexOf(Xp.INTERNAL))return e.value[0][1]=e.value[0][1].substring(Xp.INTERNAL.length),e.value;for(;o<4;)(n=r[o]).value[0][1]!=t[n.name].defaultValue&&Array.prototype.push.apply(i,n.value),o++;for(Array.prototype.push.apply(i,r[o].value),r[++o].value[0][1]!=t[r[o].name].defaultValue&&(Array.prototype.push.apply(i,[[Zp.PROPERTY_VALUE,Xp.FORWARD_SLASH]]),Array.prototype.push.apply(i,r[o].value)),o++;r[o].value[a];)i.push(r[o].value[a]),r[o].value[a+1]&&i.push([Zp.PROPERTY_VALUE,Xp.COMMA]),a++;return Jp(i)?[i[0]]:i},fourValues:em,multiplex:function(e){return function(t,n){if(!t.multiplex)return e(t,n,!0);var r,i,o=0,a=[],s={};for(r=0,i=t.components[0].value.length;r<i;r++)t.components[0].value[r][1]==Xp.COMMA&&o++;for(r=0;r<=o;r++){for(var l=Qp(t),u=0,c=t.components.length;u<c;u++){var d=t.components[u],p=Qp(d);l.components.push(p);for(var m=s[p.name]||0,h=d.value.length;m<h;m++){if(d.value[m][1]==Xp.COMMA){s[p.name]=m+1;break}p.value.push(d.value[m])}}var f=e(l,n,r==o);Array.prototype.push.apply(a,f),r<o&&a.push([Zp.PROPERTY_VALUE,Xp.COMMA])}return a}},withoutDefaults:function(e,t){for(var n=e.components,r=[],i=n.length-1;i>=0;i--){var o=n[i],a=t[o.name];(o.value[0][1]!=a.defaultValue||"keepUnlessDefault"in a&&!tm(n,t,a.keepUnlessDefault))&&r.unshift(o.value[0])}return 0===r.length&&r.push([Zp.PROPERTY_VALUE,t[e.name].defaultValue]),Jp(r)?[r[0]]:r}},rm=md,im=/^\d+$/,om=["*","all"],am="off";function sm(e){return{ch:e,cm:e,em:e,ex:e,in:e,mm:e,pc:e,pt:e,px:e,q:e,rem:e,vh:e,vmax:e,vmin:e,vw:e,"%":e}}var lm=am,um=function(e){return rm(sm(am),function(e){if(null==e)return{};if("boolean"==typeof e)return{};if("number"==typeof e&&-1==e)return sm(am);if("number"==typeof e)return sm(e);if("string"==typeof e&&im.test(e))return sm(parseInt(e));if("string"==typeof e&&e==am)return sm(am);if("object"==typeof e)return e;return e.split(",").reduce((function(e,t){var n=t.split("="),r=n[0],i=parseInt(n[1]);return(isNaN(i)||-1==i)&&(i=am),om.indexOf(r)>-1?e=rm(e,sm(i)):e[r]=i,e}),{})}(e))},cm=um,dm=md,pm={Zero:"0",One:"1",Two:"2"},mm={};mm[pm.Zero]={},mm[pm.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeEmpty:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:cm(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0},mm[pm.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,removeEmpty:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,removeUnusedAtRules:!1,restructureRules:!1,skipProperties:[]};var hm="*",fm="all";function gm(e,t){var n,r=dm(mm[e],{});for(n in r)"boolean"==typeof r[n]&&(r[n]=t);return r}function ym(e){switch(e){case"false":case"off":return!1;case"true":case"on":return!0;default:return e}}function vm(e,t){return e.split(";").reduce((function(e,n){var r=n.split(":"),i=r[0],o=ym(r[1]);return hm==i||fm==i?e=dm(e,gm(t,o)):e[i]=o,e}),{})}var bm=pm,Sm=function(e){var t=dm(mm,{}),n=pm.Zero,r=pm.One,i=pm.Two;return void 0===e?(delete t[i],t):("string"==typeof e&&(e=parseInt(e)),"number"==typeof e&&e===parseInt(i)?t:"number"==typeof e&&e===parseInt(r)?(delete t[i],t):"number"==typeof e&&e===parseInt(n)?(delete t[i],delete t[r],t):("object"==typeof e&&(e=function(e){var t,n,r=dm(e,{});for(n=0;n<=2;n++)!((t=""+n)in r)||void 0!==r[t]&&!1!==r[t]||delete r[t],t in r&&!0===r[t]&&(r[t]={}),t in r&&"string"==typeof r[t]&&(r[t]=vm(r[t],t));return r}(e)),r in e&&"roundingPrecision"in e[r]&&(e[r].roundingPrecision=cm(e[r].roundingPrecision)),i in e&&"skipProperties"in e[i]&&"string"==typeof e[i].skipProperties&&(e[i].skipProperties=e[i].skipProperties.split(",")),(n in e||r in e||i in e)&&(t[n]=dm(t[n],e[n])),r in e&&hm in e[r]&&(t[r]=dm(t[r],gm(r,ym(e[r]["*"]))),delete e[r]["*"]),r in e&&fm in e[r]&&(t[r]=dm(t[r],gm(r,ym(e[r].all))),delete e[r].all),r in e||i in e?t[r]=dm(t[r],e[r]):delete t[r],i in e&&hm in e[i]&&(t[i]=dm(t[i],gm(i,ym(e[i]["*"]))),delete e[i]["*"]),i in e&&fm in e[i]&&(t[i]=dm(t[i],gm(i,ym(e[i].all))),delete e[i].all),i in e?t[i]=dm(t[i],e[i]):delete t[i],t))},xm=bm,wm={level1:{property:function(e,t,n){var r=t.value;n.level[xm.One].optimizeBackground&&(1==r.length&&"none"==r[0][1]&&(r[0][1]="0 0"),1==r.length&&"transparent"==r[0][1]&&(r[0][1]="0 0"))}}},Cm={level1:{property:function(e,t){var n=t.value;4==n.length&&"0"===n[0][1]&&"0"===n[1][1]&&"0"===n[2][1]&&"0"===n[3][1]&&(t.value.splice(2),t.dirty=!0)}}},km=bm,Om={level1:{property:function(e,t,n){var r=t.value;n.level[km.One].optimizeBorderRadius&&(3==r.length&&"/"==r[1][1]&&r[0][1]==r[2][1]?(t.value.splice(1),t.dirty=!0):5==r.length&&"/"==r[2][1]&&r[0][1]==r[3][1]&&r[1][1]==r[4][1]?(t.value.splice(2),t.dirty=!0):7==r.length&&"/"==r[3][1]&&r[0][1]==r[4][1]&&r[1][1]==r[5][1]&&r[2][1]==r[6][1]?(t.value.splice(3),t.dirty=!0):9==r.length&&"/"==r[4][1]&&r[0][1]==r[5][1]&&r[1][1]==r[6][1]&&r[2][1]==r[7][1]&&r[3][1]==r[8][1]&&(t.value.splice(4),t.dirty=!0))}}},Tm=Om,Em=bm,Am=/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,_m=/,(\S)/g,zm=/ ?= ?/g,Rm={level1:{property:function(e,t,n){n.compatibility.properties.ieFilters&&n.level[Em.One].optimizeFilter&&(1==t.value.length&&(t.value[0][1]=t.value[0][1].replace(Am,(function(e,t,n){return t.toLowerCase()+n}))),t.value[0][1]=t.value[0][1].replace(_m,", $1").replace(zm,"="))}}},Lm=Rm,Pm=bm,Bm={level1:{property:function(e,t,n){var r=t.value[0][1];n.level[Pm.One].optimizeFontWeight&&("normal"==r?r="400":"bold"==r&&(r="700"),t.value[0][1]=r)}}},Wm=Bm,Mm=bm,Um={level1:{property:function(e,t,n){var r=t.value;n.level[Mm.One].replaceMultipleZeros&&4==r.length&&"0"===r[0][1]&&"0"===r[1][1]&&"0"===r[2][1]&&"0"===r[3][1]&&(t.value.splice(1),t.dirty=!0)}}},Im=Um,Nm=bm,qm={level1:{property:function(e,t,n){var r=t.value;n.level[Nm.One].optimizeOutline&&1==r.length&&"none"==r[0][1]&&(r[0][1]="0")}}},Dm=qm,Vm=bm;function jm(e){return e&&"-"==e[1][0]&&parseFloat(e[1])<0}var Fm={level1:{property:function(e,t,n){var r=t.value;4==r.length&&"0"===r[0][1]&&"0"===r[1][1]&&"0"===r[2][1]&&"0"===r[3][1]&&(t.value.splice(1),t.dirty=!0),n.level[Vm.One].removeNegativePaddings&&(jm(t.value[0])||jm(t.value[1])||jm(t.value[2])||jm(t.value[3]))&&(t.unused=!0)}}},Gm=Fm,Km={background:wm.level1.property,boxShadow:Cm.level1.property,borderRadius:Tm.level1.property,filter:Lm.level1.property,fontWeight:Wm.level1.property,margin:Im.level1.property,outline:Dm.level1.property,padding:Gm.level1.property},Ym={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},Hm={},$m={};for(var Qm in Ym){var Zm=Ym[Qm];Qm.length<Zm.length?$m[Zm]=Qm:Hm[Qm]=Zm}var Xm=new RegExp("(^| |,|\\))("+Object.keys(Hm).join("|")+")( |,|\\)|$)","ig"),Jm=new RegExp("("+Object.keys($m).join("|")+")([^a-f0-9]|$)","ig");function eh(e,t,n,r){return t+Hm[n.toLowerCase()]+r}function th(e,t,n){return $m[t.toLowerCase()]+n}var nh=function(e){var t=e.indexOf("#")>-1,n=e.replace(Xm,eh);return n!=e&&(n=n.replace(Xm,eh)),t?n.replace(Jm,th):n};function rh(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}var ih=function(e,t,n){var r=function(e,t,n){var r,i,o;if((e%=360)<0&&(e+=360),e=~~e/360,t<0?t=0:t>100&&(t=100),n<0?n=0:n>100&&(n=100),n=~~n/100,0==(t=~~t/100))r=i=o=n;else{var a=n<.5?n*(1+t):n+t-n*t,s=2*n-a;r=rh(s,a,e+1/3),i=rh(s,a,e),o=rh(s,a,e-1/3)}return[~~(255*r),~~(255*i),~~(255*o)]}(e,t,n),i=r[0].toString(16),o=r[1].toString(16),a=r[2].toString(16);return"#"+(1==i.length?"0":"")+i+(1==o.length?"0":"")+o+(1==a.length?"0":"")+a};var oh=Ld;function ah(e,t,n){return n?t.test(e):e===t}var sh=function(e,t){var n,r=oh.OPEN_ROUND_BRACKET,i=oh.CLOSE_ROUND_BRACKET,o=0,a=0,s=0,l=e.length,u=[],c="object"==typeof t&&"exec"in t;if(!c&&-1==e.indexOf(t))return[e];if(-1==e.indexOf(r))return e.split(t);for(;a<l;)e[a]==r?o++:e[a]==i&&o--,0===o&&a>0&&a+1<l&&ah(e[a],t,c)&&(u.push(e.substring(s,a)),c&&t.exec(e[a]).length>1&&u.push(e[a]),s=a+1),a++;return s<a+1&&(ah((n=e.substring(s))[n.length-1],t,c)&&(n=n.substring(0,n.length-1)),u.push(n)),u},lh=nh,uh=ih,ch=function(e,t,n){return"#"+("00000"+(Math.max(0,Math.min(parseInt(e),255))<<16|Math.max(0,Math.min(parseInt(t),255))<<8|Math.max(0,Math.min(parseInt(n),255))).toString(16)).slice(-6)},dh=sh,ph=/(rgb|rgba|hsl|hsla)\(([^\(\)]+)\)/gi,mh=/#|rgb|hsl/gi,hh=/(^|[^='"])#([0-9a-f]{6})/gi,fh=/(^|[^='"])#([0-9a-f]{3})/gi,gh=/[0-9a-f]/i,yh=/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/gi,vh=/(rgb|hsl)a?\((\-?\d+),(\-?\d+\%?),(\-?\d+\%?),(0*[1-9]+[0-9]*(\.?\d*)?)\)/gi,bh=/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/gi,Sh=/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,xh={level1:{value:function(e,t,n){return n.compatibility.properties.colors?t.match(mh)?(t=t.replace(vh,(function(e,t,n,r,i,o){return parseInt(o,10)>=1?t+"("+[n,r,i].join(",")+")":e})).replace(bh,(function(e,t,n,r){return ch(t,n,r)})).replace(yh,(function(e,t,n,r){return uh(t,n,r)})).replace(hh,(function(e,t,n,r,i){var o=i[r+e.length];return o&&gh.test(o)?e:n[0]==n[1]&&n[2]==n[3]&&n[4]==n[5]?(t+"#"+n[0]+n[2]+n[4]).toLowerCase():(t+"#"+n).toLowerCase()})).replace(fh,(function(e,t,n){return t+"#"+n.toLowerCase()})).replace(ph,(function(e,t,n){var r=n.split(","),i=t&&t.toLowerCase();return"hsl"==i&&3==r.length||"hsla"==i&&4==r.length||"rgb"==i&&3===r.length&&n.indexOf("%")>0||"rgba"==i&&4==r.length&&n.indexOf("%")>0?(-1==r[1].indexOf("%")&&(r[1]+="%"),-1==r[2].indexOf("%")&&(r[2]+="%"),t+"("+r.join(",")+")"):e})),n.compatibility.colors.opacity&&-1==e.indexOf("background")&&(t=t.replace(Sh,(function(e){return dh(t,",").pop().indexOf("gradient(")>-1?e:"transparent"}))),lh(t)):lh(t):t}}},wh=/\(0deg\)/g,Ch={level1:{value:function(e,t,n){return n.compatibility.properties.zeroUnits?-1==t.indexOf("0deg")?t:t.replace(wh,"(0)"):t}}},kh=Ch,Oh=/^url\(/i;var Th=function(e){return Oh.test(e)},Eh=Th,Ah=bm,_h=/(^|\D)\.0+(\D|$)/g,zh=/\.([1-9]*)0+(\D|$)/g,Rh=/(^|\D)0\.(\d)/g,Lh=/([^\w\d\-]|^)\-0([^\.]|$)/g,Ph=/(^|\s)0+([1-9])/g,Bh={level1:{value:function(e,t,n){return n.level[Ah.One].replaceZeroUnits?Eh(t)||-1==t.indexOf("0")?t:(t.indexOf("-")>-1&&(t=t.replace(Lh,"$10$2").replace(Lh,"$10$2")),t.replace(Ph,"$1$2").replace(_h,"$10$2").replace(zh,(function(e,t,n){return(t.length>0?".":"")+t+n})).replace(Rh,"$1.$2")):t}}},Wh=Bh,Mh={level1:{value:function(e,t,n){return n.precision.enabled&&-1!==t.indexOf(".")?t.replace(n.precision.decimalPointMatcher,"$1$2$3").replace(n.precision.zeroMatcher,(function(e,t,r,i){var o=n.precision.units[i].multiplier,a=parseInt(t),s=isNaN(a)?0:a,l=parseFloat(r);return Math.round((s+l)*o)/o+i})):t}}},Uh=Mh,Ih=bm,Nh=/^local\(/i,qh=/^('.*'|".*")$/,Dh=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,Vh={level1:{value:function(e,t,n){return n.level[Ih.One].removeQuotes&&(qh.test(t)||Nh.test(t))&&Dh.test(t)?t.substring(1,t.length-1):t}}},jh=Vh,Fh=bm,Gh=/^(\-?[\d\.]+)(m?s)$/,Kh={level1:{value:function(e,t,n){return n.level[Fh.One].replaceTimeUnits&&Gh.test(t)?t.replace(Gh,(function(e,t,n){var r;return"ms"==n?r=parseInt(t)/1e3+"s":"s"==n&&(r=1e3*parseFloat(t)+"ms"),r.length<e.length?r:e})):t}}},Yh=Kh,Hh=/(?:^|\s|\()(-?\d+)px/,$h={level1:{value:function(e,t,n){return Hh.test(t)?t.replace(Hh,(function(e,t){var r,i=parseInt(t);return 0===i?e:(n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.pt&&3*i%4==0&&(r=3*i/4+"pt"),n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.pc&&i%16==0&&(r=i/16+"pc"),n.compatibility.properties.shorterLengthUnits&&n.compatibility.units.in&&i%96==0&&(r=i/96+"in"),r&&(r=e.substring(0,e.indexOf(t))+r),r&&r.length<e.length?r:e)})):t}}},Qh=$h,Zh=Th,Xh=bm,Jh=/^url\(/i,ef={level1:{value:function(e,t,n){return n.level[Xh.One].normalizeUrls&&Zh(t)?t.replace(Jh,"url("):t}}},tf=ef,nf=/^url\(['"].+['"]\)$/,rf=/^url\(['"].*[\*\s\(\)'"].*['"]\)$/,of=/["']/g,af=/^url\(['"]data:[^;]+;charset/,sf={level1:{value:function(e,t,n){return n.compatibility.properties.urlQuotes||!nf.test(t)||rf.test(t)||af.test(t)?t:t.replace(of,"")}}},lf=sf,uf=Th,cf=/\\?\n|\\?\r\n/g,df=/(\()\s+/g,pf=/\s+(\))/g,mf={level1:{value:function(e,t){return uf(t)?t.replace(cf,"").replace(df,"$1").replace(pf,"$1"):t}}},hf=mf,ff=bm,gf=Ld,yf=/\) ?\/ ?/g,vf=/, /g,bf=/\r?\n/g,Sf=/\s+/g,xf=/\s+(;?\))/g,wf=/(\(;?)\s+/g,Cf=/^--\S+$/,kf=/^var\(\s*--\S+\s*\)$/,Of={level1:{value:function(e,t,n){return n.level[ff.One].removeWhitespace?Cf.test(e)&&!kf.test(t)||-1==t.indexOf(" ")&&-1==t.indexOf("\n")||0===t.indexOf("expression")||t.indexOf(gf.SINGLE_QUOTE)>-1||t.indexOf(gf.DOUBLE_QUOTE)>-1?t:((t=(t=t.replace(bf,"")).replace(Sf," ")).indexOf("calc")>-1&&(t=t.replace(yf,")/ ")),t.replace(wf,"$1").replace(xf,"$1").replace(vf,",")):t}}},Tf=Of,Ef=sh,Af=/^(\-(?:moz|ms|o|webkit)\-[a-z\-]+|[a-z\-]+)\((.+)\)$/,_f=/^(?:\-moz\-calc|\-webkit\-calc|calc|rgb|hsl|rgba|hsla|min|max|clamp|expression)\(/,zf=/([\s,\/])/;function Rf(e,t){var n,r;return _f.test(e)?e:(n=Af.exec(e))?(r=Ef(n[2],zf).map((function(e){return Rf(e,t)})),n[1]+"("+r.join("")+")"):function(e,t){return e.replace(t.unitsRegexp,"$10$2").replace(t.unitsRegexp,"$10$2")}(e,t)}var Lf={level1:{value:function(e,t,n){return n.compatibility.properties.zeroUnits?t.indexOf("%")>0&&("height"==e||"max-height"==e||"width"==e||"max-width"==e)?t:Rf(t,n):t}}},Pf=Lf,Bf={color:xh.level1.value,degrees:kh.level1.value,fraction:Wh.level1.value,precision:Uh.level1.value,textQuotes:jh.level1.value,time:Yh.level1.value,unit:Qh.level1.value,urlPrefix:tf.level1.value,urlQuotes:lf.level1.value,urlWhiteSpace:hf.level1.value,whiteSpace:Tf.level1.value,zero:Pf.level1.value},Wf=Rp,Mf=Fp,Uf=nm,If=Km,Nf=Bf,qf=md,Df={animation:{canOverride:Mf.generic.components([Mf.generic.time,Mf.generic.timingFunction,Mf.generic.time,Mf.property.animationIterationCount,Mf.property.animationDirection,Mf.property.animationFillMode,Mf.property.animationPlayState,Mf.property.animationName]),components:["animation-duration","animation-timing-function","animation-delay","animation-iteration-count","animation-direction","animation-fill-mode","animation-play-state","animation-name"],breakUp:Wf.multiplex(Wf.animation),defaultValue:"none",restore:Uf.multiplex(Uf.withoutDefaults),shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.textQuotes,Nf.time,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-delay":{canOverride:Mf.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",valueOptimizers:[Nf.time,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-direction":{canOverride:Mf.property.animationDirection,componentOf:["animation"],defaultValue:"normal",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-duration":{canOverride:Mf.generic.time,componentOf:["animation"],defaultValue:"0s",intoMultiplexMode:"real",keepUnlessDefault:"animation-delay",valueOptimizers:[Nf.time,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-fill-mode":{canOverride:Mf.property.animationFillMode,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-iteration-count":{canOverride:Mf.property.animationIterationCount,componentOf:["animation"],defaultValue:"1",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-name":{canOverride:Mf.property.animationName,componentOf:["animation"],defaultValue:"none",intoMultiplexMode:"real",valueOptimizers:[Nf.textQuotes],vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-play-state":{canOverride:Mf.property.animationPlayState,componentOf:["animation"],defaultValue:"running",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},"animation-timing-function":{canOverride:Mf.generic.timingFunction,componentOf:["animation"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-o-","-webkit-"]},background:{canOverride:Mf.generic.components([Mf.generic.image,Mf.property.backgroundPosition,Mf.property.backgroundSize,Mf.property.backgroundRepeat,Mf.property.backgroundAttachment,Mf.property.backgroundOrigin,Mf.property.backgroundClip,Mf.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:Wf.multiplex(Wf.background),defaultValue:"0 0",propertyOptimizer:If.background,restore:Uf.multiplex(Uf.background),shortestValue:"0",shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.urlWhiteSpace,Nf.fraction,Nf.zero,Nf.color,Nf.urlPrefix,Nf.urlQuotes]},"background-attachment":{canOverride:Mf.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll",intoMultiplexMode:"real"},"background-clip":{canOverride:Mf.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-color":{canOverride:Mf.generic.color,componentOf:["background"],defaultValue:"transparent",intoMultiplexMode:"real",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"background-image":{canOverride:Mf.generic.image,componentOf:["background"],defaultValue:"none",intoMultiplexMode:"default",valueOptimizers:[Nf.urlWhiteSpace,Nf.urlPrefix,Nf.urlQuotes,Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero,Nf.color]},"background-origin":{canOverride:Mf.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",intoMultiplexMode:"real",shortestValue:"border-box"},"background-position":{canOverride:Mf.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"background-repeat":{canOverride:Mf.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0,intoMultiplexMode:"real"},"background-size":{canOverride:Mf.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,intoMultiplexMode:"real",shortestValue:"0 0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},bottom:{canOverride:Mf.property.bottom,defaultValue:"auto",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},border:{breakUp:Wf.border,canOverride:Mf.generic.components([Mf.generic.unit,Mf.property.borderStyle,Mf.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:Uf.withoutDefaults,shorthand:!0,shorthandComponents:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.zero,Nf.color]},"border-bottom":{breakUp:Wf.border,canOverride:Mf.generic.components([Mf.generic.unit,Mf.property.borderStyle,Mf.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:Uf.withoutDefaults,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.zero,Nf.color]},"border-bottom-color":{canOverride:Mf.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-bottom-left-radius":{canOverride:Mf.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:If.borderRadius,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:Mf.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:If.borderRadius,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:Mf.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:Mf.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",oppositeTo:"border-top-width",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"border-collapse":{canOverride:Mf.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:Wf.fourValues,canOverride:Mf.generic.components([Mf.generic.color,Mf.generic.color,Mf.generic.color,Mf.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:Uf.fourValues,shortestValue:"red",shorthand:!0,singleTypeComponents:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-left":{breakUp:Wf.border,canOverride:Mf.generic.components([Mf.generic.unit,Mf.property.borderStyle,Mf.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:Uf.withoutDefaults,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.zero,Nf.color]},"border-left-color":{canOverride:Mf.generic.color,componentOf:["border-color","border-left"],defaultValue:"none",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-left-style":{canOverride:Mf.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:Mf.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",oppositeTo:"border-right-width",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"border-radius":{breakUp:Wf.borderRadius,canOverride:Mf.generic.components([Mf.generic.unit,Mf.generic.unit,Mf.generic.unit,Mf.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",propertyOptimizer:If.borderRadius,restore:Uf.borderRadius,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:Wf.border,canOverride:Mf.generic.components([Mf.generic.unit,Mf.property.borderStyle,Mf.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:Uf.withoutDefaults,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-right-color":{canOverride:Mf.generic.color,componentOf:["border-color","border-right"],defaultValue:"none",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-right-style":{canOverride:Mf.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:Mf.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",oppositeTo:"border-left-width",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"border-style":{breakUp:Wf.fourValues,canOverride:Mf.generic.components([Mf.property.borderStyle,Mf.property.borderStyle,Mf.property.borderStyle,Mf.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:Uf.fourValues,shorthand:!0,singleTypeComponents:!0},"border-top":{breakUp:Wf.border,canOverride:Mf.generic.components([Mf.generic.unit,Mf.property.borderStyle,Mf.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:Uf.withoutDefaults,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.zero,Nf.color,Nf.unit]},"border-top-color":{canOverride:Mf.generic.color,componentOf:["border-color","border-top"],defaultValue:"none",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"border-top-left-radius":{canOverride:Mf.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:If.borderRadius,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:Mf.generic.unit,componentOf:["border-radius"],defaultValue:"0",propertyOptimizer:If.borderRadius,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:Mf.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:Mf.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",oppositeTo:"border-bottom-width",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"border-width":{breakUp:Wf.fourValues,canOverride:Mf.generic.components([Mf.generic.unit,Mf.generic.unit,Mf.generic.unit,Mf.generic.unit]),componentOf:["border"],components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:Uf.fourValues,shortestValue:"0",shorthand:!0,singleTypeComponents:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"box-shadow":{propertyOptimizer:If.boxShadow,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero,Nf.color],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},clear:{canOverride:Mf.property.clear,defaultValue:"none"},clip:{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},color:{canOverride:Mf.generic.color,defaultValue:"transparent",shortestValue:"red",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"column-gap":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},cursor:{canOverride:Mf.property.cursor,defaultValue:"auto"},display:{canOverride:Mf.property.display},filter:{propertyOptimizer:If.filter,valueOptimizers:[Nf.fraction]},float:{canOverride:Mf.property.float,defaultValue:"none"},font:{breakUp:Wf.font,canOverride:Mf.generic.components([Mf.property.fontStyle,Mf.property.fontVariant,Mf.property.fontWeight,Mf.property.fontStretch,Mf.generic.unit,Mf.generic.unit,Mf.property.fontFamily]),components:["font-style","font-variant","font-weight","font-stretch","font-size","line-height","font-family"],restore:Uf.font,shorthand:!0,valueOptimizers:[Nf.textQuotes]},"font-family":{canOverride:Mf.property.fontFamily,defaultValue:"user|agent|specific",valueOptimizers:[Nf.textQuotes]},"font-size":{canOverride:Mf.generic.unit,defaultValue:"medium",shortestValue:"0",valueOptimizers:[Nf.fraction]},"font-stretch":{canOverride:Mf.property.fontStretch,defaultValue:"normal"},"font-style":{canOverride:Mf.property.fontStyle,defaultValue:"normal"},"font-variant":{canOverride:Mf.property.fontVariant,defaultValue:"normal"},"font-weight":{canOverride:Mf.property.fontWeight,defaultValue:"normal",propertyOptimizer:If.fontWeight,shortestValue:"400"},gap:{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},height:{canOverride:Mf.generic.unit,defaultValue:"auto",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},left:{canOverride:Mf.property.left,defaultValue:"auto",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"letter-spacing":{valueOptimizers:[Nf.fraction,Nf.zero]},"line-height":{canOverride:Mf.generic.unitOrNumber,defaultValue:"normal",shortestValue:"0",valueOptimizers:[Nf.fraction,Nf.zero]},"list-style":{canOverride:Mf.generic.components([Mf.property.listStyleType,Mf.property.listStylePosition,Mf.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:Wf.listStyle,restore:Uf.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:Mf.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:Mf.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:Mf.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:Wf.fourValues,canOverride:Mf.generic.components([Mf.generic.unit,Mf.generic.unit,Mf.generic.unit,Mf.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",propertyOptimizer:If.margin,restore:Uf.fourValues,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-bottom":{canOverride:Mf.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-top",propertyOptimizer:If.margin,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-inline-end":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-inline-start":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-left":{canOverride:Mf.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-right",propertyOptimizer:If.margin,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-right":{canOverride:Mf.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-left",propertyOptimizer:If.margin,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"margin-top":{canOverride:Mf.generic.unit,componentOf:["margin"],defaultValue:"0",oppositeTo:"margin-bottom",propertyOptimizer:If.margin,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"max-height":{canOverride:Mf.generic.unit,defaultValue:"none",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"max-width":{canOverride:Mf.generic.unit,defaultValue:"none",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"min-height":{canOverride:Mf.generic.unit,defaultValue:"0",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"min-width":{canOverride:Mf.generic.unit,defaultValue:"0",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},opacity:{valueOptimizers:[Nf.fraction,Nf.precision]},outline:{canOverride:Mf.generic.components([Mf.generic.color,Mf.property.outlineStyle,Mf.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:Wf.outline,restore:Uf.withoutDefaults,defaultValue:"0",propertyOptimizer:If.outline,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"outline-color":{canOverride:Mf.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.color]},"outline-style":{canOverride:Mf.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:Mf.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},overflow:{canOverride:Mf.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:Mf.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:Mf.property.overflow,defaultValue:"visible"},padding:{breakUp:Wf.fourValues,canOverride:Mf.generic.components([Mf.generic.unit,Mf.generic.unit,Mf.generic.unit,Mf.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",propertyOptimizer:If.padding,restore:Uf.fourValues,shorthand:!0,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"padding-bottom":{canOverride:Mf.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-top",propertyOptimizer:If.padding,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"padding-left":{canOverride:Mf.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-right",propertyOptimizer:If.padding,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"padding-right":{canOverride:Mf.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-left",propertyOptimizer:If.padding,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"padding-top":{canOverride:Mf.generic.unit,componentOf:["padding"],defaultValue:"0",oppositeTo:"padding-bottom",propertyOptimizer:If.padding,valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},position:{canOverride:Mf.property.position,defaultValue:"static"},right:{canOverride:Mf.property.right,defaultValue:"auto",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"row-gap":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},src:{valueOptimizers:[Nf.urlWhiteSpace,Nf.urlPrefix,Nf.urlQuotes]},"stroke-width":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"text-align":{canOverride:Mf.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:Mf.property.textDecoration,defaultValue:"none"},"text-indent":{canOverride:Mf.property.textOverflow,defaultValue:"none",valueOptimizers:[Nf.fraction,Nf.zero]},"text-overflow":{canOverride:Mf.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:Mf.property.textShadow,defaultValue:"none",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.zero,Nf.color]},top:{canOverride:Mf.property.top,defaultValue:"auto",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},transform:{canOverride:Mf.property.transform,valueOptimizers:[Nf.whiteSpace,Nf.degrees,Nf.fraction,Nf.precision,Nf.unit,Nf.zero],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},transition:{breakUp:Wf.multiplex(Wf.transition),canOverride:Mf.generic.components([Mf.property.transitionProperty,Mf.generic.time,Mf.generic.timingFunction,Mf.generic.time]),components:["transition-property","transition-duration","transition-timing-function","transition-delay"],defaultValue:"none",restore:Uf.multiplex(Uf.withoutDefaults),shorthand:!0,valueOptimizers:[Nf.time,Nf.fraction],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-delay":{canOverride:Mf.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",valueOptimizers:[Nf.time],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-duration":{canOverride:Mf.generic.time,componentOf:["transition"],defaultValue:"0s",intoMultiplexMode:"real",keepUnlessDefault:"transition-delay",valueOptimizers:[Nf.time,Nf.fraction],vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-property":{canOverride:Mf.generic.propertyName,componentOf:["transition"],defaultValue:"all",intoMultiplexMode:"placeholder",placeholderValue:"_",vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"transition-timing-function":{canOverride:Mf.generic.timingFunction,componentOf:["transition"],defaultValue:"ease",intoMultiplexMode:"real",vendorPrefixes:["-moz-","-ms-","-o-","-webkit-"]},"vertical-align":{canOverride:Mf.property.verticalAlign,defaultValue:"baseline",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},visibility:{canOverride:Mf.property.visibility,defaultValue:"visible"},"-webkit-tap-highlight-color":{valueOptimizers:[Nf.whiteSpace,Nf.color]},"-webkit-margin-end":{valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"white-space":{canOverride:Mf.property.whiteSpace,defaultValue:"normal"},width:{canOverride:Mf.generic.unit,defaultValue:"auto",shortestValue:"0",valueOptimizers:[Nf.whiteSpace,Nf.fraction,Nf.precision,Nf.unit,Nf.zero]},"z-index":{canOverride:Mf.property.zIndex,defaultValue:"auto"}},Vf={};function jf(e,t){var n=qf(Df[e],{});return"componentOf"in n&&(n.componentOf=n.componentOf.map((function(e){return t+e}))),"components"in n&&(n.components=n.components.map((function(e){return t+e}))),"keepUnlessDefault"in n&&(n.keepUnlessDefault=t+n.keepUnlessDefault),n}Vf={};for(var Ff in Df){var Gf=Df[Ff];if("vendorPrefixes"in Gf){for(var Kf=0;Kf<Gf.vendorPrefixes.length;Kf++){var Yf=Gf.vendorPrefixes[Kf],Hf=jf(Ff,Yf);delete Hf.vendorPrefixes,Vf[Yf+Ff]=Hf}delete Gf.vendorPrefixes}}var $f=qf(Df,Vf),Qf="",Zf=_d,Xf=zd,Jf=Ld,eg=up;function tg(e){return"filter"==e[1][1]||"-ms-filter"==e[1][1]}function ng(e,t,n){return!e.spaceAfterClosingBrace&&function(e){return"background"==e[1][1]||"transform"==e[1][1]||"src"==e[1][1]}(t)&&function(e,t){return e[t][1][e[t][1].length-1]==Jf.CLOSE_ROUND_BRACKET}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==Jf.FORWARD_SLASH}(t,n)||function(e,t){return e[t][1]==Jf.FORWARD_SLASH}(t,n)||function(e,t){return e[t+1]&&e[t+1][1]==Jf.COMMA}(t,n)||function(e,t){return e[t][1]==Jf.COMMA}(t,n)}function rg(e,t){for(var n=e.store,r=0,i=t.length;r<i;r++)n(e,t[r]),r<i-1&&n(e,pg(e))}function ig(e,t){for(var n=function(e){for(var t=e.length-1;t>=0&&e[t][0]==eg.COMMENT;t--);return t}(t),r=0,i=t.length;r<i;r++)og(e,t,r,n)}function og(e,t,n,r){var i,o=e.store,a=t[n],s=a[2],l=s&&s[0]===eg.PROPERTY_BLOCK;i=e.format?!(!e.format.semicolonAfterLastProperty&&!l)||n<r:n<r||l;var u=n===r;switch(a[0]){case eg.AT_RULE:o(e,a),o(e,dg(e,Zf.AfterProperty,!1));break;case eg.AT_RULE_BLOCK:rg(e,a[1]),o(e,ug(e,Zf.AfterRuleBegins,!0)),ig(e,a[2]),o(e,cg(e,Zf.AfterRuleEnds,!1,u));break;case eg.COMMENT:o(e,a),o(e,sg(e,Zf.AfterComment)+e.indentWith);break;case eg.PROPERTY:o(e,a[1]),o(e,function(e){return e.format?Jf.COLON+(lg(e,Xf.BeforeValue)?Jf.SPACE:Qf):Jf.COLON}(e)),s&&ag(e,a),o(e,i?dg(e,Zf.AfterProperty,u):Qf);break;case eg.RAW:o(e,a)}}function ag(e,t){var n,r,i=e.store;if(t[2][0]==eg.PROPERTY_BLOCK)i(e,ug(e,Zf.AfterBlockBegins,!1)),ig(e,t[2][1]),i(e,cg(e,Zf.AfterBlockEnds,!1,!0));else for(n=2,r=t.length;n<r;n++)i(e,t[n]),n<r-1&&(tg(t)||!ng(e,t,n))&&i(e,Jf.SPACE)}function sg(e,t){return e.format?e.format.breaks[t]:Qf}function lg(e,t){return e.format&&e.format.spaces[t]}function ug(e,t,n){return e.format?(e.indentBy+=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),(n&&lg(e,Xf.BeforeBlockBegins)?Jf.SPACE:Qf)+Jf.OPEN_CURLY_BRACKET+sg(e,t)+e.indentWith):Jf.OPEN_CURLY_BRACKET}function cg(e,t,n,r){return e.format?(e.indentBy-=e.format.indentBy,e.indentWith=e.format.indentWith.repeat(e.indentBy),sg(e,n?Zf.BeforeBlockEnds:Zf.AfterProperty)+e.indentWith+Jf.CLOSE_CURLY_BRACKET+(r?Qf:sg(e,t)+e.indentWith)):Jf.CLOSE_CURLY_BRACKET}function dg(e,t,n){return e.format?Jf.SEMICOLON+(n?Qf:sg(e,t)+e.indentWith):Jf.SEMICOLON}function pg(e){return e.format?Jf.COMMA+sg(e,Zf.BetweenSelectors)+e.indentWith:Jf.COMMA}var mg={all:function e(t,n){var r,i,o,a,s=t.store;for(o=0,a=n.length;o<a;o++)switch(i=o==a-1,(r=n[o])[0]){case eg.AT_RULE:s(t,r),s(t,dg(t,Zf.AfterAtRule,i));break;case eg.AT_RULE_BLOCK:rg(t,r[1]),s(t,ug(t,Zf.AfterRuleBegins,!0)),ig(t,r[2]),s(t,cg(t,Zf.AfterRuleEnds,!1,i));break;case eg.NESTED_BLOCK:rg(t,r[1]),s(t,ug(t,Zf.AfterBlockBegins,!0)),e(t,r[2]),s(t,cg(t,Zf.AfterBlockEnds,!0,i));break;case eg.COMMENT:s(t,r),s(t,sg(t,Zf.AfterComment)+t.indentWith);break;case eg.RAW:s(t,r);break;case eg.RULE:rg(t,r[1]),s(t,ug(t,Zf.AfterRuleBegins,!0)),ig(t,r[2]),s(t,cg(t,Zf.AfterRuleEnds,!1,i))}},body:ig,property:og,rules:rg,value:ag},hg=mg;function fg(e,t){e.output.push("string"==typeof t?t:t[1])}function gg(){return{output:[],store:fg}}var yg=function(e){var t=gg();return hg.all(t,e),t.output.join("")},vg=function(e){var t=gg();return hg.body(t,e),t.output.join("")},bg=function(e,t){var n=gg();return hg.property(n,e,t,!0),n.output.join("")},Sg=function(e){var t=gg();return hg.rules(t,e),t.output.join("")},xg=function(e){var t=gg();return hg.value(t,e),t.output.join("")},wg=Qc,Cg=Zd,kg=ep,Og=tp,Tg=np,Eg=rp,Ag=lp,_g=vp,zg=$f,Rg=Bf,Lg=bm,Pg=up,Bg=Ld,Wg=Pd,Mg=Sg,Ug="@charset",Ig=new RegExp("^@charset","i"),Ng=lm,qg=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\w{1,}|\-\-\S+)$/,Dg=/^@import/i,Vg=/^url\(/i;function jg(e){return Vg.test(e)}function Fg(e){return Dg.test(e[1])}function Gg(e){var t;return("filter"==e.name||"-ms-filter"==e.name)&&((t=e.value[0][1]).indexOf("progid")>-1||0===t.indexOf("alpha")||0===t.indexOf("chroma"))}function Kg(){}function Yg(e,t,n){var r,i,o,a,s,l,u,c,d,p=n.options,m=Mg(e),h=_g(t),f=n.options.plugins.level1Value,g=n.options.plugins.level1Property;for(c=0,d=h.length;c<d;c++){var y,v,b,S;if(o=(i=h[c]).name,u=zg[o]&&zg[o].propertyOptimizer||Kg,r=zg[o]&&zg[o].valueOptimizers||[Rg.whiteSpace],qg.test(o))if(0!==i.value.length)if(!i.hack||(i.hack[0]!=Tg.ASTERISK&&i.hack[0]!=Tg.UNDERSCORE||p.compatibility.properties.iePrefixHack)&&(i.hack[0]!=Tg.BACKSLASH||p.compatibility.properties.ieSuffixHack)&&(i.hack[0]!=Tg.BANG||p.compatibility.properties.ieBangHack))if(p.compatibility.properties.ieFilters||!Gg(i))if(i.block)Yg(e,i.value[0][1],n);else{for(y=0,b=i.value.length;y<b;y++){if(a=i.value[y][0],s=i.value[y][1],a==Pg.PROPERTY_BLOCK){i.unused=!0,n.warnings.push("Invalid value token at "+Wg(s[0][1][2][0])+". Ignoring.");break}if(jg(s)&&!n.validator.isUrl(s)){i.unused=!0,n.warnings.push("Broken URL '"+s+"' at "+Wg(i.value[y][2][0])+". Ignoring.");break}for(v=0,S=r.length;v<S;v++)s=r[v](o,s,p);for(v=0,S=f.length;v<S;v++)s=f[v](o,s,p);i.value[y][1]=s}for(u(m,i,p),y=0,b=g.length;y<b;y++)g[y](m,i,p)}else i.unused=!0;else i.unused=!0;else l=i.all[i.position],n.warnings.push("Empty property '"+o+"' at "+Wg(l[1][2][0])+". Ignoring."),i.unused=!0;else l=i.all[i.position],n.warnings.push("Invalid property name '"+o+"' at "+Wg(l[1][2][0])+". Ignoring."),i.unused=!0}Ag(h),Eg(h),function(e,t){var n,r;for(r=0;r<e.length;r++)(n=e[r])[0]==Pg.COMMENT&&(Hg(n,t),0===n[1].length&&(e.splice(r,1),r--))}(t,p)}function Hg(e,t){e[1][2]==Bg.EXCLAMATION&&("all"==t.level[Lg.One].specialComments||t.commentsKept<t.level[Lg.One].specialComments)?t.commentsKept++:e[1]=[]}var $g=function e(t,n){var r=n.options,i=r.level[Lg.One],o=r.compatibility.selectors.ie7Hack,a=r.compatibility.selectors.adjacentSpace,s=r.compatibility.properties.spaceAfterClosingBrace,l=r.format,u=!1,c=!1;r.unitsRegexp=r.unitsRegexp||function(e){var t=["px","em","ex","cm","mm","in","pt","pc","%"];return["ch","rem","vh","vm","vmax","vmin","vw"].forEach((function(n){e.compatibility.units[n]&&t.push(n)})),new RegExp("(^|\\s|\\(|,)0(?:"+t.join("|")+")(\\W|$)","g")}(r),r.precision=r.precision||function(e){var t,n,r={matcher:null,units:{}},i=[];for(t in e)(n=e[t])!=Ng&&(r.units[t]={},r.units[t].value=n,r.units[t].multiplier=Math.pow(10,n),i.push(t));return i.length>0&&(r.enabled=!0,r.decimalPointMatcher=new RegExp("(\\d)\\.($|"+i.join("|")+")($|\\W)","g"),r.zeroMatcher=new RegExp("(\\d*)(\\.\\d+)("+i.join("|")+")","g")),r}(i.roundingPrecision),r.commentsKept=r.commentsKept||0;for(var d=0,p=t.length;d<p;d++){var m=t[d];switch(m[0]){case Pg.AT_RULE:m[1]=Fg(m)&&c?"":m[1],m[1]=i.tidyAtRules?Og(m[1]):m[1],u=!0;break;case Pg.AT_RULE_BLOCK:Yg(m[1],m[2],n),c=!0;break;case Pg.NESTED_BLOCK:m[1]=i.tidyBlockScopes?kg(m[1],s):m[1],e(m[2],n),c=!0;break;case Pg.COMMENT:Hg(m,r);break;case Pg.RULE:m[1]=i.tidySelectors?Cg(m[1],!o,a,l,n.warnings):m[1],m[1]=m[1].length>1?wg(m[1],i.selectorsSortingMethod):m[1],Yg(m[1],m[2],n),c=!0}(m[0]==Pg.COMMENT&&0===m[1].length||i.removeEmpty&&(0===m[1].length||m[2]&&0===m[2].length))&&(t.splice(d,1),d--,p--)}return i.cleanupCharsets&&u&&function(e){for(var t=!1,n=0,r=e.length;n<r;n++){var i=e[n];i[0]==Pg.AT_RULE&&Ig.test(i[1])&&(t||-1==i[1].indexOf(Ug)?(e.splice(n,1),n--,r--):(t=!0,e.splice(n,1),e.unshift([Pg.AT_RULE,i[1].replace(Ig,Ug)])))}}(t),t},Qg=Ld,Zg=sh,Xg=/\/deep\//,Jg=/^::/,ey=/:(-moz-|-ms-|-o-|-webkit-)/,ty=":not",ny=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],ry=/[>\+~]/,iy=[":after",":before",":first-letter",":first-line",":lang"],oy=["::after","::before","::first-letter","::first-line"],ay="double-quote",sy="single-quote",ly="root";function uy(e){return Xg.test(e)}function cy(e){return ey.test(e)}function dy(e){var t,n,r,i,o,a,s=[],l=[],u=ly,c=0,d=!1,p=!1;for(o=0,a=e.length;o<a;o++)t=e[o],i=!r&&ry.test(t),n=u==ay||u==sy,r?l.push(t):t==Qg.DOUBLE_QUOTE&&u==ly?(l.push(t),u=ay):t==Qg.DOUBLE_QUOTE&&u==ay?(l.push(t),u=ly):t==Qg.SINGLE_QUOTE&&u==ly?(l.push(t),u=sy):t==Qg.SINGLE_QUOTE&&u==sy?(l.push(t),u=ly):n?l.push(t):t==Qg.OPEN_ROUND_BRACKET?(l.push(t),c++):t==Qg.CLOSE_ROUND_BRACKET&&1==c&&d?(l.push(t),s.push(l.join("")),c--,l=[],d=!1):t==Qg.CLOSE_ROUND_BRACKET?(l.push(t),c--):t==Qg.COLON&&0===c&&d&&!p?(s.push(l.join("")),(l=[]).push(t)):t!=Qg.COLON||0!==c||p?t==Qg.SPACE&&0===c&&d||i&&0===c&&d?(s.push(l.join("")),l=[],d=!1):l.push(t):((l=[]).push(t),d=!0),r=t==Qg.BACK_SLASH,p=t==Qg.COLON;return l.length>0&&d&&s.push(l.join("")),s}function py(e,t,n,r,i){return function(e,t,n){var r,i,o,a;for(o=0,a=e.length;o<a;o++)if(i=(r=e[o]).indexOf(Qg.OPEN_ROUND_BRACKET)>-1?r.substring(0,r.indexOf(Qg.OPEN_ROUND_BRACKET)):r,-1===t.indexOf(i)&&-1===n.indexOf(i))return!1;return!0}(t,n,r)&&function(e){var t,n,r,i,o,a;for(o=0,a=e.length;o<a;o++){if(n=(i=(r=(t=e[o]).indexOf(Qg.OPEN_ROUND_BRACKET))>-1)?t.substring(0,r):t,i&&-1==ny.indexOf(n))return!1;if(!i&&ny.indexOf(n)>-1)return!1}return!0}(t)&&(t.length<2||!function(e,t){var n,r,i,o,a,s,l,u,c=0;for(l=0,u=t.length;l<u&&(n=t[l],i=t[l+1]);l++)if(r=e.indexOf(n,c),c=o=e.indexOf(n,r+1),r+n.length==o&&(a=n.indexOf(Qg.OPEN_ROUND_BRACKET)>-1?n.substring(0,n.indexOf(Qg.OPEN_ROUND_BRACKET)):n,s=i.indexOf(Qg.OPEN_ROUND_BRACKET)>-1?i.substring(0,i.indexOf(Qg.OPEN_ROUND_BRACKET)):i,a!=ty||s!=ty))return!0;return!1}(e,t))&&(t.length<2||i&&function(e){var t,n,r,i=0;for(n=0,r=e.length;n<r;n++)if(my(t=e[n])?i+=oy.indexOf(t)>-1?1:0:i+=iy.indexOf(t)>-1?1:0,i>1)return!1;return!0}(t))}function my(e){return Jg.test(e)}var hy=function(e,t,n,r){var i,o,a,s=Zg(e,Qg.COMMA);for(o=0,a=s.length;o<a;o++)if(0===(i=s[o]).length||uy(i)||cy(i)||i.indexOf(Qg.COLON)>-1&&!py(i,dy(i),t,n,r))return!1;return!0},fy=Ld;var gy=function(e,t,n){var r,i,o,a=t.value.length,s=n.value.length,l=Math.max(a,s),u=Math.min(a,s)-1;for(o=0;o<l;o++)if(r=t.value[o]&&t.value[o][1]||r,i=n.value[o]&&n.value[o][1]||i,r!=fy.COMMA&&i!=fy.COMMA&&!e(r,i,o,o<=u))return!1;return!0};var yy=function(e){for(var t=e.value.length-1;t>=0;t--)if("inherit"==e.value[t][1])return!0;return!1};var vy=function(e){var t,n,r=e.value[0][1];for(t=1,n=e.value.length;t<n;t++)if(e.value[t][1]!=r)return!1;return!0},by=$f,Sy=xp;function xy(e,t){return 1==e.value.length&&t.isVariable(e.value[0][1])}function wy(e,t){return e.value.length>1&&e.value.filter((function(e){return t.isVariable(e[1])})).length>1}var Cy=function(e,t,n){for(var r,i,o,a=e.length-1;a>=0;a--){var s=e[a],l=by[s.name];if(!s.dynamic&&l&&l.shorthand){if(xy(s,t)||wy(s,t)){s.optimizable=!1;continue}s.shorthand=!0,s.dirty=!0;try{if(s.components=l.breakUp(s,by,t),l.shorthandComponents)for(i=0,o=s.components.length;i<o;i++)(r=s.components[i]).components=by[r.name].breakUp(r,by,t)}catch(e){if(!(e instanceof Sy))throw e;s.components=[],n.push(e.message)}s.components.length>0?s.multiplex=s.components[0].multiplex:s.unused=!0}}},ky=$f;var Oy=function(e){var t=ky[e.name];return t&&t.shorthand?t.restore(e,ky):e.value},Ty=gy,Ey=yy,Ay=vy,_y=Cy,zy=$f,Ry=Hp,Ly=Oy,Py=lp,By=bp,Wy=vg,My=up;function Uy(e,t,n,r){var i,o,a,s,l=e[t],u=[];for(i in n)void 0!==l&&i==l.name||(o=zy[i],a=n[i],l&&Iy(n,i,l)?delete n[i]:o.components.length>Object.keys(a).length||Ny(a)||qy(a,i,r)&&Vy(a)&&(jy(a)?Fy(e,a,i,r):$y(e,a,i,r),u.push(i)));for(s=u.length-1;s>=0;s--)delete n[u[s]]}function Iy(e,t,n){var r,i=zy[t],o=zy[n.name];if("overridesShorthands"in i&&i.overridesShorthands.indexOf(n.name)>-1)return!0;if(o&&"componentOf"in o)for(r in e[t])if(o.componentOf.indexOf(r)>-1)return!0;return!1}function Ny(e){var t,n;for(n in e){if(void 0!==t&&e[n].important!=t)return!0;t=e[n].important}return!1}function qy(e,t,n){var r,i,o,a,s=zy[t],l=[My.PROPERTY,[My.PROPERTY_NAME,t],[My.PROPERTY_VALUE,s.defaultValue]],u=By(l);for(_y([u],n,[]),o=0,a=s.components.length;o<a;o++)if(r=e[s.components[o]],i=zy[r.name].canOverride||Dy,!Ty(i.bind(null,n),u.components[o],r))return!1;return!0}function Dy(e,t,n){return t===n}function Vy(e){var t,n,r,i,o=null;for(n in e)if(r=e[n],"restore"in(i=zy[n])){if(Py([r.all[r.position]],Ly),t=i.restore(r,zy).length,null!==o&&t!==o)return!1;o=t}return!0}function jy(e){var t,n,r=null;for(t in e){if(n=Ey(e[t]),null!==r&&r!==n)return!0;r=n}return!1}function Fy(e,t,n,r){var i,o,a,s,l=function(e,t,n){var r,i,o,a,s,l,u=[],c={},d={},p=zy[t],m=[My.PROPERTY,[My.PROPERTY_NAME,t],[My.PROPERTY_VALUE,p.defaultValue]],h=By(m);for(_y([h],n,[]),s=0,l=p.components.length;s<l;s++)r=e[p.components[s]],Ey(r)?(i=r.all[r.position].slice(0,2),Array.prototype.push.apply(i,r.value),u.push(i),(o=Ry(r)).value=Gy(e,o.name),h.components[s]=o,c[r.name]=Ry(r)):((o=Ry(r)).all=r.all,h.components[s]=o,d[r.name]=r);return h.important=e[Object.keys(e).pop()].important,a=Ky(d,1),m[1].push(a),Py([h],Ly),m=m.slice(0,2),Array.prototype.push.apply(m,h.value),u.unshift(m),[u,h,c]}(t,n,r),u=function(e,t,n){var r,i,o,a,s,l,u=[],c={},d={},p=zy[t],m=[My.PROPERTY,[My.PROPERTY_NAME,t],[My.PROPERTY_VALUE,"inherit"]],h=By(m);for(_y([h],n,[]),s=0,l=p.components.length;s<l;s++)r=e[p.components[s]],Ey(r)?c[r.name]=r:(i=r.all[r.position].slice(0,2),Array.prototype.push.apply(i,r.value),u.push(i),d[r.name]=Ry(r));return o=Ky(c,1),m[1].push(o),a=Ky(c,2),m[2].push(a),u.unshift(m),[u,h,d]}(t,n,r),c=l[0],d=u[0],p=Wy(c).length<Wy(d).length,m=p?c:d,h=p?l[1]:u[1],f=p?l[2]:u[2],g=t[Object.keys(t).pop()],y=g.all,v=g.position;for(i in h.position=v,h.shorthand=!0,h.important=g.important,h.multiplex=!1,h.dirty=!0,h.all=y,h.all[v]=m[0],e.splice(v,1,h),t)(o=t[i]).unused=!0,h.multiplex=h.multiplex||o.multiplex,o.name in f&&(a=f[o.name],s=Hy(m,i),a.position=y.length,a.all=y,a.all.push(s),e.push(a))}function Gy(e,t){var n=zy[t];return"oppositeTo"in n?e[n.oppositeTo].value:[[My.PROPERTY_VALUE,n.defaultValue]]}function Ky(e,t){var n,r,i,o,a=[];for(o in e)i=(r=(n=e[o]).all[n.position])[t][r[t].length-1],Array.prototype.push.apply(a,i);return a.sort(Yy)}function Yy(e,t){var n=e[0],r=t[0],i=e[1],o=t[1];return n<r||n===r&&i<o?-1:1}function Hy(e,t){var n,r;for(n=0,r=e.length;n<r;n++)if(e[n][1][1]==t)return e[n]}function $y(e,t,n,r){var i,o,a,s=zy[n],l=[My.PROPERTY,[My.PROPERTY_NAME,n],[My.PROPERTY_VALUE,s.defaultValue]],u=function(e,t,n){var r=Object.keys(t),i=t[r[0]].position,o=t[r[r.length-1]].position;return"border"==n&&function(e,t){for(var n=e.length-1;n>=0;n--)if(e[n].name==t)return!0;return!1}(e.slice(i,o),"border-image")?i:o}(e,t,n),c=By(l);c.shorthand=!0,c.dirty=!0,c.multiplex=!1,_y([c],r,[]);for(var d=0,p=s.components.length;d<p;d++){var m=t[s.components[d]];c.components[d]=Ry(m),c.important=m.important,c.multiplex=c.multiplex||m.multiplex,a=m.all}for(var h in t)t[h].unused=!0;i=Ky(t,1),l[1].push(i),o=Ky(t,2),l[2].push(o),c.position=u,c.all=a,c.all[u]=l,e.splice(u,1,c)}var Qy=function(e,t){var n,r,i,o,a,s,l,u={};if(!(e.length<3)){for(o=0,a=e.length;o<a;o++)if(i=e[o],n=zy[i.name],!i.dynamic&&!i.unused&&!i.hack&&!i.block&&(!n||!n.singleTypeComponents||Ay(i))&&(Uy(e,o,u,t),n&&n.componentOf))for(s=0,l=n.componentOf.length;s<l;s++)u[r=n.componentOf[s]]=u[r]||{},u[r][i.name]=i;Uy(e,o,u,t)}};var Zy=function(e){for(var t=e.value.length-1;t>=0;t--)if("unset"==e.value[t][1])return!0;return!1},Xy=$f;function Jy(e,t){return e.components.filter(t)[0]}var ev=function(e,t){var n,r=(n=t,function(e){return n.name===e.name});return Jy(e,r)||function(e,t){var n,r,i;if(!Xy[e.name].shorthandComponents)return;for(r=0,i=e.components.length;r<i;r++)if(n=Jy(e.components[r],t))return n;return}(e,r)},tv=$f;function nv(e,t){var n=tv[e.name];return"components"in n&&n.components.indexOf(t.name)>-1}var rv=function(e,t,n){return nv(e,t)||!n&&!!tv[e.name].shorthandComponents&&function(e,t){return e.components.some((function(e){return nv(e,t)}))}(e,t)},iv=Ld;var ov=$f;var av=yy,sv=Zy,lv=gy,uv=ev,cv=rv,dv=function(e){return"font"!=e.name||-1==e.value[0][1].indexOf(iv.INTERNAL)},pv=function(e,t){return e.name in ov&&"overridesShorthands"in ov[e.name]&&ov[e.name].overridesShorthands.indexOf(t.name)>-1},mv=Bp,hv=$f,fv=Hp,gv=Oy,yv=$p,vv=lp,bv=up,Sv=Ld,xv=bg;function wv(e,t,n){return t===n}function Cv(e,t){for(var n=0;n<e.components.length;n++){var r=e.components[n],i=hv[r.name],o=i&&i.canOverride||wv,a=yv(r);if(a.value=[[bv.PROPERTY_VALUE,i.defaultValue]],!lv(o.bind(null,t),a,r))return!0}return!1}function kv(e,t){t.unused=!0,Av(t,zv(e)),e.value=t.value}function Ov(e,t){t.unused=!0,e.multiplex=!0,e.value=t.value}function Tv(e,t){t.multiplex?Ov(e,t):e.multiplex?kv(e,t):function(e,t){t.unused=!0,e.value=t.value}(e,t)}function Ev(e,t){t.unused=!0;for(var n=0,r=e.components.length;n<r;n++)Tv(e.components[n],t.components[n])}function Av(e,t){e.multiplex=!0,hv[e.name].shorthand?function(e,t){var n,r,i;for(r=0,i=e.components.length;r<i;r++)(n=e.components[r]).multiplex||_v(n,t)}(e,t):_v(e,t)}function _v(e,t){for(var n,r=hv[e.name],i="real"==r.intoMultiplexMode,o="real"==r.intoMultiplexMode?e.value.slice(0):"placeholder"==r.intoMultiplexMode?r.placeholderValue:r.defaultValue,a=zv(e),s=o.length;a<t;a++)if(e.value.push([bv.PROPERTY_VALUE,Sv.COMMA]),Array.isArray(o))for(n=0;n<s;n++)e.value.push(i?o[n]:[bv.PROPERTY_VALUE,o[n]]);else e.value.push(i?o:[bv.PROPERTY_VALUE,o])}function zv(e){for(var t=0,n=0,r=e.value.length;n<r;n++)e.value[n][1]==Sv.COMMA&&t++;return t+1}function Rv(e){var t=[bv.PROPERTY,[bv.PROPERTY_NAME,e.name]].concat(e.value);return xv([t],0).length}function Lv(e,t,n){for(var r=0,i=t;i>=0&&(e[i].name!=n||e[i].unused||r++,!(r>1));i--);return r>1}function Pv(e,t){for(var n=0,r=e.components.length;n<r;n++)if(!Bv(t.isUrl,e.components[n])&&Bv(t.isFunction,e.components[n]))return!0;return!1}function Bv(e,t){for(var n=0,r=t.value.length;n<r;n++)if(t.value[n][1]!=Sv.COMMA&&e(t.value[n][1]))return!0;return!1}function Wv(e,t){if(!e.multiplex&&!t.multiplex||e.multiplex&&t.multiplex)return!1;var n,r=e.multiplex?e:t,i=e.multiplex?t:e,o=fv(r);vv([o],gv);var a=fv(i);vv([a],gv);var s=Rv(o)+1+Rv(a);return e.multiplex?kv(n=uv(o,a),a):(n=uv(a,o),Av(a,zv(o)),Ov(n,o)),vv([a],gv),s<=Rv(a)}function Mv(e){return e.name in hv}function Uv(e,t){return!e.multiplex&&("background"==e.name||"background-image"==e.name)&&t.multiplex&&("background"==t.name||"background-image"==t.name)&&function(e){for(var t=function(e){for(var t=[],n=0,r=[],i=e.length;n<i;n++){var o=e[n];o[1]==Sv.COMMA?(t.push(r),r=[]):r.push(o)}return t.push(r),t}(e),n=0,r=t.length;n<r;n++)if(1==t[n].length&&"none"==t[n][0][1])return!0;return!1}(t.value)}var Iv=function(e,t,n,r){var i,o,a,s,l,u,c,d,p,m,h;e:for(p=e.length-1;p>=0;p--)if(Mv(o=e[p])&&!o.block){i=hv[o.name].canOverride||wv;t:for(m=p-1;m>=0;m--)if(Mv(a=e[m])&&!a.block&&!a.dynamic&&!o.dynamic&&!a.unused&&!o.unused&&(!a.hack||o.hack||o.important)&&(a.hack||a.important||!o.hack)&&(a.important!=o.important||a.hack[0]==o.hack[0])&&!(a.important==o.important&&(a.hack[0]!=o.hack[0]||a.hack[1]&&a.hack[1]!=o.hack[1])||av(o)||Uv(a,o)))if(o.shorthand&&cv(o,a)){if(!o.important&&a.important)continue;if(!mv([a],o.components))continue;if(!Bv(r.isFunction,a)&&Pv(o,r))continue;if(!dv(o)){a.unused=!0;continue}s=uv(o,a),i=hv[a.name].canOverride||wv,lv(i.bind(null,r),a,s)&&(a.unused=!0)}else if(o.shorthand&&pv(o,a)){if(!o.important&&a.important)continue;if(!mv([a],o.components))continue;if(!Bv(r.isFunction,a)&&Pv(o,r))continue;for(h=(l=a.shorthand?a.components:[a]).length-1;h>=0;h--)if(u=l[h],c=uv(o,u),i=hv[u.name].canOverride||wv,!lv(i.bind(null,r),a,c))continue t;a.unused=!0}else if(t&&a.shorthand&&!o.shorthand&&cv(a,o,!0)){if(o.important&&!a.important)continue;if(!o.important&&a.important){o.unused=!0;continue}if(Lv(e,p-1,a.name))continue;if(Pv(a,r))continue;if(!dv(a))continue;if(sv(a)||sv(o))continue;if(s=uv(a,o),lv(i.bind(null,r),s,o)){var f=!n.properties.backgroundClipMerging&&s.name.indexOf("background-clip")>-1||!n.properties.backgroundOriginMerging&&s.name.indexOf("background-origin")>-1||!n.properties.backgroundSizeMerging&&s.name.indexOf("background-size")>-1,g=hv[o.name].nonMergeableValue===o.value[0][1];if(f||g)continue;if(!n.properties.merging&&Cv(a,r))continue;if(s.value[0][1]!=o.value[0][1]&&(av(a)||av(o)))continue;if(Wv(a,o))continue;!a.multiplex&&o.multiplex&&Av(a,zv(o)),Tv(s,o),a.dirty=!0}}else if(t&&a.shorthand&&o.shorthand&&a.name==o.name){if(!a.multiplex&&o.multiplex)continue;if(!o.important&&a.important){o.unused=!0;continue e}if(o.important&&!a.important){a.unused=!0;continue}if(!dv(o)){a.unused=!0;continue}for(h=a.components.length-1;h>=0;h--){var y=a.components[h],v=o.components[h];if(i=hv[y.name].canOverride||wv,!lv(i.bind(null,r),y,v))continue e}Ev(a,o),a.dirty=!0}else if(t&&a.shorthand&&o.shorthand&&cv(a,o)){if(!a.important&&o.important)continue;if(s=uv(a,o),i=hv[o.name].canOverride||wv,!lv(i.bind(null,r),s,o))continue;if(a.important&&!o.important){o.unused=!0;continue}if(hv[o.name].restore(o,hv).length>1)continue;Tv(s=uv(a,o),o),o.dirty=!0}else if(a.name==o.name){if(d=!0,o.shorthand)for(h=o.components.length-1;h>=0&&d;h--)u=a.components[h],c=o.components[h],i=hv[c.name].canOverride||wv,d=lv(i.bind(null,r),u,c);else i=hv[o.name].canOverride||wv,d=lv(i.bind(null,r),a,o);if(a.important&&!o.important&&d){o.unused=!0;continue}if(!a.important&&o.important&&d){a.unused=!0;continue}if(!d)continue;a.unused=!0}}},Nv=Qy,qv=Iv,Dv=Cy,Vv=Oy,jv=vp,Fv=rp,Gv=lp,Kv=bm;var Yv=function e(t,n,r,i){var o,a,s,l=i.options.level[Kv.Two],u=jv(t,l.skipProperties);for(Dv(u,i.validator,i.warnings),a=0,s=u.length;a<s;a++)(o=u[a]).block&&e(o.value[0][1],n,r,i);r&&l.mergeIntoShorthands&&Nv(u,i.validator),n&&l.overrideProperties&&qv(u,r,i.options.compatibility,i.validator),Gv(u,Vv),Fv(u)},Hv=hy,$v=Yv,Qv=Qc,Zv=Zd,Xv=bm,Jv=vg,eb=Sg,tb=up;var nb=function(e,t){for(var n=[null,[],[]],r=t.options,i=r.compatibility.selectors.adjacentSpace,o=r.level[Xv.One].selectorsSortingMethod,a=r.compatibility.selectors.mergeablePseudoClasses,s=r.compatibility.selectors.mergeablePseudoElements,l=r.compatibility.selectors.mergeLimit,u=r.compatibility.selectors.multiplePseudoMerging,c=0,d=e.length;c<d;c++){var p=e[c];p[0]==tb.RULE?n[0]==tb.RULE&&eb(p[1])==eb(n[1])?(Array.prototype.push.apply(n[2],p[2]),$v(n[2],!0,!0,t),p[2]=[]):n[0]==tb.RULE&&Jv(p[2])==Jv(n[2])&&Hv(eb(p[1]),a,s,u)&&Hv(eb(n[1]),a,s,u)&&n[1].length<l?(n[1]=Zv(n[1].concat(p[1]),!1,i,!1,t.warnings),n[1]=n.length>1?Qv(n[1],o):n[1],p[2]=[]):n=p:n=[null,[],[]]}},rb=/\-\-.+$/;function ib(e){return e.replace(rb,"")}var ob=function(e,t,n){var r,i,o,a,s,l;for(o=0,a=e.length;o<a;o++)for(r=e[o][1],s=0,l=t.length;s<l;s++){if(r==(i=t[s][1]))return!0;if(n&&ib(r)==ib(i))return!0}return!1},ab=Ld,sb=".",lb="#",ub=":",cb=/[a-zA-Z]/,db=/[\s,\(>~\+]/;function pb(e,t){return e.indexOf(":not(",t)===t}var mb=function(e){var t,n,r,i,o,a,s,l=[0,0,0],u=0,c=!1,d=!1;for(a=0,s=e.length;a<s;a++){if(t=e[a],n);else if(t!=ab.SINGLE_QUOTE||i||r)if(t==ab.SINGLE_QUOTE&&!i&&r)r=!1;else if(t!=ab.DOUBLE_QUOTE||i||r)if(t==ab.DOUBLE_QUOTE&&i&&!r)i=!1;else{if(r||i)continue;u>0&&!c||(t==ab.OPEN_ROUND_BRACKET?u++:t==ab.CLOSE_ROUND_BRACKET&&1==u?(u--,c=!1):t==ab.CLOSE_ROUND_BRACKET?u--:t==lb?l[0]++:t==sb||t==ab.OPEN_SQUARE_BRACKET?l[1]++:t!=ub||d||pb(e,a)?t==ub?c=!0:(0===a||o)&&cb.test(t)&&l[2]++:(l[1]++,c=!1))}else i=!0;else r=!0;d=t==ub,o=!(n=t==ab.BACK_SLASH)&&db.test(t)}return l},hb=mb;function fb(e,t){var n;return e in t||(t[e]=n=hb(e)),n||t[e]}var gb=function(e,t,n){var r,i,o,a,s,l;for(o=0,a=e.length;o<a;o++)for(r=fb(e[o][1],n),s=0,l=t.length;s<l;s++)if(i=fb(t[s][1],n),r[0]===i[0]&&r[1]===i[1]&&r[2]===i[2])return!0;return!1},yb=ob,vb=gb,bb=/align\-items|box\-align|box\-pack|flex|justify/,Sb=/^border\-(top|right|bottom|left|color|style|width|radius)/;function xb(e,t,n){var r,i,o=e[0],a=e[1],s=e[2],l=e[5],u=e[6],c=t[0],d=t[1],p=t[2],m=t[5],h=t[6];return!("font"==o&&"line-height"==c||"font"==c&&"line-height"==o)&&((!bb.test(o)||!bb.test(c))&&(!(s==p&&Cb(o)==Cb(c)&&wb(o)^wb(c))&&(("border"!=s||!Sb.test(p)||!("border"==o||o==p||a!=d&&kb(o,c)))&&(("border"!=p||!Sb.test(s)||!("border"==c||c==s||a!=d&&kb(o,c)))&&(("border"!=s||"border"!=p||o==c||!(Ob(o)&&Tb(c)||Tb(o)&&Ob(c)))&&(s!=p||(!(o!=c||s!=p||a!=d&&(r=a,i=d,!wb(r)||!wb(i)||r.split("-")[1]==i.split("-")[2]))||(o!=c&&s==p&&o!=s&&c!=p||(o!=c&&s==p&&a==d||(!(!h||!u||Eb(s)||Eb(p)||yb(m,l,!1))||!vb(l,m,n)))))))))))}function wb(e){return/^\-(?:moz|webkit|ms|o)\-/.test(e)}function Cb(e){return e.replace(/^\-(?:moz|webkit|ms|o)\-/,"")}function kb(e,t){return e.split("-").pop()==t.split("-").pop()}function Ob(e){return"border-top"==e||"border-right"==e||"border-bottom"==e||"border-left"==e}function Tb(e){return"border-color"==e||"border-style"==e||"border-width"==e}function Eb(e){return"font"==e||"line-height"==e||"list-style"==e}var Ab=function(e,t,n){for(var r=t.length-1;r>=0;r--)for(var i=e.length-1;i>=0;i--)if(!xb(e[i],t[r],n))return!1;return!0},_b=up,zb=Sg,Rb=xg;function Lb(e){return"list-style"==e?e:e.indexOf("-radius")>0?"border-radius":"border-collapse"==e||"border-spacing"==e||"border-image"==e?e:0===e.indexOf("border-")&&/^border\-\w+\-\w+$/.test(e)?e.match(/border\-\w+/)[0]:0===e.indexOf("border-")&&/^border\-\w+$/.test(e)?"border":0===e.indexOf("text-")||"-chrome-"==e?e:e.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var Pb=function e(t){var n,r,i,o,a,s,l=[];if(t[0]==_b.RULE)for(n=!/[\.\+>~]/.test(zb(t[1])),a=0,s=t[2].length;a<s;a++)(r=t[2][a])[0]==_b.PROPERTY&&0!==(i=r[1][1]).length&&(o=Rb(r,a),l.push([i,o,Lb(i),t[2][a],i+":"+o,t[1],n]));else if(t[0]==_b.NESTED_BLOCK)for(a=0,s=t[2].length;a<s;a++)l=l.concat(e(t[2][a]));return l},Bb=Ab,Wb=xb,Mb=Pb,Ub=ob,Ib=Sg,Nb=bm,qb=up;function Db(e,t,n){var r,i,o,a,s,l,u,c;for(s=0,l=e.length;s<l;s++)for(i=(r=e[s])[5],u=0,c=t.length;u<c;u++)if(a=(o=t[u])[5],Ub(i,a,!0)&&!Wb(r,o,n))return!1;return!0}var Vb=function(e,t){for(var n=t.options.level[Nb.Two].mergeSemantically,r=t.cache.specificity,i={},o=[],a=e.length-1;a>=0;a--){var s=e[a];if(s[0]==qb.NESTED_BLOCK){var l=Ib(s[1]),u=i[l];u||(u=[],i[l]=u),u.push(a)}}for(var c in i){var d=i[c];e:for(var p=d.length-1;p>0;p--){var m=d[p],h=e[m],f=d[p-1],g=e[f];t:for(var y=1;y>=-1;y-=2){for(var v=1==y,b=v?m+1:f-1,S=v?f:m,x=v?1:-1,w=v?h:g,C=v?g:h,k=Mb(w);b!=S;){var O=Mb(e[b]);if(b+=x,!(n&&Db(k,O,r)||Bb(k,O,r)))continue t}C[2]=v?w[2].concat(C[2]):C[2].concat(w[2]),w[2]=[],o.push(C);continue e}}}return o},jb=hy,Fb=Qc,Gb=Zd,Kb=bm,Yb=vg,Hb=Sg,$b=up;function Qb(e){return/\.|\*| :/.test(e)}function Zb(e){var t=Hb(e[1]);return t.indexOf("__")>-1||t.indexOf("--")>-1}function Xb(e){return e.replace(/--[^ ,>\+~:]+/g,"")}function Jb(e,t){var n=Xb(Hb(e[1]));for(var r in t){var i=t[r],o=Xb(Hb(i[1]));(o.indexOf(n)>-1||n.indexOf(o)>-1)&&delete t[r]}}var eS=function(e,t){for(var n=t.options,r=n.level[Kb.Two].mergeSemantically,i=n.compatibility.selectors.adjacentSpace,o=n.level[Kb.One].selectorsSortingMethod,a=n.compatibility.selectors.mergeablePseudoClasses,s=n.compatibility.selectors.mergeablePseudoElements,l=n.compatibility.selectors.multiplePseudoMerging,u={},c=e.length-1;c>=0;c--){var d=e[c];if(d[0]==$b.RULE){d[2].length>0&&!r&&Qb(Hb(d[1]))&&(u={}),d[2].length>0&&r&&Zb(d)&&Jb(d,u);var p=Yb(d[2]),m=u[p];m&&jb(Hb(d[1]),a,s,l)&&jb(Hb(m[1]),a,s,l)&&(d[2].length>0?(d[1]=Gb(m[1].concat(d[1]),!1,i,!1,t.warnings),d[1]=d[1].length>1?Fb(d[1],o):d[1]):d[1]=m[1].concat(d[1]),m[2]=[],u[p]=null),u[Yb(d[2])]=d}}},tS=Ab,nS=Pb,rS=Yv,iS=Sg,oS=up;var aS=function(e,t){var n,r=t.cache.specificity,i={},o=[];for(n=e.length-1;n>=0;n--)if(e[n][0]==oS.RULE&&0!==e[n][2].length){var a=iS(e[n][1]);i[a]=[n].concat(i[a]||[]),2==i[a].length&&o.push(a)}for(n=o.length-1;n>=0;n--){var s=i[o[n]];e:for(var l=s.length-1;l>0;l--){var u=s[l-1],c=e[u],d=s[l],p=e[d];t:for(var m=1;m>=-1;m-=2){for(var h=1==m,f=h?u+1:d-1,g=h?d:u,y=h?1:-1,v=h?c:p,b=h?p:c,S=nS(v);f!=g;){var x=nS(e[f]);f+=y;var w=h?tS(S,x,r):tS(x,S,r);if(!w&&!h)continue e;if(!w&&h)continue t}h?(Array.prototype.push.apply(v[2],b[2]),b[2]=v[2]):Array.prototype.push.apply(b[2],v[2]),rS(b[2],!0,!0,t),v[2]=[]}}}};var sS=function e(t){for(var n=t.slice(0),r=0,i=n.length;r<i;r++)Array.isArray(n[r])&&(n[r]=e(n[r]));return n},lS=hy,uS=Yv,cS=sS,dS=up,pS=vg,mS=Sg;function hS(e){for(var t=[],n=0;n<e.length;n++)t.push([e[n][1]]);return t}function fS(e,t,n,r,i){for(var o=[],a=[],s=[],l=t.length-1;l>=0;l--)if(!n.filterOut(l,o)){var u=t[l].where,c=e[u],d=cS(c[2]);o=o.concat(d),a.push(d),s.push(u)}uS(o,!0,!1,i);for(var p=s.length,m=o.length-1,h=p-1;h>=0;)if((0===h||o[m]&&a[h].indexOf(o[m])>-1)&&m>-1)m--;else{var f=o.splice(m+1);n.callback(e[s[h]],f,p,h),h--}}var gS=function(e,t){for(var n=t.options,r=n.compatibility.selectors.mergeablePseudoClasses,i=n.compatibility.selectors.mergeablePseudoElements,o=n.compatibility.selectors.multiplePseudoMerging,a={},s=[],l=e.length-1;l>=0;l--){var u=e[l];if(u[0]==dS.RULE&&0!==u[2].length)for(var c=mS(u[1]),d=u[1].length>1&&lS(c,r,i,o),p=hS(u[1]),m=d?[c].concat(p):[c],h=0,f=m.length;h<f;h++){var g=m[h];a[g]?s.push(g):a[g]=[],a[g].push({where:l,list:p,isPartial:d&&h>0,isComplex:d&&0===h})}}!function(e,t,n,r,i){function o(e,t){return u[e].isPartial&&0===t.length}function a(e,t,n,r){u[n-r-1].isPartial||(e[2]=t)}for(var s=0,l=t.length;s<l;s++){var u=n[t[s]];fS(e,u,{filterOut:o,callback:a},r,i)}}(e,s,a,n,t),function(e,t,n,r){var i=n.compatibility.selectors.mergeablePseudoClasses,o=n.compatibility.selectors.mergeablePseudoElements,a=n.compatibility.selectors.multiplePseudoMerging,s={};function l(e){return s.data[e].where<s.intoPosition}function u(e,t,n,r){0===r&&s.reducedBodies.push(t)}e:for(var c in t){var d=t[c];if(d[0].isComplex){var p=d[d.length-1].where,m=e[p],h=[],f=lS(c,i,o,a)?d[0].list:[c];s.intoPosition=p,s.reducedBodies=h;for(var g=0,y=f.length;g<y;g++){var v=t[f[g]];if(v.length<2)continue e;if(s.data=v,fS(e,v,{filterOut:l,callback:u},n,r),pS(h[h.length-1])!=pS(h[0]))continue e}m[2]=h[0]}}}(e,a,n,t)},yS=up,vS=yg;var bS=function(e){var t,n,r,i,o=[];for(r=0,i=e.length;r<i;r++)(t=e[r])[0]!=yS.AT_RULE_BLOCK&&"@font-face"!=t[1][0][1]||(n=vS([t]),o.indexOf(n)>-1?t[2]=[]:o.push(n))},SS=up,xS=yg,wS=Sg;var CS=function(e){var t,n,r,i,o,a={};for(i=0,o=e.length;i<o;i++)(n=e[i])[0]==SS.NESTED_BLOCK&&((t=a[r=wS(n[1])+"%"+xS(n[2])])&&(t[2]=[]),a[r]=n)},kS=up,OS=vg,TS=Sg;var ES=function(e){for(var t,n,r,i,o={},a=[],s=0,l=e.length;s<l;s++)(n=e[s])[0]==kS.RULE&&(o[t=TS(n[1])]&&1==o[t].length?a.push(t):o[t]=o[t]||[],o[t].push(s));for(s=0,l=a.length;s<l;s++){i=[];for(var u=o[t=a[s]].length-1;u>=0;u--)n=e[o[t][u]],r=OS(n[2]),i.indexOf(r)>-1?n[2]=[]:i.push(r)}},AS=Cy,_S=bp,zS=lp,RS=up,LS=/^(\-moz\-|\-o\-|\-webkit\-)?animation-name$/,PS=/^(\-moz\-|\-o\-|\-webkit\-)?animation$/,BS=/^@(\-moz\-|\-o\-|\-webkit\-)?keyframes /,WS=/\s{0,31}!important$/,MS=/^(['"]?)(.*)\1$/;function US(e){return e.replace(MS,"$2").replace(WS,"")}function IS(e,t,n,r){var i,o,a,s,l,u={};for(s=0,l=e.length;s<l;s++)t(e[s],u);if(0!==Object.keys(u).length)for(i in NS(e,n,u,r),u)for(s=0,l=(o=u[i]).length;s<l;s++)(a=o[s])[a[0]==RS.AT_RULE?1:2]=[]}function NS(e,t,n,r){var i,o,a=t(n);for(i=0,o=e.length;i<o;i++)switch(e[i][0]){case RS.RULE:a(e[i],r);break;case RS.NESTED_BLOCK:NS(e[i][2],t,n,r)}}function qS(e,t){var n;e[0]==RS.AT_RULE_BLOCK&&0===e[1][0][1].indexOf("@counter-style")&&(t[n=e[1][0][1].split(" ")[1]]=t[n]||[],t[n].push(e))}function DS(e){return function(t,n){var r,i,o,a;for(o=0,a=t[2].length;o<a;o++)"list-style"==(r=t[2][o])[1][1]&&(i=_S(r),AS([i],n.validator,n.warnings),i.components[0].value[0][1]in e&&delete e[r[2][1]],zS([i])),"list-style-type"==r[1][1]&&r[2][1]in e&&delete e[r[2][1]]}}function VS(e,t){var n,r,i,o;if(e[0]==RS.AT_RULE_BLOCK&&"@font-face"==e[1][0][1])for(i=0,o=e[2].length;i<o;i++)if("font-family"==(n=e[2][i])[1][1]){t[r=US(n[2][1].toLowerCase())]=t[r]||[],t[r].push(e);break}}function jS(e){return function(t,n){var r,i,o,a,s,l,u,c;for(s=0,l=t[2].length;s<l;s++){if("font"==(r=t[2][s])[1][1]){for(i=_S(r),AS([i],n.validator,n.warnings),u=0,c=(o=i.components[6]).value.length;u<c;u++)(a=US(o.value[u][1].toLowerCase()))in e&&delete e[a];zS([i])}if("font-family"==r[1][1])for(u=2,c=r.length;u<c;u++)(a=US(r[u][1].toLowerCase()))in e&&delete e[a]}}}function FS(e,t){var n;e[0]==RS.NESTED_BLOCK&&BS.test(e[1][0][1])&&(t[n=e[1][0][1].split(" ")[1]]=t[n]||[],t[n].push(e))}function GS(e){return function(t,n){var r,i,o,a,s,l,u;for(a=0,s=t[2].length;a<s;a++){if(r=t[2][a],PS.test(r[1][1])){for(i=_S(r),AS([i],n.validator,n.warnings),l=0,u=(o=i.components[7]).value.length;l<u;l++)o.value[l][1]in e&&delete e[o.value[l][1]];zS([i])}if(LS.test(r[1][1]))for(l=2,u=r.length;l<u;l++)r[l][1]in e&&delete e[r[l][1]]}}}function KS(e,t){var n;e[0]==RS.AT_RULE&&0===e[1].indexOf("@namespace")&&(t[n=e[1].split(" ")[1]]=t[n]||[],t[n].push(e))}function YS(e){var t=new RegExp(Object.keys(e).join("\\||")+"\\|","g");return function(n){var r,i,o,a,s,l;for(o=0,a=n[1].length;o<a;o++)for(s=0,l=(r=n[1][o][1].match(t)).length;s<l;s++)(i=r[s].substring(0,r[s].length-1))in e&&delete e[i]}}var HS=function(e,t){IS(e,qS,DS,t),IS(e,VS,jS,t),IS(e,FS,GS,t),IS(e,KS,YS,t)};function $S(e,t){return e[1]>t[1]?1:-1}var QS=function(e){for(var t=[],n=[],r=0,i=e.length;r<i;r++){var o=e[r];-1==n.indexOf(o[1])&&(n.push(o[1]),t.push(o))}return t.sort($S)},ZS=xb,XS=Pb,JS=hy,ex=QS,tx=up,nx=sS,rx=vg,ix=Sg;function ox(e,t){return e>t?1:-1}var ax=function(e,t){var n,r,i,o=t.options,a=o.compatibility.selectors.mergeablePseudoClasses,s=o.compatibility.selectors.mergeablePseudoElements,l=o.compatibility.selectors.mergeLimit,u=o.compatibility.selectors.multiplePseudoMerging,c=t.cache.specificity,d={},p=[],m={},h=[],f="%";function g(e,t){var n=function(e){for(var t=[],n=0,r=e.length;n<r;n++)t.push(ix(e[n][1]));return t.join(f)}(t);return m[n]=m[n]||[],m[n].push([e,t]),n}function y(e){var t,n=e.split(f),r=[];for(var i in m){var o=i.split(f);for(t=o.length-1;t>=0;t--)if(n.indexOf(o[t])>-1){r.push(i);break}}for(t=r.length-1;t>=0;t--)delete m[r[t]]}function v(e){for(var t=[],n=[],r=e.length-1;r>=0;r--)JS(ix(e[r][1]),a,s,u)&&(n.unshift(e[r]),e[r][2].length>0&&-1==t.indexOf(e[r])&&t.push(e[r]));return t.length>1?n:[]}function b(e,t){var n=t[0],r=t[1],i=t[4],o=n.length+r.length+1,a=[],s=[],l=v(d[i]);if(!(l.length<2)){var u=x(l,o,1),c=u[0];if(c[1]>0)return function(e,t,n){for(var r=n.length-1;r>=0;r--){var i=g(t,n[r][0]);if(m[i].length>1&&T(e,m[i])){y(i);break}}}(e,t,u);for(var p=c[0].length-1;p>=0;p--)a=c[0][p][1].concat(a),s.unshift(c[0][p]);k(e,[t],a=ex(a),s)}}function S(e,t){return e[1]>t[1]?1:e[1]==t[1]?0:-1}function x(e,t,n){return w(e,t,n,1).sort(S)}function w(e,t,n,r){var i=[[e,C(e,t,n)]];if(e.length>2&&r>0)for(var o=e.length-1;o>=0;o--){var a=Array.prototype.slice.call(e,0);a.splice(o,1),i=i.concat(w(a,t,n,r-1))}return i}function C(e,t,n){for(var r=0,i=e.length-1;i>=0;i--)r+=e[i][2].length>n?ix(e[i][1]).length:-1;return r-(e.length-1)*t+1}function k(t,n,r,i){var o,a,s,l,u=[];for(o=i.length-1;o>=0;o--){var c=i[o];for(a=c[2].length-1;a>=0;a--){var d=c[2][a];for(s=0,l=n.length;s<l;s++){var p=n[s],m=d[1][1],h=p[0],f=p[4];if(m==h&&rx([d])==f){c[2].splice(a,1);break}}}}for(o=n.length-1;o>=0;o--)u.unshift(n[o][3]);var g=[tx.RULE,r,u];e.splice(t,0,g)}function O(e,t){var n=t[4],r=d[n];r&&r.length>1&&(function(e,t){var n,r,i=[],o=[],a=t[4],s=v(d[a]);if(s.length<2)return;e:for(var l in d){var u=d[l];for(n=s.length-1;n>=0;n--)if(-1==u.indexOf(s[n]))continue e;i.push(l)}if(i.length<2)return!1;for(n=i.length-1;n>=0;n--)for(r=p.length-1;r>=0;r--)if(p[r][4]==i[n]){o.unshift([p[r],s]);break}return T(e,o)}(e,t)||b(e,t))}function T(e,t){for(var n,r=0,i=[],o=t.length-1;o>=0;o--){r+=(n=t[o][0])[4].length+(o>0?1:0),i.push(n)}var a=x(t[0][1],r,i.length)[0];if(a[1]>0)return!1;var s=[],l=[];for(o=a[0].length-1;o>=0;o--)s=a[0][o][1].concat(s),l.unshift(a[0][o]);for(k(e,i,s=ex(s),l),o=i.length-1;o>=0;o--){n=i[o];var u=p.indexOf(n);delete d[n[4]],u>-1&&-1==h.indexOf(u)&&h.push(u)}return!0}function E(e,t,n){if(e[0]!=t[0])return!1;var r=t[4],i=d[r];return i&&i.indexOf(n)>-1}for(var A=e.length-1;A>=0;A--){var _,z,R,L,P,B=e[A];if(B[0]==tx.RULE)_=!0;else{if(B[0]!=tx.NESTED_BLOCK)continue;_=!1}var W=p.length,M=XS(B);h=[];var U=[];for(z=M.length-1;z>=0;z--)for(R=z-1;R>=0;R--)if(!ZS(M[z],M[R],c)){U.push(z);break}for(z=M.length-1;z>=0;z--){var I=M[z],N=!1;for(R=0;R<W;R++){var q=p[R];-1==h.indexOf(R)&&(!ZS(I,q,c)&&!E(I,q,B)||d[q[4]]&&d[q[4]].length===l)&&(O(A+1,q),-1==h.indexOf(R)&&(h.push(R),delete d[q[4]])),N||(N=I[0]==q[0]&&I[1]==q[1])&&(P=R)}if(_&&!(U.indexOf(z)>-1)){var D=I[4];N&&p[P][5].length+I[5].length>l?(O(A+1,p[P]),p.splice(P,1),d[D]=[B],N=!1):(d[D]=d[D]||[],d[D].push(B)),N?p[P]=(n=p[P],r=I,i=void 0,(i=nx(n))[5]=i[5].concat(r[5]),i):p.push(I)}}for(z=0,L=(h=h.sort(ox)).length;z<L;z++){var V=h[z]-z;p.splice(V,1)}}for(var j=e[0]&&e[0][0]==tx.AT_RULE&&0===e[0][1].indexOf("@charset")?1:0;j<e.length-1;j++){var F=e[j][0]===tx.AT_RULE&&0===e[j][1].indexOf("@import"),G=e[j][0]===tx.COMMENT;if(!F&&!G)break}for(A=0;A<p.length;A++)O(j,p[A])},sx=nb,lx=Vb,ux=eS,cx=aS,dx=gS,px=bS,mx=CS,hx=ES,fx=HS,gx=ax,yx=Yv,vx=bm,bx=up;function Sx(e){for(var t=0,n=e.length;t<n;t++){var r=e[t],i=!1;switch(r[0]){case bx.RULE:i=0===r[1].length||0===r[2].length;break;case bx.NESTED_BLOCK:Sx(r[2]),i=0===r[2].length;break;case bx.AT_RULE:i=0===r[1].length;break;case bx.AT_RULE_BLOCK:i=0===r[2].length}i&&(e.splice(t,1),t--,n--)}}function xx(e,t){for(var n=0,r=e.length;n<r;n++){var i=e[n];switch(i[0]){case bx.RULE:yx(i[2],!0,!0,t);break;case bx.NESTED_BLOCK:xx(i[2],t)}}}function wx(e,t,n){var r,i,o=t.options.level[vx.Two],a=t.options.plugins.level2Block;if(function(e,t){for(var n=0,r=e.length;n<r;n++){var i=e[n];if(i[0]==bx.NESTED_BLOCK){var o=/@(-moz-|-o-|-webkit-)?keyframes/.test(i[1][0][1]);wx(i[2],t,!o)}}}(e,t),xx(e,t),o.removeDuplicateRules&&hx(e),o.mergeAdjacentRules&&sx(e,t),o.reduceNonAdjacentRules&&dx(e,t),o.mergeNonAdjacentRules&&"body"!=o.mergeNonAdjacentRules&&cx(e,t),o.mergeNonAdjacentRules&&"selector"!=o.mergeNonAdjacentRules&&ux(e,t),o.restructureRules&&o.mergeAdjacentRules&&n&&(gx(e,t),sx(e,t)),o.restructureRules&&!o.mergeAdjacentRules&&n&&gx(e,t),o.removeDuplicateFontRules&&px(e),o.removeDuplicateMediaBlocks&&mx(e),o.removeUnusedAtRules&&fx(e,t),o.mergeMedia)for(i=(r=lx(e,t)).length-1;i>=0;i--)wx(r[i][2],t,!1);for(i=0;i<a.length;i++)a[i](e);return o.removeEmpty&&Sx(e),e}var Cx=wx,kx=new RegExp("^(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)$","i"),Ox=/[0-9]/,Tx=new RegExp("^(var\\(\\-\\-[^\\)]+\\)|[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)|\\-(\\-|[A-Z]|[0-9])+\\(.*?\\))$","i"),Ex=/^#(?:[0-9a-f]{4}|[0-9a-f]{8})$/i,Ax=/^hsl\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31}\)|hsla\(\s{0,31}[\-\.]?\d+\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\d*\.?\d+%\s{0,31},\s{0,31}\.?\d+\s{0,31}\)$/,_x=/^(\-[a-z0-9_][a-z0-9\-_]*|[a-z_][a-z0-9\-_]*)$/i,zx=/^[a-z]+$/i,Rx=/^-([a-z0-9]|-)*$/i,Lx=/^("[^"]*"|'[^']*')$/i,Px=/^rgb\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31}\)|rgba\(\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\d]{1,3}\s{0,31},\s{0,31}[\.\d]+\s{0,31}\)$/i,Bx=/\d+(s|ms)/,Wx=/^(cubic\-bezier|steps)\([^\)]+\)$/,Mx=["ms","s"],Ux=/^url\([\s\S]+\)$/i,Ix=new RegExp("^var\\(\\-\\-[^\\)]+\\)$","i"),Nx=/^#[0-9a-f]{8}$/i,qx=/^#[0-9a-f]{4}$/i,Dx=/^#[0-9a-f]{6}$/i,Vx=/^#[0-9a-f]{3}$/i,jx={"^":["inherit","initial","unset"],"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"*-timing-function":["ease","ease-in","ease-in-out","ease-out","linear","step-end","step-start"],"animation-direction":["alternate","alternate-reverse","normal","reverse"],"animation-fill-mode":["backwards","both","forwards","none"],"animation-iteration-count":["infinite"],"animation-name":["none"],"animation-play-state":["paused","running"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],color:["transparent"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],font:["caption","icon","menu","message-box","small-caption","status-bar","unset"],"font-size":["large","larger","medium","small","smaller","x-large","x-small","xx-large","xx-small"],"font-stretch":["condensed","expanded","extra-condensed","extra-expanded","normal","semi-condensed","semi-expanded","ultra-condensed","ultra-expanded"],"font-style":["italic","normal","oblique"],"font-variant":["normal","small-caps"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"line-height":["normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},Fx=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"];function Gx(e){return"auto"!=e&&(ew("color")(e)||function(e){return Vx.test(e)||qx.test(e)||Dx.test(e)||Nx.test(e)}(e)||Kx(e)||function(e){return zx.test(e)}(e))}function Kx(e){return nw(e)||$x(e)}function Yx(e){return kx.test(e)}function Hx(e){return Tx.test(e)}function $x(e){return Ax.test(e)}function Qx(e){return Ex.test(e)}function Zx(e){return _x.test(e)}function Xx(e){return Lx.test(e)}function Jx(e){return"none"==e||"inherit"==e||lw(e)}function ew(e){return function(t){return jx[e].indexOf(t)>-1}}function tw(e){return cw(e)==e.length}function nw(e){return Px.test(e)}function rw(e){return Rx.test(e)}function iw(e){return tw(e)&&parseFloat(e)>=0}function ow(e){return Ix.test(e)}function aw(e){var t=cw(e);return t==e.length&&0===parseInt(e)||t>-1&&Mx.indexOf(e.slice(t+1))>-1||function(e){return Hx(e)&&Bx.test(e)}(e)}function sw(e,t){var n=cw(t);return n==t.length&&0===parseInt(t)||n>-1&&e.indexOf(t.slice(n+1).toLowerCase())>-1||"auto"==t||"inherit"==t}function lw(e){return Ux.test(e)}function uw(e){return"auto"==e||tw(e)||ew("^")(e)}function cw(e){var t,n,r,i=!1,o=!1;for(n=0,r=e.length;n<r;n++)if(t=e[n],0!==n||"+"!=t&&"-"!=t){if(n>0&&o&&("+"==t||"-"==t))return n-1;if("."!=t||i){if("."==t&&i)return n-1;if(Ox.test(t))continue;return n-1}i=!0}else o=!0;return n}var dw=function(e){var t,n=Fx.slice(0).filter((function(t){return!(t in e.units)||!0===e.units[t]}));return e.customUnits.rpx&&n.push("rpx"),{colorOpacity:e.colors.opacity,colorHexAlpha:e.colors.hexAlpha,isAnimationDirectionKeyword:ew("animation-direction"),isAnimationFillModeKeyword:ew("animation-fill-mode"),isAnimationIterationCountKeyword:ew("animation-iteration-count"),isAnimationNameKeyword:ew("animation-name"),isAnimationPlayStateKeyword:ew("animation-play-state"),isTimingFunction:(t=ew("*-timing-function"),function(e){return t(e)||Wx.test(e)}),isBackgroundAttachmentKeyword:ew("background-attachment"),isBackgroundClipKeyword:ew("background-clip"),isBackgroundOriginKeyword:ew("background-origin"),isBackgroundPositionKeyword:ew("background-position"),isBackgroundRepeatKeyword:ew("background-repeat"),isBackgroundSizeKeyword:ew("background-size"),isColor:Gx,isColorFunction:Kx,isDynamicUnit:Yx,isFontKeyword:ew("font"),isFontSizeKeyword:ew("font-size"),isFontStretchKeyword:ew("font-stretch"),isFontStyleKeyword:ew("font-style"),isFontVariantKeyword:ew("font-variant"),isFontWeightKeyword:ew("font-weight"),isFunction:Hx,isGlobal:ew("^"),isHexAlphaColor:Qx,isHslColor:$x,isIdentifier:Zx,isImage:Jx,isKeyword:ew,isLineHeightKeyword:ew("line-height"),isListStylePositionKeyword:ew("list-style-position"),isListStyleTypeKeyword:ew("list-style-type"),isNumber:tw,isPrefixed:rw,isPositiveNumber:iw,isQuotedText:Xx,isRgbColor:nw,isStyleKeyword:ew("*-style"),isTime:aw,isUnit:sw.bind(null,n),isUrl:lw,isVariable:ow,isWidth:ew("width"),isZIndex:uw}},pw={"*":{colors:{hexAlpha:!1,opacity:!0},customUnits:{rpx:!1},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!0,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"],mergeLimit:8191,multiplePseudoMerging:!0},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};function mw(e,t){for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=e[n];Object.prototype.hasOwnProperty.call(t,n)&&"object"==typeof r&&!Array.isArray(r)?t[n]=mw(r,t[n]||{}):t[n]=n in t?t[n]:r}return t}pw.ie11=mw(pw["*"],{properties:{ieSuffixHack:!0}}),pw.ie10=mw(pw["*"],{properties:{ieSuffixHack:!0}}),pw.ie9=mw(pw["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),pw.ie8=mw(pw.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),pw.ie7=mw(pw.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}});var hw=function(e){return mw(pw["*"],function(e){if("object"==typeof e)return e;if(!/[,\+\-]/.test(e))return pw[e]||pw["*"];var t=e.split(","),n=t[0]in pw?pw[t.shift()]:pw["*"];return e={},t.forEach((function(t){var n="+"==t[0],r=t.substring(1).split("."),i=r[0],o=r[1];e[i]=e[i]||{},e[i][o]=n})),mw(n,e)}(e))},fw=[],gw=[],yw="undefined"!=typeof Uint8Array?Uint8Array:Array,vw=!1;function bw(){vw=!0;for(var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",t=0,n=e.length;t<n;++t)fw[t]=e[t],gw[e.charCodeAt(t)]=t;gw["-".charCodeAt(0)]=62,gw["_".charCodeAt(0)]=63}function Sw(e,t,n){for(var r,i,o=[],a=t;a<n;a+=3)r=(e[a]<<16)+(e[a+1]<<8)+e[a+2],o.push(fw[(i=r)>>18&63]+fw[i>>12&63]+fw[i>>6&63]+fw[63&i]);return o.join("")}function xw(e){var t;vw||bw();for(var n=e.length,r=n%3,i="",o=[],a=16383,s=0,l=n-r;s<l;s+=a)o.push(Sw(e,s,s+a>l?l:s+a));return 1===r?(t=e[n-1],i+=fw[t>>2],i+=fw[t<<4&63],i+="=="):2===r&&(t=(e[n-2]<<8)+e[n-1],i+=fw[t>>10],i+=fw[t>>4&63],i+=fw[t<<2&63],i+="="),o.push(i),o.join("")}function ww(e,t,n,r,i){var o,a,s=8*i-r-1,l=(1<<s)-1,u=l>>1,c=-7,d=n?i-1:0,p=n?-1:1,m=e[t+d];for(d+=p,o=m&(1<<-c)-1,m>>=-c,c+=s;c>0;o=256*o+e[t+d],d+=p,c-=8);for(a=o&(1<<-c)-1,o>>=-c,c+=r;c>0;a=256*a+e[t+d],d+=p,c-=8);if(0===o)o=1-u;else{if(o===l)return a?NaN:1/0*(m?-1:1);a+=Math.pow(2,r),o-=u}return(m?-1:1)*a*Math.pow(2,o-r)}function Cw(e,t,n,r,i,o){var a,s,l,u=8*o-i-1,c=(1<<u)-1,d=c>>1,p=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,m=r?0:o-1,h=r?1:-1,f=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-a))<1&&(a--,l*=2),(t+=a+d>=1?p/l:p*Math.pow(2,1-d))*l>=2&&(a++,l/=2),a+d>=c?(s=0,a=c):a+d>=1?(s=(t*l-1)*Math.pow(2,i),a+=d):(s=t*Math.pow(2,d-1)*Math.pow(2,i),a=0));i>=8;e[n+m]=255&s,m+=h,s/=256,i-=8);for(a=a<<i|s,u+=i;u>0;e[n+m]=255&a,m+=h,a/=256,u-=8);e[n+m-h]|=128*f}var kw={}.toString,Ow=Array.isArray||function(e){return"[object Array]"==kw.call(e)};function Tw(){return Aw.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function Ew(e,t){if(Tw()<t)throw new RangeError("Invalid typed array length");return Aw.TYPED_ARRAY_SUPPORT?(e=new Uint8Array(t)).__proto__=Aw.prototype:(null===e&&(e=new Aw(t)),e.length=t),e}function Aw(e,t,n){if(!(Aw.TYPED_ARRAY_SUPPORT||this instanceof Aw))return new Aw(e,t,n);if("number"==typeof e){if("string"==typeof t)throw new Error("If encoding is specified then the first argument must be a string");return Rw(this,e)}return _w(this,e,t,n)}function _w(e,t,n,r){if("number"==typeof t)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer?function(e,t,n,r){if(t.byteLength,n<0||t.byteLength<n)throw new RangeError("'offset' is out of bounds");if(t.byteLength<n+(r||0))throw new RangeError("'length' is out of bounds");t=void 0===n&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,n):new Uint8Array(t,n,r);Aw.TYPED_ARRAY_SUPPORT?(e=t).__proto__=Aw.prototype:e=Lw(e,t);return e}(e,t,n,r):"string"==typeof t?function(e,t,n){"string"==typeof n&&""!==n||(n="utf8");if(!Aw.isEncoding(n))throw new TypeError('"encoding" must be a valid string encoding');var r=0|Ww(t,n),i=(e=Ew(e,r)).write(t,n);i!==r&&(e=e.slice(0,i));return e}(e,t,n):function(e,t){if(Bw(t)){var n=0|Pw(t.length);return 0===(e=Ew(e,n)).length||t.copy(e,0,0,n),e}if(t){if("undefined"!=typeof ArrayBuffer&&t.buffer instanceof ArrayBuffer||"length"in t)return"number"!=typeof t.length||(r=t.length)!=r?Ew(e,0):Lw(e,t);if("Buffer"===t.type&&Ow(t.data))return Lw(e,t.data)}var r;throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}(e,t)}function zw(e){if("number"!=typeof e)throw new TypeError('"size" argument must be a number');if(e<0)throw new RangeError('"size" argument must not be negative')}function Rw(e,t){if(zw(t),e=Ew(e,t<0?0:0|Pw(t)),!Aw.TYPED_ARRAY_SUPPORT)for(var n=0;n<t;++n)e[n]=0;return e}function Lw(e,t){var n=t.length<0?0:0|Pw(t.length);e=Ew(e,n);for(var r=0;r<n;r+=1)e[r]=255&t[r];return e}function Pw(e){if(e>=Tw())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Tw().toString(16)+" bytes");return 0|e}function Bw(e){return!(null==e||!e._isBuffer)}function Ww(e,t){if(Bw(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return lC(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return uC(e).length;default:if(r)return lC(e).length;t=(""+t).toLowerCase(),r=!0}}function Mw(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return Zw(this,t,n);case"utf8":case"utf-8":return Yw(this,t,n);case"ascii":return $w(this,t,n);case"latin1":case"binary":return Qw(this,t,n);case"base64":return Kw(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Xw(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function Uw(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function Iw(e,t,n,r,i){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=i?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(i)return-1;n=e.length-1}else if(n<0){if(!i)return-1;n=0}if("string"==typeof t&&(t=Aw.from(t,r)),Bw(t))return 0===t.length?-1:Nw(e,t,n,r,i);if("number"==typeof t)return t&=255,Aw.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):Nw(e,[t],n,r,i);throw new TypeError("val must be string, number or Buffer")}function Nw(e,t,n,r,i){var o,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function u(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(i){var c=-1;for(o=n;o<s;o++)if(u(e,o)===u(t,-1===c?0:o-c)){if(-1===c&&(c=o),o-c+1===l)return c*a}else-1!==c&&(o-=o-c),c=-1}else for(n+l>s&&(n=s-l),o=n;o>=0;o--){for(var d=!0,p=0;p<l;p++)if(u(e,o+p)!==u(t,p)){d=!1;break}if(d)return o}return-1}function qw(e,t,n,r){n=Number(n)||0;var i=e.length-n;r?(r=Number(r))>i&&(r=i):r=i;var o=t.length;if(o%2!=0)throw new TypeError("Invalid hex string");r>o/2&&(r=o/2);for(var a=0;a<r;++a){var s=parseInt(t.substr(2*a,2),16);if(isNaN(s))return a;e[n+a]=s}return a}function Dw(e,t,n,r){return cC(lC(t,e.length-n),e,n,r)}function Vw(e,t,n,r){return cC(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function jw(e,t,n,r){return Vw(e,t,n,r)}function Fw(e,t,n,r){return cC(uC(t),e,n,r)}function Gw(e,t,n,r){return cC(function(e,t){for(var n,r,i,o=[],a=0;a<e.length&&!((t-=2)<0);++a)r=(n=e.charCodeAt(a))>>8,i=n%256,o.push(i),o.push(r);return o}(t,e.length-n),e,n,r)}function Kw(e,t,n){return 0===t&&n===e.length?xw(e):xw(e.slice(t,n))}function Yw(e,t,n){n=Math.min(e.length,n);for(var r=[],i=t;i<n;){var o,a,s,l,u=e[i],c=null,d=u>239?4:u>223?3:u>191?2:1;if(i+d<=n)switch(d){case 1:u<128&&(c=u);break;case 2:128==(192&(o=e[i+1]))&&(l=(31&u)<<6|63&o)>127&&(c=l);break;case 3:o=e[i+1],a=e[i+2],128==(192&o)&&128==(192&a)&&(l=(15&u)<<12|(63&o)<<6|63&a)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:o=e[i+1],a=e[i+2],s=e[i+3],128==(192&o)&&128==(192&a)&&128==(192&s)&&(l=(15&u)<<18|(63&o)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(c=l)}null===c?(c=65533,d=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),i+=d}return function(e){var t=e.length;if(t<=Hw)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=Hw));return n}(r)}Aw.TYPED_ARRAY_SUPPORT=void 0===gc.TYPED_ARRAY_SUPPORT||gc.TYPED_ARRAY_SUPPORT,Aw.poolSize=8192,Aw._augment=function(e){return e.__proto__=Aw.prototype,e},Aw.from=function(e,t,n){return _w(null,e,t,n)},Aw.TYPED_ARRAY_SUPPORT&&(Aw.prototype.__proto__=Uint8Array.prototype,Aw.__proto__=Uint8Array),Aw.alloc=function(e,t,n){return function(e,t,n,r){return zw(t),t<=0?Ew(e,t):void 0!==n?"string"==typeof r?Ew(e,t).fill(n,r):Ew(e,t).fill(n):Ew(e,t)}(null,e,t,n)},Aw.allocUnsafe=function(e){return Rw(null,e)},Aw.allocUnsafeSlow=function(e){return Rw(null,e)},Aw.isBuffer=function(e){return null!=e&&(!!e._isBuffer||dC(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&dC(e.slice(0,0))}(e))},Aw.compare=function(e,t){if(!Bw(e)||!Bw(t))throw new TypeError("Arguments must be Buffers");if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i<o;++i)if(e[i]!==t[i]){n=e[i],r=t[i];break}return n<r?-1:r<n?1:0},Aw.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},Aw.concat=function(e,t){if(!Ow(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return Aw.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=Aw.allocUnsafe(t),i=0;for(n=0;n<e.length;++n){var o=e[n];if(!Bw(o))throw new TypeError('"list" argument must be an Array of Buffers');o.copy(r,i),i+=o.length}return r},Aw.byteLength=Ww,Aw.prototype._isBuffer=!0,Aw.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)Uw(this,t,t+1);return this},Aw.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)Uw(this,t,t+3),Uw(this,t+1,t+2);return this},Aw.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)Uw(this,t,t+7),Uw(this,t+1,t+6),Uw(this,t+2,t+5),Uw(this,t+3,t+4);return this},Aw.prototype.toString=function(){var e=0|this.length;return 0===e?"":0===arguments.length?Yw(this,0,e):Mw.apply(this,arguments)},Aw.prototype.equals=function(e){if(!Bw(e))throw new TypeError("Argument must be a Buffer");return this===e||0===Aw.compare(this,e)},Aw.prototype.inspect=function(){var e="";return this.length>0&&(e=this.toString("hex",0,50).match(/.{2}/g).join(" "),this.length>50&&(e+=" ... ")),"<Buffer "+e+">"},Aw.prototype.compare=function(e,t,n,r,i){if(!Bw(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===i&&(i=this.length),t<0||n>e.length||r<0||i>this.length)throw new RangeError("out of range index");if(r>=i&&t>=n)return 0;if(r>=i)return-1;if(t>=n)return 1;if(this===e)return 0;for(var o=(i>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(o,a),l=this.slice(r,i),u=e.slice(t,n),c=0;c<s;++c)if(l[c]!==u[c]){o=l[c],a=u[c];break}return o<a?-1:a<o?1:0},Aw.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},Aw.prototype.indexOf=function(e,t,n){return Iw(this,e,t,n,!0)},Aw.prototype.lastIndexOf=function(e,t,n){return Iw(this,e,t,n,!1)},Aw.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t|=0,isFinite(n)?(n|=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var i=this.length-t;if((void 0===n||n>i)&&(n=i),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var o=!1;;)switch(r){case"hex":return qw(this,e,t,n);case"utf8":case"utf-8":return Dw(this,e,t,n);case"ascii":return Vw(this,e,t,n);case"latin1":case"binary":return jw(this,e,t,n);case"base64":return Fw(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Gw(this,e,t,n);default:if(o)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),o=!0}},Aw.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var Hw=4096;function $w(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(127&e[i]);return r}function Qw(e,t,n){var r="";n=Math.min(e.length,n);for(var i=t;i<n;++i)r+=String.fromCharCode(e[i]);return r}function Zw(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var i="",o=t;o<n;++o)i+=sC(e[o]);return i}function Xw(e,t,n){for(var r=e.slice(t,n),i="",o=0;o<r.length;o+=2)i+=String.fromCharCode(r[o]+256*r[o+1]);return i}function Jw(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function eC(e,t,n,r,i,o){if(!Bw(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||t<o)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function tC(e,t,n,r){t<0&&(t=65535+t+1);for(var i=0,o=Math.min(e.length-n,2);i<o;++i)e[n+i]=(t&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function nC(e,t,n,r){t<0&&(t=4294967295+t+1);for(var i=0,o=Math.min(e.length-n,4);i<o;++i)e[n+i]=t>>>8*(r?i:3-i)&255}function rC(e,t,n,r,i,o){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function iC(e,t,n,r,i){return i||rC(e,0,n,4),Cw(e,t,n,r,23,4),n+4}function oC(e,t,n,r,i){return i||rC(e,0,n,8),Cw(e,t,n,r,52,8),n+8}Aw.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t<e&&(t=e),Aw.TYPED_ARRAY_SUPPORT)(n=this.subarray(e,t)).__proto__=Aw.prototype;else{var i=t-e;n=new Aw(i,void 0);for(var o=0;o<i;++o)n[o]=this[o+e]}return n},Aw.prototype.readUIntLE=function(e,t,n){e|=0,t|=0,n||Jw(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r},Aw.prototype.readUIntBE=function(e,t,n){e|=0,t|=0,n||Jw(e,t,this.length);for(var r=this[e+--t],i=1;t>0&&(i*=256);)r+=this[e+--t]*i;return r},Aw.prototype.readUInt8=function(e,t){return t||Jw(e,1,this.length),this[e]},Aw.prototype.readUInt16LE=function(e,t){return t||Jw(e,2,this.length),this[e]|this[e+1]<<8},Aw.prototype.readUInt16BE=function(e,t){return t||Jw(e,2,this.length),this[e]<<8|this[e+1]},Aw.prototype.readUInt32LE=function(e,t){return t||Jw(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},Aw.prototype.readUInt32BE=function(e,t){return t||Jw(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},Aw.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||Jw(e,t,this.length);for(var r=this[e],i=1,o=0;++o<t&&(i*=256);)r+=this[e+o]*i;return r>=(i*=128)&&(r-=Math.pow(2,8*t)),r},Aw.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||Jw(e,t,this.length);for(var r=t,i=1,o=this[e+--r];r>0&&(i*=256);)o+=this[e+--r]*i;return o>=(i*=128)&&(o-=Math.pow(2,8*t)),o},Aw.prototype.readInt8=function(e,t){return t||Jw(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},Aw.prototype.readInt16LE=function(e,t){t||Jw(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},Aw.prototype.readInt16BE=function(e,t){t||Jw(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},Aw.prototype.readInt32LE=function(e,t){return t||Jw(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},Aw.prototype.readInt32BE=function(e,t){return t||Jw(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},Aw.prototype.readFloatLE=function(e,t){return t||Jw(e,4,this.length),ww(this,e,!0,23,4)},Aw.prototype.readFloatBE=function(e,t){return t||Jw(e,4,this.length),ww(this,e,!1,23,4)},Aw.prototype.readDoubleLE=function(e,t){return t||Jw(e,8,this.length),ww(this,e,!0,52,8)},Aw.prototype.readDoubleBE=function(e,t){return t||Jw(e,8,this.length),ww(this,e,!1,52,8)},Aw.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||eC(this,e,t,n,Math.pow(2,8*n)-1,0);var i=1,o=0;for(this[t]=255&e;++o<n&&(i*=256);)this[t+o]=e/i&255;return t+n},Aw.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||eC(this,e,t,n,Math.pow(2,8*n)-1,0);var i=n-1,o=1;for(this[t+i]=255&e;--i>=0&&(o*=256);)this[t+i]=e/o&255;return t+n},Aw.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,1,255,0),Aw.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},Aw.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,2,65535,0),Aw.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):tC(this,e,t,!0),t+2},Aw.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,2,65535,0),Aw.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):tC(this,e,t,!1),t+2},Aw.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,4,4294967295,0),Aw.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):nC(this,e,t,!0),t+4},Aw.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,4,4294967295,0),Aw.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):nC(this,e,t,!1),t+4},Aw.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);eC(this,e,t,n,i-1,-i)}var o=0,a=1,s=0;for(this[t]=255&e;++o<n&&(a*=256);)e<0&&0===s&&0!==this[t+o-1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},Aw.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var i=Math.pow(2,8*n-1);eC(this,e,t,n,i-1,-i)}var o=n-1,a=1,s=0;for(this[t+o]=255&e;--o>=0&&(a*=256);)e<0&&0===s&&0!==this[t+o+1]&&(s=1),this[t+o]=(e/a>>0)-s&255;return t+n},Aw.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,1,127,-128),Aw.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},Aw.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,2,32767,-32768),Aw.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):tC(this,e,t,!0),t+2},Aw.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,2,32767,-32768),Aw.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):tC(this,e,t,!1),t+2},Aw.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,4,2147483647,-2147483648),Aw.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):nC(this,e,t,!0),t+4},Aw.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||eC(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),Aw.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):nC(this,e,t,!1),t+4},Aw.prototype.writeFloatLE=function(e,t,n){return iC(this,e,t,!0,n)},Aw.prototype.writeFloatBE=function(e,t,n){return iC(this,e,t,!1,n)},Aw.prototype.writeDoubleLE=function(e,t,n){return oC(this,e,t,!0,n)},Aw.prototype.writeDoubleBE=function(e,t,n){return oC(this,e,t,!1,n)},Aw.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var i,o=r-n;if(this===e&&n<t&&t<r)for(i=o-1;i>=0;--i)e[i+t]=this[i+n];else if(o<1e3||!Aw.TYPED_ARRAY_SUPPORT)for(i=0;i<o;++i)e[i+t]=this[i+n];else Uint8Array.prototype.set.call(e,this.subarray(n,n+o),t);return o},Aw.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),1===e.length){var i=e.charCodeAt(0);i<256&&(e=i)}if(void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!Aw.isEncoding(r))throw new TypeError("Unknown encoding: "+r)}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var o;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(o=t;o<n;++o)this[o]=e;else{var a=Bw(e)?e:lC(new Aw(e,r).toString()),s=a.length;for(o=0;o<n-t;++o)this[o+t]=a[o%s]}return this};var aC=/[^+\/0-9A-Za-z-_]/g;function sC(e){return e<16?"0"+e.toString(16):e.toString(16)}function lC(e,t){var n;t=t||1/0;for(var r=e.length,i=null,o=[],a=0;a<r;++a){if((n=e.charCodeAt(a))>55295&&n<57344){if(!i){if(n>56319){(t-=3)>-1&&o.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&o.push(239,191,189);continue}i=n;continue}if(n<56320){(t-=3)>-1&&o.push(239,191,189),i=n;continue}n=65536+(i-55296<<10|n-56320)}else i&&(t-=3)>-1&&o.push(239,191,189);if(i=null,n<128){if((t-=1)<0)break;o.push(n)}else if(n<2048){if((t-=2)<0)break;o.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;o.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;o.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return o}function uC(e){return function(e){var t,n,r,i,o,a;vw||bw();var s=e.length;if(s%4>0)throw new Error("Invalid string. Length must be a multiple of 4");o="="===e[s-2]?2:"="===e[s-1]?1:0,a=new yw(3*s/4-o),r=o>0?s-4:s;var l=0;for(t=0,n=0;t<r;t+=4,n+=3)i=gw[e.charCodeAt(t)]<<18|gw[e.charCodeAt(t+1)]<<12|gw[e.charCodeAt(t+2)]<<6|gw[e.charCodeAt(t+3)],a[l++]=i>>16&255,a[l++]=i>>8&255,a[l++]=255&i;return 2===o?(i=gw[e.charCodeAt(t)]<<2|gw[e.charCodeAt(t+1)]>>4,a[l++]=255&i):1===o&&(i=gw[e.charCodeAt(t)]<<10|gw[e.charCodeAt(t+1)]<<4|gw[e.charCodeAt(t+2)]>>2,a[l++]=i>>8&255,a[l++]=255&i),a}(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(aC,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function cC(e,t,n,r){for(var i=0;i<r&&!(i+n>=t.length||i>=e.length);++i)t[i+n]=e[i];return i}function dC(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}var pC,mC,hC=CC(gc.fetch)&&CC(gc.ReadableStream);function fC(e){mC||(mC=new gc.XMLHttpRequest).open("GET",gc.location.host?"/":"https://example.com");try{return mC.responseType=e,mC.responseType===e}catch(e){return!1}}var gC=void 0!==gc.ArrayBuffer,yC=gC&&CC(gc.ArrayBuffer.prototype.slice),vC=gC&&fC("arraybuffer"),bC=!hC&&yC&&fC("ms-stream"),SC=!hC&&gC&&fC("moz-chunked-arraybuffer"),xC=CC(mC.overrideMimeType),wC=CC(gc.VBArray);function CC(e){return"function"==typeof e}mC=null;var kC,OC,TC={exports:{}},EC=TC.exports={};function AC(){throw new Error("setTimeout has not been defined")}function _C(){throw new Error("clearTimeout has not been defined")}function zC(e){if(kC===setTimeout)return setTimeout(e,0);if((kC===AC||!kC)&&setTimeout)return kC=setTimeout,setTimeout(e,0);try{return kC(e,0)}catch(t){try{return kC.call(null,e,0)}catch(t){return kC.call(this,e,0)}}}!function(){try{kC="function"==typeof setTimeout?setTimeout:AC}catch(e){kC=AC}try{OC="function"==typeof clearTimeout?clearTimeout:_C}catch(e){OC=_C}}();var RC,LC=[],PC=!1,BC=-1;function WC(){PC&&RC&&(PC=!1,RC.length?LC=RC.concat(LC):BC=-1,LC.length&&MC())}function MC(){if(!PC){var e=zC(WC);PC=!0;for(var t=LC.length;t;){for(RC=LC,LC=[];++BC<t;)RC&&RC[BC].run();BC=-1,t=LC.length}RC=null,PC=!1,function(e){if(OC===clearTimeout)return clearTimeout(e);if((OC===_C||!OC)&&clearTimeout)return OC=clearTimeout,clearTimeout(e);try{OC(e)}catch(t){try{return OC.call(null,e)}catch(t){return OC.call(this,e)}}}(e)}}function UC(e,t){this.fun=e,this.array=t}function IC(){}EC.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];LC.push(new UC(e,t)),1!==LC.length||PC||zC(MC)},UC.prototype.run=function(){this.fun.apply(null,this.array)},EC.title="browser",EC.browser=!0,EC.env={},EC.argv=[],EC.version="",EC.versions={},EC.on=IC,EC.addListener=IC,EC.once=IC,EC.off=IC,EC.removeListener=IC,EC.removeAllListeners=IC,EC.emit=IC,EC.prependListener=IC,EC.prependOnceListener=IC,EC.listeners=function(e){return[]},EC.binding=function(e){throw new Error("process.binding is not supported")},EC.cwd=function(){return"/"},EC.chdir=function(e){throw new Error("process.chdir is not supported")},EC.umask=function(){return 0};var NC=TC.exports,qC="function"==typeof Object.create?function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:function(e,t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e},DC=/%[sdj%]/g;function VC(e){if(!ek(e)){for(var t=[],n=0;n<arguments.length;n++)t.push(KC(arguments[n]));return t.join(" ")}n=1;for(var r=arguments,i=r.length,o=String(e).replace(DC,(function(e){if("%%"===e)return"%";if(n>=i)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(e){return"[Circular]"}default:return e}})),a=r[n];n<i;a=r[++n])JC(a)||!rk(a)?o+=" "+a:o+=" "+KC(a);return o}function jC(e,t){if(tk(gc.process))return function(){return jC(e,t).apply(this,arguments)};if(!0===NC.noDeprecation)return e;var n=!1;return function(){if(!n){if(NC.throwDeprecation)throw new Error(t);NC.traceDeprecation?console.trace(t):console.error(t),n=!0}return e.apply(this,arguments)}}var FC,GC={};function KC(e,t){var n={seen:[],stylize:HC};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),XC(t)?n.showHidden=t:t&&lk(n,t),tk(n.showHidden)&&(n.showHidden=!1),tk(n.depth)&&(n.depth=2),tk(n.colors)&&(n.colors=!1),tk(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=YC),$C(n,e,n.depth)}function YC(e,t){var n=KC.styles[t];return n?"["+KC.colors[n][0]+"m"+e+"["+KC.colors[n][1]+"m":e}function HC(e,t){return e}function $C(e,t,n){if(e.customInspect&&t&&ak(t.inspect)&&t.inspect!==KC&&(!t.constructor||t.constructor.prototype!==t)){var r=t.inspect(n,e);return ek(r)||(r=$C(e,r,n)),r}var i=function(e,t){if(tk(t))return e.stylize("undefined","undefined");if(ek(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}if(r=t,"number"==typeof r)return e.stylize(""+t,"number");var r;if(XC(t))return e.stylize(""+t,"boolean");if(JC(t))return e.stylize("null","null")}(e,t);if(i)return i;var o=Object.keys(t),a=function(e){var t={};return e.forEach((function(e,n){t[e]=!0})),t}(o);if(e.showHidden&&(o=Object.getOwnPropertyNames(t)),ok(t)&&(o.indexOf("message")>=0||o.indexOf("description")>=0))return QC(t);if(0===o.length){if(ak(t)){var s=t.name?": "+t.name:"";return e.stylize("[Function"+s+"]","special")}if(nk(t))return e.stylize(RegExp.prototype.toString.call(t),"regexp");if(ik(t))return e.stylize(Date.prototype.toString.call(t),"date");if(ok(t))return QC(t)}var l,u,c="",d=!1,p=["{","}"];(l=t,Array.isArray(l)&&(d=!0,p=["[","]"]),ak(t))&&(c=" [Function"+(t.name?": "+t.name:"")+"]");return nk(t)&&(c=" "+RegExp.prototype.toString.call(t)),ik(t)&&(c=" "+Date.prototype.toUTCString.call(t)),ok(t)&&(c=" "+QC(t)),0!==o.length||d&&0!=t.length?n<0?nk(t)?e.stylize(RegExp.prototype.toString.call(t),"regexp"):e.stylize("[Object]","special"):(e.seen.push(t),u=d?function(e,t,n,r,i){for(var o=[],a=0,s=t.length;a<s;++a)uk(t,String(a))?o.push(ZC(e,t,n,r,String(a),!0)):o.push("");return i.forEach((function(i){i.match(/^\d+$/)||o.push(ZC(e,t,n,r,i,!0))})),o}(e,t,n,a,o):o.map((function(r){return ZC(e,t,n,a,r,d)})),e.seen.pop(),function(e,t,n){if(e.reduce((function(e,t){return t.indexOf("\n"),e+t.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60)return n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1];return n[0]+t+" "+e.join(", ")+" "+n[1]}(u,c,p)):p[0]+c+p[1]}function QC(e){return"["+Error.prototype.toString.call(e)+"]"}function ZC(e,t,n,r,i,o){var a,s,l;if((l=Object.getOwnPropertyDescriptor(t,i)||{value:t[i]}).get?s=l.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):l.set&&(s=e.stylize("[Setter]","special")),uk(r,i)||(a="["+i+"]"),s||(e.seen.indexOf(l.value)<0?(s=JC(n)?$C(e,l.value,null):$C(e,l.value,n-1)).indexOf("\n")>-1&&(s=o?s.split("\n").map((function(e){return" "+e})).join("\n").substr(2):"\n"+s.split("\n").map((function(e){return" "+e})).join("\n")):s=e.stylize("[Circular]","special")),tk(a)){if(o&&i.match(/^\d+$/))return s;(a=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+s}function XC(e){return"boolean"==typeof e}function JC(e){return null===e}function ek(e){return"string"==typeof e}function tk(e){return void 0===e}function nk(e){return rk(e)&&"[object RegExp]"===sk(e)}function rk(e){return"object"==typeof e&&null!==e}function ik(e){return rk(e)&&"[object Date]"===sk(e)}function ok(e){return rk(e)&&("[object Error]"===sk(e)||e instanceof Error)}function ak(e){return"function"==typeof e}function sk(e){return Object.prototype.toString.call(e)}function lk(e,t){if(!t||!rk(t))return e;for(var n=Object.keys(t),r=n.length;r--;)e[n[r]]=t[n[r]];return e}function uk(e,t){return Object.prototype.hasOwnProperty.call(e,t)}KC.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},KC.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"};var ck,dk={exports:{}},pk="object"==typeof Reflect?Reflect:null,mk=pk&&"function"==typeof pk.apply?pk.apply:function(e,t,n){return Function.prototype.apply.call(e,t,n)};ck=pk&&"function"==typeof pk.ownKeys?pk.ownKeys:Object.getOwnPropertySymbols?function(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols(e))}:function(e){return Object.getOwnPropertyNames(e)};var hk=Number.isNaN||function(e){return e!=e};function fk(){fk.init.call(this)}dk.exports=fk,dk.exports.once=function(e,t){return new Promise((function(n,r){function i(n){e.removeListener(t,o),r(n)}function o(){"function"==typeof e.removeListener&&e.removeListener("error",i),n([].slice.call(arguments))}Ok(e,t,o,{once:!0}),"error"!==t&&function(e,t,n){"function"==typeof e.on&&Ok(e,"error",t,n)}(e,i,{once:!0})}))},fk.EventEmitter=fk,fk.prototype._events=void 0,fk.prototype._eventsCount=0,fk.prototype._maxListeners=void 0;var gk=10;function yk(e){if("function"!=typeof e)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof e)}function vk(e){return void 0===e._maxListeners?fk.defaultMaxListeners:e._maxListeners}function bk(e,t,n,r){var i,o,a,s;if(yk(n),void 0===(o=e._events)?(o=e._events=Object.create(null),e._eventsCount=0):(void 0!==o.newListener&&(e.emit("newListener",t,n.listener?n.listener:n),o=e._events),a=o[t]),void 0===a)a=o[t]=n,++e._eventsCount;else if("function"==typeof a?a=o[t]=r?[n,a]:[a,n]:r?a.unshift(n):a.push(n),(i=vk(e))>0&&a.length>i&&!a.warned){a.warned=!0;var l=new Error("Possible EventEmitter memory leak detected. "+a.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit");l.name="MaxListenersExceededWarning",l.emitter=e,l.type=t,l.count=a.length,s=l,console&&console.warn&&console.warn(s)}return e}function Sk(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function xk(e,t,n){var r={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},i=Sk.bind(r);return i.listener=n,r.wrapFn=i,i}function wk(e,t,n){var r=e._events;if(void 0===r)return[];var i=r[t];return void 0===i?[]:"function"==typeof i?n?[i.listener||i]:[i]:n?function(e){for(var t=new Array(e.length),n=0;n<t.length;++n)t[n]=e[n].listener||e[n];return t}(i):kk(i,i.length)}function Ck(e){var t=this._events;if(void 0!==t){var n=t[e];if("function"==typeof n)return 1;if(void 0!==n)return n.length}return 0}function kk(e,t){for(var n=new Array(t),r=0;r<t;++r)n[r]=e[r];return n}function Ok(e,t,n,r){if("function"==typeof e.on)r.once?e.once(t,n):e.on(t,n);else{if("function"!=typeof e.addEventListener)throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type '+typeof e);e.addEventListener(t,(function i(o){r.once&&e.removeEventListener(t,i),n(o)}))}}Object.defineProperty(fk,"defaultMaxListeners",{enumerable:!0,get:function(){return gk},set:function(e){if("number"!=typeof e||e<0||hk(e))throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received '+e+".");gk=e}}),fk.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},fk.prototype.setMaxListeners=function(e){if("number"!=typeof e||e<0||hk(e))throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received '+e+".");return this._maxListeners=e,this},fk.prototype.getMaxListeners=function(){return vk(this)},fk.prototype.emit=function(e){for(var t=[],n=1;n<arguments.length;n++)t.push(arguments[n]);var r="error"===e,i=this._events;if(void 0!==i)r=r&&void 0===i.error;else if(!r)return!1;if(r){var o;if(t.length>0&&(o=t[0]),o instanceof Error)throw o;var a=new Error("Unhandled error."+(o?" ("+o.message+")":""));throw a.context=o,a}var s=i[e];if(void 0===s)return!1;if("function"==typeof s)mk(s,this,t);else{var l=s.length,u=kk(s,l);for(n=0;n<l;++n)mk(u[n],this,t)}return!0},fk.prototype.addListener=function(e,t){return bk(this,e,t,!1)},fk.prototype.on=fk.prototype.addListener,fk.prototype.prependListener=function(e,t){return bk(this,e,t,!0)},fk.prototype.once=function(e,t){return yk(t),this.on(e,xk(this,e,t)),this},fk.prototype.prependOnceListener=function(e,t){return yk(t),this.prependListener(e,xk(this,e,t)),this},fk.prototype.removeListener=function(e,t){var n,r,i,o,a;if(yk(t),void 0===(r=this._events))return this;if(void 0===(n=r[e]))return this;if(n===t||n.listener===t)0==--this._eventsCount?this._events=Object.create(null):(delete r[e],r.removeListener&&this.emit("removeListener",e,n.listener||t));else if("function"!=typeof n){for(i=-1,o=n.length-1;o>=0;o--)if(n[o]===t||n[o].listener===t){a=n[o].listener,i=o;break}if(i<0)return this;0===i?n.shift():function(e,t){for(;t+1<e.length;t++)e[t]=e[t+1];e.pop()}(n,i),1===n.length&&(r[e]=n[0]),void 0!==r.removeListener&&this.emit("removeListener",e,a||t)}return this},fk.prototype.off=fk.prototype.removeListener,fk.prototype.removeAllListeners=function(e){var t,n,r;if(void 0===(n=this._events))return this;if(void 0===n.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==n[e]&&(0==--this._eventsCount?this._events=Object.create(null):delete n[e]),this;if(0===arguments.length){var i,o=Object.keys(n);for(r=0;r<o.length;++r)"removeListener"!==(i=o[r])&&this.removeAllListeners(i);return this.removeAllListeners("removeListener"),this._events=Object.create(null),this._eventsCount=0,this}if("function"==typeof(t=n[e]))this.removeListener(e,t);else if(void 0!==t)for(r=t.length-1;r>=0;r--)this.removeListener(e,t[r]);return this},fk.prototype.listeners=function(e){return wk(this,e,!0)},fk.prototype.rawListeners=function(e){return wk(this,e,!1)},fk.listenerCount=function(e,t){return"function"==typeof e.listenerCount?e.listenerCount(t):Ck.call(e,t)},fk.prototype.listenerCount=Ck,fk.prototype.eventNames=function(){return this._eventsCount>0?ck(this._events):[]};for(var Tk=dk.exports,Ek={},Ak={byteLength:function(e){var t=Wk(e),n=t[0],r=t[1];return 3*(n+r)/4-r},toByteArray:function(e){var t,n,r=Wk(e),i=r[0],o=r[1],a=new Rk(function(e,t,n){return 3*(t+n)/4-n}(0,i,o)),s=0,l=o>0?i-4:i;for(n=0;n<l;n+=4)t=zk[e.charCodeAt(n)]<<18|zk[e.charCodeAt(n+1)]<<12|zk[e.charCodeAt(n+2)]<<6|zk[e.charCodeAt(n+3)],a[s++]=t>>16&255,a[s++]=t>>8&255,a[s++]=255&t;2===o&&(t=zk[e.charCodeAt(n)]<<2|zk[e.charCodeAt(n+1)]>>4,a[s++]=255&t);1===o&&(t=zk[e.charCodeAt(n)]<<10|zk[e.charCodeAt(n+1)]<<4|zk[e.charCodeAt(n+2)]>>2,a[s++]=t>>8&255,a[s++]=255&t);return a},fromByteArray:function(e){for(var t,n=e.length,r=n%3,i=[],o=16383,a=0,s=n-r;a<s;a+=o)i.push(Mk(e,a,a+o>s?s:a+o));1===r?(t=e[n-1],i.push(_k[t>>2]+_k[t<<4&63]+"==")):2===r&&(t=(e[n-2]<<8)+e[n-1],i.push(_k[t>>10]+_k[t>>4&63]+_k[t<<2&63]+"="));return i.join("")}},_k=[],zk=[],Rk="undefined"!=typeof Uint8Array?Uint8Array:Array,Lk="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Pk=0,Bk=Lk.length;Pk<Bk;++Pk)_k[Pk]=Lk[Pk],zk[Lk.charCodeAt(Pk)]=Pk;function Wk(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function Mk(e,t,n){for(var r,i,o=[],a=t;a<n;a+=3)r=(e[a]<<16&16711680)+(e[a+1]<<8&65280)+(255&e[a+2]),o.push(_k[(i=r)>>18&63]+_k[i>>12&63]+_k[i>>6&63]+_k[63&i]);return o.join("")}zk["-".charCodeAt(0)]=62,zk["_".charCodeAt(0)]=63;var Uk={};
|
2 |
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */function Ik(){this.head=null,this.tail=null,this.length=0}Uk.read=function(e,t,n,r,i){var o,a,s=8*i-r-1,l=(1<<s)-1,u=l>>1,c=-7,d=n?i-1:0,p=n?-1:1,m=e[t+d];for(d+=p,o=m&(1<<-c)-1,m>>=-c,c+=s;c>0;o=256*o+e[t+d],d+=p,c-=8);for(a=o&(1<<-c)-1,o>>=-c,c+=r;c>0;a=256*a+e[t+d],d+=p,c-=8);if(0===o)o=1-u;else{if(o===l)return a?NaN:1/0*(m?-1:1);a+=Math.pow(2,r),o-=u}return(m?-1:1)*a*Math.pow(2,o-r)},Uk.write=function(e,t,n,r,i,o){var a,s,l,u=8*o-i-1,c=(1<<u)-1,d=c>>1,p=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,m=r?0:o-1,h=r?1:-1,f=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-a))<1&&(a--,l*=2),(t+=a+d>=1?p/l:p*Math.pow(2,1-d))*l>=2&&(a++,l/=2),a+d>=c?(s=0,a=c):a+d>=1?(s=(t*l-1)*Math.pow(2,i),a+=d):(s=t*Math.pow(2,d-1)*Math.pow(2,i),a=0));i>=8;e[n+m]=255&s,m+=h,s/=256,i-=8);for(a=a<<i|s,u+=i;u>0;e[n+m]=255&a,m+=h,a/=256,u-=8);e[n+m-h]|=128*f},
|
3 |
/*!
|
4 |
* The buffer module from node.js, for the browser.
|
5 |
*
|
6 |
* @author Feross Aboukhadijeh <https://feross.org>
|
7 |
* @license MIT
|
8 |
*/
|
|
|
|