Google Analytics for WordPress by MonsterInsights - Version 7.5.0

Version Description

= 7.0.0 =

This is a major release. Please back up your site before upgrading.

= 6.0.0 =

This is a major release. Please back up your site before upgrading.

Download this release

Release Info

Developer chriscct7
Plugin Icon 128x128 Google Analytics for WordPress by MonsterInsights
Version 7.5.0
Comparing to
See all releases

Code changes from version 7.4.2 to 7.5.0

README.md CHANGED
@@ -1,163 +1,163 @@
1
- # [MonsterInsights](https://www.monsterinsights.com) #
2
- The best Google Analytics Integration for WordPress. Period.<br />
3
- ![Plugin Version](https://img.shields.io/wordpress/plugin/v/google-analytics-for-wordpress.svg?maxAge=2592000)
4
- ![Total Downloads](https://img.shields.io/wordpress/plugin/dt/google-analytics-for-wordpress.svg?maxAge=2592000)
5
- ![WordPress Compatibility](https://img.shields.io/wordpress/v/google-analytics-for-wordpress.svg?maxAge=2592000)
6
- [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.2-8892BF.svg?style=flat-square)](https://php.net/)
7
- [![License](https://img.shields.io/badge/license-GPL--2.0%2B-red.svg)](https://github.com/awesomemotive/google-analytics-for-wordpress/blob/master/license.txt)
8
- [![Build Status](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/build.png?b=master)](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/build-status/master)
9
- [![Code Intelligence Status](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence)
10
- [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/?branch=master)
11
- [![Codacy Badge](https://api.codacy.com/project/badge/Grade/2944b6d77fa342f59764e79285da02bf)](https://www.codacy.com/app/chriscct7/google-analytics-for-wordpress?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=awesomemotive/google-analytics-for-wordpress&amp;utm_campaign=Badge_Grade)
12
-
13
- ## Contributions ##
14
- Anyone is welcome to contribute to MonsterInsights. Please read the [guidelines for contributing](https://github.com/awesomemotive/google-analytics-for-wordpress/blob/master/CONTRIBUTING.md) to this repository.
15
-
16
- There are various ways you can contribute:
17
-
18
- 1. Raise an [Issue](https://github.com/awesomemotive/google-analytics-for-wordpress/issues) on GitHub
19
- 2. Send us a Pull Request with your bug fixes and/or new features
20
- 3. Provide feedback and suggestions on [enhancements](https://github.com/awesomemotive/google-analytics-for-wordpress/issues?direction=desc&labels=Enhancement&page=1&sort=created&state=open)
21
-
22
- ## Bugs ##
23
- If you find an issue, let us know [here](https://github.com/awesomemotive/google-analytics-for-wordpress/issues?state=open)!
24
-
25
- ## Support ##
26
- This is a developer's portal for Google Analytics for WordPress by MonsterInsights and should not be used for support.
27
-
28
- For the lite version please use the wordpress.org [support forums](http://wordpress.org/support/plugin/google-analytics-for-wordpress).
29
-
30
- For users of the pro version, please use the support form, located on the Support tab of the My Account page of our website (note: you must be logged in & have
31
- an active license to use this form).
32
-
33
- Please report security issues to support@monsterinsights.com
34
-
35
- ## Backwards Compatibility Guidelines for Developers ##
36
- Note all functionality on the admin side of the plugin, including any php/js/css functions, class names, files (or filenames), hooks or otherwise will not be garunteed backwards compatibility as a general rule. Our admin code is subject to change at any time without warning. As MonsterInsights is a frontend focused plugin, we're not too sure why you'd be building stuff with our backend code anyways. If you for some reason do need to use our backend code (anything located in admin or enqueued only in admin), please contact us with your usecase so we can adjust this policy and ensure your code will not break in the future.
37
-
38
- For the frontend, we will not garuntee that the JS output will always be the same, nor can we, as we will adjust it over time to ensure continued Google Analytics compatibility and add features. However, we will garuntee the backwards compatibility of any hooks (filters or actions) found exclusively in the `lite/includes/frontend`, `pro/includes/frontend`, and `includes/frontend` directories to the best of our abilities. These hooks are documented as such. Any sort of future breakage will be announced well in advance of any changes, and we'll try to never break anyone's use of these hooks.
39
-
40
- ## Code Styling Documentation ##
41
-
42
- MonsterInsights adheres to the WordPress core PHP standard with a couple deviations noted below. See https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/ for information on documenting using this standard.
43
-
44
- ### Deviations ###
45
-
46
- - [Use `elseif`, not `else if`](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#use-elseif-not-else-if)
47
- - In MonsterInsights, use `else if` as we do not permit use of the colon form of `if else`, rendering Core's reason for this rule null. Colon forms of `if else` are harder for text editors such as Sublime Text to parse the opening and closing of conditional logic, and thus are not permitted.
48
- - Avoid regular expressions wherever possible
49
- - Regular expressions make it more difficult for new contributors to contribute. Thus whenever possible, regular expressions should be avoided.
50
- - [Yoda Conditions](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#yoda-conditions)
51
- - Code should never be written where a variable is being non-strictly compared to `true` or `false`. Use the appropriate way of writing the if statement. `if ( true == $var )` is equivolent to `if ( $var )` and the latter is much easier to read. However when strict comparison is required (`===`), one should use `if ( true === $var )`.
52
-
53
- ### Additions ###
54
-
55
- - Required: Code should be formatted using tabs, set to size of 4 spaces
56
- - 4 spaces per tab is the universally accepted default tab size. Tabs are easier to read through in most editors. Additionally, they take up less file space than 4 spaces.
57
- - Required: Filter and function names should use underscores, not dashes
58
- - For consistency, all filter and functions should use underscores not dashes or CamelCasing when seperating words. Additionally, all filter and (functions not in a class) names should be preceeded by `monsterinsights_`. The only exception to this is filters that need to be pro or lite only, in which case they should be proceeded by `monsterinsights_pro_` and `monsterinsights_lite_` respectively. Functions in a class should not be preceeded by `monsterinsights_`.
59
- - Required: Hooks tied to a function not within a class, will be tied to the function after the end of the function's declaration
60
- - Since MonsterInsights requires all functions have a function docbloc immediately preceeding the declaration of a function, to make it easier to locate hooks tied to a function, the `add_action` or `add_filter` call(s) to a function shall be placed immediately after the end of a function declaration. For functions in classes, this rule does not apply as it is impossible to do this.
61
- - Recommended: Use pre-increments (`++i`) instead of post-increments (`i++`)
62
- - The former is more performant as it does not require a copy of the variable to be made. This rule is not strictly enforced, and where it detracts from the readability or simplicity of code, it should be ignored.
63
- - Recommended: Where possible avoid stored data changes
64
- - This plugin has a lot of active installs. As such, whereever possible, we should try to avoid requiring an upgrade routine to convert stored data. Having a routine that adds data to make something more performant is fine as long as it either falls back to existing data, a smart default, or stops execution (in a controlled manner).
65
-
66
- ## Language Translations, Textdomains, and Internationalization ##
67
-
68
- MonsterInsights is translation ready. Thanks to an extensive team of .org translators, much of the plugin is available translated into a wide variety of languages.
69
-
70
- ### What Textdomain to Use ##
71
-
72
- In googleanalytics-premium.php and in the /pro/ folder only use `ga-premium`. Everywhere else use `google-analytics-for-wordpress`.
73
-
74
- MonsterInsights Lite uses WordPress.org provided translation files. MonsterInsights Pro loads the Lite translation files for files shared with Lite, and also loads Pro-only translation files for the Pro-only files. These files are created automatically from Pro translations. The latest copy of these files are pulled down and deployed with each Pro release.
75
-
76
- ### How To Contribute Translations ###
77
-
78
- Via the WordPress.org translation system located [here](https://www.wordpress.org/plugins/google-analytics-for-wordpress/translations/).
79
-
80
- ### I've found a non-translatable string that a user can see. What should I do? ###
81
-
82
- Please open a [issue](https://github.com/awesomemotive/google-analytics-for-wordpress/issues) for it.
83
-
84
- ## Automation and External Libraries ##
85
-
86
- A project goal of MonsterInsights, is to embrace automation whenever possible.
87
-
88
- The MonsterInsights project taskrunner standard is Robo, and tasks for this project can be found in RoboFile.php (not available to public), and executed via:
89
- robo {command}
90
-
91
- The entire deployment process, the thing that makes a new MonsterInsights version and releases it, is completely automated (no human interaction required) via Robo.
92
-
93
- The MonsterInsights project dependency management system is Composer. Please make sure you don't accidentily override our composer file in your PRs.
94
-
95
- We also use Node/NPM to manage packages used by our plugin primarily for admin styling and functionality.
96
-
97
- We generally will always use the latest stable version of any Composer or NPM dependency, pulled and packaged during our automated release process, when possible. Some reasons we might use an out of date package include (but are not limited to):
98
-
99
- - Lack of PHP version support
100
- - A bug in the current version of the dependency that affects our plugin's use of the dependency
101
- - Lack of time to test the current version of the dependency before the release of our plugin
102
- - A security issue, which may or may not be public
103
- - A compatibility issue between a dependency and a different dependency
104
- - A change in the dependency that affects MonsterInsights's ability to be conflict-free with other plugins
105
- - and so forth
106
-
107
- When possible, we will always override/prefix all CSS rules, JS functions, and PHP class and function names in the dependencies we include when possible. With ~2 million active installs, not doing so is not an option (too many badly coded plugins out there). This process is completely automated, and done on release, between the step when composer/npm brings down the latest dependency versions, and when the zip files are autogenerated.
108
-
109
- When possible, we will also minify all JS/CSS files from dependencies into a single file that gets used, except when there's compatibility issues, or if there's a bug in the parser of the CSS/JS minifier we use.
110
-
111
- ## Warning About Package Managing MonsterInsights ##
112
-
113
- We do not maintain, nor have any current plans, to allow our plugin to be installed via Composer, Packagist, or other similar systems.
114
-
115
- We also do not recommend you via direct code or a management system (such as via a GitHub repo download Composer package), assume our plugin, on any branch, will be the current and/or stable branch of our plugin.
116
-
117
- The only official and maintained source of our plugin is on WordPress.org for the Lite version, and from the My Account area (or via the automatic updates) for the Pro version.
118
-
119
- ## Development Checkout Procedure ##
120
-
121
- `composer install`
122
- `cd assets`
123
- `npm update`
124
-
125
- ## Constants ##
126
-
127
- The following constants can be defined in a wp-config file to allow for sections of MonsterInsights to be turned on and off across an installation base (and also for unit testing)
128
-
129
- ### Both Pro & Lite ###
130
-
131
- Plugin defined:
132
- - `MONSTERINSIGHTS_VERSION`
133
- - The version of pro/lite installed
134
- - `MONSTERINSIGHTS_PLUGIN_NAME`
135
- - The name of the plugin
136
- - `MONSTERINSIGHTS_PLUGIN_SLUG`
137
- - The slug of this plugin
138
- - `MONSTERINSIGHTS_PLUGIN_FILE`
139
- - The name of this file
140
- - `MONSTERINSIGHTS_PLUGIN_DIR`
141
- - Path to the MI base folder
142
- - `MONSTERINSIGHTS_PLUGIN_URL`
143
- - URL to the MI base folder
144
-
145
- User defined:
146
- - `MONSTERINSIGHTS_LICENSE_KEY`
147
- - MonsterInsights license key to use as the fallback (please use auth though not this, as you can do this on the network panel now on multisites)
148
- - `MONSTERINSIGHTS_FORCE_ACTIVATION`
149
- - Override the WP version activation check. Use at your own risk.
150
- - `MONSTERINSIGHTS_AIRPLANE_MODE`
151
- - For future use. Currently does nothing. Useful for local site testing.
152
- - `MONSTERINSIGHTS_GA_UA`
153
- - Don't use oAuth or the wizard, but hardcode to use UA. Note, this will not allow backend reports to work. You can also use the filter `monsterinsights_get_ua`.
154
- - `MONSTERINSIGHTS_MULTISITE_GA_UA`.
155
- - You can use this constant to force the same the same UA for all subsites of an MS install. Note, this will not allow backend reports to work.
156
-
157
- ### Lite Only ###
158
- - `MONSTERINSIGHTS_LITE_VERSION`
159
- - The version of lite installed
160
-
161
- ### Pro Only ###
162
- - `MONSTERINSIGHTS_PRO_VERSION`
163
  - The version of pro installed
1
+ # [MonsterInsights](https://www.monsterinsights.com) #
2
+ The best Google Analytics Integration for WordPress. Period.<br />
3
+ ![Plugin Version](https://img.shields.io/wordpress/plugin/v/google-analytics-for-wordpress.svg?maxAge=2592000)
4
+ ![Total Downloads](https://img.shields.io/wordpress/plugin/dt/google-analytics-for-wordpress.svg?maxAge=2592000)
5
+ ![WordPress Compatibility](https://img.shields.io/wordpress/v/google-analytics-for-wordpress.svg?maxAge=2592000)
6
+ [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.2-8892BF.svg?style=flat-square)](https://php.net/)
7
+ [![License](https://img.shields.io/badge/license-GPL--2.0%2B-red.svg)](https://github.com/awesomemotive/google-analytics-for-wordpress/blob/master/license.txt)
8
+ [![Build Status](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/build.png?b=master)](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/build-status/master)
9
+ [![Code Intelligence Status](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence)
10
+ [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/awesomemotive/google-analytics-for-wordpress/?branch=master)
11
+ [![Codacy Badge](https://api.codacy.com/project/badge/Grade/2944b6d77fa342f59764e79285da02bf)](https://www.codacy.com/app/chriscct7/google-analytics-for-wordpress?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=awesomemotive/google-analytics-for-wordpress&amp;utm_campaign=Badge_Grade)
12
+
13
+ ## Contributions ##
14
+ Anyone is welcome to contribute to MonsterInsights. Please read the [guidelines for contributing](https://github.com/awesomemotive/google-analytics-for-wordpress/blob/master/CONTRIBUTING.md) to this repository.
15
+
16
+ There are various ways you can contribute:
17
+
18
+ 1. Raise an [Issue](https://github.com/awesomemotive/google-analytics-for-wordpress/issues) on GitHub
19
+ 2. Send us a Pull Request with your bug fixes and/or new features
20
+ 3. Provide feedback and suggestions on [enhancements](https://github.com/awesomemotive/google-analytics-for-wordpress/issues?direction=desc&labels=Enhancement&page=1&sort=created&state=open)
21
+
22
+ ## Bugs ##
23
+ If you find an issue, let us know [here](https://github.com/awesomemotive/google-analytics-for-wordpress/issues?state=open)!
24
+
25
+ ## Support ##
26
+ This is a developer's portal for Google Analytics for WordPress by MonsterInsights and should not be used for support.
27
+
28
+ For the lite version please use monsterinsights.com [Lite support](https://www.monsterinsights.com/lite-support/).
29
+
30
+ For users of the pro version, please use the support form, located on the Support tab of the My Account page of our website (note: you must be logged in & have
31
+ an active license to use this form).
32
+
33
+ Please report security issues to support@monsterinsights.com
34
+
35
+ ## Backwards Compatibility Guidelines for Developers ##
36
+ Note all functionality on the admin side of the plugin, including any php/js/css functions, class names, files (or filenames), hooks or otherwise will not be garunteed backwards compatibility as a general rule. Our admin code is subject to change at any time without warning. As MonsterInsights is a frontend focused plugin, we're not too sure why you'd be building stuff with our backend code anyways. If you for some reason do need to use our backend code (anything located in admin or enqueued only in admin), please contact us with your usecase so we can adjust this policy and ensure your code will not break in the future.
37
+
38
+ For the frontend, we will not garuntee that the JS output will always be the same, nor can we, as we will adjust it over time to ensure continued Google Analytics compatibility and add features. However, we will garuntee the backwards compatibility of any hooks (filters or actions) found exclusively in the `lite/includes/frontend`, `pro/includes/frontend`, and `includes/frontend` directories to the best of our abilities. These hooks are documented as such. Any sort of future breakage will be announced well in advance of any changes, and we'll try to never break anyone's use of these hooks.
39
+
40
+ ## Code Styling Documentation ##
41
+
42
+ MonsterInsights adheres to the WordPress core PHP standard with a couple deviations noted below. See https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/ for information on documenting using this standard.
43
+
44
+ ### Deviations ###
45
+
46
+ - [Use `elseif`, not `else if`](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#use-elseif-not-else-if)
47
+ - In MonsterInsights, use `else if` as we do not permit use of the colon form of `if else`, rendering Core's reason for this rule null. Colon forms of `if else` are harder for text editors such as Sublime Text to parse the opening and closing of conditional logic, and thus are not permitted.
48
+ - Avoid regular expressions wherever possible
49
+ - Regular expressions make it more difficult for new contributors to contribute. Thus whenever possible, regular expressions should be avoided.
50
+ - [Yoda Conditions](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/#yoda-conditions)
51
+ - Code should never be written where a variable is being non-strictly compared to `true` or `false`. Use the appropriate way of writing the if statement. `if ( true == $var )` is equivolent to `if ( $var )` and the latter is much easier to read. However when strict comparison is required (`===`), one should use `if ( true === $var )`.
52
+
53
+ ### Additions ###
54
+
55
+ - Required: Code should be formatted using tabs, set to size of 4 spaces
56
+ - 4 spaces per tab is the universally accepted default tab size. Tabs are easier to read through in most editors. Additionally, they take up less file space than 4 spaces.
57
+ - Required: Filter and function names should use underscores, not dashes
58
+ - For consistency, all filter and functions should use underscores not dashes or CamelCasing when seperating words. Additionally, all filter and (functions not in a class) names should be preceeded by `monsterinsights_`. The only exception to this is filters that need to be pro or lite only, in which case they should be proceeded by `monsterinsights_pro_` and `monsterinsights_lite_` respectively. Functions in a class should not be preceeded by `monsterinsights_`.
59
+ - Required: Hooks tied to a function not within a class, will be tied to the function after the end of the function's declaration
60
+ - Since MonsterInsights requires all functions have a function docbloc immediately preceeding the declaration of a function, to make it easier to locate hooks tied to a function, the `add_action` or `add_filter` call(s) to a function shall be placed immediately after the end of a function declaration. For functions in classes, this rule does not apply as it is impossible to do this.
61
+ - Recommended: Use pre-increments (`++i`) instead of post-increments (`i++`)
62
+ - The former is more performant as it does not require a copy of the variable to be made. This rule is not strictly enforced, and where it detracts from the readability or simplicity of code, it should be ignored.
63
+ - Recommended: Where possible avoid stored data changes
64
+ - This plugin has a lot of active installs. As such, whereever possible, we should try to avoid requiring an upgrade routine to convert stored data. Having a routine that adds data to make something more performant is fine as long as it either falls back to existing data, a smart default, or stops execution (in a controlled manner).
65
+
66
+ ## Language Translations, Textdomains, and Internationalization ##
67
+
68
+ MonsterInsights is translation ready. Thanks to an extensive team of .org translators, much of the plugin is available translated into a wide variety of languages.
69
+
70
+ ### What Textdomain to Use ##
71
+
72
+ In googleanalytics-premium.php and in the /pro/ folder only use `ga-premium`. Everywhere else use `google-analytics-for-wordpress`.
73
+
74
+ MonsterInsights Lite uses WordPress.org provided translation files. MonsterInsights Pro loads the Lite translation files for files shared with Lite, and also loads Pro-only translation files for the Pro-only files. These files are created automatically from Pro translations. The latest copy of these files are pulled down and deployed with each Pro release.
75
+
76
+ ### How To Contribute Translations ###
77
+
78
+ Via the WordPress.org translation system located [here](https://www.wordpress.org/plugins/google-analytics-for-wordpress/translations/).
79
+
80
+ ### I've found a non-translatable string that a user can see. What should I do? ###
81
+
82
+ Please open a [issue](https://github.com/awesomemotive/google-analytics-for-wordpress/issues) for it.
83
+
84
+ ## Automation and External Libraries ##
85
+
86
+ A project goal of MonsterInsights, is to embrace automation whenever possible.
87
+
88
+ The MonsterInsights project taskrunner standard is Robo, and tasks for this project can be found in RoboFile.php (not available to public), and executed via:
89
+ robo {command}
90
+
91
+ The entire deployment process, the thing that makes a new MonsterInsights version and releases it, is completely automated (no human interaction required) via Robo.
92
+
93
+ The MonsterInsights project dependency management system is Composer. Please make sure you don't accidentily override our composer file in your PRs.
94
+
95
+ We also use Node/NPM to manage packages used by our plugin primarily for admin styling and functionality.
96
+
97
+ We generally will always use the latest stable version of any Composer or NPM dependency, pulled and packaged during our automated release process, when possible. Some reasons we might use an out of date package include (but are not limited to):
98
+
99
+ - Lack of PHP version support
100
+ - A bug in the current version of the dependency that affects our plugin's use of the dependency
101
+ - Lack of time to test the current version of the dependency before the release of our plugin
102
+ - A security issue, which may or may not be public
103
+ - A compatibility issue between a dependency and a different dependency
104
+ - A change in the dependency that affects MonsterInsights's ability to be conflict-free with other plugins
105
+ - and so forth
106
+
107
+ When possible, we will always override/prefix all CSS rules, JS functions, and PHP class and function names in the dependencies we include when possible. With ~2 million active installs, not doing so is not an option (too many badly coded plugins out there). This process is completely automated, and done on release, between the step when composer/npm brings down the latest dependency versions, and when the zip files are autogenerated.
108
+
109
+ When possible, we will also minify all JS/CSS files from dependencies into a single file that gets used, except when there's compatibility issues, or if there's a bug in the parser of the CSS/JS minifier we use.
110
+
111
+ ## Warning About Package Managing MonsterInsights ##
112
+
113
+ We do not maintain, nor have any current plans, to allow our plugin to be installed via Composer, Packagist, or other similar systems.
114
+
115
+ We also do not recommend you via direct code or a management system (such as via a GitHub repo download Composer package), assume our plugin, on any branch, will be the current and/or stable branch of our plugin.
116
+
117
+ The only official and maintained source of our plugin is on WordPress.org for the Lite version, and from the My Account area (or via the automatic updates) for the Pro version.
118
+
119
+ ## Development Checkout Procedure ##
120
+
121
+ `composer install`
122
+ `cd assets`
123
+ `npm update`
124
+
125
+ ## Constants ##
126
+
127
+ The following constants can be defined in a wp-config file to allow for sections of MonsterInsights to be turned on and off across an installation base (and also for unit testing)
128
+
129
+ ### Both Pro & Lite ###
130
+
131
+ Plugin defined:
132
+ - `MONSTERINSIGHTS_VERSION`
133
+ - The version of pro/lite installed
134
+ - `MONSTERINSIGHTS_PLUGIN_NAME`
135
+ - The name of the plugin
136
+ - `MONSTERINSIGHTS_PLUGIN_SLUG`
137
+ - The slug of this plugin
138
+ - `MONSTERINSIGHTS_PLUGIN_FILE`
139
+ - The name of this file
140
+ - `MONSTERINSIGHTS_PLUGIN_DIR`
141
+ - Path to the MI base folder
142
+ - `MONSTERINSIGHTS_PLUGIN_URL`
143
+ - URL to the MI base folder
144
+
145
+ User defined:
146
+ - `MONSTERINSIGHTS_LICENSE_KEY`
147
+ - MonsterInsights license key to use as the fallback (please use auth though not this, as you can do this on the network panel now on multisites)
148
+ - `MONSTERINSIGHTS_FORCE_ACTIVATION`
149
+ - Override the WP version activation check. Use at your own risk.
150
+ - `MONSTERINSIGHTS_AIRPLANE_MODE`
151
+ - For future use. Currently does nothing. Useful for local site testing.
152
+ - `MONSTERINSIGHTS_GA_UA`
153
+ - Don't use oAuth or the wizard, but hardcode to use UA. Note, this will not allow backend reports to work. You can also use the filter `monsterinsights_get_ua`.
154
+ - `MONSTERINSIGHTS_MULTISITE_GA_UA`.
155
+ - You can use this constant to force the same the same UA for all subsites of an MS install. Note, this will not allow backend reports to work.
156
+
157
+ ### Lite Only ###
158
+ - `MONSTERINSIGHTS_LITE_VERSION`
159
+ - The version of lite installed
160
+
161
+ ### Pro Only ###
162
+ - `MONSTERINSIGHTS_PRO_VERSION`
163
  - The version of pro installed
assets/css/admin-common.css CHANGED
@@ -1,56 +1,56 @@
1
- #toplevel_page_monsterinsights_reports .wp-menu-image img,
2
- #toplevel_page_monsterinsights_settings .wp-menu-image img,
3
- #toplevel_page_monsterinsights_network .wp-menu-image img {
4
- width: 18px;
5
- height: 18px;
6
- padding-top: 7px;
7
- }
8
-
9
- .monsterinsights-wooedd-upsell-left {
10
- width: 50%;
11
- display: table-cell;
12
- float: left;
13
- }
14
-
15
- .monsterinsights-wooedd-upsell-right {
16
- width: 50%;
17
- display: table-cell;
18
- float: left;
19
- }
20
-
21
- .monsterinsights-wooedd-upsell-image {
22
- width: 100%;
23
- height: auto;
24
- padding: 20px;
25
- }
26
-
27
- .monsterinsights-wooedd-upsell-image-small {
28
- display: none;
29
- }
30
-
31
- .monsterinsights-wooedd-upsell-row {
32
- display: table;
33
- }
34
-
35
- .monsterinsights-wooedd-upsell-left p {
36
- margin: 1em 0;
37
- font-size: 16px;
38
- }
39
-
40
- @media (max-width: 900px) {
41
- .monsterinsights-wooedd-upsell-left {
42
- width: 100%;
43
- }
44
-
45
- .monsterinsights-wooedd-upsell-right {
46
- display: none;
47
- }
48
-
49
- .monsterinsights-wooedd-upsell-image-small {
50
- display: block;
51
- }
52
-
53
- .monsterinsights-wooedd-upsell-image-large {
54
- display: none;
55
- }
56
  }
1
+ #toplevel_page_monsterinsights_reports .wp-menu-image img,
2
+ #toplevel_page_monsterinsights_settings .wp-menu-image img,
3
+ #toplevel_page_monsterinsights_network .wp-menu-image img {
4
+ width: 18px;
5
+ height: 18px;
6
+ padding-top: 7px;
7
+ }
8
+
9
+ .monsterinsights-wooedd-upsell-left {
10
+ width: 50%;
11
+ display: table-cell;
12
+ float: left;
13
+ }
14
+
15
+ .monsterinsights-wooedd-upsell-right {
16
+ width: 50%;
17
+ display: table-cell;
18
+ float: left;
19
+ }
20
+
21
+ .monsterinsights-wooedd-upsell-image {
22
+ width: 100%;
23
+ height: auto;
24
+ padding: 20px;
25
+ }
26
+
27
+ .monsterinsights-wooedd-upsell-image-small {
28
+ display: none;
29
+ }
30
+
31
+ .monsterinsights-wooedd-upsell-row {
32
+ display: table;
33
+ }
34
+
35
+ .monsterinsights-wooedd-upsell-left p {
36
+ margin: 1em 0;
37
+ font-size: 16px;
38
+ }
39
+
40
+ @media (max-width: 900px) {
41
+ .monsterinsights-wooedd-upsell-left {
42
+ width: 100%;
43
+ }
44
+
45
+ .monsterinsights-wooedd-upsell-right {
46
+ display: none;
47
+ }
48
+
49
+ .monsterinsights-wooedd-upsell-image-small {
50
+ display: block;
51
+ }
52
+
53
+ .monsterinsights-wooedd-upsell-image-large {
54
+ display: none;
55
+ }
56
  }
assets/css/admin-rtl.css DELETED
@@ -1,92 +0,0 @@
1
- body.monsterinsights-reporting-page {
2
- direction: rtl;
3
- text-align: right;
4
- unicode-bidi: embed;
5
- }
6
-
7
- body.monsterinsights_page #wpcontent {
8
- padding-right: 0;
9
- }
10
-
11
- .monsterinsights-nav-item,
12
- .monsterinsights-reports-action-bar-title,
13
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,
14
- body.monsterinsights-reporting-page .monsterinsights-user-icon,
15
- body.monsterinsights-reporting-page .monsterinsights-eye-icon,
16
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev {
17
- float: right;
18
- }
19
-
20
- .monsterinsights-reports-action-bar-actions,
21
- .monsterinsights-header-mascot,
22
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare,
23
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip,
24
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,
25
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key,
26
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number,
27
- body.monsterinsights-reporting-page .monsterinsights-reports-list-number {
28
- float: left;
29
- }
30
-
31
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,
32
- body.monsterinsights-reporting-page .monsterinsights-user-icon,
33
- body.monsterinsights-reporting-page .monsterinsights-eye-icon {
34
- text-align: right !important;
35
- }
36
-
37
- .monsterinsights-header-mascot {
38
- left: 0;
39
- margin-left: 20px;
40
- margin-right: 0;
41
- right: auto;
42
- }
43
-
44
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip {
45
- left: 7px;
46
- right: auto;
47
- text-align: right;
48
- }
49
-
50
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip {
51
- left: 30px;
52
- right: auto;
53
- }
54
-
55
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip {
56
- left: 20px;
57
- right: auto;
58
- }
59
-
60
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,
61
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key {
62
- left: 50px;
63
- right: auto;
64
- }
65
-
66
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number {
67
- margin-left: 0;
68
- margin-right: 30px;
69
- }
70
-
71
- #monsterinsights-report-top-page-list .monsterinsights-reports-list-text {
72
- margin-left: 0;
73
- margin-right: 25px;
74
- }
75
-
76
- .monsterinsights-bootstrap-container .btn-group > .btn, .monsterinsights-bootstrap-container .btn-group-vertical > .btn {
77
- float: right;
78
- }
79
-
80
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten {
81
- border-radius: 0 4px 4px 0 !important;
82
- margin-right: 20px;
83
- }
84
-
85
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty {
86
- border-radius: 4px 0 0 4px !important;
87
- margin-right: 0 !important;
88
- }
89
-
90
- .monsterinsights-header-title {
91
- padding-right: 20px;
92
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/admin-rtl.min.css DELETED
@@ -1 +0,0 @@
1
- body.monsterinsights-reporting-page{direction:rtl;text-align:right;unicode-bidi:embed}body.monsterinsights_page #wpcontent{padding-right:0}.monsterinsights-nav-item,.monsterinsights-reports-action-bar-title,body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,body.monsterinsights-reporting-page .monsterinsights-user-icon,body.monsterinsights-reporting-page .monsterinsights-eye-icon,body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev{float:right}.monsterinsights-reports-action-bar-actions,.monsterinsights-header-mascot,body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare,body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip,body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key,body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number,body.monsterinsights-reporting-page .monsterinsights-reports-list-number{float:left}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,body.monsterinsights-reporting-page .monsterinsights-user-icon,body.monsterinsights-reporting-page .monsterinsights-eye-icon{text-align:right !important}.monsterinsights-header-mascot{left:0;margin-left:20px;margin-right:0;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{left:7px;right:auto;text-align:right}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip{left:30px;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip{left:20px;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{left:50px;right:auto}body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{margin-left:0;margin-right:30px}#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{margin-left:0;margin-right:25px}.monsterinsights-bootstrap-container .btn-group > .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn{float:right}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius:0 4px 4px 0 !important;margin-right:20px}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius:4px 0 0 4px !important;margin-right:0 !important}.monsterinsights-header-title{padding-right:20px}
 
assets/css/admin.css DELETED
@@ -1,892 +0,0 @@
1
- /**
2
- * Developer's Notice:
3
- *
4
- * Note: CSS in this file (and this file itself) is not guaranteed backwards compatibility. Rules can be added, changed or removed at any time without notice.
5
- * For more information see the `Backwards Compatibility Guidelines for Developers` section of the README.md file.
6
- **/
7
- /** Generic MonsterInsights Styles **/
8
- /** Font from FortAwesome project. */
9
- @font-face{font-family: 'Misettings';src: url('../fonts/icons.eot');src: url('../fonts/icons.eot?#iefix') format('embedded-opentype'), url('../fonts/icons.woff2') format('woff2'),url('../fonts/icons.woff') format('woff'),url('../fonts/icons.ttf') format('truetype'),url('../fonts/icons.otf') format('opentype');font-weight: 400;font-style: normal;}
10
-
11
- /** Hide other plugin's error messages on our pages */
12
- body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:20px;margin-right:20px}
13
- body.monsterinsights_page .update-nag{margin-left:20px;margin-bottom:20px}
14
-
15
- /** Sizes/Layout **/
16
- body.monsterinsights_page #wpcontent{padding-left:0}
17
- body.monsterinsights_page div.wrap{margin:0 20px}
18
- body.monsterinsights_page #wpbody,body.monsterinsights_page #wpfooter,body.monsterinsights_page, body.monsterinsights_page #wpwrap{background-color:#fff}
19
- @media (max-width: 599px) {
20
- body.monsterinsights_page #wpbody {padding-top: 0;}
21
- }
22
-
23
- .monsterinsights-grid{margin:0 0 50px}
24
- .monsterinsights-grid:after{content:"";display:table;clear:both}
25
- .monsterinsights-col-1-1{width:100%}
26
- .monsterinsights-col-7-8{width:87.5%}
27
- .monsterinsights-col-3-4{width:75%}
28
- .monsterinsights-col-2-3{width:66.66%}
29
- .monsterinsights-col-1-2{width:50%}
30
- .monsterinsights-col-1-3{width:33.33%}
31
- .monsterinsights-col-1-4{width:25%}
32
- .monsterinsights-col-1-8{width:12.5%}
33
- [class*="monsterinsights-col-"]{float:left;padding-right:20px;box-sizing:border-box}
34
- .monsterinsights-grid [class*="monsterinsights-col-"]:last-of-type{padding-right:0}
35
-
36
- /** Special Classes */
37
- .monsterinsights-hideme{display:none;visibility: hidden;}
38
- .monsterinsights-no-text-decoration{text-decoration:none}
39
- .monsterinsights-required-indicator{color: #b94a48;display: inline;}
40
- .monsterinsights-mega-blur {display:block; -webkit-filter: blur(20px); -moz-filter: blur(15px);-o-filter: blur(15px);-ms-filter: blur(15px);filter: blur(15px);opacity: 0.95;}
41
-
42
- /** Clearfixes */
43
- .monsterinsights-clear{clear:both}
44
- .monsterinsights-clear:after{clear:both;content:'.';display:block;height:0;line-height:0;overflow:auto;visibility:hidden;zoom:1}
45
- .monsterinsights-clearfix{content:"";display:table;clear:both}
46
- .monsterinsights-clearfix-after:after{content:"";display:table;clear:both}
47
-
48
- /* Tooltips */
49
- .monsterinsights-help-tip{cursor:help}
50
- .monsterinsights-ui-tooltip{background:#eceff6 !important;border-width:1px!important;border-radius:3px!important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5)!important;color:#000 !important;max-width:300px!important;padding:7px!important;text-rendering:optimizeLegibility;text-shadow:none!important;z-index:9999!important}
51
-
52
- /** Buttons */
53
- body.monsterinsights_page .button{-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:0 16px 1px;height:33px;line-height:30px;text-decoration:none;text-shadow:none;font-weight:600;-webkit-box-shadow:none;box-shadow:none}
54
- body.monsterinsights_page .button.button-small{padding:0 8px 1px;line-height:22px;height:24px}
55
- body.monsterinsights_page .button.button-x-large{padding:0 32px 1px;line-height:48px;height:50px;font-size:18px;text-transform:uppercase}
56
- body.monsterinsights_page .button.show-settings{height:auto}
57
- body.monsterinsights_page .button.button-primary{background:#47c1a5;border-color:#3ca489;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #3ca489;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#47c1a5}
58
- body.monsterinsights_page .button.button-primary:hover{background:#3ba389;border-color:#3ba389;color:#fff}
59
- body.monsterinsights_page .button.button-action{background:#479be7;border-color:#4182bf;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #4182bf;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#479be7}
60
- body.monsterinsights_page .button.button-action:hover{background:#4183bf;border-color:#4183bf;color:#fff}
61
- body.monsterinsights_page .button.button-danger{background:#fff;border-color:#e3e9ed;-webkit-box-shadow:none;box-shadow:none;color:#000;border:1px solid #e3e9ed;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff}
62
- body.monsterinsights_page .button.button-danger:hover{background:#e3e9ed;border-color:#e3e9ed;color:#000}
63
- @media (min-width: 600px) and (max-width: 767px) {
64
- body.monsterinsights_page .button{margin-top:10px}
65
- }
66
- body.monsterinsights_page .monsterinsights-action-button{align-items:flex-start;background-color:#eee;background-image:linear-gradient(#fcfcfc,#eee);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-sizing:border-box;color:#333;cursor:pointer;display:block;float:left;font-family:Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";font-size:13px;font-stretch:normal;font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-weight:700;height:33.6px;letter-spacing:normal;line-height:20px;overflow-x:visible;overflow-y:visible;position:relative;text-align:center;text-indent:0;text-rendering:auto;text-shadow:none;text-size-adjust:100%;text-transform:none;user-select:none;vertical-align:middle;white-space:nowrap;word-spacing:0;writing-mode:horizontal-tb;-webkit-appearance:none;-webkit-border-image:none;border-color:#d5d5d5;border-radius:3px;border-style:solid;border-width:.8px;margin:0;padding:6px 12px}
67
-
68
- /** Clipboard & Code */
69
- div.monsterinsights-code{position:relative;margin:0 0 10px}
70
- div.monsterinsights-code:after{content:"";display:table;clear:both}
71
- div.monsterinsights-code code{display:block;font-size:11px;padding:5px 20px 5px 5px}
72
- a.monsterinsights-clipboard{position:absolute;top:5px;right:5px;color:#23282d;width:33px;padding:0}
73
- a.monsterinsights-clipboard span{display:block;text-indent:-9999px}
74
-
75
- /* Page Header */
76
- /* Banner + Background */
77
- #monsterinsights-header-temp{position:relative;margin:0}
78
- #monsterinsights-header{background-color:#f9fbff;background-repeat:no-repeat;margin:0;padding: 17px 20px;}
79
-
80
- /* Title + Mascot */
81
- .monsterinsights-header-title{margin: 0; display: block;}
82
- .monsterinsights-header-mascot{float:right;position:absolute;top:0;right:0;margin-top:10px;margin-right:20px;z-index:100}
83
-
84
- /* Media Queries */
85
- @media (max-width: 610px) {
86
- .monsterinsights-header-mascot{display:none}
87
- #monsterinsights-addon-heading form{margin-right:0}
88
- }
89
-
90
- /* Messages */
91
- /* Generic */
92
- .monsterinsights-notice{border:1px solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;box-sizing:border-box;display:table; width: 100%; margin: 10px 0px;}
93
- .monsterinsights-notice:after{content:"";display:table;clear:both}
94
- .monsterinsights-notice-icon{padding:20px;box-sizing:border-box;width:60px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius: 0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align: middle;text-align: center;}
95
- .monsterinsights-notice-text{color:#434751;font-size:16px;font-weight:700;padding: 20px;box-sizing:border-box;word-wrap:break-word;display:table-cell;position: relative;vertical-align: middle;}
96
- body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:0;margin-right:0}
97
- .monsterinsights-notice .button { margin: 0px 0px 1em 0px }
98
- .monsterinsights-notice-message{margin:0px;}
99
-
100
- /* Alert */
101
- .monsterinsights-alert-notice-icon{background-color:#fdbf2f;}
102
- .monsterinsights-alert-notice-icon:before{content: '\f017';}
103
- .monsterinsights-alert-notice{border-color:#fdbf2f;background-color:rgba(253,192,47,0.1)}
104
-
105
- /* Error */
106
- .monsterinsights-error-notice-icon{background-color:#df4228;}
107
- .monsterinsights-error-notice-icon:before{content: '\f014';}
108
- .monsterinsights-error-notice{border-color:#df4228;background-color:rgba(224,66,40,0.1)}
109
-
110
- /* Info */
111
- .monsterinsights-info-notice-icon{background-color:#479be7;}
112
- .monsterinsights-info-notice-icon:before{content: '\f016';}
113
- .monsterinsights-info-notice{border-color:#479be7;background-color:rgba(72,155,232,0.1)}
114
-
115
- /* Success */
116
- .monsterinsights-success-notice-icon{background-color:#47c1a5;}
117
- .monsterinsights-success-notice-icon:before{content: '\f015';}
118
- .monsterinsights-success-notice{border-color:#47c1a5;background-color:rgba(71,194,165,0.1)}
119
-
120
- /* Dismiss Notice */
121
- .monsterinsights-notice p.monsterinsights-intro{border:none!important;margin:0 0 20px!important;padding:0!important}
122
- .monsterinsights-notice .notice-dismiss{top:10px;right:10px;color:#000}
123
- .monsterinsights-notice .notice-dismiss:before{color:#000;width:26px;height:26px;font-size:22px}
124
-
125
- /** Other */
126
-
127
-
128
- /** MonsterInsights Icons **/
129
- /** Generic Icons Styles **/
130
- [class*='monstericon-']:before{display:inline-block;font-family:'Misettings';font-style:normal;font-weight:400;line-height:50px;padding-right:12px;padding-left:5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle;font-size: 20px}
131
- [class*='monstericon-'].monsterinsights-active:before{color:#479be7}
132
- [class*='monstericon-']:active:before{color:#479be7}
133
- [class*='monstericon-']:hover:before{color:#479be7}
134
-
135
-
136
-
137
- /** Defined Icons **/
138
- .monstericon-ads:before{content:'\0041'}
139
- .monstericon-eucompliance:before{content:'\004f'}
140
- .monstericon-affiliates:before{content:'\0042'}
141
- .monstericon-compatibility:before{content:'\0043'}
142
- .monstericon-demographics:before{content:'\0044'}
143
- .monstericon-dimensions:before{content:'\0045'}
144
- .monstericon-files:before{content:'\0046'}
145
- .monstericon-ecommerce:before{content:'\0047'}
146
- .monstericon-engagement:before{content:'\0048'}
147
- .monstericon-forms:before{content:'\0049'}
148
- .monstericon-links:before{content:'\004a'}
149
- .monstericon-memberships:before{content:'\004b'}
150
- .monstericon-notifications:before{content:'\004c'}
151
- .monstericon-performance:before{content:'\004d'}
152
- .monstericon-permissions:before{content:'\004e'}
153
- .monstericon-reporting:before{content:'\004f'}
154
- .monstericon-social:before{content:'\0050'}
155
- .monstericon-media:before{content:'\0051'}
156
- .monstericon-amp:before{content:'\f000'}
157
- .monstericon-goptimize:before{content:'\f002'}
158
- .monstericon-fbia:before{content:'\f001'}
159
- .monstericon-bounce:before{content:'\0051'} /* Todo: Update with icons from Jonathon */
160
- .monstericon-times-circle:before{content:'\f01b'}
161
- .monstericon-info-circle-btm:before{content:'\f01c'}
162
- .monstericon-info-circle-regular:before{content:'\f01e'}
163
- .monstericon-arrow-right:before{content:'\f01d'}
164
- .monstericon-star:before{content: '\f025';}
165
- .monsterinsights-upgrade-menu-icon{float:right;color:#7f8591;font-size:10px;font-weight:700;text-transform:uppercase;line-height:1;display:inline-block;padding:6px 12px;background-color:#fff;border-radius:3px;margin-right:18px;margin-top:15px}
166
- .monsterinsights-main-nav-item.monsterinsights-active .monsterinsights-upgrade-menu-icon,.monsterinsights-main-nav-item:hover .monsterinsights-upgrade-menu-icon{background-color:#f7f8fa}
167
-
168
- /* Icon Media Queries **/
169
- @media only screen and (max-width: 767px) {
170
- [class*='monstericon-']:before{ display: none !important;content: '';}
171
- span.monsterinsights-upgrade-menu-icon{display:none}
172
- }
173
-
174
- /** Navigation Styles **/
175
- /** Nav Container **/
176
- /** Generic **/
177
- .monsterinsights-nav-container{border:0;background-color:#fff;margin:0;display:table;width:100%}
178
- h1.monsterinsights-nav-container { padding: 0px;}
179
-
180
- /** Main Nav Container **/
181
- .monsterinsights-main-nav-container{ height:50px;}
182
-
183
- /** Nav Item **/
184
- /** Generic **/
185
- .monsterinsights-nav-item{border:none;float:left;text-decoration: none;}
186
- .monsterinsights-nav-item:focus,.monsterinsights-nav-item:active{box-shadow: none;}
187
-
188
- /** Main Nav Item **/
189
- .monsterinsights-main-nav-item{background-color:#fff;color:#d8d7e4;background:none;line-height:50px;font-size:13px;padding:0 15px;margin:0;width:100px;text-align:center}
190
- .monsterinsights-main-nav-item.monsterinsights-spacing-item{width:5px;padding-left: 0;}
191
- .monsterinsights-main-nav-item.monsterinsights-active{color:#434751;opacity:1;background-color:#fff}
192
- #monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:hover:not(.monsterinsights-active),#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:active:not(.monsterinsights-active){color:#fff;opacity:1}
193
- .monsterinsights-main-nav-item.monsterinsights-active{border:0 !important}
194
- #monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:focus:not(.monsterinsights-active):not(.monsterinsights-spacing-item){color:#fff;}
195
-
196
- /** Nav Tab Container **/
197
- /** Generic **/
198
- .monsterinsights-sub-nav-area { display: flex;} /* Holds Sub nav menu and tabs */
199
- .monsterinsights-nav-tabs{}
200
-
201
- /** Main Nav Tab Container **/
202
- .monsterinsights-main-nav-tabs{}
203
-
204
- /** Nav Tab **/
205
- /** Generic **/
206
- .monsterinsights-nav-tab{display:none;}
207
- .monsterinsights-nav-tab.monsterinsights-active{display:block}
208
- .monsterinsights-nav-tab .description{color:#7f8592;font-size:13px;margin-top:10px}
209
-
210
- /** Main Nav Tab **/
211
- .monsterinsights-main-nav-tab{}
212
- .monsterinsights-main-nav-tab .form-table tr{border-bottom:1px solid #ddd}
213
- .monsterinsights-main-nav-tab .form-table tr.no-bottom-border{border-bottom:0}
214
-
215
- /** Nav Media Queries **/
216
- .monsterinsights-main-nav-tabs .form-table th,.monsterinsights-main-nav-tabs .form-table td {padding-top: 40px;padding-bottom: 40px;}
217
- .monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td { padding-top: 40px;}
218
- @media (min-width: 768px) and (max-width: 991px) {
219
- .monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-right:0!important}
220
- .monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-right:0}
221
- }
222
- @media (min-width: 600px) and (max-width: 767px) {
223
- .monsterinsights-main-nav-tabs .form-table th, .monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-bottom:10px;padding-right:0!important}
224
- .monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-right:0}
225
- }
226
- @media only screen and (max-width: 610px) {
227
- .monsterinsights-main-nav-tabs .form-table th, .monsterinsights-sub-nav-tabs .form-table th{padding-top:20px;padding-bottom:10px;padding-right:0px}
228
- .monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-bottom:20px;padding-right:0px}
229
- .monsterinsights-main-nav-item{width:auto}
230
- .monsterinsights-main-nav-item.monsterinsights-spacing-item{display:none}
231
- h1.monsterinsights-nav-container { padding: 0px; min-width: 150px;}
232
- .monsterinsights-sub-nav-tabs th{width:auto}
233
- }
234
-
235
- /** Settings Page Styles **/
236
- /** Generic Settings Page Styles **/
237
- div#monsterinsights-settings-sub-pages{padding-left:20px;background-color:#FFF;padding-right:20px}
238
- #monsterinsights-settings-pages{padding:20px 0}
239
- .monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}
240
-
241
- /** Reports Page Styles **/
242
- /** Page styles **/
243
- body.monsterinsights-reporting-page #wpbody, body.monsterinsights-reporting-page #wpfooter, body.monsterinsights-reporting-page #wpcontent, body.monsterinsights-reporting-page #wpwrap,
244
- body.insights_page_monsterinsights_tools #wpbody, body.insights_page_monsterinsights_tools #wpfooter, body.insights_page_monsterinsights_tools #wpcontent, body.insights_page_monsterinsights_tools #wpwrap,
245
- body.insights_page_monsterinsights_addons #wpbody, body.insights_page_monsterinsights_addons #wpfooter, body.insights_page_monsterinsights_addons #wpcontent, body.insights_page_monsterinsights_addons #wpwrap { background-color: #f3f6ff;}
246
- @media screen and (max-width: 772px) {
247
- body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item, body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active) { width:100%; margin:0px;border-bottom: 2px solid #fff;}
248
- body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active) {border-bottom: 2px solid #fff;}
249
-
250
- body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item), .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item), body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{ border:none !important;}
251
- }
252
-
253
- #wpfooter .monstericon-star {vertical-align: top;color:#fdb72c;}
254
- #wpfooter .monstericon-star:hover:before { color:#fdb72c}
255
- #wpfooter .monstericon-star:before {font-size: 14px;line-height: 1;padding: 0;margin-top: -4px}
256
-
257
- /* Action bar styles */
258
- .monsterinsights-reports-action-bar-title{font-size:24px;font-weight:700;float:left}
259
- .monsterinsights-reports-action-bar{margin-bottom:40px;margin-top:40px}
260
- .monsterinsights-reports-action-bar-actions{float:right}
261
-
262
- /** Nav bar styles */
263
- body.monsterinsights-reporting-page .monsterinsights-nav-container,
264
- body.insights_page_monsterinsights_tools .monsterinsights-nav-container {background-color: #FFF; border-top: 1px solid #d5e2ed; border-bottom: 1px solid #d5e2ed;}
265
- body.monsterinsights-reporting-page .monsterinsights-main-nav-item,
266
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item {background-color: #FFF; padding:0px;margin:0px 0 0px 20px;width: auto;color:#7f8388;font-size: 14px;font-weight: 600;}
267
- body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active,
268
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item.monsterinsights-active {border-bottom: 2px solid #489be8 !important;color:#489be8;}
269
- body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-spacing-item,
270
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item.monsterinsights-spacing-item{width:20px;}
271
- body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active),
272
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active) {border:none;}
273
- body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active),
274
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border:none;}
275
- body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item), body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item),
276
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item), body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item) {border-bottom: 2px solid #489be8 !important;color:#489be8;}
277
-
278
-
279
- /** Container Styles */
280
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .container-fluid {padding:0px;}
281
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .panel{background-color: #FFF;border: 1px solid #d4e2ef;box-shadow:none;padding:0px;margin:0px;position:relative;}
282
-
283
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row {
284
- margin-top: 15px;
285
- }
286
-
287
- @media screen and (min-width: 782px) {
288
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row:last-of-type {
289
- margin: 15px 0px 20px;
290
- }
291
- }
292
-
293
- /** Tooltip styles */
294
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{ float:right;position: absolute;top: 15px;right: 7px; width:auto;box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align: middle;text-align: left;}
295
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:before {content: '\f01a';color: #c1def8;}
296
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:active:before {color: #4c9ce4;}
297
- body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:hover:before {color: #4c9ce4;}
298
- body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip{ z-index: 99999;background-color: #4c9ce4;border-radius: 4px;padding:15px;box-shadow: 0 0 24px rgba(89, 164, 234, 0.33);color: #fff;
299
- position: absolute; max-width: 226px !important}
300
- body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-title { border-bottom: 1px solid #3583c8; padding-bottom: 10px; font-size: 14px;font-weight: 700;}
301
- body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-content { font-size: 14px;font-weight: 400;line-height: 20px;padding-top: 10px}
302
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip {right:7px;}
303
-
304
- /** Upsell **/
305
- .monsterinsights-upsell-report-container{}
306
- .monsterinsights-upsell-report-publisher-bg{}
307
- .monsterinsights-upsell-report-ecommerce-bg{}
308
- .monsterinsights-upsell-report-dimensions-bg{}
309
- .monsterinsights-upsell-report-queries-bg{}
310
-
311
-
312
- .monsterinsights-upsell-card {
313
- margin-bottom: 100px;
314
- background-image: url(../images/upsell/chart.png);
315
- background-size: cover;
316
- background-position-y: bottom;
317
- border: 4px solid #489be8;
318
- position: relative;
319
- margin: .5rem 0 1rem 0;
320
- background-color: #fff;
321
- transition: box-shadow .25s;
322
- border-radius: 2px;
323
- }
324
-
325
- @media only screen and (min-width: 993px){
326
- .monsterinsights-upsell-card {
327
- z-index: 4;
328
- margin-top: 80px;
329
- }
330
- }
331
- @media only screen and (max-width: 992px){
332
- .monsterinsights-upgrade-mascot{ display: none; }
333
- }
334
-
335
- .monsterinsights-upgrade-mascot {
336
- position: absolute;
337
- margin-top: -110px;
338
- margin-left: calc(50% - 71px);
339
- z-index: 100;
340
- }
341
- .monsterinsights-upsell-card-card-content{
342
- padding: 24px;
343
- border-radius: 0 0 2px 2px;
344
- }
345
- .monsterinsights-upsell-card-title{
346
- font-weight: 700;
347
- text-align: center;
348
- display: block;
349
- line-height: 32px;
350
- margin-bottom: 8px;
351
- font-size: 24px;
352
- }
353
-
354
- .monsterinsights-upsell-card-subtitle{
355
- text-align: center;
356
- text-transform: uppercase;
357
- }
358
- .monsterinsights-upsell-card-action{
359
- position: relative;
360
- background-color: #ffffffac;
361
- text-align: center;
362
- border-top: 1px solid rgba(160,160,160,0.2);
363
- padding: 16px 24px
364
- }
365
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button {
366
- background-color: #489be8;
367
- color: #FFF !important;
368
- text-decoration: none;
369
- padding: 0 3rem;
370
- position: relative;
371
- cursor: pointer;
372
- display: inline-block;
373
- overflow: hidden;
374
- -webkit-user-select: none;
375
- -moz-user-select: none;
376
- -ms-user-select: none;
377
- user-select: none;
378
- -webkit-tap-highlight-color: transparent;
379
- vertical-align: middle;
380
- z-index: 1;
381
- transition: .3s ease-out;
382
- background-color: #489be8;
383
- color: white;
384
- text-decoration: none;
385
- padding: 0 3rem;
386
- height: 54px;
387
- line-height: 54px;
388
- text-align: center;
389
- letter-spacing: .5px;
390
- border: none;
391
- border-radius: 2px;
392
- outline: 0;
393
- text-transform: uppercase;
394
- box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
395
- text-decoration: none;
396
- }
397
-
398
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button:hover {
399
- background-color: #6cbaf5;
400
- }
401
-
402
- .monsterinsights-upsell-container {
403
- margin: 0 auto;
404
- max-width: 1280px;
405
- width: 90%;
406
- }
407
- @media only screen and (min-width: 993px) {
408
- .monsterinsights-upsell-container {
409
- width: 70%;
410
- }
411
- }
412
-
413
- @media only screen and (min-width: 601px) {
414
- .monsterinsights-upsell-container {
415
- width: 85%;
416
- }
417
- }
418
-
419
-
420
- /** Overview Report Styles **/
421
- /** Tab styles */
422
- body.monsterinsights-reporting-page .monsterinsights-overview-report-overview-graph-panel{ border-top: 0px !important}
423
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title {background-color: #eceff6;border-top-left-radius: 0px;border-top-right-radius: 4px;color: #23282d;font-size: 18px;font-weight: 700;}
424
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a:focus {outline:none;box-shadow: none}
425
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a{text-align: left !important;float: left;padding: 20px; width:100%;}
426
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active) {border-right:0px !important;border: 1px solid #d4e2ef;}
427
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active):first-of-type {border-left:0px !important;border: 1px solid #d4e2ef;}
428
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title.active{background-color: #fff;border-top: 3px solid #4c9ce4;border-bottom:0px;border-right:0px;border-left:0px;}
429
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{ border-top-left-radius: 4px;border-top-right-radius: 0px}
430
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a, body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover, body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus {border:none;}
431
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs > li > a {border: 0px;}
432
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a, body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:hover, body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:focus { color: #23282d;}
433
-
434
- @media screen and (max-width: 782px) {
435
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type {
436
- border-top-left-radius: 4px;border-top-right-radius: 4px;
437
- }
438
- body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:nth-of-type(2) {
439
- border-top-left-radius: 4;border-top-right-radius: 0;border-left: 0;
440
- }
441
- }
442
-
443
- @media only screen and (max-width: 772px) {
444
- body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,
445
- body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active) {
446
- width:100%; margin:0px;
447
- border-bottom: 2px solid #fff;
448
- }
449
- }
450
-
451
- /** Large Graph styles */
452
- body.monsterinsights-reporting-page .monsterinsights-user-icon{box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align: middle;text-align: left;float: left;}
453
- body.monsterinsights-reporting-page .monsterinsights-user-icon:before { content: '\f018';color: #4c9ce4;}
454
- body.monsterinsights-reporting-page .monsterinsights-eye-icon{box-sizing:border-box;width:30px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align: middle;text-align: left;float: left;}
455
- body.monsterinsights-reporting-page .monsterinsights-eye-icon:before { content: '\f019';color: #4c9ce4;}
456
-
457
- body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-container{ padding: 15px;background-color: #FFF;border-radius: 4px;box-shadow: 0 0 24px rgba(89, 164, 234, 0.33);width: 112px;}
458
- body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-title{ color: #23282d;font-size: 14px;font-weight: 400;border-bottom: 1px solid #d4e2ef; padding-bottom: 5px;}
459
- body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-number {color: #23282d;font-size: 24px;font-weight: 400; margin-top: 5px; margin-bottom: 5px;}
460
- body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-descriptor{color: #23282d;font-size: 12px;font-weight: 400;margin-bottom: 10px}
461
- body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-trend{color: #23282d;font-size: 16px;font-weight: 400;}
462
- body.monsterinsights-reporting-page #monsterinsights-chartjs-tooltip{opacity:1;position:absolute;}
463
-
464
-
465
- /** Infobox styles */
466
- body.monsterinsights-reporting-page .monsterinsights-overview-report-infobox-panel{ margin-top: 15px !important }
467
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox{ padding: 15px; border-left: 1px solid #d4e2ef; }
468
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-left: 0px; }
469
-
470
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-title {color: #23282d;font-size: 18px;font-weight: 700;max-width: calc(100% - 22px);}
471
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-number{color: #23282d;font-size: 30px;font-weight: 400;margin-top: 20px;}
472
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev { float: left;font-size: 16px;font-weight: 700;margin-top: 20px;}
473
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare { float:right;color: #a7d0f5;font-size: 14px;font-weight: 400;margin-top: 20px;}
474
-
475
- @media screen and (min-width: 992px) and (max-width: 1140px) {body.monsterinsights-reporting-page .monsterinsights-reports-infobox {height: 165px;}}
476
- @media screen and (max-width: 991px) {
477
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3) {border-left: 0;}
478
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3) {border-top: 1px solid #d4e2ef;}
479
- }
480
-
481
- @media only screen and (max-width: 480px) {
482
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox {
483
- padding: 15px;
484
- border-top: 1px solid #d4e2ef;
485
- width: 100%;
486
- }
487
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type {
488
- border-top: 0;
489
- }
490
- body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even) {
491
- border-left: 0;
492
- }
493
- }
494
-
495
-
496
- /** 2 column row */
497
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container{ margin-top: 15px !important; }
498
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel{padding: 15px;background-color: #f7f9ff;}
499
- body.monsterinsights-reporting-page .monsterinsights-reports-panel-title {color: #23282d;font-size: 18px;font-weight: 700;background-color: #FFF;}
500
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip {top: 15px; right: 7px;}
501
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title {padding: 0;}
502
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin-left: 40px;}
503
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key{ float:right; position: absolute; bottom: 20px; right: 50px;}
504
- body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{ float:right; position: absolute; bottom: 20px; right: 50px;}
505
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{color: #23282d;font-size: 20px;font-weight: 400; margin-left: 30px;float: right}
506
- body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-returning-tooltip{opacity:1;position:absolute;}
507
- body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-devices-tooltip{opacity:1;position:absolute;}
508
- body.monsterinsights-reporting-page .monsterinsights-reports-country-flag{margin-right: 10px;margin-left:0;}
509
- body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item:nth-child(2n+1) { background-color: #f7f9ff;}
510
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding{padding:0px;}
511
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding .monsterinsights-reports-panel-title{padding:15px;}
512
- body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item{ border: none; height: 40px; height: auto;}
513
- body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group{box-shadow:none;margin-bottom: 1px}
514
- body.monsterinsights-reporting-page .monsterinsights-reports-referral-icon{margin-right: 10px;margin-left:10px;}
515
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.monsterinsights-pie-chart-panel{background-color: #FFF}
516
- body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title{margin-bottom: 15px;padding-bottom: 15px;}
517
-
518
- @media only screen and (min-width: 992px) {
519
-
520
-
521
- body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(1) {
522
- padding-left: 0;
523
- }
524
-
525
- body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2) {
526
- padding-right: 0;
527
- }
528
-
529
-
530
-
531
- }
532
-
533
- @media only screen and (min-width: 992px) and (max-width: 1165px) {body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key, body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key { display: block; position: inherit; float: none; margin-top: 10px; bottom: 0; right: 0;}}
534
- @media only screen and (max-width: 500px) { body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key, body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key {display: block;position: inherit; float: none; margin-top: 10px; bottom: 0; right: 0;} body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph { margin: auto; float: none; display: block; }}
535
- @media screen and (max-width: 992px) {.monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2) {margin-top:15px;}}
536
-
537
- /** 1 column row */
538
- body.monsterinsights-reporting-page .monsterinsights-reports-1-column-row{ margin-top: 15px !important }
539
- body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{ padding: 15px;border-top-left-radius: 4px;border-top-right-radius: 4px;}
540
-
541
-
542
- /** Container styles */
543
- body.monsterinsights-reporting-page .monsterinsights-reports-list-count{width:25px;color: #23282d;font-size: 14px;font-weight: 700; display: inline-block;}
544
- body.monsterinsights-reporting-page .monsterinsights-reports-list-text{color: #23282d;font-size: 14px;font-weight: 400;}
545
- body.monsterinsights-reporting-page .monsterinsights-reports-list-number{color: #23282d;font-size: 14px;font-weight: 400;float:right;}
546
- body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer{color: #4c9ce4;border-radius: 0px 0px 4px 4px; padding: 20px 15px;font-size: 14px;font-weight: 400;clear: both;background: #f7f9ff;border-top: 1px solid #d4e2ef;min-height: 76px;}
547
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{color: #4c9ce4;font-size: 14px;font-weight: 400;padding:8px 15px;background-color: white;border: 1px solid #d4e2ef;border-radius: 4px;display:inline-block}
548
- body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{background: #f7f9ff;border-top: 1px solid #d4e2ef;min-height:76px;}
549
-
550
- @media only screen and (max-width: 768px) { body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large {text-align: center;}
551
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{float: none;width: 100%;text-align: center;margin-top: 15px;}
552
- }
553
-
554
- /** Top Page List */
555
- #monsterinsights-report-top-page-list .monsterinsights-reports-list-count {display: inline-block;top: 10px;position: absolute;}
556
- #monsterinsights-report-top-page-list .monsterinsights-reports-list-text {max-width: 85%;display: inline-block;margin-left: 25px;}
557
-
558
- @media only screen and (max-width: 480px) {
559
- #monsterinsights-report-top-page-list .monsterinsights-reports-list-text {max-width: 80%;}
560
- }
561
-
562
-
563
- /* Show buttons */
564
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group{color: #4c9ce4;font-size: 14px;font-weight: 400;display:inline-block}
565
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default{background-color: #FFF;color: #4c9ce4;font-size: 14px;font-weight: 400;background-image:none;box-shadow:none;text-shadow:none;padding: 3px 10px;opacity:1;}
566
-
567
-
568
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius: 4px 0px 0px 4px !important;}
569
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius: 0px 4px 4px 0px !important; margin-right: 20px !important;}
570
- body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default.active{background-color: #4c9ce4;border: 1px solid #6db0e9;color: #f7f7f7;box-shadow:none;text-shadow:none;}
571
-
572
-
573
- .monsterinsights-data-row{width:100%;float:left;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#7f8591;padding:10px 15px}
574
- .monsterinsights-data-row .monsterinsights-col-7-8{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}
575
- .monsterinsights-reports-box-datalist .monsterinsights-data-row:nth-child(odd){background-color:#f7f7f9}
576
- .monsterinsights-reports-box-title{background-color:#FFF;color:#7f8591;font-size:14px;font-weight:700;padding:20px;border-bottom:1px solid #e3e9ed;border-top-left-radius:5px;border-top-right-radius:5px}
577
- .monsterinsights-no-padding-right{padding-right:0}
578
- .monsterinsights-datalist-box-title{color:#7f8591;font-size:14px;font-weight:700;margin-bottom:10px}
579
-
580
-
581
- /* Queries Report */
582
- body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead th{ padding:15px !important;color: #23282d;font-size: 14px;font-weight: 700;}
583
- body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead{ border-top: 1px solid #ddd; }
584
- body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr td{ padding:15px !important;color: #23282d;font-size: 14px;font-weight: 400;}
585
- body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+1) {background-color: #f7f9ff;}
586
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table > thead > tr > th {border-bottom: 0px;}
587
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table{margin-bottom: 0px;}
588
-
589
- body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+2) {background-color: #fff;}
590
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons,
591
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons {background-color: #f7f9ff !important;}
592
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel .monsterinsights-reports-data-table-thead {background-color: #fff;}
593
-
594
-
595
- /* Temporary fix for tables on mobile until we can figure out a better solution */
596
- @media only screen and (max-width: 479px) {
597
- .monsterinsights-bootstrap-container .table > thead > tr > th,
598
- .monsterinsights-bootstrap-container .table > tbody > tr > th,
599
- .monsterinsights-bootstrap-container .table > tfoot > tr > th,
600
- .monsterinsights-bootstrap-container .table > thead > tr > td,
601
- .monsterinsights-bootstrap-container .table > tbody > tr > td,
602
- .monsterinsights-bootstrap-container .table > tfoot > tr > td {
603
- display: block;
604
- }
605
- }
606
-
607
-
608
- /* Publisher Report */
609
- body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-white-bg-panel{ background-color: #FFF !important;}
610
- /* Real-Time Report */
611
- body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons.realtime-report-graph {background-color: #ffffff !important;}
612
-
613
- /** Reports Page Media Queries **/
614
-
615
-
616
-
617
-
618
- /** Tools Page Styles **/
619
- /** Generic Tools Page Styles **/
620
- #monsterinsights-tools-pages {
621
- max-width: 750px;
622
- margin: 0 auto;
623
- }
624
- #monsterinsights-tools-pages .monsterinsights-tools-content-area { padding: 0 0 25px; margin-top: 25px; border: 1px solid #d6e2ed; background: #fff; box-sizing: border-box; }
625
- #monsterinsights-tools-pages .monsterinsights-tools-content-area .widefat {
626
- width: auto;
627
- }
628
- #monsterinsights-tools-pages .monsterinsights-main-nav-tab .monsterinsights-upsell-under-box{ margin-top: 0; }
629
- #monsterinsights-tools-pages .monsterinsights-tools-content-area > p,
630
- #monsterinsights-tools-pages .monsterinsights-tools-content-area > table,
631
- #monsterinsights-tools-pages .monsterinsights-tools-content-area > form {
632
- margin-left: 25px;
633
- margin-right: 25px;
634
- margin-top: 25px;
635
- }
636
-
637
- #monsterinsights-tools-pages .monsterinsights-tools-content-area p,
638
- #monsterinsights-tools-pages .monsterinsights-tools-content-area ul {
639
- color: #777;
640
- font-size: 14px;
641
- }
642
-
643
- #monsterinsights-tools-pages .monsterinsights-tools-content-area ul {
644
- margin-top: 25px;
645
- margin-bottom: 0;
646
- }
647
-
648
- #monsterinsights-tools-pages .monsterinsights-tools-content-area a {
649
- color: #509fe2;
650
- }
651
-
652
- #monsterinsights-tools-pages .monsterinsights-tools-content-area a:hover,
653
- #monsterinsights-tools-pages .monsterinsights-tools-content-area a:focus {
654
- color: #393f4c;
655
- }
656
-
657
- #monsterinsights-tools-pages .monsterinsights-tools-content-area h2:first-child {
658
- color: #444;
659
- display: block;
660
- margin: 0;
661
- border-bottom: 1px solid #d6e2ed;
662
- padding: 16px 25px;
663
- font-weight: 500;
664
- font-size: 14px;
665
- }
666
-
667
- .insights_page_monsterinsights_tools .monsterinsights-header-inner {
668
- max-width: 750px;
669
- margin: 0 auto;
670
- display: block;
671
- }
672
-
673
- body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item {
674
- margin-left: 0;
675
- margin-right: 20px;
676
- }
677
-
678
- /** URL Generator Tab Styles **/
679
- .monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}
680
- #monsterinsights-tools-pages .form-table th,#monsterinsights-tools-pages .form-table td,#monsterinsights-tools-pages .form-table tr{ padding: 0px 0px 20px 0px; border: none;}
681
- #monsterinsights-tools-pages .form-table th{
682
- padding-top: 4px;
683
- }
684
- #monsterinsights-tools-pages .monsterinsights-nav-tab .description { margin-top: 0px; }
685
- #monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url],#monsterinsights-tools-pages textarea{
686
- border: 1px solid #b7c9d9;
687
- border-radius: 3px;
688
- font-size: 14px;
689
- padding: 9px 15px;
690
- width: 100%;
691
- -webkit-box-shadow: none;
692
- box-shadow: none;
693
- margin: 0;
694
- color: #444;
695
- -webkit-box-sizing: border-box;
696
- -moz-box-sizing: border-box;
697
- box-sizing: border-box;
698
- }
699
- #monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url]{
700
- height: 40px;
701
- }
702
- #monsterinsights-tools-pages textarea{ height: 100px;}
703
- @media (max-width: 767px) {
704
- #monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"],#monsterinsights-tools-pages textarea{width:90%!important;}
705
- #monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"]{height:auto;}
706
- }
707
-
708
- @media screen and (max-width: 772px) {
709
- .monsterinsights-reports-action-bar-actions{ margin-top:20px; float: left;width: 100%;}
710
- .monsterinsights-pro-report-date-control-group .btn.btn-default { margin-bottom: 15px;width: calc(50%); }
711
- .monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; margin-right: 0 !important;}
712
- .monsterinsights-bootstrap-container .btn-group.monsterinsights-pro-report-date-control-group,
713
- .monsterinsights-bootstrap-container .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; width: 100%; }
714
- .monsterinsights-pro-report-date-control-group .monsterinsights-pro-datepicker { width: 100%; text-align: center; }
715
- }
716
- #monsterinsights-related-resources-list{ list-style-type: disc; padding-left: 40px;}
717
- /** Import/Export Tab Styles **/
718
-
719
- /** Tools Page Media Queries **/
720
-
721
- /** Addons Page Styles **/
722
- /** Addons Font */
723
- @font-face{font-family:'monsterinsights';src:url(../fonts/monsterinsights.eot);src:url(../fonts/monsterinsights.eot?#iefix) format("embedded-opentype"),url(../fonts/monsterinsights.woff) format("woff"),url(../fonts/monsterinsights.ttf) format("truetype"),url(../fonts/monsterinsights.svg#monsterinsights) format("svg");font-weight:400;font-style:normal}
724
- #monsterinsights-addons [class*='monsterinsights-']:before{display:inline-block;font-family:'monsterinsights';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
725
- #monsterinsights-addons .monsterinsights-configuration:before{content:'\0041'}
726
- #monsterinsights-addons .monsterinsights-leaf:before{content:'\0042'}
727
- #monsterinsights-addons .monsterinsights-lightbox:before{content:'\0044'}
728
- #monsterinsights-addons .monsterinsights-misc:before{content:'\0045'}
729
- #monsterinsights-addons .monsterinsights-mobile:before{content:'\0046'}
730
- #monsterinsights-addons .monsterinsights-pagination:before{content:'\0047'}
731
- #monsterinsights-addons .monsterinsights-proofing:before{content:'\0048'}
732
- #monsterinsights-addons .monsterinsights-slideshow:before{content:'\0049'}
733
- #monsterinsights-addons .monsterinsights-tags:before{content:'\004a'}
734
- #monsterinsights-addons .monsterinsights-thumbnails:before{content:'\004b'}
735
- #monsterinsights-addons .monsterinsights-video:before{content:'\004c'}
736
- #monsterinsights-addons .monsterinsights-watermark:before{content:'\004d'}
737
- #monsterinsights-addons .monsterinsights-cloud-download:before{content:'\004e'}
738
- #monsterinsights-addons .monsterinsights-toggle-on:before{content:'\004f'}
739
- #monsterinsights-addons .monsterinsights-plus-circle:before{content:'\0050'}
740
- #monsterinsights-addons .monsterinsights-down-arrow:before{content:'\0051'}
741
- #monsterinsights-addons .monsterinsights-list:before{content:'\0052'}
742
- /* #monsterinsights-addons .monsterinsights-grid:before{content:'\0053'}*/
743
- #monsterinsights-addons .monsterinsights-pinterest-p:before{content:'\0054'}
744
- #monsterinsights-addons .monsterinsights-pencil:before{content:'\0055'}
745
- #monsterinsights-addons .monsterinsights-close:before{content:'\0056'}
746
- #monsterinsights-addons .monsterinsights-check:before{content:'\0057'}
747
-
748
- /** Generic Addons Page Styles **/
749
- body.monsterinsights_page .monsterinsights-addons-subheading{background-color:#fff;height:45px;margin-left:-20px; border-top: 1px solid #d5e2ed;border-bottom: 1px solid #d5e2ed;}
750
- body.monsterinsights_page .monsterinsights-addons-subheading h1{font-size:20px;font-weight:400;line-height:45px;margin:0 0 0 20px;padding-left:20px}
751
- @media (min-width: 600px) and (max-width: 767px) {
752
- body.monsterinsights_page .monsterinsights-addons-subheading{height:auto;padding-bottom:20px}
753
- }
754
- #monsterinsights-addon-heading:after{content:"";display:table;clear:both}
755
- #monsterinsights-addon-heading h1{float:left}
756
- #monsterinsights-addon-heading form{float:right;}
757
- @media (min-width: 600px) and (max-width: 767px) {
758
- #monsterinsights-addon-heading h1{float:none}
759
- }
760
- @media (max-width: 508px) {
761
- #monsterinsights-addon-heading form{display:none}
762
- }
763
- @media (max-width: 600px) {
764
- .monsterinsights-addon .interior{display:none!important}
765
- }
766
- #monsterinsights-addon-heading form input{border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px;background-color:#fff;color:#666;margin:7px 10px 0 5px;font-size:14px;padding:5px 8px}
767
- #monsterinsights-addon-heading form select{margin:-5px 20px 0 0}
768
- #monsterinsights-addon-heading form .spinner{float:none;margin:-3px auto auto}
769
- @media (min-width: 600px) and (max-width: 767px) {
770
- #monsterinsights-addon-heading form{float:none;display:table;margin:10px auto 0}
771
- }
772
-
773
- #monsterinsights-addons{padding:0 0 10px;}
774
- #monsterinsights-addons .button,#monsterinsights-addons .button-primary{text-shadow:none;background-color:#f7f7f7;color:#23282d;font-weight:600;border:1px solid #ccc;line-height:inherit;height:inherit;padding:5px 15px;box-shadow:none;cursor:pointer}
775
- #monsterinsights-addons .button:hover,#monsterinsights-addons .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}
776
- #monsterinsights-addons .monsterinsights-addon-action-button{padding-left:20px;padding-right:20px}
777
- #monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-cloud-download{font-size:19px;float:left;margin-right:8px;color:#8d8f92}
778
- #monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-toggle-on{font-size:19px;float:left;margin-right:8px;margin-top:1px;color:#7cc048}
779
- #monsterinsights-addons .monsterinsights-addon-upgrade-button{background-color:#7cc048;color:#fff;float:none!important;margin:0 auto;display:table;line-height:25px}
780
- #monsterinsights-addons .monsterinsights-addon-upgrade-button:hover{background-color:#95dc5e;color:#fff;border-color:#95dc5e}
781
- #monsterinsights-addons .monsterinsights-addon-action-button.monsterinsights-activate-addon .monsterinsights-toggle-on{color:#e92c21;-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:FlipH}
782
- #monsterinsights-addons .monsterinsights-addon-title{margin-top:30px}
783
- #monsterinsights-addons .monsterinsights-addons-area:after{content:"";display:table;clear:both}
784
- #monsterinsights-addons .monsterinsights-addons-area.licensed{margin:20px 0 40px;padding:0 0 20px;border-bottom:1px solid #ddd}
785
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{border:1px solid #ddd;position:relative;background:#fff;border-radius:3px;float:left;margin:0 2% 2% 0;min-height:465px;padding:0;text-align:center;width:32%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
786
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:0}
787
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:both}
788
- @media (min-width: 992px) and (max-width: 1199px) {
789
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{min-height:420px}
790
- }
791
- @media (min-width: 768px) and (max-width: 991px) {
792
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100%!important;min-height:525px}
793
- }
794
- @media (min-width: 600px) and (max-width: 767px) {
795
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100%!important;min-height:525px}
796
- }
797
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:20px auto;max-width:100%}
798
- @media (min-width: 992px) and (max-width: 1199px) {
799
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}
800
- }
801
- @media (min-width: 768px) and (max-width: 991px) {
802
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}
803
- }
804
- @media (min-width: 600px) and (max-width: 767px) {
805
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}
806
- }
807
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{color:#2f2f2f;font-weight:400;padding:0 20px;display:table;margin:0 0 90px}
808
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{background:#f7f7f7;border-top:1px solid #ddd}
809
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{position:absolute;bottom:0;float:left;width:100%;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin:0;padding:0;text-align:left}
810
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior{padding:20px}
811
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior:after,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior:after{content:"";display:table;clear:both}
812
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .addon-status span{color:#7cc048}
813
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}
814
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}
815
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}
816
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .addon-status span{color:#e82c20}
817
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}
818
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}
819
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}
820
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}
821
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}
822
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}
823
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}
824
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.addon-status{float:left;font-weight:700}
825
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message a.button,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error a.button{float:right}
826
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.monsterinsights-spinner,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.monsterinsights-spinner{position:absolute;bottom:15px;right:0}
827
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action{display:inline;float:right}
828
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-5px 0 0;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px}
829
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}
830
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{bottom:10px;float:none;left:15px;right:20px;width:auto}
831
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .xinterior{width:100%;margin:0;background:#fff;border-left:4px solid #dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}
832
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p{padding:10px;margin:5px 10px}
833
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .wrap{margin:0}
834
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .icon32{display:none}
835
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error h2{padding:0}
836
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table th{padding:10px 0;width:30%!important}
837
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="text"],#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="password"]{width:100%!important}
838
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p.submit{padding:0}
839
- #monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon p{color:#2f2f2f;font-size:13px;margin:10px 0 0;text-shadow:0 1px #fff}
840
- #monsterinsights-addons .monsterinsights-addons-area #monsterinsights-addons-unlock-more-area{margin:40px auto 20px;padding-bottom:0;border-bottom:0}
841
- #monsterinsights-addons-more-area .monsterinsights-addon .interior{padding:15px 20px!important}
842
- #monsterinsights-addons-refresh-addons-form{width:100%;max-width:850px;float:left}
843
- @media (min-width: 992px) and (max-width: 1199px) {
844
- #monsterinsights-addons-refresh-addons-form{max-width:450px}
845
- }
846
- @media (min-width: 768px) and (max-width: 991px) {
847
- #monsterinsights-addons-refresh-addons-form{max-width:50%}
848
- #monsterinsights-addons-refresh-addons-form input.button{display:block}
849
- }
850
- @media (min-width: 600px) and (max-width: 767px) {
851
- #monsterinsights-addons-refresh-addons-form{width:100%;float:none}
852
- #monsterinsights-addons-refresh-addons-form input.button{display:block}
853
- }
854
- #monsterinsights-filter-form{float:right}
855
- #monsterinsights-filter-form input[type='submit'],#monsterinsights-filter-form select{background-color:#f7f7f7;color:#23282d;border:1px solid #ddd;height:30px;width:120px;margin-top:-2px}
856
- #monsterinsights-filter-form input{padding:5px 15px;box-shadow:0;cursor:pointer;background-color:#f7f7f7;color:#23282d}
857
- #monsterinsights-filter-form input:hover{color:#23282d;background-color:#fafafa;border-color:#999}
858
- #monsterinsights-filter-form .spinner{float:left}
859
- @media only screen and (max-width: 1050px) {
860
- #monsterinsights-addons-area .monsterinsights-addon{width:49%}
861
- #monsterinsights-addons-area .monsterinsights-addon:nth-child(2n){margin-right:0}
862
- #monsterinsights-addons-area .monsterinsights-addon:nth-child(2n+1){clear:both}
863
- #monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:2%}
864
- #monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:none}
865
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:90px}
866
- }
867
- @media only screen and (max-width: 782px) {
868
- #monsterinsights-addons-area .monsterinsights-addon{min-height:auto}
869
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-7px 0 0}
870
- }
871
- @media only screen and (max-width: 600px) {
872
- #monsterinsights-addons-area .monsterinsights-addon{width:99%}
873
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{float:left;width:100%}
874
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status{display:block;width:100%;margin:0 0 5px;text-align:center}
875
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action{clear:both;display:block;width:100%;text-align:center}
876
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action .button-primary{clear:both;float:none;margin:0 auto}
877
- #monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:120px}
878
- }
879
- /** Network Addons Page Styles **/
880
-
881
- /** Single Site Addons Page Styles **/
882
-
883
- /** Welcome Page Styles **/
884
- /** Generic Welcome Page Styles **/
885
-
886
- /** Welcome Tab Styles **/
887
-
888
- /** What's New Tab Styles **/
889
-
890
- /** Changelog Tab Styles **/
891
-
892
- /** Support Tab Styles **/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/admin.min.css DELETED
@@ -1 +0,0 @@
1
- @font-face{font-family:'Misettings';src:url('../fonts/icons.eot');src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'), url('../fonts/icons.woff2') format('woff2'),url('../fonts/icons.woff') format('woff'),url('../fonts/icons.ttf') format('truetype'),url('../fonts/icons.otf') format('opentype');font-weight:400;font-style:normal}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:20px;margin-right:20px}body.monsterinsights_page .update-nag{margin-left:20px;margin-bottom:20px}body.monsterinsights_page #wpcontent{padding-left:0}body.monsterinsights_page div.wrap{margin:0 20px}body.monsterinsights_page #wpbody,body.monsterinsights_page #wpfooter,body.monsterinsights_page,body.monsterinsights_page #wpwrap{background-color:#fff}@media (max-width: 599px){body.monsterinsights_page #wpbody{padding-top:0}}.monsterinsights-grid{margin:0 0 50px}.monsterinsights-grid:after{content:"";display:table;clear:both}.monsterinsights-col-1-1{width:100%}.monsterinsights-col-7-8{width:87.5%}.monsterinsights-col-3-4{width:75%}.monsterinsights-col-2-3{width:66.66%}.monsterinsights-col-1-2{width:50%}.monsterinsights-col-1-3{width:33.33%}.monsterinsights-col-1-4{width:25%}.monsterinsights-col-1-8{width:12.5%}[class*="monsterinsights-col-"]{float:left;padding-right:20px;box-sizing:border-box}.monsterinsights-grid [class*="monsterinsights-col-"]:last-of-type{padding-right:0}.monsterinsights-hideme{display:none;visibility:hidden}.monsterinsights-no-text-decoration{text-decoration:none}.monsterinsights-required-indicator{color:#b94a48;display:inline}.monsterinsights-mega-blur{display:block;-webkit-filter:blur(20px);-moz-filter:blur(15px);-o-filter:blur(15px);-ms-filter:blur(15px);filter:blur(15px);opacity:0.95}.monsterinsights-clear{clear:both}.monsterinsights-clear:after{clear:both;content:'.';display:block;height:0;line-height:0;overflow:auto;visibility:hidden;zoom:1}.monsterinsights-clearfix{content:"";display:table;clear:both}.monsterinsights-clearfix-after:after{content:"";display:table;clear:both}.monsterinsights-help-tip{cursor:help}.monsterinsights-ui-tooltip{background:#eceff6 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#000 !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}body.monsterinsights_page .button{-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:0 16px 1px;height:33px;line-height:30px;text-decoration:none;text-shadow:none;font-weight:600;-webkit-box-shadow:none;box-shadow:none}body.monsterinsights_page .button.button-small{padding:0 8px 1px;line-height:22px;height:24px}body.monsterinsights_page .button.button-x-large{padding:0 32px 1px;line-height:48px;height:50px;font-size:18px;text-transform:uppercase}body.monsterinsights_page .button.show-settings{height:auto}body.monsterinsights_page .button.button-primary{background:#47c1a5;border-color:#3ca489;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #3ca489;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#47c1a5}body.monsterinsights_page .button.button-primary:hover{background:#3ba389;border-color:#3ba389;color:#fff}body.monsterinsights_page .button.button-action{background:#479be7;border-color:#4182bf;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #4182bf;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#479be7}body.monsterinsights_page .button.button-action:hover{background:#4183bf;border-color:#4183bf;color:#fff}body.monsterinsights_page .button.button-danger{background:#fff;border-color:#e3e9ed;-webkit-box-shadow:none;box-shadow:none;color:#000;border:1px solid #e3e9ed;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff}body.monsterinsights_page .button.button-danger:hover{background:#e3e9ed;border-color:#e3e9ed;color:#000}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .button{margin-top:10px}}body.monsterinsights_page .monsterinsights-action-button{align-items:flex-start;background-color:#eee;background-image:linear-gradient(#fcfcfc,#eee);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-sizing:border-box;color:#333;cursor:pointer;display:block;float:left;font-family:Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";font-size:13px;font-stretch:normal;font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-weight:700;height:33.6px;letter-spacing:normal;line-height:20px;overflow-x:visible;overflow-y:visible;position:relative;text-align:center;text-indent:0;text-rendering:auto;text-shadow:none;text-size-adjust:100%;text-transform:none;user-select:none;vertical-align:middle;white-space:nowrap;word-spacing:0;writing-mode:horizontal-tb;-webkit-appearance:none;-webkit-border-image:none;border-color:#d5d5d5;border-radius:3px;border-style:solid;border-width:.8px;margin:0;padding:6px 12px}div.monsterinsights-code{position:relative;margin:0 0 10px}div.monsterinsights-code:after{content:"";display:table;clear:both}div.monsterinsights-code code{display:block;font-size:11px;padding:5px 20px 5px 5px}a.monsterinsights-clipboard{position:absolute;top:5px;right:5px;color:#23282d;width:33px;padding:0}a.monsterinsights-clipboard span{display:block;text-indent:-9999px}#monsterinsights-header-temp{position:relative;margin:0}#monsterinsights-header{background-color:#f9fbff;background-repeat:no-repeat;margin:0;padding:17px 20px}.monsterinsights-header-title{margin:0;display:block}.monsterinsights-header-mascot{float:right;position:absolute;top:0;right:0;margin-top:10px;margin-right:20px;z-index:100}@media (max-width: 610px){.monsterinsights-header-mascot{display:none}#monsterinsights-addon-heading form{margin-right:0}}.monsterinsights-notice{border:1px solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;box-sizing:border-box;display:table;width:100%;margin:10px 0px}.monsterinsights-notice:after{content:"";display:table;clear:both}.monsterinsights-notice-icon{padding:20px;box-sizing:border-box;width:60px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:center}.monsterinsights-notice-text{color:#434751;font-size:16px;font-weight:700;padding:20px;box-sizing:border-box;word-wrap:break-word;display:table-cell;position:relative;vertical-align:middle}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:0;margin-right:0}.monsterinsights-notice .button{margin:0px 0px 1em 0px}.monsterinsights-notice-message{margin:0px}.monsterinsights-alert-notice-icon{background-color:#fdbf2f}.monsterinsights-alert-notice-icon:before{content:'\f017'}.monsterinsights-alert-notice{border-color:#fdbf2f;background-color:rgba(253,192,47,0.1)}.monsterinsights-error-notice-icon{background-color:#df4228}.monsterinsights-error-notice-icon:before{content:'\f014'}.monsterinsights-error-notice{border-color:#df4228;background-color:rgba(224,66,40,0.1)}.monsterinsights-info-notice-icon{background-color:#479be7}.monsterinsights-info-notice-icon:before{content:'\f016'}.monsterinsights-info-notice{border-color:#479be7;background-color:rgba(72,155,232,0.1)}.monsterinsights-success-notice-icon{background-color:#47c1a5}.monsterinsights-success-notice-icon:before{content:'\f015'}.monsterinsights-success-notice{border-color:#47c1a5;background-color:rgba(71,194,165,0.1)}.monsterinsights-notice p.monsterinsights-intro{border:none !important;margin:0 0 20px !important;padding:0 !important}.monsterinsights-notice .notice-dismiss{top:10px;right:10px;color:#000}.monsterinsights-notice .notice-dismiss:before{color:#000;width:26px;height:26px;font-size:22px}[class*='monstericon-']:before{display:inline-block;font-family:'Misettings';font-style:normal;font-weight:400;line-height:50px;padding-right:12px;padding-left:5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle;font-size:20px}[class*='monstericon-'].monsterinsights-active:before{color:#479be7}[class*='monstericon-']:active:before{color:#479be7}[class*='monstericon-']:hover:before{color:#479be7}.monstericon-ads:before{content:'\0041'}.monstericon-eucompliance:before{content:'\004f'}.monstericon-affiliates:before{content:'\0042'}.monstericon-compatibility:before{content:'\0043'}.monstericon-demographics:before{content:'\0044'}.monstericon-dimensions:before{content:'\0045'}.monstericon-files:before{content:'\0046'}.monstericon-ecommerce:before{content:'\0047'}.monstericon-engagement:before{content:'\0048'}.monstericon-forms:before{content:'\0049'}.monstericon-links:before{content:'\004a'}.monstericon-memberships:before{content:'\004b'}.monstericon-notifications:before{content:'\004c'}.monstericon-performance:before{content:'\004d'}.monstericon-permissions:before{content:'\004e'}.monstericon-reporting:before{content:'\004f'}.monstericon-social:before{content:'\0050'}.monstericon-media:before{content:'\0051'}.monstericon-amp:before{content:'\f000'}.monstericon-goptimize:before{content:'\f002'}.monstericon-fbia:before{content:'\f001'}.monstericon-bounce:before{content:'\0051'}.monstericon-times-circle:before{content:'\f01b'}.monstericon-info-circle-btm:before{content:'\f01c'}.monstericon-info-circle-regular:before{content:'\f01e'}.monstericon-arrow-right:before{content:'\f01d'}.monstericon-star:before{content:'\f025'}.monsterinsights-upgrade-menu-icon{float:right;color:#7f8591;font-size:10px;font-weight:700;text-transform:uppercase;line-height:1;display:inline-block;padding:6px 12px;background-color:#fff;border-radius:3px;margin-right:18px;margin-top:15px}.monsterinsights-main-nav-item.monsterinsights-active .monsterinsights-upgrade-menu-icon,.monsterinsights-main-nav-item:hover .monsterinsights-upgrade-menu-icon{background-color:#f7f8fa}@media only screen and (max-width: 767px){[class*='monstericon-']:before{display:none !important;content:''}span.monsterinsights-upgrade-menu-icon{display:none}}.monsterinsights-nav-container{border:0;background-color:#fff;margin:0;display:table;width:100%}h1.monsterinsights-nav-container{padding:0px}.monsterinsights-main-nav-container{height:50px}.monsterinsights-nav-item{border:none;float:left;text-decoration:none}.monsterinsights-nav-item:focus,.monsterinsights-nav-item:active{box-shadow:none}.monsterinsights-main-nav-item{background-color:#fff;color:#d8d7e4;background:none;line-height:50px;font-size:13px;padding:0 15px;margin:0;width:100px;text-align:center}.monsterinsights-main-nav-item.monsterinsights-spacing-item{width:5px;padding-left:0}.monsterinsights-main-nav-item.monsterinsights-active{color:#434751;opacity:1;background-color:#fff}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:hover:not(.monsterinsights-active),#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:active:not(.monsterinsights-active){color:#fff;opacity:1}.monsterinsights-main-nav-item.monsterinsights-active{border:0 !important}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:focus:not(.monsterinsights-active):not(.monsterinsights-spacing-item){color:#fff}.monsterinsights-sub-nav-area{display:flex}.monsterinsights-nav-tab{display:none}.monsterinsights-nav-tab.monsterinsights-active{display:block}.monsterinsights-nav-tab .description{color:#7f8592;font-size:13px;margin-top:10px}.monsterinsights-main-nav-tab .form-table tr{border-bottom:1px solid #ddd}.monsterinsights-main-nav-tab .form-table tr.no-bottom-border{border-bottom:0}.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-main-nav-tabs .form-table td{padding-top:40px;padding-bottom:40px}.monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td{padding-top:40px}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-right:0}}@media (min-width: 600px) and (max-width: 767px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-bottom:10px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-right:0}}@media only screen and (max-width: 610px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:20px;padding-bottom:10px;padding-right:0px}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-bottom:20px;padding-right:0px}.monsterinsights-main-nav-item{width:auto}.monsterinsights-main-nav-item.monsterinsights-spacing-item{display:none}h1.monsterinsights-nav-container{padding:0px;min-width:150px}.monsterinsights-sub-nav-tabs th{width:auto}}div#monsterinsights-settings-sub-pages{padding-left:20px;background-color:#FFF;padding-right:20px}#monsterinsights-settings-pages{padding:20px 0}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}body.monsterinsights-reporting-page #wpbody,body.monsterinsights-reporting-page #wpfooter,body.monsterinsights-reporting-page #wpcontent,body.monsterinsights-reporting-page #wpwrap,body.insights_page_monsterinsights_tools #wpbody,body.insights_page_monsterinsights_tools #wpfooter,body.insights_page_monsterinsights_tools #wpcontent,body.insights_page_monsterinsights_tools #wpwrap,body.insights_page_monsterinsights_addons #wpbody,body.insights_page_monsterinsights_addons #wpfooter,body.insights_page_monsterinsights_addons #wpcontent,body.insights_page_monsterinsights_addons #wpwrap{background-color:#f3f6ff}@media screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),.monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{border:none !important}}#wpfooter .monstericon-star{vertical-align:top;color:#fdb72c}#wpfooter .monstericon-star:hover:before{color:#fdb72c}#wpfooter .monstericon-star:before{font-size:14px;line-height:1;padding:0;margin-top:-4px}.monsterinsights-reports-action-bar-title{font-size:24px;font-weight:700;float:left}.monsterinsights-reports-action-bar{margin-bottom:40px;margin-top:40px}.monsterinsights-reports-action-bar-actions{float:right}body.monsterinsights-reporting-page .monsterinsights-nav-container,body.insights_page_monsterinsights_tools .monsterinsights-nav-container{background-color:#FFF;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed}body.monsterinsights-reporting-page .monsterinsights-main-nav-item,body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item{background-color:#FFF;padding:0px;margin:0px 0 0px 20px;width:auto;color:#7f8388;font-size:14px;font-weight:600}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active,body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item.monsterinsights-active{border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-spacing-item,body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item.monsterinsights-spacing-item{width:20px}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active),body.insights_page_monsterinsights_tools .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active),body.insights_page_monsterinsights_tools .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item){border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .container-fluid{padding:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .panel{background-color:#FFF;border:1px solid #d4e2ef;box-shadow:none;padding:0px;margin:0px;position:relative}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row{margin-top:15px}@media screen and (min-width: 782px){body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row:last-of-type{margin:15px 0px 20px}}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{float:right;position:absolute;top:15px;right:7px;width:auto;box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:before{content:'\f01a';color:#c1def8}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:active:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:hover:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip{z-index:99999;background-color:#4c9ce4;border-radius:4px;padding:15px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);color:#fff;position:absolute;max-width:226px !important}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-title{border-bottom:1px solid #3583c8;padding-bottom:10px;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-content{font-size:14px;font-weight:400;line-height:20px;padding-top:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip{right:7px}.monsterinsights-upsell-card{margin-bottom:100px;background-image:url(../images/upsell/chart.png);background-size:cover;background-position-y:bottom;border:4px solid #489be8;position:relative;margin:.5rem 0 1rem 0;background-color:#fff;transition:box-shadow .25s;border-radius:2px}@media only screen and (min-width: 993px){.monsterinsights-upsell-card{z-index:4;margin-top:80px}}@media only screen and (max-width: 992px){.monsterinsights-upgrade-mascot{display:none}}.monsterinsights-upgrade-mascot{position:absolute;margin-top:-110px;margin-left:calc(50% - 71px);z-index:100}.monsterinsights-upsell-card-card-content{padding:24px;border-radius:0 0 2px 2px}.monsterinsights-upsell-card-title{font-weight:700;text-align:center;display:block;line-height:32px;margin-bottom:8px;font-size:24px}.monsterinsights-upsell-card-subtitle{text-align:center;text-transform:uppercase}.monsterinsights-upsell-card-action{position:relative;background-color:#ffffffac;text-align:center;border-top:1px solid rgba(160,160,160,0.2);padding:16px 24px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button{background-color:#489be8;color:#FFF !important;text-decoration:none;padding:0 3rem;position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out;background-color:#489be8;color:white;text-decoration:none;padding:0 3rem;height:54px;line-height:54px;text-align:center;letter-spacing:.5px;border:none;border-radius:2px;outline:0;text-transform:uppercase;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button:hover{background-color:#6cbaf5}.monsterinsights-upsell-container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width: 993px){.monsterinsights-upsell-container{width:70%}}@media only screen and (min-width: 601px){.monsterinsights-upsell-container{width:85%}}body.monsterinsights-reporting-page .monsterinsights-overview-report-overview-graph-panel{border-top:0px !important}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title{background-color:#eceff6;border-top-left-radius:0px;border-top-right-radius:4px;color:#23282d;font-size:18px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a:focus{outline:none;box-shadow:none}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a{text-align:left !important;float:left;padding:20px;width:100%}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active){border-right:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active):first-of-type{border-left:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title.active{background-color:#fff;border-top:3px solid #4c9ce4;border-bottom:0px;border-right:0px;border-left:0px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus{border:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs > li > a{border:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:focus{color:#23282d}@media screen and (max-width: 782px){body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:nth-of-type(2){border-top-left-radius:4;border-top-right-radius:0;border-left:0}}@media only screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}}body.monsterinsights-reporting-page .monsterinsights-user-icon{box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-user-icon:before{content:'\f018';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-eye-icon{box-sizing:border-box;width:30px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-eye-icon:before{content:'\f019';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#FFF;border-radius:4px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);width:112px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}body.monsterinsights-reporting-page #monsterinsights-chartjs-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-overview-report-infobox-panel{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-left:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-left:0px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-title{color:#23282d;font-size:18px;font-weight:700;max-width:calc(100% - 22px)}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-number{color:#23282d;font-size:30px;font-weight:400;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev{float:left;font-size:16px;font-weight:700;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare{float:right;color:#a7d0f5;font-size:14px;font-weight:400;margin-top:20px}@media screen and (min-width: 992px) and (max-width: 1140px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{height:165px}}@media screen and (max-width: 991px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3){border-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3){border-top:1px solid #d4e2ef}}@media only screen and (max-width: 480px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-top:1px solid #d4e2ef;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-top:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even){border-left:0}}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel{padding:15px;background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{color:#23282d;font-size:18px;font-weight:700;background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip{top:15px;right:7px}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title{padding:0}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin-left:40px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{color:#23282d;font-size:20px;font-weight:400;margin-left:30px;float:right}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-returning-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-devices-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-reports-country-flag{margin-right:10px;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding{padding:0px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding .monsterinsights-reports-panel-title{padding:15px}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item{border:none;height:40px;height:auto}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group{box-shadow:none;margin-bottom:1px}body.monsterinsights-reporting-page .monsterinsights-reports-referral-icon{margin-right:10px;margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.monsterinsights-pie-chart-panel{background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title{margin-bottom:15px;padding-bottom:15px}@media only screen and (min-width: 992px){body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(1){padding-left:0}body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){padding-right:0}}@media only screen and (min-width: 992px) and (max-width: 1165px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px;bottom:0;right:0}}@media only screen and (max-width: 500px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px;bottom:0;right:0}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin:auto;float:none;display:block}}@media screen and (max-width: 992px){.monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){margin-top:15px}}body.monsterinsights-reporting-page .monsterinsights-reports-1-column-row{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{padding:15px;border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-reports-list-count{width:25px;color:#23282d;font-size:14px;font-weight:700;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-list-text{color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-list-number{color:#23282d;font-size:14px;font-weight:400;float:right}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer{color:#4c9ce4;border-radius:0px 0px 4px 4px;padding:20px 15px;font-size:14px;font-weight:400;clear:both;background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{color:#4c9ce4;font-size:14px;font-weight:400;padding:8px 15px;background-color:white;border:1px solid #d4e2ef;border-radius:4px;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}@media only screen and (max-width: 768px){body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{text-align:center}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{float:none;width:100%;text-align:center;margin-top:15px}}#monsterinsights-report-top-page-list .monsterinsights-reports-list-count{display:inline-block;top:10px;position:absolute}#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:85%;display:inline-block;margin-left:25px}@media only screen and (max-width: 480px){#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:80%}}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group{color:#4c9ce4;font-size:14px;font-weight:400;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default{background-color:#FFF;color:#4c9ce4;font-size:14px;font-weight:400;background-image:none;box-shadow:none;text-shadow:none;padding:3px 10px;opacity:1}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius:4px 0px 0px 4px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius:0px 4px 4px 0px !important;margin-right:20px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default.active{background-color:#4c9ce4;border:1px solid #6db0e9;color:#f7f7f7;box-shadow:none;text-shadow:none}.monsterinsights-data-row{width:100%;float:left;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#7f8591;padding:10px 15px}.monsterinsights-data-row .monsterinsights-col-7-8{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.monsterinsights-reports-box-datalist .monsterinsights-data-row:nth-child(odd){background-color:#f7f7f9}.monsterinsights-reports-box-title{background-color:#FFF;color:#7f8591;font-size:14px;font-weight:700;padding:20px;border-bottom:1px solid #e3e9ed;border-top-left-radius:5px;border-top-right-radius:5px}.monsterinsights-no-padding-right{padding-right:0}.monsterinsights-datalist-box-title{color:#7f8591;font-size:14px;font-weight:700;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead th{padding:15px !important;color:#23282d;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead{border-top:1px solid #ddd}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr td{padding:15px !important;color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table > thead > tr > th{border-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table{margin-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+2){background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons,body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons{background-color:#f7f9ff !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel .monsterinsights-reports-data-table-thead{background-color:#fff}@media only screen and (max-width: 479px){.monsterinsights-bootstrap-container .table > thead > tr > th,.monsterinsights-bootstrap-container .table > tbody > tr > th,.monsterinsights-bootstrap-container .table > tfoot > tr > th,.monsterinsights-bootstrap-container .table > thead > tr > td,.monsterinsights-bootstrap-container .table > tbody > tr > td,.monsterinsights-bootstrap-container .table > tfoot > tr > td{display:block}}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-white-bg-panel{background-color:#FFF !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons.realtime-report-graph{background-color:#ffffff !important}#monsterinsights-tools-pages{max-width:750px;margin:0 auto}#monsterinsights-tools-pages .monsterinsights-tools-content-area{padding:0 0 25px;margin-top:25px;border:1px solid #d6e2ed;background:#fff;box-sizing:border-box}#monsterinsights-tools-pages .monsterinsights-tools-content-area .widefat{width:auto}#monsterinsights-tools-pages .monsterinsights-main-nav-tab .monsterinsights-upsell-under-box{margin-top:0}#monsterinsights-tools-pages .monsterinsights-tools-content-area > p,#monsterinsights-tools-pages .monsterinsights-tools-content-area > table,#monsterinsights-tools-pages .monsterinsights-tools-content-area > form{margin-left:25px;margin-right:25px;margin-top:25px}#monsterinsights-tools-pages .monsterinsights-tools-content-area p,#monsterinsights-tools-pages .monsterinsights-tools-content-area ul{color:#777;font-size:14px}#monsterinsights-tools-pages .monsterinsights-tools-content-area ul{margin-top:25px;margin-bottom:0}#monsterinsights-tools-pages .monsterinsights-tools-content-area a{color:#509fe2}#monsterinsights-tools-pages .monsterinsights-tools-content-area a:hover,#monsterinsights-tools-pages .monsterinsights-tools-content-area a:focus{color:#393f4c}#monsterinsights-tools-pages .monsterinsights-tools-content-area h2:first-child{color:#444;display:block;margin:0;border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}.insights_page_monsterinsights_tools .monsterinsights-header-inner{max-width:750px;margin:0 auto;display:block}body.insights_page_monsterinsights_tools .monsterinsights-main-nav-item{margin-left:0;margin-right:20px}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}#monsterinsights-tools-pages .form-table th,#monsterinsights-tools-pages .form-table td,#monsterinsights-tools-pages .form-table tr{padding:0px 0px 20px 0px;border:none}#monsterinsights-tools-pages .form-table th{padding-top:4px}#monsterinsights-tools-pages .monsterinsights-nav-tab .description{margin-top:0px}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url],#monsterinsights-tools-pages textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;margin:0;color:#444;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url]{height:40px}#monsterinsights-tools-pages textarea{height:100px}@media (max-width: 767px){#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"],#monsterinsights-tools-pages textarea{width:90% !important}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"]{height:auto}}@media screen and (max-width: 772px){.monsterinsights-reports-action-bar-actions{margin-top:20px;float:left;width:100%}.monsterinsights-pro-report-date-control-group .btn.btn-default{margin-bottom:15px;width:calc(50%)}.monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0;margin-right:0 !important}.monsterinsights-bootstrap-container .btn-group.monsterinsights-pro-report-date-control-group,.monsterinsights-bootstrap-container .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;width:100%}.monsterinsights-pro-report-date-control-group .monsterinsights-pro-datepicker{width:100%;text-align:center}}#monsterinsights-related-resources-list{list-style-type:disc;padding-left:40px}@font-face{font-family:'monsterinsights';src:url(../fonts/monsterinsights.eot);src:url(../fonts/monsterinsights.eot?#iefix) format("embedded-opentype"),url(../fonts/monsterinsights.woff) format("woff"),url(../fonts/monsterinsights.ttf) format("truetype"),url(../fonts/monsterinsights.svg#monsterinsights) format("svg");font-weight:400;font-style:normal}#monsterinsights-addons [class*='monsterinsights-']:before{display:inline-block;font-family:'monsterinsights';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#monsterinsights-addons .monsterinsights-configuration:before{content:'\0041'}#monsterinsights-addons .monsterinsights-leaf:before{content:'\0042'}#monsterinsights-addons .monsterinsights-lightbox:before{content:'\0044'}#monsterinsights-addons .monsterinsights-misc:before{content:'\0045'}#monsterinsights-addons .monsterinsights-mobile:before{content:'\0046'}#monsterinsights-addons .monsterinsights-pagination:before{content:'\0047'}#monsterinsights-addons .monsterinsights-proofing:before{content:'\0048'}#monsterinsights-addons .monsterinsights-slideshow:before{content:'\0049'}#monsterinsights-addons .monsterinsights-tags:before{content:'\004a'}#monsterinsights-addons .monsterinsights-thumbnails:before{content:'\004b'}#monsterinsights-addons .monsterinsights-video:before{content:'\004c'}#monsterinsights-addons .monsterinsights-watermark:before{content:'\004d'}#monsterinsights-addons .monsterinsights-cloud-download:before{content:'\004e'}#monsterinsights-addons .monsterinsights-toggle-on:before{content:'\004f'}#monsterinsights-addons .monsterinsights-plus-circle:before{content:'\0050'}#monsterinsights-addons .monsterinsights-down-arrow:before{content:'\0051'}#monsterinsights-addons .monsterinsights-list:before{content:'\0052'}#monsterinsights-addons .monsterinsights-pinterest-p:before{content:'\0054'}#monsterinsights-addons .monsterinsights-pencil:before{content:'\0055'}#monsterinsights-addons .monsterinsights-close:before{content:'\0056'}#monsterinsights-addons .monsterinsights-check:before{content:'\0057'}body.monsterinsights_page .monsterinsights-addons-subheading{background-color:#fff;height:45px;margin-left:-20px;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed}body.monsterinsights_page .monsterinsights-addons-subheading h1{font-size:20px;font-weight:400;line-height:45px;margin:0 0 0 20px;padding-left:20px}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .monsterinsights-addons-subheading{height:auto;padding-bottom:20px}}#monsterinsights-addon-heading:after{content:"";display:table;clear:both}#monsterinsights-addon-heading h1{float:left}#monsterinsights-addon-heading form{float:right}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading h1{float:none}}@media (max-width: 508px){#monsterinsights-addon-heading form{display:none}}@media (max-width: 600px){.monsterinsights-addon .interior{display:none !important}}#monsterinsights-addon-heading form input{border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px;background-color:#fff;color:#666;margin:7px 10px 0 5px;font-size:14px;padding:5px 8px}#monsterinsights-addon-heading form select{margin:-5px 20px 0 0}#monsterinsights-addon-heading form .spinner{float:none;margin:-3px auto auto}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading form{float:none;display:table;margin:10px auto 0}}#monsterinsights-addons{padding:0 0 10px}#monsterinsights-addons .button,#monsterinsights-addons .button-primary{text-shadow:none;background-color:#f7f7f7;color:#23282d;font-weight:600;border:1px solid #ccc;line-height:inherit;height:inherit;padding:5px 15px;box-shadow:none;cursor:pointer}#monsterinsights-addons .button:hover,#monsterinsights-addons .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addon-action-button{padding-left:20px;padding-right:20px}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-cloud-download{font-size:19px;float:left;margin-right:8px;color:#8d8f92}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-toggle-on{font-size:19px;float:left;margin-right:8px;margin-top:1px;color:#7cc048}#monsterinsights-addons .monsterinsights-addon-upgrade-button{background-color:#7cc048;color:#fff;float:none !important;margin:0 auto;display:table;line-height:25px}#monsterinsights-addons .monsterinsights-addon-upgrade-button:hover{background-color:#95dc5e;color:#fff;border-color:#95dc5e}#monsterinsights-addons .monsterinsights-addon-action-button.monsterinsights-activate-addon .monsterinsights-toggle-on{color:#e92c21;-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:FlipH}#monsterinsights-addons .monsterinsights-addon-title{margin-top:30px}#monsterinsights-addons .monsterinsights-addons-area:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area.licensed{margin:20px 0 40px;padding:0 0 20px;border-bottom:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{border:1px solid #ddd;position:relative;background:#fff;border-radius:3px;float:left;margin:0 2% 2% 0;min-height:465px;padding:0;text-align:center;width:32%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:both}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{min-height:420px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:20px auto;max-width:100%}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{color:#2f2f2f;font-weight:400;padding:0 20px;display:table;margin:0 0 90px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{background:#f7f7f7;border-top:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{position:absolute;bottom:0;float:left;width:100%;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin:0;padding:0;text-align:left}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior{padding:20px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior:after,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.addon-status{float:left;font-weight:700}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message a.button,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error a.button{float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.monsterinsights-spinner,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.monsterinsights-spinner{position:absolute;bottom:15px;right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action{display:inline;float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-5px 0 0;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{bottom:10px;float:none;left:15px;right:20px;width:auto}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .xinterior{width:100%;margin:0;background:#fff;border-left:4px solid #dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p{padding:10px;margin:5px 10px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .wrap{margin:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .icon32{display:none}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error h2{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table th{padding:10px 0;width:30% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="text"],#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="password"]{width:100% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p.submit{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon p{color:#2f2f2f;font-size:13px;margin:10px 0 0;text-shadow:0 1px #fff}#monsterinsights-addons .monsterinsights-addons-area #monsterinsights-addons-unlock-more-area{margin:40px auto 20px;padding-bottom:0;border-bottom:0}#monsterinsights-addons-more-area .monsterinsights-addon .interior{padding:15px 20px !important}#monsterinsights-addons-refresh-addons-form{width:100%;max-width:850px;float:left}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons-refresh-addons-form{max-width:450px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons-refresh-addons-form{max-width:50%}#monsterinsights-addons-refresh-addons-form input.button{display:block}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons-refresh-addons-form{width:100%;float:none}#monsterinsights-addons-refresh-addons-form input.button{display:block}}#monsterinsights-filter-form{float:right}#monsterinsights-filter-form input[type='submit'],#monsterinsights-filter-form select{background-color:#f7f7f7;color:#23282d;border:1px solid #ddd;height:30px;width:120px;margin-top:-2px}#monsterinsights-filter-form input{padding:5px 15px;box-shadow:0;cursor:pointer;background-color:#f7f7f7;color:#23282d}#monsterinsights-filter-form input:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-filter-form .spinner{float:left}@media only screen and (max-width: 1050px){#monsterinsights-addons-area .monsterinsights-addon{width:49%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n){margin-right:0}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n+1){clear:both}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:2%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:none}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:90px}}@media only screen and (max-width: 782px){#monsterinsights-addons-area .monsterinsights-addon{min-height:auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-7px 0 0}}@media only screen and (max-width: 600px){#monsterinsights-addons-area .monsterinsights-addon{width:99%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{float:left;width:100%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status{display:block;width:100%;margin:0 0 5px;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action{clear:both;display:block;width:100%;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action .button-primary{clear:both;float:none;margin:0 auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:120px}}
 
assets/css/bootstrap-prefixed.css DELETED
@@ -1,7407 +0,0 @@
1
- .monsterinsights-bootstrap-container html {
2
- font-family: sans-serif;
3
- -ms-text-size-adjust: 100%;
4
- -webkit-text-size-adjust: 100%;
5
- }
6
- .monsterinsights-bootstrap-container body {
7
- margin: 0;
8
- }
9
- .monsterinsights-bootstrap-container article,
10
- .monsterinsights-bootstrap-container aside,
11
- .monsterinsights-bootstrap-container details,
12
- .monsterinsights-bootstrap-container figcaption,
13
- .monsterinsights-bootstrap-container figure,
14
- .monsterinsights-bootstrap-container footer,
15
- .monsterinsights-bootstrap-container header,
16
- .monsterinsights-bootstrap-container hgroup,
17
- .monsterinsights-bootstrap-container main,
18
- .monsterinsights-bootstrap-container menu,
19
- .monsterinsights-bootstrap-container nav,
20
- .monsterinsights-bootstrap-container section,
21
- .monsterinsights-bootstrap-container summary {
22
- display: block;
23
- }
24
- .monsterinsights-bootstrap-container audio,
25
- .monsterinsights-bootstrap-container canvas,
26
- .monsterinsights-bootstrap-container progress,
27
- .monsterinsights-bootstrap-container video {
28
- display: inline-block;
29
- vertical-align: baseline;
30
- }
31
- .monsterinsights-bootstrap-container audio:not([controls]) {
32
- display: none;
33
- height: 0;
34
- }
35
- .monsterinsights-bootstrap-container [hidden],
36
- .monsterinsights-bootstrap-container template {
37
- display: none;
38
- }
39
- .monsterinsights-bootstrap-container a {
40
- background-color: transparent;
41
- }
42
- .monsterinsights-bootstrap-container a:active,
43
- .monsterinsights-bootstrap-container a:hover {
44
- outline: 0;
45
- }
46
- .monsterinsights-bootstrap-container abbr[title] {
47
- border-bottom: none;
48
- text-decoration: underline;
49
- -webkit-text-decoration: underline dotted;
50
- -moz-text-decoration: underline dotted;
51
- text-decoration: underline dotted;
52
- }
53
- .monsterinsights-bootstrap-container b,
54
- .monsterinsights-bootstrap-container strong {
55
- font-weight: bold;
56
- }
57
- .monsterinsights-bootstrap-container dfn {
58
- font-style: italic;
59
- }
60
- .monsterinsights-bootstrap-container h1 {
61
- font-size: 2em;
62
- margin: 0.67em 0;
63
- }
64
- .monsterinsights-bootstrap-container mark {
65
- background: #ff0;
66
- color: #000;
67
- }
68
- .monsterinsights-bootstrap-container small {
69
- font-size: 80%;
70
- }
71
- .monsterinsights-bootstrap-container sub,
72
- .monsterinsights-bootstrap-container sup {
73
- font-size: 75%;
74
- line-height: 0;
75
- position: relative;
76
- vertical-align: baseline;
77
- }
78
- .monsterinsights-bootstrap-container sup {
79
- top: -0.5em;
80
- }
81
- .monsterinsights-bootstrap-container sub {
82
- bottom: -0.25em;
83
- }
84
- .monsterinsights-bootstrap-container img {
85
- border: 0;
86
- }
87
- .monsterinsights-bootstrap-container svg:not(:root) {
88
- overflow: hidden;
89
- }
90
- .monsterinsights-bootstrap-container figure {
91
- margin: 1em 40px;
92
- }
93
- .monsterinsights-bootstrap-container hr {
94
- -webkit-box-sizing: content-box;
95
- -moz-box-sizing: content-box;
96
- box-sizing: content-box;
97
- height: 0;
98
- }
99
- .monsterinsights-bootstrap-container pre {
100
- overflow: auto;
101
- }
102
- .monsterinsights-bootstrap-container code,
103
- .monsterinsights-bootstrap-container kbd,
104
- .monsterinsights-bootstrap-container pre,
105
- .monsterinsights-bootstrap-container samp {
106
- font-family: monospace, monospace;
107
- font-size: 1em;
108
- }
109
- .monsterinsights-bootstrap-container button,
110
- .monsterinsights-bootstrap-container input,
111
- .monsterinsights-bootstrap-container optgroup,
112
- .monsterinsights-bootstrap-container select,
113
- .monsterinsights-bootstrap-container textarea {
114
- color: inherit;
115
- font: inherit;
116
- margin: 0;
117
- }
118
- .monsterinsights-bootstrap-container button {
119
- overflow: visible;
120
- }
121
- .monsterinsights-bootstrap-container button,
122
- .monsterinsights-bootstrap-container select {
123
- text-transform: none;
124
- }
125
- .monsterinsights-bootstrap-container button,
126
- .monsterinsights-bootstrap-container html input[type="button"],
127
- .monsterinsights-bootstrap-container input[type="reset"],
128
- .monsterinsights-bootstrap-container input[type="submit"] {
129
- -webkit-appearance: button;
130
- cursor: pointer;
131
- }
132
- .monsterinsights-bootstrap-container button[disabled],
133
- .monsterinsights-bootstrap-container html input[disabled] {
134
- cursor: default;
135
- }
136
- .monsterinsights-bootstrap-container button::-moz-focus-inner,
137
- .monsterinsights-bootstrap-container input::-moz-focus-inner {
138
- border: 0;
139
- padding: 0;
140
- }
141
- .monsterinsights-bootstrap-container input {
142
- line-height: normal;
143
- }
144
- .monsterinsights-bootstrap-container input[type="checkbox"],
145
- .monsterinsights-bootstrap-container input[type="radio"] {
146
- -webkit-box-sizing: border-box;
147
- -moz-box-sizing: border-box;
148
- box-sizing: border-box;
149
- padding: 0;
150
- }
151
- .monsterinsights-bootstrap-container input[type="number"]::-webkit-inner-spin-button,
152
- .monsterinsights-bootstrap-container input[type="number"]::-webkit-outer-spin-button {
153
- height: auto;
154
- }
155
- .monsterinsights-bootstrap-container input[type="search"] {
156
- -webkit-appearance: textfield;
157
- -webkit-box-sizing: content-box;
158
- -moz-box-sizing: content-box;
159
- box-sizing: content-box;
160
- }
161
- .monsterinsights-bootstrap-container input[type="search"]::-webkit-search-cancel-button,
162
- .monsterinsights-bootstrap-container input[type="search"]::-webkit-search-decoration {
163
- -webkit-appearance: none;
164
- }
165
- .monsterinsights-bootstrap-container fieldset {
166
- border: 1px solid #c0c0c0;
167
- margin: 0 2px;
168
- padding: 0.35em 0.625em 0.75em;
169
- }
170
- .monsterinsights-bootstrap-container legend {
171
- border: 0;
172
- padding: 0;
173
- }
174
- .monsterinsights-bootstrap-container textarea {
175
- overflow: auto;
176
- }
177
- .monsterinsights-bootstrap-container optgroup {
178
- font-weight: bold;
179
- }
180
- .monsterinsights-bootstrap-container table {
181
- border-collapse: collapse;
182
- border-spacing: 0;
183
- }
184
- .monsterinsights-bootstrap-container td,
185
- .monsterinsights-bootstrap-container th {
186
- padding: 0;
187
- }
188
- @media print {
189
- .monsterinsights-bootstrap-container *,
190
- .monsterinsights-bootstrap-container *:before,
191
- .monsterinsights-bootstrap-container *:after {
192
- color: #000 !important;
193
- text-shadow: none !important;
194
- background: transparent !important;
195
- -webkit-box-shadow: none !important;
196
- box-shadow: none !important;
197
- }
198
- .monsterinsights-bootstrap-container a,
199
- .monsterinsights-bootstrap-container a:visited {
200
- text-decoration: underline;
201
- }
202
- .monsterinsights-bootstrap-container a[href]:after {
203
- content: " (" attr(href) ")";
204
- }
205
- .monsterinsights-bootstrap-container abbr[title]:after {
206
- content: " (" attr(title) ")";
207
- }
208
- .monsterinsights-bootstrap-container a[href^="#"]:after,
209
- .monsterinsights-bootstrap-container a[href^="javascript:"]:after {
210
- content: "";
211
- }
212
- .monsterinsights-bootstrap-container pre,
213
- .monsterinsights-bootstrap-container blockquote {
214
- border: 1px solid #999;
215
- page-break-inside: avoid;
216
- }
217
- .monsterinsights-bootstrap-container thead {
218
- display: table-header-group;
219
- }
220
- .monsterinsights-bootstrap-container tr,
221
- .monsterinsights-bootstrap-container img {
222
- page-break-inside: avoid;
223
- }
224
- .monsterinsights-bootstrap-container img {
225
- max-width: 100% !important;
226
- }
227
- .monsterinsights-bootstrap-container p,
228
- .monsterinsights-bootstrap-container h2,
229
- .monsterinsights-bootstrap-container h3 {
230
- orphans: 3;
231
- widows: 3;
232
- }
233
- .monsterinsights-bootstrap-container h2,
234
- .monsterinsights-bootstrap-container h3 {
235
- page-break-after: avoid;
236
- }
237
- .monsterinsights-bootstrap-container .navbar {
238
- display: none;
239
- }
240
- .monsterinsights-bootstrap-container .btn > .caret,
241
- .monsterinsights-bootstrap-container .dropup > .btn > .caret {
242
- border-top-color: #000 !important;
243
- }
244
- .monsterinsights-bootstrap-container .label {
245
- border: 1px solid #000;
246
- }
247
- .monsterinsights-bootstrap-container .table {
248
- border-collapse: collapse !important;
249
- }
250
- .monsterinsights-bootstrap-container .table td,
251
- .monsterinsights-bootstrap-container .table th {
252
- background-color: #fff !important;
253
- }
254
- .monsterinsights-bootstrap-container .table-bordered th,
255
- .monsterinsights-bootstrap-container .table-bordered td {
256
- border: 1px solid #ddd !important;
257
- }
258
- }
259
- @font-face {
260
- font-family: "Glyphicons Halflings";
261
- src: url("../fonts/glyphicons-halflings-regular.eot");
262
- src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
263
- }
264
- .monsterinsights-bootstrap-container .glyphicon {
265
- position: relative;
266
- top: 1px;
267
- display: inline-block;
268
- font-family: "Glyphicons Halflings";
269
- font-style: normal;
270
- font-weight: 400;
271
- line-height: 1;
272
- -webkit-font-smoothing: antialiased;
273
- -moz-osx-font-smoothing: grayscale;
274
- }
275
- .monsterinsights-bootstrap-container .glyphicon-asterisk:before {
276
- content: "\002a";
277
- }
278
- .monsterinsights-bootstrap-container .glyphicon-plus:before {
279
- content: "\002b";
280
- }
281
- .monsterinsights-bootstrap-container .glyphicon-euro:before,
282
- .monsterinsights-bootstrap-container .glyphicon-eur:before {
283
- content: "\20ac";
284
- }
285
- .monsterinsights-bootstrap-container .glyphicon-minus:before {
286
- content: "\2212";
287
- }
288
- .monsterinsights-bootstrap-container .glyphicon-cloud:before {
289
- content: "\2601";
290
- }
291
- .monsterinsights-bootstrap-container .glyphicon-envelope:before {
292
- content: "\2709";
293
- }
294
- .monsterinsights-bootstrap-container .glyphicon-pencil:before {
295
- content: "\270f";
296
- }
297
- .monsterinsights-bootstrap-container .glyphicon-glass:before {
298
- content: "\e001";
299
- }
300
- .monsterinsights-bootstrap-container .glyphicon-music:before {
301
- content: "\e002";
302
- }
303
- .monsterinsights-bootstrap-container .glyphicon-search:before {
304
- content: "\e003";
305
- }
306
- .monsterinsights-bootstrap-container .glyphicon-heart:before {
307
- content: "\e005";
308
- }
309
- .monsterinsights-bootstrap-container .glyphicon-star:before {
310
- content: "\e006";
311
- }
312
- .monsterinsights-bootstrap-container .glyphicon-star-empty:before {
313
- content: "\e007";
314
- }
315
- .monsterinsights-bootstrap-container .glyphicon-user:before {
316
- content: "\e008";
317
- }
318
- .monsterinsights-bootstrap-container .glyphicon-film:before {
319
- content: "\e009";
320
- }
321
- .monsterinsights-bootstrap-container .glyphicon-th-large:before {
322
- content: "\e010";
323
- }
324
- .monsterinsights-bootstrap-container .glyphicon-th:before {
325
- content: "\e011";
326
- }
327
- .monsterinsights-bootstrap-container .glyphicon-th-list:before {
328
- content: "\e012";
329
- }
330
- .monsterinsights-bootstrap-container .glyphicon-ok:before {
331
- content: "\e013";
332
- }
333
- .monsterinsights-bootstrap-container .glyphicon-remove:before {
334
- content: "\e014";
335
- }
336
- .monsterinsights-bootstrap-container .glyphicon-zoom-in:before {
337
- content: "\e015";
338
- }
339
- .monsterinsights-bootstrap-container .glyphicon-zoom-out:before {
340
- content: "\e016";
341
- }
342
- .monsterinsights-bootstrap-container .glyphicon-off:before {
343
- content: "\e017";
344
- }
345
- .monsterinsights-bootstrap-container .glyphicon-signal:before {
346
- content: "\e018";
347
- }
348
- .monsterinsights-bootstrap-container .glyphicon-cog:before {
349
- content: "\e019";
350
- }
351
- .monsterinsights-bootstrap-container .glyphicon-trash:before {
352
- content: "\e020";
353
- }
354
- .monsterinsights-bootstrap-container .glyphicon-home:before {
355
- content: "\e021";
356
- }
357
- .monsterinsights-bootstrap-container .glyphicon-file:before {
358
- content: "\e022";
359
- }
360
- .monsterinsights-bootstrap-container .glyphicon-time:before {
361
- content: "\e023";
362
- }
363
- .monsterinsights-bootstrap-container .glyphicon-road:before {
364
- content: "\e024";
365
- }
366
- .monsterinsights-bootstrap-container .glyphicon-download-alt:before {
367
- content: "\e025";
368
- }
369
- .monsterinsights-bootstrap-container .glyphicon-download:before {
370
- content: "\e026";
371
- }
372
- .monsterinsights-bootstrap-container .glyphicon-upload:before {
373
- content: "\e027";
374
- }
375
- .monsterinsights-bootstrap-container .glyphicon-inbox:before {
376
- content: "\e028";
377
- }
378
- .monsterinsights-bootstrap-container .glyphicon-play-circle:before {
379
- content: "\e029";
380
- }
381
- .monsterinsights-bootstrap-container .glyphicon-repeat:before {
382
- content: "\e030";
383
- }
384
- .monsterinsights-bootstrap-container .glyphicon-refresh:before {
385
- content: "\e031";
386
- }
387
- .monsterinsights-bootstrap-container .glyphicon-list-alt:before {
388
- content: "\e032";
389
- }
390
- .monsterinsights-bootstrap-container .glyphicon-lock:before {
391
- content: "\e033";
392
- }
393
- .monsterinsights-bootstrap-container .glyphicon-flag:before {
394
- content: "\e034";
395
- }
396
- .monsterinsights-bootstrap-container .glyphicon-headphones:before {
397
- content: "\e035";
398
- }
399
- .monsterinsights-bootstrap-container .glyphicon-volume-off:before {
400
- content: "\e036";
401
- }
402
- .monsterinsights-bootstrap-container .glyphicon-volume-down:before {
403
- content: "\e037";
404
- }
405
- .monsterinsights-bootstrap-container .glyphicon-volume-up:before {
406
- content: "\e038";
407
- }
408
- .monsterinsights-bootstrap-container .glyphicon-qrcode:before {
409
- content: "\e039";
410
- }
411
- .monsterinsights-bootstrap-container .glyphicon-barcode:before {
412
- content: "\e040";
413
- }
414
- .monsterinsights-bootstrap-container .glyphicon-tag:before {
415
- content: "\e041";
416
- }
417
- .monsterinsights-bootstrap-container .glyphicon-tags:before {
418
- content: "\e042";
419
- }
420
- .monsterinsights-bootstrap-container .glyphicon-book:before {
421
- content: "\e043";
422
- }
423
- .monsterinsights-bootstrap-container .glyphicon-bookmark:before {
424
- content: "\e044";
425
- }
426
- .monsterinsights-bootstrap-container .glyphicon-print:before {
427
- content: "\e045";
428
- }
429
- .monsterinsights-bootstrap-container .glyphicon-camera:before {
430
- content: "\e046";
431
- }
432
- .monsterinsights-bootstrap-container .glyphicon-font:before {
433
- content: "\e047";
434
- }
435
- .monsterinsights-bootstrap-container .glyphicon-bold:before {
436
- content: "\e048";
437
- }
438
- .monsterinsights-bootstrap-container .glyphicon-italic:before {
439
- content: "\e049";
440
- }
441
- .monsterinsights-bootstrap-container .glyphicon-text-height:before {
442
- content: "\e050";
443
- }
444
- .monsterinsights-bootstrap-container .glyphicon-text-width:before {
445
- content: "\e051";
446
- }
447
- .monsterinsights-bootstrap-container .glyphicon-align-left:before {
448
- content: "\e052";
449
- }
450
- .monsterinsights-bootstrap-container .glyphicon-align-center:before {
451
- content: "\e053";
452
- }
453
- .monsterinsights-bootstrap-container .glyphicon-align-right:before {
454
- content: "\e054";
455
- }
456
- .monsterinsights-bootstrap-container .glyphicon-align-justify:before {
457
- content: "\e055";
458
- }
459
- .monsterinsights-bootstrap-container .glyphicon-list:before {
460
- content: "\e056";
461
- }
462
- .monsterinsights-bootstrap-container .glyphicon-indent-left:before {
463
- content: "\e057";
464
- }
465
- .monsterinsights-bootstrap-container .glyphicon-indent-right:before {
466
- content: "\e058";
467
- }
468
- .monsterinsights-bootstrap-container .glyphicon-facetime-video:before {
469
- content: "\e059";
470
- }
471
- .monsterinsights-bootstrap-container .glyphicon-picture:before {
472
- content: "\e060";
473
- }
474
- .monsterinsights-bootstrap-container .glyphicon-map-marker:before {
475
- content: "\e062";
476
- }
477
- .monsterinsights-bootstrap-container .glyphicon-adjust:before {
478
- content: "\e063";
479
- }
480
- .monsterinsights-bootstrap-container .glyphicon-tint:before {
481
- content: "\e064";
482
- }
483
- .monsterinsights-bootstrap-container .glyphicon-edit:before {
484
- content: "\e065";
485
- }
486
- .monsterinsights-bootstrap-container .glyphicon-share:before {
487
- content: "\e066";
488
- }
489
- .monsterinsights-bootstrap-container .glyphicon-check:before {
490
- content: "\e067";
491
- }
492
- .monsterinsights-bootstrap-container .glyphicon-move:before {
493
- content: "\e068";
494
- }
495
- .monsterinsights-bootstrap-container .glyphicon-step-backward:before {
496
- content: "\e069";
497
- }
498
- .monsterinsights-bootstrap-container .glyphicon-fast-backward:before {
499
- content: "\e070";
500
- }
501
- .monsterinsights-bootstrap-container .glyphicon-backward:before {
502
- content: "\e071";
503
- }
504
- .monsterinsights-bootstrap-container .glyphicon-play:before {
505
- content: "\e072";
506
- }
507
- .monsterinsights-bootstrap-container .glyphicon-pause:before {
508
- content: "\e073";
509
- }
510
- .monsterinsights-bootstrap-container .glyphicon-stop:before {
511
- content: "\e074";
512
- }
513
- .monsterinsights-bootstrap-container .glyphicon-forward:before {
514
- content: "\e075";
515
- }
516
- .monsterinsights-bootstrap-container .glyphicon-fast-forward:before {
517
- content: "\e076";
518
- }
519
- .monsterinsights-bootstrap-container .glyphicon-step-forward:before {
520
- content: "\e077";
521
- }
522
- .monsterinsights-bootstrap-container .glyphicon-eject:before {
523
- content: "\e078";
524
- }
525
- .monsterinsights-bootstrap-container .glyphicon-chevron-left:before {
526
- content: "\e079";
527
- }
528
- .monsterinsights-bootstrap-container .glyphicon-chevron-right:before {
529
- content: "\e080";
530
- }
531
- .monsterinsights-bootstrap-container .glyphicon-plus-sign:before {
532
- content: "\e081";
533
- }
534
- .monsterinsights-bootstrap-container .glyphicon-minus-sign:before {
535
- content: "\e082";
536
- }
537
- .monsterinsights-bootstrap-container .glyphicon-remove-sign:before {
538
- content: "\e083";
539
- }
540
- .monsterinsights-bootstrap-container .glyphicon-ok-sign:before {
541
- content: "\e084";
542
- }
543
- .monsterinsights-bootstrap-container .glyphicon-question-sign:before {
544
- content: "\e085";
545
- }
546
- .monsterinsights-bootstrap-container .glyphicon-info-sign:before {
547
- content: "\e086";
548
- }
549
- .monsterinsights-bootstrap-container .glyphicon-screenshot:before {
550
- content: "\e087";
551
- }
552
- .monsterinsights-bootstrap-container .glyphicon-remove-circle:before {
553
- content: "\e088";
554
- }
555
- .monsterinsights-bootstrap-container .glyphicon-ok-circle:before {
556
- content: "\e089";
557
- }
558
- .monsterinsights-bootstrap-container .glyphicon-ban-circle:before {
559
- content: "\e090";
560
- }
561
- .monsterinsights-bootstrap-container .glyphicon-arrow-left:before {
562
- content: "\e091";
563
- }
564
- .monsterinsights-bootstrap-container .glyphicon-arrow-right:before {
565
- content: "\e092";
566
- }
567
- .monsterinsights-bootstrap-container .glyphicon-arrow-up:before {
568
- content: "\e093";
569
- }
570
- .monsterinsights-bootstrap-container .glyphicon-arrow-down:before {
571
- content: "\e094";
572
- }
573
- .monsterinsights-bootstrap-container .glyphicon-share-alt:before {
574
- content: "\e095";
575
- }
576
- .monsterinsights-bootstrap-container .glyphicon-resize-full:before {
577
- content: "\e096";
578
- }
579
- .monsterinsights-bootstrap-container .glyphicon-resize-small:before {
580
- content: "\e097";
581
- }
582
- .monsterinsights-bootstrap-container .glyphicon-exclamation-sign:before {
583
- content: "\e101";
584
- }
585
- .monsterinsights-bootstrap-container .glyphicon-gift:before {
586
- content: "\e102";
587
- }
588
- .monsterinsights-bootstrap-container .glyphicon-leaf:before {
589
- content: "\e103";
590
- }
591
- .monsterinsights-bootstrap-container .glyphicon-fire:before {
592
- content: "\e104";
593
- }
594
- .monsterinsights-bootstrap-container .glyphicon-eye-open:before {
595
- content: "\e105";
596
- }
597
- .monsterinsights-bootstrap-container .glyphicon-eye-close:before {
598
- content: "\e106";
599
- }
600
- .monsterinsights-bootstrap-container .glyphicon-warning-sign:before {
601
- content: "\e107";
602
- }
603
- .monsterinsights-bootstrap-container .glyphicon-plane:before {
604
- content: "\e108";
605
- }
606
- .monsterinsights-bootstrap-container .glyphicon-calendar:before {
607
- content: "\e109";
608
- }
609
- .monsterinsights-bootstrap-container .glyphicon-random:before {
610
- content: "\e110";
611
- }
612
- .monsterinsights-bootstrap-container .glyphicon-comment:before {
613
- content: "\e111";
614
- }
615
- .monsterinsights-bootstrap-container .glyphicon-magnet:before {
616
- content: "\e112";
617
- }
618
- .monsterinsights-bootstrap-container .glyphicon-chevron-up:before {
619
- content: "\e113";
620
- }
621
- .monsterinsights-bootstrap-container .glyphicon-chevron-down:before {
622
- content: "\e114";
623
- }
624
- .monsterinsights-bootstrap-container .glyphicon-retweet:before {
625
- content: "\e115";
626
- }
627
- .monsterinsights-bootstrap-container .glyphicon-shopping-cart:before {
628
- content: "\e116";
629
- }
630
- .monsterinsights-bootstrap-container .glyphicon-folder-close:before {
631
- content: "\e117";
632
- }
633
- .monsterinsights-bootstrap-container .glyphicon-folder-open:before {
634
- content: "\e118";
635
- }
636
- .monsterinsights-bootstrap-container .glyphicon-resize-vertical:before {
637
- content: "\e119";
638
- }
639
- .monsterinsights-bootstrap-container .glyphicon-resize-horizontal:before {
640
- content: "\e120";
641
- }
642
- .monsterinsights-bootstrap-container .glyphicon-hdd:before {
643
- content: "\e121";
644
- }
645
- .monsterinsights-bootstrap-container .glyphicon-bullhorn:before {
646
- content: "\e122";
647
- }
648
- .monsterinsights-bootstrap-container .glyphicon-bell:before {
649
- content: "\e123";
650
- }
651
- .monsterinsights-bootstrap-container .glyphicon-certificate:before {
652
- content: "\e124";
653
- }
654
- .monsterinsights-bootstrap-container .glyphicon-thumbs-up:before {
655
- content: "\e125";
656
- }
657
- .monsterinsights-bootstrap-container .glyphicon-thumbs-down:before {
658
- content: "\e126";
659
- }
660
- .monsterinsights-bootstrap-container .glyphicon-hand-right:before {
661
- content: "\e127";
662
- }
663
- .monsterinsights-bootstrap-container .glyphicon-hand-left:before {
664
- content: "\e128";
665
- }
666
- .monsterinsights-bootstrap-container .glyphicon-hand-up:before {
667
- content: "\e129";
668
- }
669
- .monsterinsights-bootstrap-container .glyphicon-hand-down:before {
670
- content: "\e130";
671
- }
672
- .monsterinsights-bootstrap-container .glyphicon-circle-arrow-right:before {
673
- content: "\e131";
674
- }
675
- .monsterinsights-bootstrap-container .glyphicon-circle-arrow-left:before {
676
- content: "\e132";
677
- }
678
- .monsterinsights-bootstrap-container .glyphicon-circle-arrow-up:before {
679
- content: "\e133";
680
- }
681
- .monsterinsights-bootstrap-container .glyphicon-circle-arrow-down:before {
682
- content: "\e134";
683
- }
684
- .monsterinsights-bootstrap-container .glyphicon-globe:before {
685
- content: "\e135";
686
- }
687
- .monsterinsights-bootstrap-container .glyphicon-wrench:before {
688
- content: "\e136";
689
- }
690
- .monsterinsights-bootstrap-container .glyphicon-tasks:before {
691
- content: "\e137";
692
- }
693
- .monsterinsights-bootstrap-container .glyphicon-filter:before {
694
- content: "\e138";
695
- }
696
- .monsterinsights-bootstrap-container .glyphicon-briefcase:before {
697
- content: "\e139";
698
- }
699
- .monsterinsights-bootstrap-container .glyphicon-fullscreen:before {
700
- content: "\e140";
701
- }
702
- .monsterinsights-bootstrap-container .glyphicon-dashboard:before {
703
- content: "\e141";
704
- }
705
- .monsterinsights-bootstrap-container .glyphicon-paperclip:before {
706
- content: "\e142";
707
- }
708
- .monsterinsights-bootstrap-container .glyphicon-heart-empty:before {
709
- content: "\e143";
710
- }
711
- .monsterinsights-bootstrap-container .glyphicon-link:before {
712
- content: "\e144";
713
- }
714
- .monsterinsights-bootstrap-container .glyphicon-phone:before {
715
- content: "\e145";
716
- }
717
- .monsterinsights-bootstrap-container .glyphicon-pushpin:before {
718
- content: "\e146";
719
- }
720
- .monsterinsights-bootstrap-container .glyphicon-usd:before {
721
- content: "\e148";
722
- }
723
- .monsterinsights-bootstrap-container .glyphicon-gbp:before {
724
- content: "\e149";
725
- }
726
- .monsterinsights-bootstrap-container .glyphicon-sort:before {
727
- content: "\e150";
728
- }
729
- .monsterinsights-bootstrap-container .glyphicon-sort-by-alphabet:before {
730
- content: "\e151";
731
- }
732
- .monsterinsights-bootstrap-container .glyphicon-sort-by-alphabet-alt:before {
733
- content: "\e152";
734
- }
735
- .monsterinsights-bootstrap-container .glyphicon-sort-by-order:before {
736
- content: "\e153";
737
- }
738
- .monsterinsights-bootstrap-container .glyphicon-sort-by-order-alt:before {
739
- content: "\e154";
740
- }
741
- .monsterinsights-bootstrap-container .glyphicon-sort-by-attributes:before {
742
- content: "\e155";
743
- }
744
- .monsterinsights-bootstrap-container .glyphicon-sort-by-attributes-alt:before {
745
- content: "\e156";
746
- }
747
- .monsterinsights-bootstrap-container .glyphicon-unchecked:before {
748
- content: "\e157";
749
- }
750
- .monsterinsights-bootstrap-container .glyphicon-expand:before {
751
- content: "\e158";
752
- }
753
- .monsterinsights-bootstrap-container .glyphicon-collapse-down:before {
754
- content: "\e159";
755
- }
756
- .monsterinsights-bootstrap-container .glyphicon-collapse-up:before {
757
- content: "\e160";
758
- }
759
- .monsterinsights-bootstrap-container .glyphicon-log-in:before {
760
- content: "\e161";
761
- }
762
- .monsterinsights-bootstrap-container .glyphicon-flash:before {
763
- content: "\e162";
764
- }
765
- .monsterinsights-bootstrap-container .glyphicon-log-out:before {
766
- content: "\e163";
767
- }
768
- .monsterinsights-bootstrap-container .glyphicon-new-window:before {
769
- content: "\e164";
770
- }
771
- .monsterinsights-bootstrap-container .glyphicon-record:before {
772
- content: "\e165";
773
- }
774
- .monsterinsights-bootstrap-container .glyphicon-save:before {
775
- content: "\e166";
776
- }
777
- .monsterinsights-bootstrap-container .glyphicon-open:before {
778
- content: "\e167";
779
- }
780
- .monsterinsights-bootstrap-container .glyphicon-saved:before {
781
- content: "\e168";
782
- }
783
- .monsterinsights-bootstrap-container .glyphicon-import:before {
784
- content: "\e169";
785
- }
786
- .monsterinsights-bootstrap-container .glyphicon-export:before {
787
- content: "\e170";
788
- }
789
- .monsterinsights-bootstrap-container .glyphicon-send:before {
790
- content: "\e171";
791
- }
792
- .monsterinsights-bootstrap-container .glyphicon-floppy-disk:before {
793
- content: "\e172";
794
- }
795
- .monsterinsights-bootstrap-container .glyphicon-floppy-saved:before {
796
- content: "\e173";
797
- }
798
- .monsterinsights-bootstrap-container .glyphicon-floppy-remove:before {
799
- content: "\e174";
800
- }
801
- .monsterinsights-bootstrap-container .glyphicon-floppy-save:before {
802
- content: "\e175";
803
- }
804
- .monsterinsights-bootstrap-container .glyphicon-floppy-open:before {
805
- content: "\e176";
806
- }
807
- .monsterinsights-bootstrap-container .glyphicon-credit-card:before {
808
- content: "\e177";
809
- }
810
- .monsterinsights-bootstrap-container .glyphicon-transfer:before {
811
- content: "\e178";
812
- }
813
- .monsterinsights-bootstrap-container .glyphicon-cutlery:before {
814
- content: "\e179";
815
- }
816
- .monsterinsights-bootstrap-container .glyphicon-header:before {
817
- content: "\e180";
818
- }
819
- .monsterinsights-bootstrap-container .glyphicon-compressed:before {
820
- content: "\e181";
821
- }
822
- .monsterinsights-bootstrap-container .glyphicon-earphone:before {
823
- content: "\e182";
824
- }
825
- .monsterinsights-bootstrap-container .glyphicon-phone-alt:before {
826
- content: "\e183";
827
- }
828
- .monsterinsights-bootstrap-container .glyphicon-tower:before {
829
- content: "\e184";
830
- }
831
- .monsterinsights-bootstrap-container .glyphicon-stats:before {
832
- content: "\e185";
833
- }
834
- .monsterinsights-bootstrap-container .glyphicon-sd-video:before {
835
- content: "\e186";
836
- }
837
- .monsterinsights-bootstrap-container .glyphicon-hd-video:before {
838
- content: "\e187";
839
- }
840
- .monsterinsights-bootstrap-container .glyphicon-subtitles:before {
841
- content: "\e188";
842
- }
843
- .monsterinsights-bootstrap-container .glyphicon-sound-stereo:before {
844
- content: "\e189";
845
- }
846
- .monsterinsights-bootstrap-container .glyphicon-sound-dolby:before {
847
- content: "\e190";
848
- }
849
- .monsterinsights-bootstrap-container .glyphicon-sound-5-1:before {
850
- content: "\e191";
851
- }
852
- .monsterinsights-bootstrap-container .glyphicon-sound-6-1:before {
853
- content: "\e192";
854
- }
855
- .monsterinsights-bootstrap-container .glyphicon-sound-7-1:before {
856
- content: "\e193";
857
- }
858
- .monsterinsights-bootstrap-container .glyphicon-copyright-mark:before {
859
- content: "\e194";
860
- }
861
- .monsterinsights-bootstrap-container .glyphicon-registration-mark:before {
862
- content: "\e195";
863
- }
864
- .monsterinsights-bootstrap-container .glyphicon-cloud-download:before {
865
- content: "\e197";
866
- }
867
- .monsterinsights-bootstrap-container .glyphicon-cloud-upload:before {
868
- content: "\e198";
869
- }
870
- .monsterinsights-bootstrap-container .glyphicon-tree-conifer:before {
871
- content: "\e199";
872
- }
873
- .monsterinsights-bootstrap-container .glyphicon-tree-deciduous:before {
874
- content: "\e200";
875
- }
876
- .monsterinsights-bootstrap-container .glyphicon-cd:before {
877
- content: "\e201";
878
- }
879
- .monsterinsights-bootstrap-container .glyphicon-save-file:before {
880
- content: "\e202";
881
- }
882
- .monsterinsights-bootstrap-container .glyphicon-open-file:before {
883
- content: "\e203";
884
- }
885
- .monsterinsights-bootstrap-container .glyphicon-level-up:before {
886
- content: "\e204";
887
- }
888
- .monsterinsights-bootstrap-container .glyphicon-copy:before {
889
- content: "\e205";
890
- }
891
- .monsterinsights-bootstrap-container .glyphicon-paste:before {
892
- content: "\e206";
893
- }
894
- .monsterinsights-bootstrap-container .glyphicon-alert:before {
895
- content: "\e209";
896
- }
897
- .monsterinsights-bootstrap-container .glyphicon-equalizer:before {
898
- content: "\e210";
899
- }
900
- .monsterinsights-bootstrap-container .glyphicon-king:before {
901
- content: "\e211";
902
- }
903
- .monsterinsights-bootstrap-container .glyphicon-queen:before {
904
- content: "\e212";
905
- }
906
- .monsterinsights-bootstrap-container .glyphicon-pawn:before {
907
- content: "\e213";
908
- }
909
- .monsterinsights-bootstrap-container .glyphicon-bishop:before {
910
- content: "\e214";
911
- }
912
- .monsterinsights-bootstrap-container .glyphicon-knight:before {
913
- content: "\e215";
914
- }
915
- .monsterinsights-bootstrap-container .glyphicon-baby-formula:before {
916
- content: "\e216";
917
- }
918
- .monsterinsights-bootstrap-container .glyphicon-tent:before {
919
- content: "\26fa";
920
- }
921
- .monsterinsights-bootstrap-container .glyphicon-blackboard:before {
922
- content: "\e218";
923
- }
924
- .monsterinsights-bootstrap-container .glyphicon-bed:before {
925
- content: "\e219";
926
- }
927
- .monsterinsights-bootstrap-container .glyphicon-apple:before {
928
- content: "\f8ff";
929
- }
930
- .monsterinsights-bootstrap-container .glyphicon-erase:before {
931
- content: "\e221";
932
- }
933
- .monsterinsights-bootstrap-container .glyphicon-hourglass:before {
934
- content: "\231b";
935
- }
936
- .monsterinsights-bootstrap-container .glyphicon-lamp:before {
937
- content: "\e223";
938
- }
939
- .monsterinsights-bootstrap-container .glyphicon-duplicate:before {
940
- content: "\e224";
941
- }
942
- .monsterinsights-bootstrap-container .glyphicon-piggy-bank:before {
943
- content: "\e225";
944
- }
945
- .monsterinsights-bootstrap-container .glyphicon-scissors:before {
946
- content: "\e226";
947
- }
948
- .monsterinsights-bootstrap-container .glyphicon-bitcoin:before {
949
- content: "\e227";
950
- }
951
- .monsterinsights-bootstrap-container .glyphicon-btc:before {
952
- content: "\e227";
953
- }
954
- .monsterinsights-bootstrap-container .glyphicon-xbt:before {
955
- content: "\e227";
956
- }
957
- .monsterinsights-bootstrap-container .glyphicon-yen:before {
958
- content: "\00a5";
959
- }
960
- .monsterinsights-bootstrap-container .glyphicon-jpy:before {
961
- content: "\00a5";
962
- }
963
- .monsterinsights-bootstrap-container .glyphicon-ruble:before {
964
- content: "\20bd";
965
- }
966
- .monsterinsights-bootstrap-container .glyphicon-rub:before {
967
- content: "\20bd";
968
- }
969
- .monsterinsights-bootstrap-container .glyphicon-scale:before {
970
- content: "\e230";
971
- }
972
- .monsterinsights-bootstrap-container .glyphicon-ice-lolly:before {
973
- content: "\e231";
974
- }
975
- .monsterinsights-bootstrap-container .glyphicon-ice-lolly-tasted:before {
976
- content: "\e232";
977
- }
978
- .monsterinsights-bootstrap-container .glyphicon-education:before {
979
- content: "\e233";
980
- }
981
- .monsterinsights-bootstrap-container .glyphicon-option-horizontal:before {
982
- content: "\e234";
983
- }
984
- .monsterinsights-bootstrap-container .glyphicon-option-vertical:before {
985
- content: "\e235";
986
- }
987
- .monsterinsights-bootstrap-container .glyphicon-menu-hamburger:before {
988
- content: "\e236";
989
- }
990
- .monsterinsights-bootstrap-container .glyphicon-modal-window:before {
991
- content: "\e237";
992
- }
993
- .monsterinsights-bootstrap-container .glyphicon-oil:before {
994
- content: "\e238";
995
- }
996
- .monsterinsights-bootstrap-container .glyphicon-grain:before {
997
- content: "\e239";
998
- }
999
- .monsterinsights-bootstrap-container .glyphicon-sunglasses:before {
1000
- content: "\e240";
1001
- }
1002
- .monsterinsights-bootstrap-container .glyphicon-text-size:before {
1003
- content: "\e241";
1004
- }
1005
- .monsterinsights-bootstrap-container .glyphicon-text-color:before {
1006
- content: "\e242";
1007
- }
1008
- .monsterinsights-bootstrap-container .glyphicon-text-background:before {
1009
- content: "\e243";
1010
- }
1011
- .monsterinsights-bootstrap-container .glyphicon-object-align-top:before {
1012
- content: "\e244";
1013
- }
1014
- .monsterinsights-bootstrap-container .glyphicon-object-align-bottom:before {
1015
- content: "\e245";
1016
- }
1017
- .monsterinsights-bootstrap-container .glyphicon-object-align-horizontal:before {
1018
- content: "\e246";
1019
- }
1020
- .monsterinsights-bootstrap-container .glyphicon-object-align-left:before {
1021
- content: "\e247";
1022
- }
1023
- .monsterinsights-bootstrap-container .glyphicon-object-align-vertical:before {
1024
- content: "\e248";
1025
- }
1026
- .monsterinsights-bootstrap-container .glyphicon-object-align-right:before {
1027
- content: "\e249";
1028
- }
1029
- .monsterinsights-bootstrap-container .glyphicon-triangle-right:before {
1030
- content: "\e250";
1031
- }
1032
- .monsterinsights-bootstrap-container .glyphicon-triangle-left:before {
1033
- content: "\e251";
1034
- }
1035
- .monsterinsights-bootstrap-container .glyphicon-triangle-bottom:before {
1036
- content: "\e252";
1037
- }
1038
- .monsterinsights-bootstrap-container .glyphicon-triangle-top:before {
1039
- content: "\e253";
1040
- }
1041
- .monsterinsights-bootstrap-container .glyphicon-console:before {
1042
- content: "\e254";
1043
- }
1044
- .monsterinsights-bootstrap-container .glyphicon-superscript:before {
1045
- content: "\e255";
1046
- }
1047
- .monsterinsights-bootstrap-container .glyphicon-subscript:before {
1048
- content: "\e256";
1049
- }
1050
- .monsterinsights-bootstrap-container .glyphicon-menu-left:before {
1051
- content: "\e257";
1052
- }
1053
- .monsterinsights-bootstrap-container .glyphicon-menu-right:before {
1054
- content: "\e258";
1055
- }
1056
- .monsterinsights-bootstrap-container .glyphicon-menu-down:before {
1057
- content: "\e259";
1058
- }
1059
- .monsterinsights-bootstrap-container .glyphicon-menu-up:before {
1060
- content: "\e260";
1061
- }
1062
- .monsterinsights-bootstrap-container * {
1063
- -webkit-box-sizing: border-box;
1064
- -moz-box-sizing: border-box;
1065
- box-sizing: border-box;
1066
- }
1067
- .monsterinsights-bootstrap-container *:before,
1068
- .monsterinsights-bootstrap-container *:after {
1069
- -webkit-box-sizing: border-box;
1070
- -moz-box-sizing: border-box;
1071
- box-sizing: border-box;
1072
- }
1073
- .monsterinsights-bootstrap-container html {
1074
- font-size: 10px;
1075
- -webkit-tap-highlight-color: rgba(0,0,0,0);
1076
- }
1077
- .monsterinsights-bootstrap-container body {
1078
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1079
- font-size: 14px;
1080
- line-height: 1.42857143;
1081
- color: #333333;
1082
- background-color: #fff;
1083
- }
1084
- .monsterinsights-bootstrap-container input,
1085
- .monsterinsights-bootstrap-container button,
1086
- .monsterinsights-bootstrap-container select,
1087
- .monsterinsights-bootstrap-container textarea {
1088
- font-family: inherit;
1089
- font-size: inherit;
1090
- line-height: inherit;
1091
- }
1092
- .monsterinsights-bootstrap-container a {
1093
- color: #337ab7;
1094
- text-decoration: none;
1095
- }
1096
- .monsterinsights-bootstrap-container a:hover,
1097
- .monsterinsights-bootstrap-container a:focus {
1098
- color: #23527c;
1099
- text-decoration: underline;
1100
- }
1101
- .monsterinsights-bootstrap-container a:focus {
1102
- outline: 5px auto -webkit-focus-ring-color;
1103
- outline-offset: -2px;
1104
- }
1105
- .monsterinsights-bootstrap-container figure {
1106
- margin: 0;
1107
- }
1108
- .monsterinsights-bootstrap-container img {
1109
- vertical-align: middle;
1110
- }
1111
- .monsterinsights-bootstrap-container .img-responsive,
1112
- .monsterinsights-bootstrap-container .thumbnail > img,
1113
- .monsterinsights-bootstrap-container .thumbnail a > img,
1114
- .monsterinsights-bootstrap-container .carousel-inner > .item > img,
1115
- .monsterinsights-bootstrap-container .carousel-inner > .item > a > img {
1116
- display: block;
1117
- max-width: 100%;
1118
- height: auto;
1119
- }
1120
- .monsterinsights-bootstrap-container .img-rounded {
1121
- border-radius: 6px;
1122
- }
1123
- .monsterinsights-bootstrap-container .img-thumbnail {
1124
- padding: 4px;
1125
- line-height: 1.42857143;
1126
- background-color: #fff;
1127
- border: 1px solid #ddd;
1128
- border-radius: 4px;
1129
- -webkit-transition: all 0.2s ease-in-out;
1130
- -o-transition: all 0.2s ease-in-out;
1131
- transition: all 0.2s ease-in-out;
1132
- display: inline-block;
1133
- max-width: 100%;
1134
- height: auto;
1135
- }
1136
- .monsterinsights-bootstrap-container .img-circle {
1137
- border-radius: 50%;
1138
- }
1139
- .monsterinsights-bootstrap-container hr {
1140
- margin-top: 20px;
1141
- margin-bottom: 20px;
1142
- border: 0;
1143
- border-top: 1px solid #eeeeee;
1144
- }
1145
- .monsterinsights-bootstrap-container .sr-only {
1146
- position: absolute;
1147
- width: 1px;
1148
- height: 1px;
1149
- padding: 0;
1150
- margin: -1px;
1151
- overflow: hidden;
1152
- clip: rect(0,0,0,0);
1153
- border: 0;
1154
- }
1155
- .monsterinsights-bootstrap-container .sr-only-focusable:active,
1156
- .monsterinsights-bootstrap-container .sr-only-focusable:focus {
1157
- position: static;
1158
- width: auto;
1159
- height: auto;
1160
- margin: 0;
1161
- overflow: visible;
1162
- clip: auto;
1163
- }
1164
- .monsterinsights-bootstrap-container [role="button"] {
1165
- cursor: pointer;
1166
- }
1167
- .monsterinsights-bootstrap-container h1,
1168
- .monsterinsights-bootstrap-container h2,
1169
- .monsterinsights-bootstrap-container h3,
1170
- .monsterinsights-bootstrap-container h4,
1171
- .monsterinsights-bootstrap-container h5,
1172
- .monsterinsights-bootstrap-container h6,
1173
- .monsterinsights-bootstrap-container .h1,
1174
- .monsterinsights-bootstrap-container .h2,
1175
- .monsterinsights-bootstrap-container .h3,
1176
- .monsterinsights-bootstrap-container .h4,
1177
- .monsterinsights-bootstrap-container .h5,
1178
- .monsterinsights-bootstrap-container .h6 {
1179
- font-family: inherit;
1180
- font-weight: 500;
1181
- line-height: 1.1;
1182
- color: inherit;
1183
- }
1184
- .monsterinsights-bootstrap-container h1 small,
1185
- .monsterinsights-bootstrap-container h2 small,
1186
- .monsterinsights-bootstrap-container h3 small,
1187
- .monsterinsights-bootstrap-container h4 small,
1188
- .monsterinsights-bootstrap-container h5 small,
1189
- .monsterinsights-bootstrap-container h6 small,
1190
- .monsterinsights-bootstrap-container .h1 small,
1191
- .monsterinsights-bootstrap-container .h2 small,
1192
- .monsterinsights-bootstrap-container .h3 small,
1193
- .monsterinsights-bootstrap-container .h4 small,
1194
- .monsterinsights-bootstrap-container .h5 small,
1195
- .monsterinsights-bootstrap-container .h6 small,
1196
- .monsterinsights-bootstrap-container h1 .small,
1197
- .monsterinsights-bootstrap-container h2 .small,
1198
- .monsterinsights-bootstrap-container h3 .small,
1199
- .monsterinsights-bootstrap-container h4 .small,
1200
- .monsterinsights-bootstrap-container h5 .small,
1201
- .monsterinsights-bootstrap-container h6 .small,
1202
- .monsterinsights-bootstrap-container .h1 .small,
1203
- .monsterinsights-bootstrap-container .h2 .small,
1204
- .monsterinsights-bootstrap-container .h3 .small,
1205
- .monsterinsights-bootstrap-container .h4 .small,
1206
- .monsterinsights-bootstrap-container .h5 .small,
1207
- .monsterinsights-bootstrap-container .h6 .small {
1208
- font-weight: 400;
1209
- line-height: 1;
1210
- color: #777777;
1211
- }
1212
- .monsterinsights-bootstrap-container h1,
1213
- .monsterinsights-bootstrap-container .h1,
1214
- .monsterinsights-bootstrap-container h2,
1215
- .monsterinsights-bootstrap-container .h2,
1216
- .monsterinsights-bootstrap-container h3,
1217
- .monsterinsights-bootstrap-container .h3 {
1218
- margin-top: 20px;
1219
- margin-bottom: 10px;
1220
- }
1221
- .monsterinsights-bootstrap-container h1 small,
1222
- .monsterinsights-bootstrap-container .h1 small,
1223
- .monsterinsights-bootstrap-container h2 small,
1224
- .monsterinsights-bootstrap-container .h2 small,
1225
- .monsterinsights-bootstrap-container h3 small,
1226
- .monsterinsights-bootstrap-container .h3 small,
1227
- .monsterinsights-bootstrap-container h1 .small,
1228
- .monsterinsights-bootstrap-container .h1 .small,
1229
- .monsterinsights-bootstrap-container h2 .small,
1230
- .monsterinsights-bootstrap-container .h2 .small,
1231
- .monsterinsights-bootstrap-container h3 .small,
1232
- .monsterinsights-bootstrap-container .h3 .small {
1233
- font-size: 65%;
1234
- }
1235
- .monsterinsights-bootstrap-container h4,
1236
- .monsterinsights-bootstrap-container .h4,
1237
- .monsterinsights-bootstrap-container h5,
1238
- .monsterinsights-bootstrap-container .h5,
1239
- .monsterinsights-bootstrap-container h6,
1240
- .monsterinsights-bootstrap-container .h6 {
1241
- margin-top: 10px;
1242
- margin-bottom: 10px;
1243
- }
1244
- .monsterinsights-bootstrap-container h4 small,
1245
- .monsterinsights-bootstrap-container .h4 small,
1246
- .monsterinsights-bootstrap-container h5 small,
1247
- .monsterinsights-bootstrap-container .h5 small,
1248
- .monsterinsights-bootstrap-container h6 small,
1249
- .monsterinsights-bootstrap-container .h6 small,
1250
- .monsterinsights-bootstrap-container h4 .small,
1251
- .monsterinsights-bootstrap-container .h4 .small,
1252
- .monsterinsights-bootstrap-container h5 .small,
1253
- .monsterinsights-bootstrap-container .h5 .small,
1254
- .monsterinsights-bootstrap-container h6 .small,
1255
- .monsterinsights-bootstrap-container .h6 .small {
1256
- font-size: 75%;
1257
- }
1258
- .monsterinsights-bootstrap-container h1,
1259
- .monsterinsights-bootstrap-container .h1 {
1260
- font-size: 36px;
1261
- }
1262
- .monsterinsights-bootstrap-container h2,
1263
- .monsterinsights-bootstrap-container .h2 {
1264
- font-size: 30px;
1265
- }
1266
- .monsterinsights-bootstrap-container h3,
1267
- .monsterinsights-bootstrap-container .h3 {
1268
- font-size: 24px;
1269
- }
1270
- .monsterinsights-bootstrap-container h4,
1271
- .monsterinsights-bootstrap-container .h4 {
1272
- font-size: 18px;
1273
- }
1274
- .monsterinsights-bootstrap-container h5,
1275
- .monsterinsights-bootstrap-container .h5 {
1276
- font-size: 14px;
1277
- }
1278
- .monsterinsights-bootstrap-container h6,
1279
- .monsterinsights-bootstrap-container .h6 {
1280
- font-size: 12px;
1281
- }
1282
- .monsterinsights-bootstrap-container p {
1283
- margin: 0 0 10px;
1284
- }
1285
- .monsterinsights-bootstrap-container .lead {
1286
- margin-bottom: 20px;
1287
- font-size: 16px;
1288
- font-weight: 300;
1289
- line-height: 1.4;
1290
- }
1291
- @media (min-width: 768px) {
1292
- .monsterinsights-bootstrap-container .lead {
1293
- font-size: 21px;
1294
- }
1295
- }
1296
- .monsterinsights-bootstrap-container small,
1297
- .monsterinsights-bootstrap-container .small {
1298
- font-size: 85%;
1299
- }
1300
- .monsterinsights-bootstrap-container mark,
1301
- .monsterinsights-bootstrap-container .mark {
1302
- padding: 0.2em;
1303
- background-color: #fcf8e3;
1304
- }
1305
- .monsterinsights-bootstrap-container .text-left {
1306
- text-align: left;
1307
- }
1308
- .monsterinsights-bootstrap-container .text-right {
1309
- text-align: right;
1310
- }
1311
- .monsterinsights-bootstrap-container .text-center {
1312
- text-align: center;
1313
- }
1314
- .monsterinsights-bootstrap-container .text-justify {
1315
- text-align: justify;
1316
- }
1317
- .monsterinsights-bootstrap-container .text-nowrap {
1318
- white-space: nowrap;
1319
- }
1320
- .monsterinsights-bootstrap-container .text-lowercase {
1321
- text-transform: lowercase;
1322
- }
1323
- .monsterinsights-bootstrap-container .text-uppercase {
1324
- text-transform: uppercase;
1325
- }
1326
- .monsterinsights-bootstrap-container .text-capitalize {
1327
- text-transform: capitalize;
1328
- }
1329
- .monsterinsights-bootstrap-container .text-muted {
1330
- color: #777777;
1331
- }
1332
- .monsterinsights-bootstrap-container .text-primary {
1333
- color: #337ab7;
1334
- }
1335
- .monsterinsights-bootstrap-container a.text-primary:hover,
1336
- .monsterinsights-bootstrap-container a.text-primary:focus {
1337
- color: #286090;
1338
- }
1339
- .monsterinsights-bootstrap-container .text-success {
1340
- color: #3c763d;
1341
- }
1342
- .monsterinsights-bootstrap-container a.text-success:hover,
1343
- .monsterinsights-bootstrap-container a.text-success:focus {
1344
- color: #2b542c;
1345
- }
1346
- .monsterinsights-bootstrap-container .text-info {
1347
- color: #31708f;
1348
- }
1349
- .monsterinsights-bootstrap-container a.text-info:hover,
1350
- .monsterinsights-bootstrap-container a.text-info:focus {
1351
- color: #245269;
1352
- }
1353
- .monsterinsights-bootstrap-container .text-warning {
1354
- color: #8a6d3b;
1355
- }
1356
- .monsterinsights-bootstrap-container a.text-warning:hover,
1357
- .monsterinsights-bootstrap-container a.text-warning:focus {
1358
- color: #66512c;
1359
- }
1360
- .monsterinsights-bootstrap-container .text-danger {
1361
- color: #a94442;
1362
- }
1363
- .monsterinsights-bootstrap-container a.text-danger:hover,
1364
- .monsterinsights-bootstrap-container a.text-danger:focus {
1365
- color: #843534;
1366
- }
1367
- .monsterinsights-bootstrap-container .bg-primary {
1368
- color: #fff;
1369
- background-color: #337ab7;
1370
- }
1371
- .monsterinsights-bootstrap-container a.bg-primary:hover,
1372
- .monsterinsights-bootstrap-container a.bg-primary:focus {
1373
- background-color: #286090;
1374
- }
1375
- .monsterinsights-bootstrap-container .bg-success {
1376
- background-color: #dff0d8;
1377
- }
1378
- .monsterinsights-bootstrap-container a.bg-success:hover,
1379
- .monsterinsights-bootstrap-container a.bg-success:focus {
1380
- background-color: #c1e2b3;
1381
- }
1382
- .monsterinsights-bootstrap-container .bg-info {
1383
- background-color: #d9edf7;
1384
- }
1385
- .monsterinsights-bootstrap-container a.bg-info:hover,
1386
- .monsterinsights-bootstrap-container a.bg-info:focus {
1387
- background-color: #afd9ee;
1388
- }
1389
- .monsterinsights-bootstrap-container .bg-warning {
1390
- background-color: #fcf8e3;
1391
- }
1392
- .monsterinsights-bootstrap-container a.bg-warning:hover,
1393
- .monsterinsights-bootstrap-container a.bg-warning:focus {
1394
- background-color: #f7ecb5;
1395
- }
1396
- .monsterinsights-bootstrap-container .bg-danger {
1397
- background-color: #f2dede;
1398
- }
1399
- .monsterinsights-bootstrap-container a.bg-danger:hover,
1400
- .monsterinsights-bootstrap-container a.bg-danger:focus {
1401
- background-color: #e4b9b9;
1402
- }
1403
- .monsterinsights-bootstrap-container .page-header {
1404
- padding-bottom: 9px;
1405
- margin: 40px 0 20px;
1406
- border-bottom: 1px solid #eeeeee;
1407
- }
1408
- .monsterinsights-bootstrap-container ul,
1409
- .monsterinsights-bootstrap-container ol {
1410
- margin-top: 0;
1411
- margin-bottom: 10px;
1412
- }
1413
- .monsterinsights-bootstrap-container ul ul,
1414
- .monsterinsights-bootstrap-container ol ul,
1415
- .monsterinsights-bootstrap-container ul ol,
1416
- .monsterinsights-bootstrap-container ol ol {
1417
- margin-bottom: 0;
1418
- }
1419
- .monsterinsights-bootstrap-container .list-unstyled {
1420
- padding-left: 0;
1421
- list-style: none;
1422
- }
1423
- .monsterinsights-bootstrap-container .list-inline {
1424
- padding-left: 0;
1425
- list-style: none;
1426
- margin-left: -5px;
1427
- }
1428
- .monsterinsights-bootstrap-container .list-inline > li {
1429
- display: inline-block;
1430
- padding-right: 5px;
1431
- padding-left: 5px;
1432
- }
1433
- .monsterinsights-bootstrap-container dl {
1434
- margin-top: 0;
1435
- margin-bottom: 20px;
1436
- }
1437
- .monsterinsights-bootstrap-container dt,
1438
- .monsterinsights-bootstrap-container dd {
1439
- line-height: 1.42857143;
1440
- }
1441
- .monsterinsights-bootstrap-container dt {
1442
- font-weight: 700;
1443
- }
1444
- .monsterinsights-bootstrap-container dd {
1445
- margin-left: 0;
1446
- }
1447
- @media (min-width: 768px) {
1448
- .monsterinsights-bootstrap-container .dl-horizontal dt {
1449
- float: left;
1450
- width: 160px;
1451
- clear: left;
1452
- text-align: right;
1453
- overflow: hidden;
1454
- text-overflow: ellipsis;
1455
- white-space: nowrap;
1456
- }
1457
- .monsterinsights-bootstrap-container .dl-horizontal dd {
1458
- margin-left: 180px;
1459
- }
1460
- }
1461
- .monsterinsights-bootstrap-container abbr[title],
1462
- .monsterinsights-bootstrap-container abbr[data-original-title] {
1463
- cursor: help;
1464
- }
1465
- .monsterinsights-bootstrap-container .initialism {
1466
- font-size: 90%;
1467
- text-transform: uppercase;
1468
- }
1469
- .monsterinsights-bootstrap-container blockquote {
1470
- padding: 10px 20px;
1471
- margin: 0 0 20px;
1472
- font-size: 17.5px;
1473
- border-left: 5px solid #eeeeee;
1474
- }
1475
- .monsterinsights-bootstrap-container blockquote p:last-child,
1476
- .monsterinsights-bootstrap-container blockquote ul:last-child,
1477
- .monsterinsights-bootstrap-container blockquote ol:last-child {
1478
- margin-bottom: 0;
1479
- }
1480
- .monsterinsights-bootstrap-container blockquote footer,
1481
- .monsterinsights-bootstrap-container blockquote small,
1482
- .monsterinsights-bootstrap-container blockquote .small {
1483
- display: block;
1484
- font-size: 80%;
1485
- line-height: 1.42857143;
1486
- color: #777777;
1487
- }
1488
- .monsterinsights-bootstrap-container blockquote footer:before,
1489
- .monsterinsights-bootstrap-container blockquote small:before,
1490
- .monsterinsights-bootstrap-container blockquote .small:before {
1491
- content: "\2014 \00A0";
1492
- }
1493
- .monsterinsights-bootstrap-container .blockquote-reverse,
1494
- .monsterinsights-bootstrap-container blockquote.pull-right {
1495
- padding-right: 15px;
1496
- padding-left: 0;
1497
- text-align: right;
1498
- border-right: 5px solid #eeeeee;
1499
- border-left: 0;
1500
- }
1501
- .monsterinsights-bootstrap-container .blockquote-reverse footer:before,
1502
- .monsterinsights-bootstrap-container blockquote.pull-right footer:before,
1503
- .monsterinsights-bootstrap-container .blockquote-reverse small:before,
1504
- .monsterinsights-bootstrap-container blockquote.pull-right small:before,
1505
- .monsterinsights-bootstrap-container .blockquote-reverse .small:before,
1506
- .monsterinsights-bootstrap-container blockquote.pull-right .small:before {
1507
- content: "";
1508
- }
1509
- .monsterinsights-bootstrap-container .blockquote-reverse footer:after,
1510
- .monsterinsights-bootstrap-container blockquote.pull-right footer:after,
1511
- .monsterinsights-bootstrap-container .blockquote-reverse small:after,
1512
- .monsterinsights-bootstrap-container blockquote.pull-right small:after,
1513
- .monsterinsights-bootstrap-container .blockquote-reverse .small:after,
1514
- .monsterinsights-bootstrap-container blockquote.pull-right .small:after {
1515
- content: "\00A0 \2014";
1516
- }
1517
- .monsterinsights-bootstrap-container address {
1518
- margin-bottom: 20px;
1519
- font-style: normal;
1520
- line-height: 1.42857143;
1521
- }
1522
- .monsterinsights-bootstrap-container code,
1523
- .monsterinsights-bootstrap-container kbd,
1524
- .monsterinsights-bootstrap-container pre,
1525
- .monsterinsights-bootstrap-container samp {
1526
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1527
- }
1528
- .monsterinsights-bootstrap-container code {
1529
- padding: 2px 4px;
1530
- font-size: 90%;
1531
- color: #c7254e;
1532
- background-color: #f9f2f4;
1533
- border-radius: 4px;
1534
- }
1535
- .monsterinsights-bootstrap-container kbd {
1536
- padding: 2px 4px;
1537
- font-size: 90%;
1538
- color: #fff;
1539
- background-color: #333;
1540
- border-radius: 3px;
1541
- -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25);
1542
- box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25);
1543
- }
1544
- .monsterinsights-bootstrap-container kbd kbd {
1545
- padding: 0;
1546
- font-size: 100%;
1547
- font-weight: 700;
1548
- -webkit-box-shadow: none;
1549
- box-shadow: none;
1550
- }
1551
- .monsterinsights-bootstrap-container pre {
1552
- display: block;
1553
- padding: 9.5px;
1554
- margin: 0 0 10px;
1555
- font-size: 13px;
1556
- line-height: 1.42857143;
1557
- color: #333333;
1558
- word-break: break-all;
1559
- word-wrap: break-word;
1560
- background-color: #f5f5f5;
1561
- border: 1px solid #ccc;
1562
- border-radius: 4px;
1563
- }
1564
- .monsterinsights-bootstrap-container pre code {
1565
- padding: 0;
1566
- font-size: inherit;
1567
- color: inherit;
1568
- white-space: pre-wrap;
1569
- background-color: transparent;
1570
- border-radius: 0;
1571
- }
1572
- .monsterinsights-bootstrap-container .pre-scrollable {
1573
- max-height: 340px;
1574
- overflow-y: scroll;
1575
- }
1576
- .monsterinsights-bootstrap-container .container {
1577
- padding-right: 15px;
1578
- padding-left: 15px;
1579
- margin-right: auto;
1580
- margin-left: auto;
1581
- }
1582
- @media (min-width: 768px) {
1583
- .monsterinsights-bootstrap-container .container {
1584
- width: 750px;
1585
- }
1586
- }
1587
- @media (min-width: 992px) {
1588
- .monsterinsights-bootstrap-container .container {
1589
- width: 970px;
1590
- }
1591
- }
1592
- @media (min-width: 1200px) {
1593
- .monsterinsights-bootstrap-container .container {
1594
- width: 1170px;
1595
- }
1596
- }
1597
- .monsterinsights-bootstrap-container .container-fluid {
1598
- padding-right: 15px;
1599
- padding-left: 15px;
1600
- margin-right: auto;
1601
- margin-left: auto;
1602
- }
1603
- .monsterinsights-bootstrap-container .row {
1604
- margin-right: -15px;
1605
- margin-left: -15px;
1606
- }
1607
- .monsterinsights-bootstrap-container .row-no-gutters {
1608
- margin-right: 0;
1609
- margin-left: 0;
1610
- }
1611
- .monsterinsights-bootstrap-container .row-no-gutters [class*="col-"] {
1612
- padding-right: 0;
1613
- padding-left: 0;
1614
- }
1615
- .monsterinsights-bootstrap-container .col-xs-1,
1616
- .monsterinsights-bootstrap-container .col-sm-1,
1617
- .monsterinsights-bootstrap-container .col-md-1,
1618
- .monsterinsights-bootstrap-container .col-lg-1,
1619
- .monsterinsights-bootstrap-container .col-xs-2,
1620
- .monsterinsights-bootstrap-container .col-sm-2,
1621
- .monsterinsights-bootstrap-container .col-md-2,
1622
- .monsterinsights-bootstrap-container .col-lg-2,
1623
- .monsterinsights-bootstrap-container .col-xs-3,
1624
- .monsterinsights-bootstrap-container .col-sm-3,
1625
- .monsterinsights-bootstrap-container .col-md-3,
1626
- .monsterinsights-bootstrap-container .col-lg-3,
1627
- .monsterinsights-bootstrap-container .col-xs-4,
1628
- .monsterinsights-bootstrap-container .col-sm-4,
1629
- .monsterinsights-bootstrap-container .col-md-4,
1630
- .monsterinsights-bootstrap-container .col-lg-4,
1631
- .monsterinsights-bootstrap-container .col-xs-5,
1632
- .monsterinsights-bootstrap-container .col-sm-5,
1633
- .monsterinsights-bootstrap-container .col-md-5,
1634
- .monsterinsights-bootstrap-container .col-lg-5,
1635
- .monsterinsights-bootstrap-container .col-xs-6,
1636
- .monsterinsights-bootstrap-container .col-sm-6,
1637
- .monsterinsights-bootstrap-container .col-md-6,
1638
- .monsterinsights-bootstrap-container .col-lg-6,
1639
- .monsterinsights-bootstrap-container .col-xs-7,
1640
- .monsterinsights-bootstrap-container .col-sm-7,
1641
- .monsterinsights-bootstrap-container .col-md-7,
1642
- .monsterinsights-bootstrap-container .col-lg-7,
1643
- .monsterinsights-bootstrap-container .col-xs-8,
1644
- .monsterinsights-bootstrap-container .col-sm-8,
1645
- .monsterinsights-bootstrap-container .col-md-8,
1646
- .monsterinsights-bootstrap-container .col-lg-8,
1647
- .monsterinsights-bootstrap-container .col-xs-9,
1648
- .monsterinsights-bootstrap-container .col-sm-9,
1649
- .monsterinsights-bootstrap-container .col-md-9,
1650
- .monsterinsights-bootstrap-container .col-lg-9,
1651
- .monsterinsights-bootstrap-container .col-xs-10,
1652
- .monsterinsights-bootstrap-container .col-sm-10,
1653
- .monsterinsights-bootstrap-container .col-md-10,
1654
- .monsterinsights-bootstrap-container .col-lg-10,
1655
- .monsterinsights-bootstrap-container .col-xs-11,
1656
- .monsterinsights-bootstrap-container .col-sm-11,
1657
- .monsterinsights-bootstrap-container .col-md-11,
1658
- .monsterinsights-bootstrap-container .col-lg-11,
1659
- .monsterinsights-bootstrap-container .col-xs-12,
1660
- .monsterinsights-bootstrap-container .col-sm-12,
1661
- .monsterinsights-bootstrap-container .col-md-12,
1662
- .monsterinsights-bootstrap-container .col-lg-12 {
1663
- position: relative;
1664
- min-height: 1px;
1665
- padding-right: 15px;
1666
- padding-left: 15px;
1667
- }
1668
- .monsterinsights-bootstrap-container .col-xs-1,
1669
- .monsterinsights-bootstrap-container .col-xs-2,
1670
- .monsterinsights-bootstrap-container .col-xs-3,
1671
- .monsterinsights-bootstrap-container .col-xs-4,
1672
- .monsterinsights-bootstrap-container .col-xs-5,
1673
- .monsterinsights-bootstrap-container .col-xs-6,
1674
- .monsterinsights-bootstrap-container .col-xs-7,
1675
- .monsterinsights-bootstrap-container .col-xs-8,
1676
- .monsterinsights-bootstrap-container .col-xs-9,
1677
- .monsterinsights-bootstrap-container .col-xs-10,
1678
- .monsterinsights-bootstrap-container .col-xs-11,
1679
- .monsterinsights-bootstrap-container .col-xs-12 {
1680
- float: left;
1681
- }
1682
- .monsterinsights-bootstrap-container .col-xs-12 {
1683
- width: 100%;
1684
- }
1685
- .monsterinsights-bootstrap-container .col-xs-11 {
1686
- width: 91.66666667%;
1687
- }
1688
- .monsterinsights-bootstrap-container .col-xs-10 {
1689
- width: 83.33333333%;
1690
- }
1691
- .monsterinsights-bootstrap-container .col-xs-9 {
1692
- width: 75%;
1693
- }
1694
- .monsterinsights-bootstrap-container .col-xs-8 {
1695
- width: 66.66666667%;
1696
- }
1697
- .monsterinsights-bootstrap-container .col-xs-7 {
1698
- width: 58.33333333%;
1699
- }
1700
- .monsterinsights-bootstrap-container .col-xs-6 {
1701
- width: 50%;
1702
- }
1703
- .monsterinsights-bootstrap-container .col-xs-5 {
1704
- width: 41.66666667%;
1705
- }
1706
- .monsterinsights-bootstrap-container .col-xs-4 {
1707
- width: 33.33333333%;
1708
- }
1709
- .monsterinsights-bootstrap-container .col-xs-3 {
1710
- width: 25%;
1711
- }
1712
- .monsterinsights-bootstrap-container .col-xs-2 {
1713
- width: 16.66666667%;
1714
- }
1715
- .monsterinsights-bootstrap-container .col-xs-1 {
1716
- width: 8.33333333%;
1717
- }
1718
- .monsterinsights-bootstrap-container .col-xs-pull-12 {
1719
- right: 100%;
1720
- }
1721
- .monsterinsights-bootstrap-container .col-xs-pull-11 {
1722
- right: 91.66666667%;
1723
- }
1724
- .monsterinsights-bootstrap-container .col-xs-pull-10 {
1725
- right: 83.33333333%;
1726
- }
1727
- .monsterinsights-bootstrap-container .col-xs-pull-9 {
1728
- right: 75%;
1729
- }
1730
- .monsterinsights-bootstrap-container .col-xs-pull-8 {
1731
- right: 66.66666667%;
1732
- }
1733
- .monsterinsights-bootstrap-container .col-xs-pull-7 {
1734
- right: 58.33333333%;
1735
- }
1736
- .monsterinsights-bootstrap-container .col-xs-pull-6 {
1737
- right: 50%;
1738
- }
1739
- .monsterinsights-bootstrap-container .col-xs-pull-5 {
1740
- right: 41.66666667%;
1741
- }
1742
- .monsterinsights-bootstrap-container .col-xs-pull-4 {
1743
- right: 33.33333333%;
1744
- }
1745
- .monsterinsights-bootstrap-container .col-xs-pull-3 {
1746
- right: 25%;
1747
- }
1748
- .monsterinsights-bootstrap-container .col-xs-pull-2 {
1749
- right: 16.66666667%;
1750
- }
1751
- .monsterinsights-bootstrap-container .col-xs-pull-1 {
1752
- right: 8.33333333%;
1753
- }
1754
- .monsterinsights-bootstrap-container .col-xs-pull-0 {
1755
- right: auto;
1756
- }
1757
- .monsterinsights-bootstrap-container .col-xs-push-12 {
1758
- left: 100%;
1759
- }
1760
- .monsterinsights-bootstrap-container .col-xs-push-11 {
1761
- left: 91.66666667%;
1762
- }
1763
- .monsterinsights-bootstrap-container .col-xs-push-10 {
1764
- left: 83.33333333%;
1765
- }
1766
- .monsterinsights-bootstrap-container .col-xs-push-9 {
1767
- left: 75%;
1768
- }
1769
- .monsterinsights-bootstrap-container .col-xs-push-8 {
1770
- left: 66.66666667%;
1771
- }
1772
- .monsterinsights-bootstrap-container .col-xs-push-7 {
1773
- left: 58.33333333%;
1774
- }
1775
- .monsterinsights-bootstrap-container .col-xs-push-6 {
1776
- left: 50%;
1777
- }
1778
- .monsterinsights-bootstrap-container .col-xs-push-5 {
1779
- left: 41.66666667%;
1780
- }
1781
- .monsterinsights-bootstrap-container .col-xs-push-4 {
1782
- left: 33.33333333%;
1783
- }
1784
- .monsterinsights-bootstrap-container .col-xs-push-3 {
1785
- left: 25%;
1786
- }
1787
- .monsterinsights-bootstrap-container .col-xs-push-2 {
1788
- left: 16.66666667%;
1789
- }
1790
- .monsterinsights-bootstrap-container .col-xs-push-1 {
1791
- left: 8.33333333%;
1792
- }
1793
- .monsterinsights-bootstrap-container .col-xs-push-0 {
1794
- left: auto;
1795
- }
1796
- .monsterinsights-bootstrap-container .col-xs-offset-12 {
1797
- margin-left: 100%;
1798
- }
1799
- .monsterinsights-bootstrap-container .col-xs-offset-11 {
1800
- margin-left: 91.66666667%;
1801
- }
1802
- .monsterinsights-bootstrap-container .col-xs-offset-10 {
1803
- margin-left: 83.33333333%;
1804
- }
1805
- .monsterinsights-bootstrap-container .col-xs-offset-9 {
1806
- margin-left: 75%;
1807
- }
1808
- .monsterinsights-bootstrap-container .col-xs-offset-8 {
1809
- margin-left: 66.66666667%;
1810
- }
1811
- .monsterinsights-bootstrap-container .col-xs-offset-7 {
1812
- margin-left: 58.33333333%;
1813
- }
1814
- .monsterinsights-bootstrap-container .col-xs-offset-6 {
1815
- margin-left: 50%;
1816
- }
1817
- .monsterinsights-bootstrap-container .col-xs-offset-5 {
1818
- margin-left: 41.66666667%;
1819
- }
1820
- .monsterinsights-bootstrap-container .col-xs-offset-4 {
1821
- margin-left: 33.33333333%;
1822
- }
1823
- .monsterinsights-bootstrap-container .col-xs-offset-3 {
1824
- margin-left: 25%;
1825
- }
1826
- .monsterinsights-bootstrap-container .col-xs-offset-2 {
1827
- margin-left: 16.66666667%;
1828
- }
1829
- .monsterinsights-bootstrap-container .col-xs-offset-1 {
1830
- margin-left: 8.33333333%;
1831
- }
1832
- .monsterinsights-bootstrap-container .col-xs-offset-0 {
1833
- margin-left: 0%;
1834
- }
1835
- @media (min-width: 768px) {
1836
- .monsterinsights-bootstrap-container .col-sm-1,
1837
- .monsterinsights-bootstrap-container .col-sm-2,
1838
- .monsterinsights-bootstrap-container .col-sm-3,
1839
- .monsterinsights-bootstrap-container .col-sm-4,
1840
- .monsterinsights-bootstrap-container .col-sm-5,
1841
- .monsterinsights-bootstrap-container .col-sm-6,
1842
- .monsterinsights-bootstrap-container .col-sm-7,
1843
- .monsterinsights-bootstrap-container .col-sm-8,
1844
- .monsterinsights-bootstrap-container .col-sm-9,
1845
- .monsterinsights-bootstrap-container .col-sm-10,
1846
- .monsterinsights-bootstrap-container .col-sm-11,
1847
- .monsterinsights-bootstrap-container .col-sm-12 {
1848
- float: left;
1849
- }
1850
- .monsterinsights-bootstrap-container .col-sm-12 {
1851
- width: 100%;
1852
- }
1853
- .monsterinsights-bootstrap-container .col-sm-11 {
1854
- width: 91.66666667%;
1855
- }
1856
- .monsterinsights-bootstrap-container .col-sm-10 {
1857
- width: 83.33333333%;
1858
- }
1859
- .monsterinsights-bootstrap-container .col-sm-9 {
1860
- width: 75%;
1861
- }
1862
- .monsterinsights-bootstrap-container .col-sm-8 {
1863
- width: 66.66666667%;
1864
- }
1865
- .monsterinsights-bootstrap-container .col-sm-7 {
1866
- width: 58.33333333%;
1867
- }
1868
- .monsterinsights-bootstrap-container .col-sm-6 {
1869
- width: 50%;
1870
- }
1871
- .monsterinsights-bootstrap-container .col-sm-5 {
1872
- width: 41.66666667%;
1873
- }
1874
- .monsterinsights-bootstrap-container .col-sm-4 {
1875
- width: 33.33333333%;
1876
- }
1877
- .monsterinsights-bootstrap-container .col-sm-3 {
1878
- width: 25%;
1879
- }
1880
- .monsterinsights-bootstrap-container .col-sm-2 {
1881
- width: 16.66666667%;
1882
- }
1883
- .monsterinsights-bootstrap-container .col-sm-1 {
1884
- width: 8.33333333%;
1885
- }
1886
- .monsterinsights-bootstrap-container .col-sm-pull-12 {
1887
- right: 100%;
1888
- }
1889
- .monsterinsights-bootstrap-container .col-sm-pull-11 {
1890
- right: 91.66666667%;
1891
- }
1892
- .monsterinsights-bootstrap-container .col-sm-pull-10 {
1893
- right: 83.33333333%;
1894
- }
1895
- .monsterinsights-bootstrap-container .col-sm-pull-9 {
1896
- right: 75%;
1897
- }
1898
- .monsterinsights-bootstrap-container .col-sm-pull-8 {
1899
- right: 66.66666667%;
1900
- }
1901
- .monsterinsights-bootstrap-container .col-sm-pull-7 {
1902
- right: 58.33333333%;
1903
- }
1904
- .monsterinsights-bootstrap-container .col-sm-pull-6 {
1905
- right: 50%;
1906
- }
1907
- .monsterinsights-bootstrap-container .col-sm-pull-5 {
1908
- right: 41.66666667%;
1909
- }
1910
- .monsterinsights-bootstrap-container .col-sm-pull-4 {
1911
- right: 33.33333333%;
1912
- }
1913
- .monsterinsights-bootstrap-container .col-sm-pull-3 {
1914
- right: 25%;
1915
- }
1916
- .monsterinsights-bootstrap-container .col-sm-pull-2 {
1917
- right: 16.66666667%;
1918
- }
1919
- .monsterinsights-bootstrap-container .col-sm-pull-1 {
1920
- right: 8.33333333%;
1921
- }
1922
- .monsterinsights-bootstrap-container .col-sm-pull-0 {
1923
- right: auto;
1924
- }
1925
- .monsterinsights-bootstrap-container .col-sm-push-12 {
1926
- left: 100%;
1927
- }
1928
- .monsterinsights-bootstrap-container .col-sm-push-11 {
1929
- left: 91.66666667%;
1930
- }
1931
- .monsterinsights-bootstrap-container .col-sm-push-10 {
1932
- left: 83.33333333%;
1933
- }
1934
- .monsterinsights-bootstrap-container .col-sm-push-9 {
1935
- left: 75%;
1936
- }
1937
- .monsterinsights-bootstrap-container .col-sm-push-8 {
1938
- left: 66.66666667%;
1939
- }
1940
- .monsterinsights-bootstrap-container .col-sm-push-7 {
1941
- left: 58.33333333%;
1942
- }
1943
- .monsterinsights-bootstrap-container .col-sm-push-6 {
1944
- left: 50%;
1945
- }
1946
- .monsterinsights-bootstrap-container .col-sm-push-5 {
1947
- left: 41.66666667%;
1948
- }
1949
- .monsterinsights-bootstrap-container .col-sm-push-4 {
1950
- left: 33.33333333%;
1951
- }
1952
- .monsterinsights-bootstrap-container .col-sm-push-3 {
1953
- left: 25%;
1954
- }
1955
- .monsterinsights-bootstrap-container .col-sm-push-2 {
1956
- left: 16.66666667%;
1957
- }
1958
- .monsterinsights-bootstrap-container .col-sm-push-1 {
1959
- left: 8.33333333%;
1960
- }
1961
- .monsterinsights-bootstrap-container .col-sm-push-0 {
1962
- left: auto;
1963
- }
1964
- .monsterinsights-bootstrap-container .col-sm-offset-12 {
1965
- margin-left: 100%;
1966
- }
1967
- .monsterinsights-bootstrap-container .col-sm-offset-11 {
1968
- margin-left: 91.66666667%;
1969
- }
1970
- .monsterinsights-bootstrap-container .col-sm-offset-10 {
1971
- margin-left: 83.33333333%;
1972
- }
1973
- .monsterinsights-bootstrap-container .col-sm-offset-9 {
1974
- margin-left: 75%;
1975
- }
1976
- .monsterinsights-bootstrap-container .col-sm-offset-8 {
1977
- margin-left: 66.66666667%;
1978
- }
1979
- .monsterinsights-bootstrap-container .col-sm-offset-7 {
1980
- margin-left: 58.33333333%;
1981
- }
1982
- .monsterinsights-bootstrap-container .col-sm-offset-6 {
1983
- margin-left: 50%;
1984
- }
1985
- .monsterinsights-bootstrap-container .col-sm-offset-5 {
1986
- margin-left: 41.66666667%;
1987
- }
1988
- .monsterinsights-bootstrap-container .col-sm-offset-4 {
1989
- margin-left: 33.33333333%;
1990
- }
1991
- .monsterinsights-bootstrap-container .col-sm-offset-3 {
1992
- margin-left: 25%;
1993
- }
1994
- .monsterinsights-bootstrap-container .col-sm-offset-2 {
1995
- margin-left: 16.66666667%;
1996
- }
1997
- .monsterinsights-bootstrap-container .col-sm-offset-1 {
1998
- margin-left: 8.33333333%;
1999
- }
2000
- .monsterinsights-bootstrap-container .col-sm-offset-0 {
2001
- margin-left: 0%;
2002
- }
2003
- }
2004
- @media (min-width: 992px) {
2005
- .monsterinsights-bootstrap-container .col-md-1,
2006
- .monsterinsights-bootstrap-container .col-md-2,
2007
- .monsterinsights-bootstrap-container .col-md-3,
2008
- .monsterinsights-bootstrap-container .col-md-4,
2009
- .monsterinsights-bootstrap-container .col-md-5,
2010
- .monsterinsights-bootstrap-container .col-md-6,
2011
- .monsterinsights-bootstrap-container .col-md-7,
2012
- .monsterinsights-bootstrap-container .col-md-8,
2013
- .monsterinsights-bootstrap-container .col-md-9,
2014
- .monsterinsights-bootstrap-container .col-md-10,
2015
- .monsterinsights-bootstrap-container .col-md-11,
2016
- .monsterinsights-bootstrap-container .col-md-12 {
2017
- float: left;
2018
- }
2019
- .monsterinsights-bootstrap-container .col-md-12 {
2020
- width: 100%;
2021
- }
2022
- .monsterinsights-bootstrap-container .col-md-11 {
2023
- width: 91.66666667%;
2024
- }
2025
- .monsterinsights-bootstrap-container .col-md-10 {
2026
- width: 83.33333333%;
2027
- }
2028
- .monsterinsights-bootstrap-container .col-md-9 {
2029
- width: 75%;
2030
- }
2031
- .monsterinsights-bootstrap-container .col-md-8 {
2032
- width: 66.66666667%;
2033
- }
2034
- .monsterinsights-bootstrap-container .col-md-7 {
2035
- width: 58.33333333%;
2036
- }
2037
- .monsterinsights-bootstrap-container .col-md-6 {
2038
- width: 50%;
2039
- }
2040
- .monsterinsights-bootstrap-container .col-md-5 {
2041
- width: 41.66666667%;
2042
- }
2043
- .monsterinsights-bootstrap-container .col-md-4 {
2044
- width: 33.33333333%;
2045
- }
2046
- .monsterinsights-bootstrap-container .col-md-3 {
2047
- width: 25%;
2048
- }
2049
- .monsterinsights-bootstrap-container .col-md-2 {
2050
- width: 16.66666667%;
2051
- }
2052
- .monsterinsights-bootstrap-container .col-md-1 {
2053
- width: 8.33333333%;
2054
- }
2055
- .monsterinsights-bootstrap-container .col-md-pull-12 {
2056
- right: 100%;
2057
- }
2058
- .monsterinsights-bootstrap-container .col-md-pull-11 {
2059
- right: 91.66666667%;
2060
- }
2061
- .monsterinsights-bootstrap-container .col-md-pull-10 {
2062
- right: 83.33333333%;
2063
- }
2064
- .monsterinsights-bootstrap-container .col-md-pull-9 {
2065
- right: 75%;
2066
- }
2067
- .monsterinsights-bootstrap-container .col-md-pull-8 {
2068
- right: 66.66666667%;
2069
- }
2070
- .monsterinsights-bootstrap-container .col-md-pull-7 {
2071
- right: 58.33333333%;
2072
- }
2073
- .monsterinsights-bootstrap-container .col-md-pull-6 {
2074
- right: 50%;
2075
- }
2076
- .monsterinsights-bootstrap-container .col-md-pull-5 {
2077
- right: 41.66666667%;
2078
- }
2079
- .monsterinsights-bootstrap-container .col-md-pull-4 {
2080
- right: 33.33333333%;
2081
- }
2082
- .monsterinsights-bootstrap-container .col-md-pull-3 {
2083
- right: 25%;
2084
- }
2085
- .monsterinsights-bootstrap-container .col-md-pull-2 {
2086
- right: 16.66666667%;
2087
- }
2088
- .monsterinsights-bootstrap-container .col-md-pull-1 {
2089
- right: 8.33333333%;
2090
- }
2091
- .monsterinsights-bootstrap-container .col-md-pull-0 {
2092
- right: auto;
2093
- }
2094
- .monsterinsights-bootstrap-container .col-md-push-12 {
2095
- left: 100%;
2096
- }
2097
- .monsterinsights-bootstrap-container .col-md-push-11 {
2098
- left: 91.66666667%;
2099
- }
2100
- .monsterinsights-bootstrap-container .col-md-push-10 {
2101
- left: 83.33333333%;
2102
- }
2103
- .monsterinsights-bootstrap-container .col-md-push-9 {
2104
- left: 75%;
2105
- }
2106
- .monsterinsights-bootstrap-container .col-md-push-8 {
2107
- left: 66.66666667%;
2108
- }
2109
- .monsterinsights-bootstrap-container .col-md-push-7 {
2110
- left: 58.33333333%;
2111
- }
2112
- .monsterinsights-bootstrap-container .col-md-push-6 {
2113
- left: 50%;
2114
- }
2115
- .monsterinsights-bootstrap-container .col-md-push-5 {
2116
- left: 41.66666667%;
2117
- }
2118
- .monsterinsights-bootstrap-container .col-md-push-4 {
2119
- left: 33.33333333%;
2120
- }
2121
- .monsterinsights-bootstrap-container .col-md-push-3 {
2122
- left: 25%;
2123
- }
2124
- .monsterinsights-bootstrap-container .col-md-push-2 {
2125
- left: 16.66666667%;
2126
- }
2127
- .monsterinsights-bootstrap-container .col-md-push-1 {
2128
- left: 8.33333333%;
2129
- }
2130
- .monsterinsights-bootstrap-container .col-md-push-0 {
2131
- left: auto;
2132
- }
2133
- .monsterinsights-bootstrap-container .col-md-offset-12 {
2134
- margin-left: 100%;
2135
- }
2136
- .monsterinsights-bootstrap-container .col-md-offset-11 {
2137
- margin-left: 91.66666667%;
2138
- }
2139
- .monsterinsights-bootstrap-container .col-md-offset-10 {
2140
- margin-left: 83.33333333%;
2141
- }
2142
- .monsterinsights-bootstrap-container .col-md-offset-9 {
2143
- margin-left: 75%;
2144
- }
2145
- .monsterinsights-bootstrap-container .col-md-offset-8 {
2146
- margin-left: 66.66666667%;
2147
- }
2148
- .monsterinsights-bootstrap-container .col-md-offset-7 {
2149
- margin-left: 58.33333333%;
2150
- }
2151
- .monsterinsights-bootstrap-container .col-md-offset-6 {
2152
- margin-left: 50%;
2153
- }
2154
- .monsterinsights-bootstrap-container .col-md-offset-5 {
2155
- margin-left: 41.66666667%;
2156
- }
2157
- .monsterinsights-bootstrap-container .col-md-offset-4 {
2158
- margin-left: 33.33333333%;
2159
- }
2160
- .monsterinsights-bootstrap-container .col-md-offset-3 {
2161
- margin-left: 25%;
2162
- }
2163
- .monsterinsights-bootstrap-container .col-md-offset-2 {
2164
- margin-left: 16.66666667%;
2165
- }
2166
- .monsterinsights-bootstrap-container .col-md-offset-1 {
2167
- margin-left: 8.33333333%;
2168
- }
2169
- .monsterinsights-bootstrap-container .col-md-offset-0 {
2170
- margin-left: 0%;
2171
- }
2172
- }
2173
- @media (min-width: 1200px) {
2174
- .monsterinsights-bootstrap-container .col-lg-1,
2175
- .monsterinsights-bootstrap-container .col-lg-2,
2176
- .monsterinsights-bootstrap-container .col-lg-3,
2177
- .monsterinsights-bootstrap-container .col-lg-4,
2178
- .monsterinsights-bootstrap-container .col-lg-5,
2179
- .monsterinsights-bootstrap-container .col-lg-6,
2180
- .monsterinsights-bootstrap-container .col-lg-7,
2181
- .monsterinsights-bootstrap-container .col-lg-8,
2182
- .monsterinsights-bootstrap-container .col-lg-9,
2183
- .monsterinsights-bootstrap-container .col-lg-10,
2184
- .monsterinsights-bootstrap-container .col-lg-11,
2185
- .monsterinsights-bootstrap-container .col-lg-12 {
2186
- float: left;
2187
- }
2188
- .monsterinsights-bootstrap-container .col-lg-12 {
2189
- width: 100%;
2190
- }
2191
- .monsterinsights-bootstrap-container .col-lg-11 {
2192
- width: 91.66666667%;
2193
- }
2194
- .monsterinsights-bootstrap-container .col-lg-10 {
2195
- width: 83.33333333%;
2196
- }
2197
- .monsterinsights-bootstrap-container .col-lg-9 {
2198
- width: 75%;
2199
- }
2200
- .monsterinsights-bootstrap-container .col-lg-8 {
2201
- width: 66.66666667%;
2202
- }
2203
- .monsterinsights-bootstrap-container .col-lg-7 {
2204
- width: 58.33333333%;
2205
- }
2206
- .monsterinsights-bootstrap-container .col-lg-6 {
2207
- width: 50%;
2208
- }
2209
- .monsterinsights-bootstrap-container .col-lg-5 {
2210
- width: 41.66666667%;
2211
- }
2212
- .monsterinsights-bootstrap-container .col-lg-4 {
2213
- width: 33.33333333%;
2214
- }
2215
- .monsterinsights-bootstrap-container .col-lg-3 {
2216
- width: 25%;
2217
- }
2218
- .monsterinsights-bootstrap-container .col-lg-2 {
2219
- width: 16.66666667%;
2220
- }
2221
- .monsterinsights-bootstrap-container .col-lg-1 {
2222
- width: 8.33333333%;
2223
- }
2224
- .monsterinsights-bootstrap-container .col-lg-pull-12 {
2225
- right: 100%;
2226
- }
2227
- .monsterinsights-bootstrap-container .col-lg-pull-11 {
2228
- right: 91.66666667%;
2229
- }
2230
- .monsterinsights-bootstrap-container .col-lg-pull-10 {
2231
- right: 83.33333333%;
2232
- }
2233
- .monsterinsights-bootstrap-container .col-lg-pull-9 {
2234
- right: 75%;
2235
- }
2236
- .monsterinsights-bootstrap-container .col-lg-pull-8 {
2237
- right: 66.66666667%;
2238
- }
2239
- .monsterinsights-bootstrap-container .col-lg-pull-7 {
2240
- right: 58.33333333%;
2241
- }
2242
- .monsterinsights-bootstrap-container .col-lg-pull-6 {
2243
- right: 50%;
2244
- }
2245
- .monsterinsights-bootstrap-container .col-lg-pull-5 {
2246
- right: 41.66666667%;
2247
- }
2248
- .monsterinsights-bootstrap-container .col-lg-pull-4 {
2249
- right: 33.33333333%;
2250
- }
2251
- .monsterinsights-bootstrap-container .col-lg-pull-3 {
2252
- right: 25%;
2253
- }
2254
- .monsterinsights-bootstrap-container .col-lg-pull-2 {
2255
- right: 16.66666667%;
2256
- }
2257
- .monsterinsights-bootstrap-container .col-lg-pull-1 {
2258
- right: 8.33333333%;
2259
- }
2260
- .monsterinsights-bootstrap-container .col-lg-pull-0 {
2261
- right: auto;
2262
- }
2263
- .monsterinsights-bootstrap-container .col-lg-push-12 {
2264
- left: 100%;
2265
- }
2266
- .monsterinsights-bootstrap-container .col-lg-push-11 {
2267
- left: 91.66666667%;
2268
- }
2269
- .monsterinsights-bootstrap-container .col-lg-push-10 {
2270
- left: 83.33333333%;
2271
- }
2272
- .monsterinsights-bootstrap-container .col-lg-push-9 {
2273
- left: 75%;
2274
- }
2275
- .monsterinsights-bootstrap-container .col-lg-push-8 {
2276
- left: 66.66666667%;
2277
- }
2278
- .monsterinsights-bootstrap-container .col-lg-push-7 {
2279
- left: 58.33333333%;
2280
- }
2281
- .monsterinsights-bootstrap-container .col-lg-push-6 {
2282
- left: 50%;
2283
- }
2284
- .monsterinsights-bootstrap-container .col-lg-push-5 {
2285
- left: 41.66666667%;
2286
- }
2287
- .monsterinsights-bootstrap-container .col-lg-push-4 {
2288
- left: 33.33333333%;
2289
- }
2290
- .monsterinsights-bootstrap-container .col-lg-push-3 {
2291
- left: 25%;
2292
- }
2293
- .monsterinsights-bootstrap-container .col-lg-push-2 {
2294
- left: 16.66666667%;
2295
- }
2296
- .monsterinsights-bootstrap-container .col-lg-push-1 {
2297
- left: 8.33333333%;
2298
- }
2299
- .monsterinsights-bootstrap-container .col-lg-push-0 {
2300
- left: auto;
2301
- }
2302
- .monsterinsights-bootstrap-container .col-lg-offset-12 {
2303
- margin-left: 100%;
2304
- }
2305
- .monsterinsights-bootstrap-container .col-lg-offset-11 {
2306
- margin-left: 91.66666667%;
2307
- }
2308
- .monsterinsights-bootstrap-container .col-lg-offset-10 {
2309
- margin-left: 83.33333333%;
2310
- }
2311
- .monsterinsights-bootstrap-container .col-lg-offset-9 {
2312
- margin-left: 75%;
2313
- }
2314
- .monsterinsights-bootstrap-container .col-lg-offset-8 {
2315
- margin-left: 66.66666667%;
2316
- }
2317
- .monsterinsights-bootstrap-container .col-lg-offset-7 {
2318
- margin-left: 58.33333333%;
2319
- }
2320
- .monsterinsights-bootstrap-container .col-lg-offset-6 {
2321
- margin-left: 50%;
2322
- }
2323
- .monsterinsights-bootstrap-container .col-lg-offset-5 {
2324
- margin-left: 41.66666667%;
2325
- }
2326
- .monsterinsights-bootstrap-container .col-lg-offset-4 {
2327
- margin-left: 33.33333333%;
2328
- }
2329
- .monsterinsights-bootstrap-container .col-lg-offset-3 {
2330
- margin-left: 25%;
2331
- }
2332
- .monsterinsights-bootstrap-container .col-lg-offset-2 {
2333
- margin-left: 16.66666667%;
2334
- }
2335
- .monsterinsights-bootstrap-container .col-lg-offset-1 {
2336
- margin-left: 8.33333333%;
2337
- }
2338
- .monsterinsights-bootstrap-container .col-lg-offset-0 {
2339
- margin-left: 0%;
2340
- }
2341
- }
2342
- .monsterinsights-bootstrap-container table {
2343
- background-color: transparent;
2344
- }
2345
- .monsterinsights-bootstrap-container table col[class*="col-"] {
2346
- position: static;
2347
- display: table-column;
2348
- float: none;
2349
- }
2350
- .monsterinsights-bootstrap-container table td[class*="col-"],
2351
- .monsterinsights-bootstrap-container table th[class*="col-"] {
2352
- position: static;
2353
- display: table-cell;
2354
- float: none;
2355
- }
2356
- .monsterinsights-bootstrap-container caption {
2357
- padding-top: 8px;
2358
- padding-bottom: 8px;
2359
- color: #777777;
2360
- text-align: left;
2361
- }
2362
- .monsterinsights-bootstrap-container th {
2363
- text-align: left;
2364
- }
2365
- .monsterinsights-bootstrap-container .table {
2366
- width: 100%;
2367
- max-width: 100%;
2368
- margin-bottom: 20px;
2369
- }
2370
- .monsterinsights-bootstrap-container .table > thead > tr > th,
2371
- .monsterinsights-bootstrap-container .table > tbody > tr > th,
2372
- .monsterinsights-bootstrap-container .table > tfoot > tr > th,
2373
- .monsterinsights-bootstrap-container .table > thead > tr > td,
2374
- .monsterinsights-bootstrap-container .table > tbody > tr > td,
2375
- .monsterinsights-bootstrap-container .table > tfoot > tr > td {
2376
- padding: 8px;
2377
- line-height: 1.42857143;
2378
- vertical-align: top;
2379
- border-top: 1px solid #ddd;
2380
- }
2381
- .monsterinsights-bootstrap-container .table > thead > tr > th {
2382
- vertical-align: bottom;
2383
- border-bottom: 2px solid #ddd;
2384
- }
2385
- .monsterinsights-bootstrap-container .table > caption + thead > tr:first-child > th,
2386
- .monsterinsights-bootstrap-container .table > colgroup + thead > tr:first-child > th,
2387
- .monsterinsights-bootstrap-container .table > thead:first-child > tr:first-child > th,
2388
- .monsterinsights-bootstrap-container .table > caption + thead > tr:first-child > td,
2389
- .monsterinsights-bootstrap-container .table > colgroup + thead > tr:first-child > td,
2390
- .monsterinsights-bootstrap-container .table > thead:first-child > tr:first-child > td {
2391
- border-top: 0;
2392
- }
2393
- .monsterinsights-bootstrap-container .table > tbody + tbody {
2394
- border-top: 2px solid #ddd;
2395
- }
2396
- .monsterinsights-bootstrap-container .table .table {
2397
- background-color: #fff;
2398
- }
2399
- .monsterinsights-bootstrap-container .table-condensed > thead > tr > th,
2400
- .monsterinsights-bootstrap-container .table-condensed > tbody > tr > th,
2401
- .monsterinsights-bootstrap-container .table-condensed > tfoot > tr > th,
2402
- .monsterinsights-bootstrap-container .table-condensed > thead > tr > td,
2403
- .monsterinsights-bootstrap-container .table-condensed > tbody > tr > td,
2404
- .monsterinsights-bootstrap-container .table-condensed > tfoot > tr > td {
2405
- padding: 5px;
2406
- }
2407
- .monsterinsights-bootstrap-container .table-bordered {
2408
- border: 1px solid #ddd;
2409
- }
2410
- .monsterinsights-bootstrap-container .table-bordered > thead > tr > th,
2411
- .monsterinsights-bootstrap-container .table-bordered > tbody > tr > th,
2412
- .monsterinsights-bootstrap-container .table-bordered > tfoot > tr > th,
2413
- .monsterinsights-bootstrap-container .table-bordered > thead > tr > td,
2414
- .monsterinsights-bootstrap-container .table-bordered > tbody > tr > td,
2415
- .monsterinsights-bootstrap-container .table-bordered > tfoot > tr > td {
2416
- border: 1px solid #ddd;
2417
- }
2418
- .monsterinsights-bootstrap-container .table-bordered > thead > tr > th,
2419
- .monsterinsights-bootstrap-container .table-bordered > thead > tr > td {
2420
- border-bottom-width: 2px;
2421
- }
2422
- .monsterinsights-bootstrap-container .table-striped > tbody > tr:nth-of-type(odd) {
2423
- background-color: #f9f9f9;
2424
- }
2425
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover {
2426
- background-color: #f5f5f5;
2427
- }
2428
- .monsterinsights-bootstrap-container .table > thead > tr > td.active,
2429
- .monsterinsights-bootstrap-container .table > tbody > tr > td.active,
2430
- .monsterinsights-bootstrap-container .table > tfoot > tr > td.active,
2431
- .monsterinsights-bootstrap-container .table > thead > tr > th.active,
2432
- .monsterinsights-bootstrap-container .table > tbody > tr > th.active,
2433
- .monsterinsights-bootstrap-container .table > tfoot > tr > th.active,
2434
- .monsterinsights-bootstrap-container .table > thead > tr.active > td,
2435
- .monsterinsights-bootstrap-container .table > tbody > tr.active > td,
2436
- .monsterinsights-bootstrap-container .table > tfoot > tr.active > td,
2437
- .monsterinsights-bootstrap-container .table > thead > tr.active > th,
2438
- .monsterinsights-bootstrap-container .table > tbody > tr.active > th,
2439
- .monsterinsights-bootstrap-container .table > tfoot > tr.active > th {
2440
- background-color: #f5f5f5;
2441
- }
2442
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > td.active:hover,
2443
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > th.active:hover,
2444
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.active:hover > td,
2445
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .active,
2446
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.active:hover > th {
2447
- background-color: #e8e8e8;
2448
- }
2449
- .monsterinsights-bootstrap-container .table > thead > tr > td.success,
2450
- .monsterinsights-bootstrap-container .table > tbody > tr > td.success,
2451
- .monsterinsights-bootstrap-container .table > tfoot > tr > td.success,
2452
- .monsterinsights-bootstrap-container .table > thead > tr > th.success,
2453
- .monsterinsights-bootstrap-container .table > tbody > tr > th.success,
2454
- .monsterinsights-bootstrap-container .table > tfoot > tr > th.success,
2455
- .monsterinsights-bootstrap-container .table > thead > tr.success > td,
2456
- .monsterinsights-bootstrap-container .table > tbody > tr.success > td,
2457
- .monsterinsights-bootstrap-container .table > tfoot > tr.success > td,
2458
- .monsterinsights-bootstrap-container .table > thead > tr.success > th,
2459
- .monsterinsights-bootstrap-container .table > tbody > tr.success > th,
2460
- .monsterinsights-bootstrap-container .table > tfoot > tr.success > th {
2461
- background-color: #dff0d8;
2462
- }
2463
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > td.success:hover,
2464
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > th.success:hover,
2465
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.success:hover > td,
2466
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .success,
2467
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.success:hover > th {
2468
- background-color: #d0e9c6;
2469
- }
2470
- .monsterinsights-bootstrap-container .table > thead > tr > td.info,
2471
- .monsterinsights-bootstrap-container .table > tbody > tr > td.info,
2472
- .monsterinsights-bootstrap-container .table > tfoot > tr > td.info,
2473
- .monsterinsights-bootstrap-container .table > thead > tr > th.info,
2474
- .monsterinsights-bootstrap-container .table > tbody > tr > th.info,
2475
- .monsterinsights-bootstrap-container .table > tfoot > tr > th.info,
2476
- .monsterinsights-bootstrap-container .table > thead > tr.info > td,
2477
- .monsterinsights-bootstrap-container .table > tbody > tr.info > td,
2478
- .monsterinsights-bootstrap-container .table > tfoot > tr.info > td,
2479
- .monsterinsights-bootstrap-container .table > thead > tr.info > th,
2480
- .monsterinsights-bootstrap-container .table > tbody > tr.info > th,
2481
- .monsterinsights-bootstrap-container .table > tfoot > tr.info > th {
2482
- background-color: #d9edf7;
2483
- }
2484
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > td.info:hover,
2485
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > th.info:hover,
2486
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.info:hover > td,
2487
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .info,
2488
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.info:hover > th {
2489
- background-color: #c4e3f3;
2490
- }
2491
- .monsterinsights-bootstrap-container .table > thead > tr > td.warning,
2492
- .monsterinsights-bootstrap-container .table > tbody > tr > td.warning,
2493
- .monsterinsights-bootstrap-container .table > tfoot > tr > td.warning,
2494
- .monsterinsights-bootstrap-container .table > thead > tr > th.warning,
2495
- .monsterinsights-bootstrap-container .table > tbody > tr > th.warning,
2496
- .monsterinsights-bootstrap-container .table > tfoot > tr > th.warning,
2497
- .monsterinsights-bootstrap-container .table > thead > tr.warning > td,
2498
- .monsterinsights-bootstrap-container .table > tbody > tr.warning > td,
2499
- .monsterinsights-bootstrap-container .table > tfoot > tr.warning > td,
2500
- .monsterinsights-bootstrap-container .table > thead > tr.warning > th,
2501
- .monsterinsights-bootstrap-container .table > tbody > tr.warning > th,
2502
- .monsterinsights-bootstrap-container .table > tfoot > tr.warning > th {
2503
- background-color: #fcf8e3;
2504
- }
2505
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > td.warning:hover,
2506
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > th.warning:hover,
2507
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.warning:hover > td,
2508
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .warning,
2509
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.warning:hover > th {
2510
- background-color: #faf2cc;
2511
- }
2512
- .monsterinsights-bootstrap-container .table > thead > tr > td.danger,
2513
- .monsterinsights-bootstrap-container .table > tbody > tr > td.danger,
2514
- .monsterinsights-bootstrap-container .table > tfoot > tr > td.danger,
2515
- .monsterinsights-bootstrap-container .table > thead > tr > th.danger,
2516
- .monsterinsights-bootstrap-container .table > tbody > tr > th.danger,
2517
- .monsterinsights-bootstrap-container .table > tfoot > tr > th.danger,
2518
- .monsterinsights-bootstrap-container .table > thead > tr.danger > td,
2519
- .monsterinsights-bootstrap-container .table > tbody > tr.danger > td,
2520
- .monsterinsights-bootstrap-container .table > tfoot > tr.danger > td,
2521
- .monsterinsights-bootstrap-container .table > thead > tr.danger > th,
2522
- .monsterinsights-bootstrap-container .table > tbody > tr.danger > th,
2523
- .monsterinsights-bootstrap-container .table > tfoot > tr.danger > th {
2524
- background-color: #f2dede;
2525
- }
2526
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > td.danger:hover,
2527
- .monsterinsights-bootstrap-container .table-hover > tbody > tr > th.danger:hover,
2528
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.danger:hover > td,
2529
- .monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .danger,
2530
- .monsterinsights-bootstrap-container .table-hover > tbody > tr.danger:hover > th {
2531
- background-color: #ebcccc;
2532
- }
2533
- .monsterinsights-bootstrap-container .table-responsive {
2534
- min-height: 0.01%;
2535
- overflow-x: auto;
2536
- }
2537
- @media screen and (max-width: 767px) {
2538
- .monsterinsights-bootstrap-container .table-responsive {
2539
- width: 100%;
2540
- margin-bottom: 15px;
2541
- overflow-y: hidden;
2542
- -ms-overflow-style: -ms-autohiding-scrollbar;
2543
- border: 1px solid #ddd;
2544
- }
2545
- .monsterinsights-bootstrap-container .table-responsive > .table {
2546
- margin-bottom: 0;
2547
- }
2548
- .monsterinsights-bootstrap-container .table-responsive > .table > thead > tr > th,
2549
- .monsterinsights-bootstrap-container .table-responsive > .table > tbody > tr > th,
2550
- .monsterinsights-bootstrap-container .table-responsive > .table > tfoot > tr > th,
2551
- .monsterinsights-bootstrap-container .table-responsive > .table > thead > tr > td,
2552
- .monsterinsights-bootstrap-container .table-responsive > .table > tbody > tr > td,
2553
- .monsterinsights-bootstrap-container .table-responsive > .table > tfoot > tr > td {
2554
- white-space: nowrap;
2555
- }
2556
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered {
2557
- border: 0;
2558
- }
2559
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > th:first-child,
2560
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > th:first-child,
2561
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > th:first-child,
2562
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > td:first-child,
2563
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > td:first-child,
2564
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > td:first-child {
2565
- border-left: 0;
2566
- }
2567
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > th:last-child,
2568
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > th:last-child,
2569
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > th:last-child,
2570
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > td:last-child,
2571
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > td:last-child,
2572
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > td:last-child {
2573
- border-right: 0;
2574
- }
2575
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr:last-child > th,
2576
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr:last-child > th,
2577
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr:last-child > td,
2578
- .monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr:last-child > td {
2579
- border-bottom: 0;
2580
- }
2581
- }
2582
- .monsterinsights-bootstrap-container fieldset {
2583
- min-width: 0;
2584
- padding: 0;
2585
- margin: 0;
2586
- border: 0;
2587
- }
2588
- .monsterinsights-bootstrap-container legend {
2589
- display: block;
2590
- width: 100%;
2591
- padding: 0;
2592
- margin-bottom: 20px;
2593
- font-size: 21px;
2594
- line-height: inherit;
2595
- color: #333333;
2596
- border: 0;
2597
- border-bottom: 1px solid #e5e5e5;
2598
- }
2599
- .monsterinsights-bootstrap-container label {
2600
- display: inline-block;
2601
- max-width: 100%;
2602
- margin-bottom: 5px;
2603
- font-weight: 700;
2604
- }
2605
- .monsterinsights-bootstrap-container input[type="search"] {
2606
- -webkit-box-sizing: border-box;
2607
- -moz-box-sizing: border-box;
2608
- box-sizing: border-box;
2609
- -webkit-appearance: none;
2610
- -moz-appearance: none;
2611
- appearance: none;
2612
- }
2613
- .monsterinsights-bootstrap-container input[type="radio"],
2614
- .monsterinsights-bootstrap-container input[type="checkbox"] {
2615
- margin: 4px 0 0;
2616
- margin-top: 1px \9;
2617
- line-height: normal;
2618
- }
2619
- .monsterinsights-bootstrap-container input[type="radio"][disabled],
2620
- .monsterinsights-bootstrap-container input[type="checkbox"][disabled],
2621
- .monsterinsights-bootstrap-container input[type="radio"].disabled,
2622
- .monsterinsights-bootstrap-container input[type="checkbox"].disabled,
2623
- .monsterinsights-bootstrap-container fieldset[disabled] input[type="radio"],
2624
- .monsterinsights-bootstrap-container fieldset[disabled] input[type="checkbox"] {
2625
- cursor: not-allowed;
2626
- }
2627
- .monsterinsights-bootstrap-container input[type="file"] {
2628
- display: block;
2629
- }
2630
- .monsterinsights-bootstrap-container input[type="range"] {
2631
- display: block;
2632
- width: 100%;
2633
- }
2634
- .monsterinsights-bootstrap-container select[multiple],
2635
- .monsterinsights-bootstrap-container select[size] {
2636
- height: auto;
2637
- }
2638
- .monsterinsights-bootstrap-container input[type="file"]:focus,
2639
- .monsterinsights-bootstrap-container input[type="radio"]:focus,
2640
- .monsterinsights-bootstrap-container input[type="checkbox"]:focus {
2641
- outline: 5px auto -webkit-focus-ring-color;
2642
- outline-offset: -2px;
2643
- }
2644
- .monsterinsights-bootstrap-container output {
2645
- display: block;
2646
- padding-top: 7px;
2647
- font-size: 14px;
2648
- line-height: 1.42857143;
2649
- color: #555555;
2650
- }
2651
- .monsterinsights-bootstrap-container .form-control {
2652
- display: block;
2653
- width: 100%;
2654
- height: 34px;
2655
- padding: 6px 12px;
2656
- font-size: 14px;
2657
- line-height: 1.42857143;
2658
- color: #555555;
2659
- background-color: #fff;
2660
- background-image: none;
2661
- border: 1px solid #ccc;
2662
- border-radius: 4px;
2663
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2664
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2665
- -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2666
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2667
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2668
- transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2669
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2670
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2671
- }
2672
- .monsterinsights-bootstrap-container .form-control:focus {
2673
- border-color: #66afe9;
2674
- outline: 0;
2675
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
2676
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
2677
- }
2678
- .monsterinsights-bootstrap-container .form-control::-moz-placeholder {
2679
- color: #999;
2680
- opacity: 1;
2681
- }
2682
- .monsterinsights-bootstrap-container .form-control:-ms-input-placeholder {
2683
- color: #999;
2684
- }
2685
- .monsterinsights-bootstrap-container .form-control::-webkit-input-placeholder {
2686
- color: #999;
2687
- }
2688
- .monsterinsights-bootstrap-container .form-control::-ms-expand {
2689
- background-color: transparent;
2690
- border: 0;
2691
- }
2692
- .monsterinsights-bootstrap-container .form-control[disabled],
2693
- .monsterinsights-bootstrap-container .form-control[readonly],
2694
- .monsterinsights-bootstrap-container fieldset[disabled] .form-control {
2695
- background-color: #eeeeee;
2696
- opacity: 1;
2697
- }
2698
- .monsterinsights-bootstrap-container .form-control[disabled],
2699
- .monsterinsights-bootstrap-container fieldset[disabled] .form-control {
2700
- cursor: not-allowed;
2701
- }
2702
- .monsterinsights-bootstrap-container textarea.form-control {
2703
- height: auto;
2704
- }
2705
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
2706
- .monsterinsights-bootstrap-container input[type="date"].form-control,
2707
- .monsterinsights-bootstrap-container input[type="time"].form-control,
2708
- .monsterinsights-bootstrap-container input[type="datetime-local"].form-control,
2709
- .monsterinsights-bootstrap-container input[type="month"].form-control {
2710
- line-height: 34px;
2711
- }
2712
- .monsterinsights-bootstrap-container input[type="date"].input-sm,
2713
- .monsterinsights-bootstrap-container input[type="time"].input-sm,
2714
- .monsterinsights-bootstrap-container input[type="datetime-local"].input-sm,
2715
- .monsterinsights-bootstrap-container input[type="month"].input-sm,
2716
- .monsterinsights-bootstrap-container .input-group-sm input[type="date"],
2717
- .monsterinsights-bootstrap-container .input-group-sm input[type="time"],
2718
- .monsterinsights-bootstrap-container .input-group-sm input[type="datetime-local"],
2719
- .monsterinsights-bootstrap-container .input-group-sm input[type="month"] {
2720
- line-height: 30px;
2721
- }
2722
- .monsterinsights-bootstrap-container input[type="date"].input-lg,
2723
- .monsterinsights-bootstrap-container input[type="time"].input-lg,
2724
- .monsterinsights-bootstrap-container input[type="datetime-local"].input-lg,
2725
- .monsterinsights-bootstrap-container input[type="month"].input-lg,
2726
- .monsterinsights-bootstrap-container .input-group-lg input[type="date"],
2727
- .monsterinsights-bootstrap-container .input-group-lg input[type="time"],
2728
- .monsterinsights-bootstrap-container .input-group-lg input[type="datetime-local"],
2729
- .monsterinsights-bootstrap-container .input-group-lg input[type="month"] {
2730
- line-height: 46px;
2731
- }
2732
- }
2733
- .monsterinsights-bootstrap-container .form-group {
2734
- margin-bottom: 15px;
2735
- }
2736
- .monsterinsights-bootstrap-container .radio,
2737
- .monsterinsights-bootstrap-container .checkbox {
2738
- position: relative;
2739
- display: block;
2740
- margin-top: 10px;
2741
- margin-bottom: 10px;
2742
- }
2743
- .monsterinsights-bootstrap-container .radio.disabled label,
2744
- .monsterinsights-bootstrap-container .checkbox.disabled label,
2745
- .monsterinsights-bootstrap-container fieldset[disabled] .radio label,
2746
- .monsterinsights-bootstrap-container fieldset[disabled] .checkbox label {
2747
- cursor: not-allowed;
2748
- }
2749
- .monsterinsights-bootstrap-container .radio label,
2750
- .monsterinsights-bootstrap-container .checkbox label {
2751
- min-height: 20px;
2752
- padding-left: 20px;
2753
- margin-bottom: 0;
2754
- font-weight: 400;
2755
- cursor: pointer;
2756
- }
2757
- .monsterinsights-bootstrap-container .radio input[type="radio"],
2758
- .monsterinsights-bootstrap-container .radio-inline input[type="radio"],
2759
- .monsterinsights-bootstrap-container .checkbox input[type="checkbox"],
2760
- .monsterinsights-bootstrap-container .checkbox-inline input[type="checkbox"] {
2761
- position: absolute;
2762
- margin-top: 4px \9;
2763
- margin-left: -20px;
2764
- }
2765
- .monsterinsights-bootstrap-container .radio + .radio,
2766
- .monsterinsights-bootstrap-container .checkbox + .checkbox {
2767
- margin-top: -5px;
2768
- }
2769
- .monsterinsights-bootstrap-container .radio-inline,
2770
- .monsterinsights-bootstrap-container .checkbox-inline {
2771
- position: relative;
2772
- display: inline-block;
2773
- padding-left: 20px;
2774
- margin-bottom: 0;
2775
- font-weight: 400;
2776
- vertical-align: middle;
2777
- cursor: pointer;
2778
- }
2779
- .monsterinsights-bootstrap-container .radio-inline.disabled,
2780
- .monsterinsights-bootstrap-container .checkbox-inline.disabled,
2781
- .monsterinsights-bootstrap-container fieldset[disabled] .radio-inline,
2782
- .monsterinsights-bootstrap-container fieldset[disabled] .checkbox-inline {
2783
- cursor: not-allowed;
2784
- }
2785
- .monsterinsights-bootstrap-container .radio-inline + .radio-inline,
2786
- .monsterinsights-bootstrap-container .checkbox-inline + .checkbox-inline {
2787
- margin-top: 0;
2788
- margin-left: 10px;
2789
- }
2790
- .monsterinsights-bootstrap-container .form-control-static {
2791
- min-height: 34px;
2792
- padding-top: 7px;
2793
- padding-bottom: 7px;
2794
- margin-bottom: 0;
2795
- }
2796
- .monsterinsights-bootstrap-container .form-control-static.input-lg,
2797
- .monsterinsights-bootstrap-container .form-control-static.input-sm {
2798
- padding-right: 0;
2799
- padding-left: 0;
2800
- }
2801
- .monsterinsights-bootstrap-container .input-sm {
2802
- height: 30px;
2803
- padding: 5px 10px;
2804
- font-size: 12px;
2805
- line-height: 1.5;
2806
- border-radius: 3px;
2807
- }
2808
- .monsterinsights-bootstrap-container select.input-sm {
2809
- height: 30px;
2810
- line-height: 30px;
2811
- }
2812
- .monsterinsights-bootstrap-container textarea.input-sm,
2813
- .monsterinsights-bootstrap-container select[multiple].input-sm {
2814
- height: auto;
2815
- }
2816
- .monsterinsights-bootstrap-container .form-group-sm .form-control {
2817
- height: 30px;
2818
- padding: 5px 10px;
2819
- font-size: 12px;
2820
- line-height: 1.5;
2821
- border-radius: 3px;
2822
- }
2823
- .monsterinsights-bootstrap-container .form-group-sm select.form-control {
2824
- height: 30px;
2825
- line-height: 30px;
2826
- }
2827
- .monsterinsights-bootstrap-container .form-group-sm textarea.form-control,
2828
- .monsterinsights-bootstrap-container .form-group-sm select[multiple].form-control {
2829
- height: auto;
2830
- }
2831
- .monsterinsights-bootstrap-container .form-group-sm .form-control-static {
2832
- height: 30px;
2833
- min-height: 32px;
2834
- padding: 6px 10px;
2835
- font-size: 12px;
2836
- line-height: 1.5;
2837
- }
2838
- .monsterinsights-bootstrap-container .input-lg {
2839
- height: 46px;
2840
- padding: 10px 16px;
2841
- font-size: 18px;
2842
- line-height: 1.3333333;
2843
- border-radius: 6px;
2844
- }
2845
- .monsterinsights-bootstrap-container select.input-lg {
2846
- height: 46px;
2847
- line-height: 46px;
2848
- }
2849
- .monsterinsights-bootstrap-container textarea.input-lg,
2850
- .monsterinsights-bootstrap-container select[multiple].input-lg {
2851
- height: auto;
2852
- }
2853
- .monsterinsights-bootstrap-container .form-group-lg .form-control {
2854
- height: 46px;
2855
- padding: 10px 16px;
2856
- font-size: 18px;
2857
- line-height: 1.3333333;
2858
- border-radius: 6px;
2859
- }
2860
- .monsterinsights-bootstrap-container .form-group-lg select.form-control {
2861
- height: 46px;
2862
- line-height: 46px;
2863
- }
2864
- .monsterinsights-bootstrap-container .form-group-lg textarea.form-control,
2865
- .monsterinsights-bootstrap-container .form-group-lg select[multiple].form-control {
2866
- height: auto;
2867
- }
2868
- .monsterinsights-bootstrap-container .form-group-lg .form-control-static {
2869
- height: 46px;
2870
- min-height: 38px;
2871
- padding: 11px 16px;
2872
- font-size: 18px;
2873
- line-height: 1.3333333;
2874
- }
2875
- .monsterinsights-bootstrap-container .has-feedback {
2876
- position: relative;
2877
- }
2878
- .monsterinsights-bootstrap-container .has-feedback .form-control {
2879
- padding-right: 42.5px;
2880
- }
2881
- .monsterinsights-bootstrap-container .form-control-feedback {
2882
- position: absolute;
2883
- top: 0;
2884
- right: 0;
2885
- z-index: 2;
2886
- display: block;
2887
- width: 34px;
2888
- height: 34px;
2889
- line-height: 34px;
2890
- text-align: center;
2891
- pointer-events: none;
2892
- }
2893
- .monsterinsights-bootstrap-container .input-lg + .form-control-feedback,
2894
- .monsterinsights-bootstrap-container .input-group-lg + .form-control-feedback,
2895
- .monsterinsights-bootstrap-container .form-group-lg .form-control + .form-control-feedback {
2896
- width: 46px;
2897
- height: 46px;
2898
- line-height: 46px;
2899
- }
2900
- .monsterinsights-bootstrap-container .input-sm + .form-control-feedback,
2901
- .monsterinsights-bootstrap-container .input-group-sm + .form-control-feedback,
2902
- .monsterinsights-bootstrap-container .form-group-sm .form-control + .form-control-feedback {
2903
- width: 30px;
2904
- height: 30px;
2905
- line-height: 30px;
2906
- }
2907
- .monsterinsights-bootstrap-container .has-success .help-block,
2908
- .monsterinsights-bootstrap-container .has-success .control-label,
2909
- .monsterinsights-bootstrap-container .has-success .radio,
2910
- .monsterinsights-bootstrap-container .has-success .checkbox,
2911
- .monsterinsights-bootstrap-container .has-success .radio-inline,
2912
- .monsterinsights-bootstrap-container .has-success .checkbox-inline,
2913
- .monsterinsights-bootstrap-container .has-success.radio label,
2914
- .monsterinsights-bootstrap-container .has-success.checkbox label,
2915
- .monsterinsights-bootstrap-container .has-success.radio-inline label,
2916
- .monsterinsights-bootstrap-container .has-success.checkbox-inline label {
2917
- color: #3c763d;
2918
- }
2919
- .monsterinsights-bootstrap-container .has-success .form-control {
2920
- border-color: #3c763d;
2921
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2922
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2923
- }
2924
- .monsterinsights-bootstrap-container .has-success .form-control:focus {
2925
- border-color: #2b542c;
2926
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;
2927
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;
2928
- }
2929
- .monsterinsights-bootstrap-container .has-success .input-group-addon {
2930
- color: #3c763d;
2931
- background-color: #dff0d8;
2932
- border-color: #3c763d;
2933
- }
2934
- .monsterinsights-bootstrap-container .has-success .form-control-feedback {
2935
- color: #3c763d;
2936
- }
2937
- .monsterinsights-bootstrap-container .has-warning .help-block,
2938
- .monsterinsights-bootstrap-container .has-warning .control-label,
2939
- .monsterinsights-bootstrap-container .has-warning .radio,
2940
- .monsterinsights-bootstrap-container .has-warning .checkbox,
2941
- .monsterinsights-bootstrap-container .has-warning .radio-inline,
2942
- .monsterinsights-bootstrap-container .has-warning .checkbox-inline,
2943
- .monsterinsights-bootstrap-container .has-warning.radio label,
2944
- .monsterinsights-bootstrap-container .has-warning.checkbox label,
2945
- .monsterinsights-bootstrap-container .has-warning.radio-inline label,
2946
- .monsterinsights-bootstrap-container .has-warning.checkbox-inline label {
2947
- color: #8a6d3b;
2948
- }
2949
- .monsterinsights-bootstrap-container .has-warning .form-control {
2950
- border-color: #8a6d3b;
2951
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2952
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2953
- }
2954
- .monsterinsights-bootstrap-container .has-warning .form-control:focus {
2955
- border-color: #66512c;
2956
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;
2957
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;
2958
- }
2959
- .monsterinsights-bootstrap-container .has-warning .input-group-addon {
2960
- color: #8a6d3b;
2961
- background-color: #fcf8e3;
2962
- border-color: #8a6d3b;
2963
- }
2964
- .monsterinsights-bootstrap-container .has-warning .form-control-feedback {
2965
- color: #8a6d3b;
2966
- }
2967
- .monsterinsights-bootstrap-container .has-error .help-block,
2968
- .monsterinsights-bootstrap-container .has-error .control-label,
2969
- .monsterinsights-bootstrap-container .has-error .radio,
2970
- .monsterinsights-bootstrap-container .has-error .checkbox,
2971
- .monsterinsights-bootstrap-container .has-error .radio-inline,
2972
- .monsterinsights-bootstrap-container .has-error .checkbox-inline,
2973
- .monsterinsights-bootstrap-container .has-error.radio label,
2974
- .monsterinsights-bootstrap-container .has-error.checkbox label,
2975
- .monsterinsights-bootstrap-container .has-error.radio-inline label,
2976
- .monsterinsights-bootstrap-container .has-error.checkbox-inline label {
2977
- color: #a94442;
2978
- }
2979
- .monsterinsights-bootstrap-container .has-error .form-control {
2980
- border-color: #a94442;
2981
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2982
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
2983
- }
2984
- .monsterinsights-bootstrap-container .has-error .form-control:focus {
2985
- border-color: #843534;
2986
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;
2987
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;
2988
- }
2989
- .monsterinsights-bootstrap-container .has-error .input-group-addon {
2990
- color: #a94442;
2991
- background-color: #f2dede;
2992
- border-color: #a94442;
2993
- }
2994
- .monsterinsights-bootstrap-container .has-error .form-control-feedback {
2995
- color: #a94442;
2996
- }
2997
- .monsterinsights-bootstrap-container .has-feedback label ~ .form-control-feedback {
2998
- top: 25px;
2999
- }
3000
- .monsterinsights-bootstrap-container .has-feedback label.sr-only ~ .form-control-feedback {
3001
- top: 0;
3002
- }
3003
- .monsterinsights-bootstrap-container .help-block {
3004
- display: block;
3005
- margin-top: 5px;
3006
- margin-bottom: 10px;
3007
- color: #737373;
3008
- }
3009
- @media (min-width: 768px) {
3010
- .monsterinsights-bootstrap-container .form-inline .form-group {
3011
- display: inline-block;
3012
- margin-bottom: 0;
3013
- vertical-align: middle;
3014
- }
3015
- .monsterinsights-bootstrap-container .form-inline .form-control {
3016
- display: inline-block;
3017
- width: auto;
3018
- vertical-align: middle;
3019
- }
3020
- .monsterinsights-bootstrap-container .form-inline .form-control-static {
3021
- display: inline-block;
3022
- }
3023
- .monsterinsights-bootstrap-container .form-inline .input-group {
3024
- display: inline-table;
3025
- vertical-align: middle;
3026
- }
3027
- .monsterinsights-bootstrap-container .form-inline .input-group .input-group-addon,
3028
- .monsterinsights-bootstrap-container .form-inline .input-group .input-group-btn,
3029
- .monsterinsights-bootstrap-container .form-inline .input-group .form-control {
3030
- width: auto;
3031
- }
3032
- .monsterinsights-bootstrap-container .form-inline .input-group > .form-control {
3033
- width: 100%;
3034
- }
3035
- .monsterinsights-bootstrap-container .form-inline .control-label {
3036
- margin-bottom: 0;
3037
- vertical-align: middle;
3038
- }
3039
- .monsterinsights-bootstrap-container .form-inline .radio,
3040
- .monsterinsights-bootstrap-container .form-inline .checkbox {
3041
- display: inline-block;
3042
- margin-top: 0;
3043
- margin-bottom: 0;
3044
- vertical-align: middle;
3045
- }
3046
- .monsterinsights-bootstrap-container .form-inline .radio label,
3047
- .monsterinsights-bootstrap-container .form-inline .checkbox label {
3048
- padding-left: 0;
3049
- }
3050
- .monsterinsights-bootstrap-container .form-inline .radio input[type="radio"],
3051
- .monsterinsights-bootstrap-container .form-inline .checkbox input[type="checkbox"] {
3052
- position: relative;
3053
- margin-left: 0;
3054
- }
3055
- .monsterinsights-bootstrap-container .form-inline .has-feedback .form-control-feedback {
3056
- top: 0;
3057
- }
3058
- }
3059
- .monsterinsights-bootstrap-container .form-horizontal .radio,
3060
- .monsterinsights-bootstrap-container .form-horizontal .checkbox,
3061
- .monsterinsights-bootstrap-container .form-horizontal .radio-inline,
3062
- .monsterinsights-bootstrap-container .form-horizontal .checkbox-inline {
3063
- padding-top: 7px;
3064
- margin-top: 0;
3065
- margin-bottom: 0;
3066
- }
3067
- .monsterinsights-bootstrap-container .form-horizontal .radio,
3068
- .monsterinsights-bootstrap-container .form-horizontal .checkbox {
3069
- min-height: 27px;
3070
- }
3071
- .monsterinsights-bootstrap-container .form-horizontal .form-group {
3072
- margin-right: -15px;
3073
- margin-left: -15px;
3074
- }
3075
- @media (min-width: 768px) {
3076
- .monsterinsights-bootstrap-container .form-horizontal .control-label {
3077
- padding-top: 7px;
3078
- margin-bottom: 0;
3079
- text-align: right;
3080
- }
3081
- }
3082
- .monsterinsights-bootstrap-container .form-horizontal .has-feedback .form-control-feedback {
3083
- right: 15px;
3084
- }
3085
- @media (min-width: 768px) {
3086
- .monsterinsights-bootstrap-container .form-horizontal .form-group-lg .control-label {
3087
- padding-top: 11px;
3088
- font-size: 18px;
3089
- }
3090
- }
3091
- @media (min-width: 768px) {
3092
- .monsterinsights-bootstrap-container .form-horizontal .form-group-sm .control-label {
3093
- padding-top: 6px;
3094
- font-size: 12px;
3095
- }
3096
- }
3097
- .monsterinsights-bootstrap-container .btn {
3098
- display: inline-block;
3099
- margin-bottom: 0;
3100
- font-weight: normal;
3101
- text-align: center;
3102
- white-space: nowrap;
3103
- vertical-align: middle;
3104
- -ms-touch-action: manipulation;
3105
- touch-action: manipulation;
3106
- cursor: pointer;
3107
- background-image: none;
3108
- border: 1px solid transparent;
3109
- padding: 6px 12px;
3110
- font-size: 14px;
3111
- line-height: 1.42857143;
3112
- border-radius: 4px;
3113
- -webkit-user-select: none;
3114
- -moz-user-select: none;
3115
- -ms-user-select: none;
3116
- user-select: none;
3117
- }
3118
- .monsterinsights-bootstrap-container .btn:focus,
3119
- .monsterinsights-bootstrap-container .btn:active:focus,
3120
- .monsterinsights-bootstrap-container .btn.active:focus,
3121
- .monsterinsights-bootstrap-container .btn.focus,
3122
- .monsterinsights-bootstrap-container .btn:active.focus,
3123
- .monsterinsights-bootstrap-container .btn.active.focus {
3124
- outline: 5px auto -webkit-focus-ring-color;
3125
- outline-offset: -2px;
3126
- }
3127
- .monsterinsights-bootstrap-container .btn:hover,
3128
- .monsterinsights-bootstrap-container .btn:focus,
3129
- .monsterinsights-bootstrap-container .btn.focus {
3130
- color: #333;
3131
- text-decoration: none;
3132
- }
3133
- .monsterinsights-bootstrap-container .btn:active,
3134
- .monsterinsights-bootstrap-container .btn.active {
3135
- background-image: none;
3136
- outline: 0;
3137
- -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
3138
- box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
3139
- }
3140
- .monsterinsights-bootstrap-container .btn.disabled,
3141
- .monsterinsights-bootstrap-container .btn[disabled],
3142
- .monsterinsights-bootstrap-container fieldset[disabled] .btn {
3143
- cursor: not-allowed;
3144
- filter: alpha(opacity=65);
3145
- opacity: 0.65;
3146
- -webkit-box-shadow: none;
3147
- box-shadow: none;
3148
- }
3149
- .monsterinsights-bootstrap-container a.btn.disabled,
3150
- .monsterinsights-bootstrap-container fieldset[disabled] a.btn {
3151
- pointer-events: none;
3152
- }
3153
- .monsterinsights-bootstrap-container .btn-default {
3154
- color: #333;
3155
- background-color: #fff;
3156
- border-color: #ccc;
3157
- }
3158
- .monsterinsights-bootstrap-container .btn-default:focus,
3159
- .monsterinsights-bootstrap-container .btn-default.focus {
3160
- color: #333;
3161
- background-color: #e6e6e6;
3162
- border-color: #8c8c8c;
3163
- }
3164
- .monsterinsights-bootstrap-container .btn-default:hover {
3165
- color: #333;
3166
- background-color: #e6e6e6;
3167
- border-color: #adadad;
3168
- }
3169
- .monsterinsights-bootstrap-container .btn-default:active,
3170
- .monsterinsights-bootstrap-container .btn-default.active,
3171
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default {
3172
- color: #333;
3173
- background-color: #e6e6e6;
3174
- background-image: none;
3175
- border-color: #adadad;
3176
- }
3177
- .monsterinsights-bootstrap-container .btn-default:active:hover,
3178
- .monsterinsights-bootstrap-container .btn-default.active:hover,
3179
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default:hover,
3180
- .monsterinsights-bootstrap-container .btn-default:active:focus,
3181
- .monsterinsights-bootstrap-container .btn-default.active:focus,
3182
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default:focus,
3183
- .monsterinsights-bootstrap-container .btn-default:active.focus,
3184
- .monsterinsights-bootstrap-container .btn-default.active.focus,
3185
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default.focus {
3186
- color: #333;
3187
- background-color: #d4d4d4;
3188
- border-color: #8c8c8c;
3189
- }
3190
- .monsterinsights-bootstrap-container .btn-default.disabled:hover,
3191
- .monsterinsights-bootstrap-container .btn-default[disabled]:hover,
3192
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default:hover,
3193
- .monsterinsights-bootstrap-container .btn-default.disabled:focus,
3194
- .monsterinsights-bootstrap-container .btn-default[disabled]:focus,
3195
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default:focus,
3196
- .monsterinsights-bootstrap-container .btn-default.disabled.focus,
3197
- .monsterinsights-bootstrap-container .btn-default[disabled].focus,
3198
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default.focus {
3199
- background-color: #fff;
3200
- border-color: #ccc;
3201
- }
3202
- .monsterinsights-bootstrap-container .btn-default .badge {
3203
- color: #fff;
3204
- background-color: #333;
3205
- }
3206
- .monsterinsights-bootstrap-container .btn-primary {
3207
- color: #fff;
3208
- background-color: #337ab7;
3209
- border-color: #2e6da4;
3210
- }
3211
- .monsterinsights-bootstrap-container .btn-primary:focus,
3212
- .monsterinsights-bootstrap-container .btn-primary.focus {
3213
- color: #fff;
3214
- background-color: #286090;
3215
- border-color: #122b40;
3216
- }
3217
- .monsterinsights-bootstrap-container .btn-primary:hover {
3218
- color: #fff;
3219
- background-color: #286090;
3220
- border-color: #204d74;
3221
- }
3222
- .monsterinsights-bootstrap-container .btn-primary:active,
3223
- .monsterinsights-bootstrap-container .btn-primary.active,
3224
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary {
3225
- color: #fff;
3226
- background-color: #286090;
3227
- background-image: none;
3228
- border-color: #204d74;
3229
- }
3230
- .monsterinsights-bootstrap-container .btn-primary:active:hover,
3231
- .monsterinsights-bootstrap-container .btn-primary.active:hover,
3232
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary:hover,
3233
- .monsterinsights-bootstrap-container .btn-primary:active:focus,
3234
- .monsterinsights-bootstrap-container .btn-primary.active:focus,
3235
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary:focus,
3236
- .monsterinsights-bootstrap-container .btn-primary:active.focus,
3237
- .monsterinsights-bootstrap-container .btn-primary.active.focus,
3238
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary.focus {
3239
- color: #fff;
3240
- background-color: #204d74;
3241
- border-color: #122b40;
3242
- }
3243
- .monsterinsights-bootstrap-container .btn-primary.disabled:hover,
3244
- .monsterinsights-bootstrap-container .btn-primary[disabled]:hover,
3245
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:hover,
3246
- .monsterinsights-bootstrap-container .btn-primary.disabled:focus,
3247
- .monsterinsights-bootstrap-container .btn-primary[disabled]:focus,
3248
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:focus,
3249
- .monsterinsights-bootstrap-container .btn-primary.disabled.focus,
3250
- .monsterinsights-bootstrap-container .btn-primary[disabled].focus,
3251
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.focus {
3252
- background-color: #337ab7;
3253
- border-color: #2e6da4;
3254
- }
3255
- .monsterinsights-bootstrap-container .btn-primary .badge {
3256
- color: #337ab7;
3257
- background-color: #fff;
3258
- }
3259
- .monsterinsights-bootstrap-container .btn-success {
3260
- color: #fff;
3261
- background-color: #5cb85c;
3262
- border-color: #4cae4c;
3263
- }
3264
- .monsterinsights-bootstrap-container .btn-success:focus,
3265
- .monsterinsights-bootstrap-container .btn-success.focus {
3266
- color: #fff;
3267
- background-color: #449d44;
3268
- border-color: #255625;
3269
- }
3270
- .monsterinsights-bootstrap-container .btn-success:hover {
3271
- color: #fff;
3272
- background-color: #449d44;
3273
- border-color: #398439;
3274
- }
3275
- .monsterinsights-bootstrap-container .btn-success:active,
3276
- .monsterinsights-bootstrap-container .btn-success.active,
3277
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success {
3278
- color: #fff;
3279
- background-color: #449d44;
3280
- background-image: none;
3281
- border-color: #398439;
3282
- }
3283
- .monsterinsights-bootstrap-container .btn-success:active:hover,
3284
- .monsterinsights-bootstrap-container .btn-success.active:hover,
3285
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success:hover,
3286
- .monsterinsights-bootstrap-container .btn-success:active:focus,
3287
- .monsterinsights-bootstrap-container .btn-success.active:focus,
3288
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success:focus,
3289
- .monsterinsights-bootstrap-container .btn-success:active.focus,
3290
- .monsterinsights-bootstrap-container .btn-success.active.focus,
3291
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success.focus {
3292
- color: #fff;
3293
- background-color: #398439;
3294
- border-color: #255625;
3295
- }
3296
- .monsterinsights-bootstrap-container .btn-success.disabled:hover,
3297
- .monsterinsights-bootstrap-container .btn-success[disabled]:hover,
3298
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success:hover,
3299
- .monsterinsights-bootstrap-container .btn-success.disabled:focus,
3300
- .monsterinsights-bootstrap-container .btn-success[disabled]:focus,
3301
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success:focus,
3302
- .monsterinsights-bootstrap-container .btn-success.disabled.focus,
3303
- .monsterinsights-bootstrap-container .btn-success[disabled].focus,
3304
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success.focus {
3305
- background-color: #5cb85c;
3306
- border-color: #4cae4c;
3307
- }
3308
- .monsterinsights-bootstrap-container .btn-success .badge {
3309
- color: #5cb85c;
3310
- background-color: #fff;
3311
- }
3312
- .monsterinsights-bootstrap-container .btn-info {
3313
- color: #fff;
3314
- background-color: #5bc0de;
3315
- border-color: #46b8da;
3316
- }
3317
- .monsterinsights-bootstrap-container .btn-info:focus,
3318
- .monsterinsights-bootstrap-container .btn-info.focus {
3319
- color: #fff;
3320
- background-color: #31b0d5;
3321
- border-color: #1b6d85;
3322
- }
3323
- .monsterinsights-bootstrap-container .btn-info:hover {
3324
- color: #fff;
3325
- background-color: #31b0d5;
3326
- border-color: #269abc;
3327
- }
3328
- .monsterinsights-bootstrap-container .btn-info:active,
3329
- .monsterinsights-bootstrap-container .btn-info.active,
3330
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info {
3331
- color: #fff;
3332
- background-color: #31b0d5;
3333
- background-image: none;
3334
- border-color: #269abc;
3335
- }
3336
- .monsterinsights-bootstrap-container .btn-info:active:hover,
3337
- .monsterinsights-bootstrap-container .btn-info.active:hover,
3338
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info:hover,
3339
- .monsterinsights-bootstrap-container .btn-info:active:focus,
3340
- .monsterinsights-bootstrap-container .btn-info.active:focus,
3341
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info:focus,
3342
- .monsterinsights-bootstrap-container .btn-info:active.focus,
3343
- .monsterinsights-bootstrap-container .btn-info.active.focus,
3344
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info.focus {
3345
- color: #fff;
3346
- background-color: #269abc;
3347
- border-color: #1b6d85;
3348
- }
3349
- .monsterinsights-bootstrap-container .btn-info.disabled:hover,
3350
- .monsterinsights-bootstrap-container .btn-info[disabled]:hover,
3351
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info:hover,
3352
- .monsterinsights-bootstrap-container .btn-info.disabled:focus,
3353
- .monsterinsights-bootstrap-container .btn-info[disabled]:focus,
3354
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info:focus,
3355
- .monsterinsights-bootstrap-container .btn-info.disabled.focus,
3356
- .monsterinsights-bootstrap-container .btn-info[disabled].focus,
3357
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info.focus {
3358
- background-color: #5bc0de;
3359
- border-color: #46b8da;
3360
- }
3361
- .monsterinsights-bootstrap-container .btn-info .badge {
3362
- color: #5bc0de;
3363
- background-color: #fff;
3364
- }
3365
- .monsterinsights-bootstrap-container .btn-warning {
3366
- color: #fff;
3367
- background-color: #f0ad4e;
3368
- border-color: #eea236;
3369
- }
3370
- .monsterinsights-bootstrap-container .btn-warning:focus,
3371
- .monsterinsights-bootstrap-container .btn-warning.focus {
3372
- color: #fff;
3373
- background-color: #ec971f;
3374
- border-color: #985f0d;
3375
- }
3376
- .monsterinsights-bootstrap-container .btn-warning:hover {
3377
- color: #fff;
3378
- background-color: #ec971f;
3379
- border-color: #d58512;
3380
- }
3381
- .monsterinsights-bootstrap-container .btn-warning:active,
3382
- .monsterinsights-bootstrap-container .btn-warning.active,
3383
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning {
3384
- color: #fff;
3385
- background-color: #ec971f;
3386
- background-image: none;
3387
- border-color: #d58512;
3388
- }
3389
- .monsterinsights-bootstrap-container .btn-warning:active:hover,
3390
- .monsterinsights-bootstrap-container .btn-warning.active:hover,
3391
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning:hover,
3392
- .monsterinsights-bootstrap-container .btn-warning:active:focus,
3393
- .monsterinsights-bootstrap-container .btn-warning.active:focus,
3394
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning:focus,
3395
- .monsterinsights-bootstrap-container .btn-warning:active.focus,
3396
- .monsterinsights-bootstrap-container .btn-warning.active.focus,
3397
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning.focus {
3398
- color: #fff;
3399
- background-color: #d58512;
3400
- border-color: #985f0d;
3401
- }
3402
- .monsterinsights-bootstrap-container .btn-warning.disabled:hover,
3403
- .monsterinsights-bootstrap-container .btn-warning[disabled]:hover,
3404
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:hover,
3405
- .monsterinsights-bootstrap-container .btn-warning.disabled:focus,
3406
- .monsterinsights-bootstrap-container .btn-warning[disabled]:focus,
3407
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:focus,
3408
- .monsterinsights-bootstrap-container .btn-warning.disabled.focus,
3409
- .monsterinsights-bootstrap-container .btn-warning[disabled].focus,
3410
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.focus {
3411
- background-color: #f0ad4e;
3412
- border-color: #eea236;
3413
- }
3414
- .monsterinsights-bootstrap-container .btn-warning .badge {
3415
- color: #f0ad4e;
3416
- background-color: #fff;
3417
- }
3418
- .monsterinsights-bootstrap-container .btn-danger {
3419
- color: #fff;
3420
- background-color: #d9534f;
3421
- border-color: #d43f3a;
3422
- }
3423
- .monsterinsights-bootstrap-container .btn-danger:focus,
3424
- .monsterinsights-bootstrap-container .btn-danger.focus {
3425
- color: #fff;
3426
- background-color: #c9302c;
3427
- border-color: #761c19;
3428
- }
3429
- .monsterinsights-bootstrap-container .btn-danger:hover {
3430
- color: #fff;
3431
- background-color: #c9302c;
3432
- border-color: #ac2925;
3433
- }
3434
- .monsterinsights-bootstrap-container .btn-danger:active,
3435
- .monsterinsights-bootstrap-container .btn-danger.active,
3436
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger {
3437
- color: #fff;
3438
- background-color: #c9302c;
3439
- background-image: none;
3440
- border-color: #ac2925;
3441
- }
3442
- .monsterinsights-bootstrap-container .btn-danger:active:hover,
3443
- .monsterinsights-bootstrap-container .btn-danger.active:hover,
3444
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger:hover,
3445
- .monsterinsights-bootstrap-container .btn-danger:active:focus,
3446
- .monsterinsights-bootstrap-container .btn-danger.active:focus,
3447
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger:focus,
3448
- .monsterinsights-bootstrap-container .btn-danger:active.focus,
3449
- .monsterinsights-bootstrap-container .btn-danger.active.focus,
3450
- .monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger.focus {
3451
- color: #fff;
3452
- background-color: #ac2925;
3453
- border-color: #761c19;
3454
- }
3455
- .monsterinsights-bootstrap-container .btn-danger.disabled:hover,
3456
- .monsterinsights-bootstrap-container .btn-danger[disabled]:hover,
3457
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:hover,
3458
- .monsterinsights-bootstrap-container .btn-danger.disabled:focus,
3459
- .monsterinsights-bootstrap-container .btn-danger[disabled]:focus,
3460
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:focus,
3461
- .monsterinsights-bootstrap-container .btn-danger.disabled.focus,
3462
- .monsterinsights-bootstrap-container .btn-danger[disabled].focus,
3463
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.focus {
3464
- background-color: #d9534f;
3465
- border-color: #d43f3a;
3466
- }
3467
- .monsterinsights-bootstrap-container .btn-danger .badge {
3468
- color: #d9534f;
3469
- background-color: #fff;
3470
- }
3471
- .monsterinsights-bootstrap-container .btn-link {
3472
- font-weight: 400;
3473
- color: #337ab7;
3474
- border-radius: 0;
3475
- }
3476
- .monsterinsights-bootstrap-container .btn-link,
3477
- .monsterinsights-bootstrap-container .btn-link:active,
3478
- .monsterinsights-bootstrap-container .btn-link.active,
3479
- .monsterinsights-bootstrap-container .btn-link[disabled],
3480
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-link {
3481
- background-color: transparent;
3482
- -webkit-box-shadow: none;
3483
- box-shadow: none;
3484
- }
3485
- .monsterinsights-bootstrap-container .btn-link,
3486
- .monsterinsights-bootstrap-container .btn-link:hover,
3487
- .monsterinsights-bootstrap-container .btn-link:focus,
3488
- .monsterinsights-bootstrap-container .btn-link:active {
3489
- border-color: transparent;
3490
- }
3491
- .monsterinsights-bootstrap-container .btn-link:hover,
3492
- .monsterinsights-bootstrap-container .btn-link:focus {
3493
- color: #23527c;
3494
- text-decoration: underline;
3495
- background-color: transparent;
3496
- }
3497
- .monsterinsights-bootstrap-container .btn-link[disabled]:hover,
3498
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-link:hover,
3499
- .monsterinsights-bootstrap-container .btn-link[disabled]:focus,
3500
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-link:focus {
3501
- color: #777777;
3502
- text-decoration: none;
3503
- }
3504
- .monsterinsights-bootstrap-container .btn-lg,
3505
- .monsterinsights-bootstrap-container .btn-group-lg > .btn {
3506
- padding: 10px 16px;
3507
- font-size: 18px;
3508
- line-height: 1.3333333;
3509
- border-radius: 6px;
3510
- }
3511
- .monsterinsights-bootstrap-container .btn-sm,
3512
- .monsterinsights-bootstrap-container .btn-group-sm > .btn {
3513
- padding: 5px 10px;
3514
- font-size: 12px;
3515
- line-height: 1.5;
3516
- border-radius: 3px;
3517
- }
3518
- .monsterinsights-bootstrap-container .btn-xs,
3519
- .monsterinsights-bootstrap-container .btn-group-xs > .btn {
3520
- padding: 1px 5px;
3521
- font-size: 12px;
3522
- line-height: 1.5;
3523
- border-radius: 3px;
3524
- }
3525
- .monsterinsights-bootstrap-container .btn-block {
3526
- display: block;
3527
- width: 100%;
3528
- }
3529
- .monsterinsights-bootstrap-container .btn-block + .btn-block {
3530
- margin-top: 5px;
3531
- }
3532
- .monsterinsights-bootstrap-container input[type="submit"].btn-block,
3533
- .monsterinsights-bootstrap-container input[type="reset"].btn-block,
3534
- .monsterinsights-bootstrap-container input[type="button"].btn-block {
3535
- width: 100%;
3536
- }
3537
- .monsterinsights-bootstrap-container .fade {
3538
- opacity: 0;
3539
- -webkit-transition: opacity 0.15s linear;
3540
- -o-transition: opacity 0.15s linear;
3541
- transition: opacity 0.15s linear;
3542
- }
3543
- .monsterinsights-bootstrap-container .fade.in {
3544
- opacity: 1;
3545
- }
3546
- .monsterinsights-bootstrap-container .collapse {
3547
- display: none;
3548
- }
3549
- .monsterinsights-bootstrap-container .collapse.in {
3550
- display: block;
3551
- }
3552
- .monsterinsights-bootstrap-container tr.collapse.in {
3553
- display: table-row;
3554
- }
3555
- .monsterinsights-bootstrap-container tbody.collapse.in {
3556
- display: table-row-group;
3557
- }
3558
- .monsterinsights-bootstrap-container .collapsing {
3559
- position: relative;
3560
- height: 0;
3561
- overflow: hidden;
3562
- -webkit-transition-property: height, visibility;
3563
- -o-transition-property: height, visibility;
3564
- transition-property: height, visibility;
3565
- -webkit-transition-duration: 0.35s;
3566
- -o-transition-duration: 0.35s;
3567
- transition-duration: 0.35s;
3568
- -webkit-transition-timing-function: ease;
3569
- -o-transition-timing-function: ease;
3570
- transition-timing-function: ease;
3571
- }
3572
- .monsterinsights-bootstrap-container .caret {
3573
- display: inline-block;
3574
- width: 0;
3575
- height: 0;
3576
- margin-left: 2px;
3577
- vertical-align: middle;
3578
- border-top: 4px dashed;
3579
- border-top: 4px solid \9;
3580
- border-right: 4px solid transparent;
3581
- border-left: 4px solid transparent;
3582
- }
3583
- .monsterinsights-bootstrap-container .dropup,
3584
- .monsterinsights-bootstrap-container .dropdown {
3585
- position: relative;
3586
- }
3587
- .monsterinsights-bootstrap-container .dropdown-toggle:focus {
3588
- outline: 0;
3589
- }
3590
- .monsterinsights-bootstrap-container .dropdown-menu {
3591
- position: absolute;
3592
- top: 100%;
3593
- left: 0;
3594
- z-index: 1000;
3595
- display: none;
3596
- float: left;
3597
- min-width: 160px;
3598
- padding: 5px 0;
3599
- margin: 2px 0 0;
3600
- font-size: 14px;
3601
- text-align: left;
3602
- list-style: none;
3603
- background-color: #fff;
3604
- background-clip: padding-box;
3605
- border: 1px solid #ccc;
3606
- border: 1px solid rgba(0,0,0,0.15);
3607
- border-radius: 4px;
3608
- -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
3609
- box-shadow: 0 6px 12px rgba(0,0,0,0.175);
3610
- }
3611
- .monsterinsights-bootstrap-container .dropdown-menu.pull-right {
3612
- right: 0;
3613
- left: auto;
3614
- }
3615
- .monsterinsights-bootstrap-container .dropdown-menu .divider {
3616
- height: 1px;
3617
- margin: 9px 0;
3618
- overflow: hidden;
3619
- background-color: #e5e5e5;
3620
- }
3621
- .monsterinsights-bootstrap-container .dropdown-menu > li > a {
3622
- display: block;
3623
- padding: 3px 20px;
3624
- clear: both;
3625
- font-weight: 400;
3626
- line-height: 1.42857143;
3627
- color: #333333;
3628
- white-space: nowrap;
3629
- }
3630
- .monsterinsights-bootstrap-container .dropdown-menu > li > a:hover,
3631
- .monsterinsights-bootstrap-container .dropdown-menu > li > a:focus {
3632
- color: #262626;
3633
- text-decoration: none;
3634
- background-color: #f5f5f5;
3635
- }
3636
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a,
3637
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a:hover,
3638
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a:focus {
3639
- color: #fff;
3640
- text-decoration: none;
3641
- background-color: #337ab7;
3642
- outline: 0;
3643
- }
3644
- .monsterinsights-bootstrap-container .dropdown-menu > .disabled > a,
3645
- .monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:hover,
3646
- .monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:focus {
3647
- color: #777777;
3648
- }
3649
- .monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:hover,
3650
- .monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:focus {
3651
- text-decoration: none;
3652
- cursor: not-allowed;
3653
- background-color: transparent;
3654
- background-image: none;
3655
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
3656
- }
3657
- .monsterinsights-bootstrap-container .open > .dropdown-menu {
3658
- display: block;
3659
- }
3660
- .monsterinsights-bootstrap-container .open > a {
3661
- outline: 0;
3662
- }
3663
- .monsterinsights-bootstrap-container .dropdown-menu-right {
3664
- right: 0;
3665
- left: auto;
3666
- }
3667
- .monsterinsights-bootstrap-container .dropdown-menu-left {
3668
- right: auto;
3669
- left: 0;
3670
- }
3671
- .monsterinsights-bootstrap-container .dropdown-header {
3672
- display: block;
3673
- padding: 3px 20px;
3674
- font-size: 12px;
3675
- line-height: 1.42857143;
3676
- color: #777777;
3677
- white-space: nowrap;
3678
- }
3679
- .monsterinsights-bootstrap-container .dropdown-backdrop {
3680
- position: fixed;
3681
- top: 0;
3682
- right: 0;
3683
- bottom: 0;
3684
- left: 0;
3685
- z-index: 990;
3686
- }
3687
- .monsterinsights-bootstrap-container .pull-right > .dropdown-menu {
3688
- right: 0;
3689
- left: auto;
3690
- }
3691
- .monsterinsights-bootstrap-container .dropup .caret,
3692
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .dropdown .caret {
3693
- content: "";
3694
- border-top: 0;
3695
- border-bottom: 4px dashed;
3696
- border-bottom: 4px solid \9;
3697
- }
3698
- .monsterinsights-bootstrap-container .dropup .dropdown-menu,
3699
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .dropdown .dropdown-menu {
3700
- top: auto;
3701
- bottom: 100%;
3702
- margin-bottom: 2px;
3703
- }
3704
- @media (min-width: 768px) {
3705
- .monsterinsights-bootstrap-container .navbar-right .dropdown-menu {
3706
- right: 0;
3707
- left: auto;
3708
- }
3709
- .monsterinsights-bootstrap-container .navbar-right .dropdown-menu-left {
3710
- right: auto;
3711
- left: 0;
3712
- }
3713
- }
3714
- .monsterinsights-bootstrap-container .btn-group,
3715
- .monsterinsights-bootstrap-container .btn-group-vertical {
3716
- position: relative;
3717
- display: inline-block;
3718
- vertical-align: middle;
3719
- }
3720
- .monsterinsights-bootstrap-container .btn-group > .btn,
3721
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn {
3722
- position: relative;
3723
- float: left;
3724
- }
3725
- .monsterinsights-bootstrap-container .btn-group > .btn:hover,
3726
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:hover,
3727
- .monsterinsights-bootstrap-container .btn-group > .btn:focus,
3728
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:focus,
3729
- .monsterinsights-bootstrap-container .btn-group > .btn:active,
3730
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:active,
3731
- .monsterinsights-bootstrap-container .btn-group > .btn.active,
3732
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn.active {
3733
- z-index: 2;
3734
- }
3735
- .monsterinsights-bootstrap-container .btn-group .btn + .btn,
3736
- .monsterinsights-bootstrap-container .btn-group .btn + .btn-group,
3737
- .monsterinsights-bootstrap-container .btn-group .btn-group + .btn,
3738
- .monsterinsights-bootstrap-container .btn-group .btn-group + .btn-group {
3739
- margin-left: -1px;
3740
- }
3741
- .monsterinsights-bootstrap-container .btn-toolbar {
3742
- margin-left: -5px;
3743
- }
3744
- .monsterinsights-bootstrap-container .btn-toolbar .btn,
3745
- .monsterinsights-bootstrap-container .btn-toolbar .btn-group,
3746
- .monsterinsights-bootstrap-container .btn-toolbar .input-group {
3747
- float: left;
3748
- }
3749
- .monsterinsights-bootstrap-container .btn-toolbar > .btn,
3750
- .monsterinsights-bootstrap-container .btn-toolbar > .btn-group,
3751
- .monsterinsights-bootstrap-container .btn-toolbar > .input-group {
3752
- margin-left: 5px;
3753
- }
3754
- .monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3755
- border-radius: 0;
3756
- }
3757
- .monsterinsights-bootstrap-container .btn-group > .btn:first-child {
3758
- margin-left: 0;
3759
- }
3760
- .monsterinsights-bootstrap-container .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3761
- border-top-right-radius: 0;
3762
- border-bottom-right-radius: 0;
3763
- }
3764
- .monsterinsights-bootstrap-container .btn-group > .btn:last-child:not(:first-child),
3765
- .monsterinsights-bootstrap-container .btn-group > .dropdown-toggle:not(:first-child) {
3766
- border-top-left-radius: 0;
3767
- border-bottom-left-radius: 0;
3768
- }
3769
- .monsterinsights-bootstrap-container .btn-group > .btn-group {
3770
- float: left;
3771
- }
3772
- .monsterinsights-bootstrap-container .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3773
- border-radius: 0;
3774
- }
3775
- .monsterinsights-bootstrap-container .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3776
- .monsterinsights-bootstrap-container .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3777
- border-top-right-radius: 0;
3778
- border-bottom-right-radius: 0;
3779
- }
3780
- .monsterinsights-bootstrap-container .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3781
- border-top-left-radius: 0;
3782
- border-bottom-left-radius: 0;
3783
- }
3784
- .monsterinsights-bootstrap-container .btn-group .dropdown-toggle:active,
3785
- .monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle {
3786
- outline: 0;
3787
- }
3788
- .monsterinsights-bootstrap-container .btn-group > .btn + .dropdown-toggle {
3789
- padding-right: 8px;
3790
- padding-left: 8px;
3791
- }
3792
- .monsterinsights-bootstrap-container .btn-group > .btn-lg + .dropdown-toggle {
3793
- padding-right: 12px;
3794
- padding-left: 12px;
3795
- }
3796
- .monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle {
3797
- -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
3798
- box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
3799
- }
3800
- .monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle.btn-link {
3801
- -webkit-box-shadow: none;
3802
- box-shadow: none;
3803
- }
3804
- .monsterinsights-bootstrap-container .btn .caret {
3805
- margin-left: 0;
3806
- }
3807
- .monsterinsights-bootstrap-container .btn-lg .caret {
3808
- border-width: 5px 5px 0;
3809
- border-bottom-width: 0;
3810
- }
3811
- .monsterinsights-bootstrap-container .dropup .btn-lg .caret {
3812
- border-width: 0 5px 5px;
3813
- }
3814
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn,
3815
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group,
3816
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group > .btn {
3817
- display: block;
3818
- float: none;
3819
- width: 100%;
3820
- max-width: 100%;
3821
- }
3822
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group > .btn {
3823
- float: none;
3824
- }
3825
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn + .btn,
3826
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn + .btn-group,
3827
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group + .btn,
3828
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group + .btn-group {
3829
- margin-top: -1px;
3830
- margin-left: 0;
3831
- }
3832
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3833
- border-radius: 0;
3834
- }
3835
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:first-child:not(:last-child) {
3836
- border-top-left-radius: 4px;
3837
- border-top-right-radius: 4px;
3838
- border-bottom-right-radius: 0;
3839
- border-bottom-left-radius: 0;
3840
- }
3841
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn:last-child:not(:first-child) {
3842
- border-top-left-radius: 0;
3843
- border-top-right-radius: 0;
3844
- border-bottom-right-radius: 4px;
3845
- border-bottom-left-radius: 4px;
3846
- }
3847
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3848
- border-radius: 0;
3849
- }
3850
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3851
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3852
- border-bottom-right-radius: 0;
3853
- border-bottom-left-radius: 0;
3854
- }
3855
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3856
- border-top-left-radius: 0;
3857
- border-top-right-radius: 0;
3858
- }
3859
- .monsterinsights-bootstrap-container .btn-group-justified {
3860
- display: table;
3861
- width: 100%;
3862
- table-layout: fixed;
3863
- border-collapse: separate;
3864
- }
3865
- .monsterinsights-bootstrap-container .btn-group-justified > .btn,
3866
- .monsterinsights-bootstrap-container .btn-group-justified > .btn-group {
3867
- display: table-cell;
3868
- float: none;
3869
- width: 1%;
3870
- }
3871
- .monsterinsights-bootstrap-container .btn-group-justified > .btn-group .btn {
3872
- width: 100%;
3873
- }
3874
- .monsterinsights-bootstrap-container .btn-group-justified > .btn-group .dropdown-menu {
3875
- left: auto;
3876
- }
3877
- .monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn input[type="radio"],
3878
- .monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3879
- .monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn input[type="checkbox"],
3880
- .monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3881
- position: absolute;
3882
- clip: rect(0,0,0,0);
3883
- pointer-events: none;
3884
- }
3885
- .monsterinsights-bootstrap-container .input-group {
3886
- position: relative;
3887
- display: table;
3888
- border-collapse: separate;
3889
- }
3890
- .monsterinsights-bootstrap-container .input-group[class*="col-"] {
3891
- float: none;
3892
- padding-right: 0;
3893
- padding-left: 0;
3894
- }
3895
- .monsterinsights-bootstrap-container .input-group .form-control {
3896
- position: relative;
3897
- z-index: 2;
3898
- float: left;
3899
- width: 100%;
3900
- margin-bottom: 0;
3901
- }
3902
- .monsterinsights-bootstrap-container .input-group .form-control:focus {
3903
- z-index: 3;
3904
- }
3905
- .monsterinsights-bootstrap-container .input-group-lg > .form-control,
3906
- .monsterinsights-bootstrap-container .input-group-lg > .input-group-addon,
3907
- .monsterinsights-bootstrap-container .input-group-lg > .input-group-btn > .btn {
3908
- height: 46px;
3909
- padding: 10px 16px;
3910
- font-size: 18px;
3911
- line-height: 1.3333333;
3912
- border-radius: 6px;
3913
- }
3914
- .monsterinsights-bootstrap-container select.input-group-lg > .form-control,
3915
- .monsterinsights-bootstrap-container select.input-group-lg > .input-group-addon,
3916
- .monsterinsights-bootstrap-container select.input-group-lg > .input-group-btn > .btn {
3917
- height: 46px;
3918
- line-height: 46px;
3919
- }
3920
- .monsterinsights-bootstrap-container textarea.input-group-lg > .form-control,
3921
- .monsterinsights-bootstrap-container textarea.input-group-lg > .input-group-addon,
3922
- .monsterinsights-bootstrap-container textarea.input-group-lg > .input-group-btn > .btn,
3923
- .monsterinsights-bootstrap-container select[multiple].input-group-lg > .form-control,
3924
- .monsterinsights-bootstrap-container select[multiple].input-group-lg > .input-group-addon,
3925
- .monsterinsights-bootstrap-container select[multiple].input-group-lg > .input-group-btn > .btn {
3926
- height: auto;
3927
- }
3928
- .monsterinsights-bootstrap-container .input-group-sm > .form-control,
3929
- .monsterinsights-bootstrap-container .input-group-sm > .input-group-addon,
3930
- .monsterinsights-bootstrap-container .input-group-sm > .input-group-btn > .btn {
3931
- height: 30px;
3932
- padding: 5px 10px;
3933
- font-size: 12px;
3934
- line-height: 1.5;
3935
- border-radius: 3px;
3936
- }
3937
- .monsterinsights-bootstrap-container select.input-group-sm > .form-control,
3938
- .monsterinsights-bootstrap-container select.input-group-sm > .input-group-addon,
3939
- .monsterinsights-bootstrap-container select.input-group-sm > .input-group-btn > .btn {
3940
- height: 30px;
3941
- line-height: 30px;
3942
- }
3943
- .monsterinsights-bootstrap-container textarea.input-group-sm > .form-control,
3944
- .monsterinsights-bootstrap-container textarea.input-group-sm > .input-group-addon,
3945
- .monsterinsights-bootstrap-container textarea.input-group-sm > .input-group-btn > .btn,
3946
- .monsterinsights-bootstrap-container select[multiple].input-group-sm > .form-control,
3947
- .monsterinsights-bootstrap-container select[multiple].input-group-sm > .input-group-addon,
3948
- .monsterinsights-bootstrap-container select[multiple].input-group-sm > .input-group-btn > .btn {
3949
- height: auto;
3950
- }
3951
- .monsterinsights-bootstrap-container .input-group-addon,
3952
- .monsterinsights-bootstrap-container .input-group-btn,
3953
- .monsterinsights-bootstrap-container .input-group .form-control {
3954
- display: table-cell;
3955
- }
3956
- .monsterinsights-bootstrap-container .input-group-addon:not(:first-child):not(:last-child),
3957
- .monsterinsights-bootstrap-container .input-group-btn:not(:first-child):not(:last-child),
3958
- .monsterinsights-bootstrap-container .input-group .form-control:not(:first-child):not(:last-child) {
3959
- border-radius: 0;
3960
- }
3961
- .monsterinsights-bootstrap-container .input-group-addon,
3962
- .monsterinsights-bootstrap-container .input-group-btn {
3963
- width: 1%;
3964
- white-space: nowrap;
3965
- vertical-align: middle;
3966
- }
3967
- .monsterinsights-bootstrap-container .input-group-addon {
3968
- padding: 6px 12px;
3969
- font-size: 14px;
3970
- font-weight: 400;
3971
- line-height: 1;
3972
- color: #555555;
3973
- text-align: center;
3974
- background-color: #eeeeee;
3975
- border: 1px solid #ccc;
3976
- border-radius: 4px;
3977
- }
3978
- .monsterinsights-bootstrap-container .input-group-addon.input-sm {
3979
- padding: 5px 10px;
3980
- font-size: 12px;
3981
- border-radius: 3px;
3982
- }
3983
- .monsterinsights-bootstrap-container .input-group-addon.input-lg {
3984
- padding: 10px 16px;
3985
- font-size: 18px;
3986
- border-radius: 6px;
3987
- }
3988
- .monsterinsights-bootstrap-container .input-group-addon input[type="radio"],
3989
- .monsterinsights-bootstrap-container .input-group-addon input[type="checkbox"] {
3990
- margin-top: 0;
3991
- }
3992
- .monsterinsights-bootstrap-container .input-group .form-control:first-child,
3993
- .monsterinsights-bootstrap-container .input-group-addon:first-child,
3994
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn,
3995
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group > .btn,
3996
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .dropdown-toggle,
3997
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3998
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3999
- border-top-right-radius: 0;
4000
- border-bottom-right-radius: 0;
4001
- }
4002
- .monsterinsights-bootstrap-container .input-group-addon:first-child {
4003
- border-right: 0;
4004
- }
4005
- .monsterinsights-bootstrap-container .input-group .form-control:last-child,
4006
- .monsterinsights-bootstrap-container .input-group-addon:last-child,
4007
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn,
4008
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group > .btn,
4009
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .dropdown-toggle,
4010
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn:not(:first-child),
4011
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
4012
- border-top-left-radius: 0;
4013
- border-bottom-left-radius: 0;
4014
- }
4015
- .monsterinsights-bootstrap-container .input-group-addon:last-child {
4016
- border-left: 0;
4017
- }
4018
- .monsterinsights-bootstrap-container .input-group-btn {
4019
- position: relative;
4020
- font-size: 0;
4021
- white-space: nowrap;
4022
- }
4023
- .monsterinsights-bootstrap-container .input-group-btn > .btn {
4024
- position: relative;
4025
- }
4026
- .monsterinsights-bootstrap-container .input-group-btn > .btn + .btn {
4027
- margin-left: -1px;
4028
- }
4029
- .monsterinsights-bootstrap-container .input-group-btn > .btn:hover,
4030
- .monsterinsights-bootstrap-container .input-group-btn > .btn:focus,
4031
- .monsterinsights-bootstrap-container .input-group-btn > .btn:active {
4032
- z-index: 2;
4033
- }
4034
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn,
4035
- .monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group {
4036
- margin-right: -1px;
4037
- }
4038
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn,
4039
- .monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group {
4040
- z-index: 2;
4041
- margin-left: -1px;
4042
- }
4043
- .monsterinsights-bootstrap-container .nav {
4044
- padding-left: 0;
4045
- margin-bottom: 0;
4046
- list-style: none;
4047
- }
4048
- .monsterinsights-bootstrap-container .nav > li {
4049
- position: relative;
4050
- display: block;
4051
- }
4052
- .monsterinsights-bootstrap-container .nav > li > a {
4053
- position: relative;
4054
- display: block;
4055
- padding: 10px 15px;
4056
- }
4057
- .monsterinsights-bootstrap-container .nav > li > a:hover,
4058
- .monsterinsights-bootstrap-container .nav > li > a:focus {
4059
- text-decoration: none;
4060
- background-color: #eeeeee;
4061
- }
4062
- .monsterinsights-bootstrap-container .nav > li.disabled > a {
4063
- color: #777777;
4064
- }
4065
- .monsterinsights-bootstrap-container .nav > li.disabled > a:hover,
4066
- .monsterinsights-bootstrap-container .nav > li.disabled > a:focus {
4067
- color: #777777;
4068
- text-decoration: none;
4069
- cursor: not-allowed;
4070
- background-color: transparent;
4071
- }
4072
- .monsterinsights-bootstrap-container .nav .open > a,
4073
- .monsterinsights-bootstrap-container .nav .open > a:hover,
4074
- .monsterinsights-bootstrap-container .nav .open > a:focus {
4075
- background-color: #eeeeee;
4076
- border-color: #337ab7;
4077
- }
4078
- .monsterinsights-bootstrap-container .nav .nav-divider {
4079
- height: 1px;
4080
- margin: 9px 0;
4081
- overflow: hidden;
4082
- background-color: #e5e5e5;
4083
- }
4084
- .monsterinsights-bootstrap-container .nav > li > a > img {
4085
- max-width: none;
4086
- }
4087
- .monsterinsights-bootstrap-container .nav-tabs {
4088
- border-bottom: 1px solid #ddd;
4089
- }
4090
- .monsterinsights-bootstrap-container .nav-tabs > li {
4091
- float: left;
4092
- margin-bottom: -1px;
4093
- }
4094
- .monsterinsights-bootstrap-container .nav-tabs > li > a {
4095
- margin-right: 2px;
4096
- line-height: 1.42857143;
4097
- border: 1px solid transparent;
4098
- border-radius: 4px 4px 0 0;
4099
- }
4100
- .monsterinsights-bootstrap-container .nav-tabs > li > a:hover {
4101
- border-color: #eeeeee #eeeeee #ddd;
4102
- }
4103
- .monsterinsights-bootstrap-container .nav-tabs > li.active > a,
4104
- .monsterinsights-bootstrap-container .nav-tabs > li.active > a:hover,
4105
- .monsterinsights-bootstrap-container .nav-tabs > li.active > a:focus {
4106
- color: #555555;
4107
- cursor: default;
4108
- background-color: #fff;
4109
- border: 1px solid #ddd;
4110
- border-bottom-color: transparent;
4111
- }
4112
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified {
4113
- width: 100%;
4114
- border-bottom: 0;
4115
- }
4116
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li {
4117
- float: none;
4118
- }
4119
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a {
4120
- margin-bottom: 5px;
4121
- text-align: center;
4122
- }
4123
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .dropdown .dropdown-menu {
4124
- top: auto;
4125
- left: auto;
4126
- }
4127
- @media (min-width: 768px) {
4128
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li {
4129
- display: table-cell;
4130
- width: 1%;
4131
- }
4132
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a {
4133
- margin-bottom: 0;
4134
- }
4135
- }
4136
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a {
4137
- margin-right: 0;
4138
- border-radius: 4px;
4139
- }
4140
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,
4141
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,
4142
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus {
4143
- border: 1px solid #ddd;
4144
- }
4145
- @media (min-width: 768px) {
4146
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a {
4147
- border-bottom: 1px solid #ddd;
4148
- border-radius: 4px 4px 0 0;
4149
- }
4150
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,
4151
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,
4152
- .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus {
4153
- border-bottom-color: #fff;
4154
- }
4155
- }
4156
- .monsterinsights-bootstrap-container .nav-pills > li {
4157
- float: left;
4158
- }
4159
- .monsterinsights-bootstrap-container .nav-pills > li > a {
4160
- border-radius: 4px;
4161
- }
4162
- .monsterinsights-bootstrap-container .nav-pills > li + li {
4163
- margin-left: 2px;
4164
- }
4165
- .monsterinsights-bootstrap-container .nav-pills > li.active > a,
4166
- .monsterinsights-bootstrap-container .nav-pills > li.active > a:hover,
4167
- .monsterinsights-bootstrap-container .nav-pills > li.active > a:focus {
4168
- color: #fff;
4169
- background-color: #337ab7;
4170
- }
4171
- .monsterinsights-bootstrap-container .nav-stacked > li {
4172
- float: none;
4173
- }
4174
- .monsterinsights-bootstrap-container .nav-stacked > li + li {
4175
- margin-top: 2px;
4176
- margin-left: 0;
4177
- }
4178
- .monsterinsights-bootstrap-container .nav-justified {
4179
- width: 100%;
4180
- }
4181
- .monsterinsights-bootstrap-container .nav-justified > li {
4182
- float: none;
4183
- }
4184
- .monsterinsights-bootstrap-container .nav-justified > li > a {
4185
- margin-bottom: 5px;
4186
- text-align: center;
4187
- }
4188
- .monsterinsights-bootstrap-container .nav-justified > .dropdown .dropdown-menu {
4189
- top: auto;
4190
- left: auto;
4191
- }
4192
- @media (min-width: 768px) {
4193
- .monsterinsights-bootstrap-container .nav-justified > li {
4194
- display: table-cell;
4195
- width: 1%;
4196
- }
4197
- .monsterinsights-bootstrap-container .nav-justified > li > a {
4198
- margin-bottom: 0;
4199
- }
4200
- }
4201
- .monsterinsights-bootstrap-container .nav-tabs-justified {
4202
- border-bottom: 0;
4203
- }
4204
- .monsterinsights-bootstrap-container .nav-tabs-justified > li > a {
4205
- margin-right: 0;
4206
- border-radius: 4px;
4207
- }
4208
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a,
4209
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:hover,
4210
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:focus {
4211
- border: 1px solid #ddd;
4212
- }
4213
- @media (min-width: 768px) {
4214
- .monsterinsights-bootstrap-container .nav-tabs-justified > li > a {
4215
- border-bottom: 1px solid #ddd;
4216
- border-radius: 4px 4px 0 0;
4217
- }
4218
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a,
4219
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:hover,
4220
- .monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:focus {
4221
- border-bottom-color: #fff;
4222
- }
4223
- }
4224
- .monsterinsights-bootstrap-container .tab-content > .tab-pane {
4225
- display: none;
4226
- }
4227
- .monsterinsights-bootstrap-container .tab-content > .active {
4228
- display: block;
4229
- }
4230
- .monsterinsights-bootstrap-container .nav-tabs .dropdown-menu {
4231
- margin-top: -1px;
4232
- border-top-left-radius: 0;
4233
- border-top-right-radius: 0;
4234
- }
4235
- .monsterinsights-bootstrap-container .navbar {
4236
- position: relative;
4237
- min-height: 50px;
4238
- margin-bottom: 20px;
4239
- border: 1px solid transparent;
4240
- }
4241
- @media (min-width: 768px) {
4242
- .monsterinsights-bootstrap-container .navbar {
4243
- border-radius: 4px;
4244
- }
4245
- }
4246
- @media (min-width: 768px) {
4247
- .monsterinsights-bootstrap-container .navbar-header {
4248
- float: left;
4249
- }
4250
- }
4251
- .monsterinsights-bootstrap-container .navbar-collapse {
4252
- padding-right: 15px;
4253
- padding-left: 15px;
4254
- overflow-x: visible;
4255
- border-top: 1px solid transparent;
4256
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
4257
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
4258
- -webkit-overflow-scrolling: touch;
4259
- }
4260
- .monsterinsights-bootstrap-container .navbar-collapse.in {
4261
- overflow-y: auto;
4262
- }
4263
- @media (min-width: 768px) {
4264
- .monsterinsights-bootstrap-container .navbar-collapse {
4265
- width: auto;
4266
- border-top: 0;
4267
- -webkit-box-shadow: none;
4268
- box-shadow: none;
4269
- }
4270
- .monsterinsights-bootstrap-container .navbar-collapse.collapse {
4271
- display: block !important;
4272
- height: auto !important;
4273
- padding-bottom: 0;
4274
- overflow: visible !important;
4275
- }
4276
- .monsterinsights-bootstrap-container .navbar-collapse.in {
4277
- overflow-y: visible;
4278
- }
4279
- .monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,
4280
- .monsterinsights-bootstrap-container .navbar-static-top .navbar-collapse,
4281
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse {
4282
- padding-right: 0;
4283
- padding-left: 0;
4284
- }
4285
- }
4286
- .monsterinsights-bootstrap-container .navbar-fixed-top,
4287
- .monsterinsights-bootstrap-container .navbar-fixed-bottom {
4288
- position: fixed;
4289
- right: 0;
4290
- left: 0;
4291
- z-index: 1030;
4292
- }
4293
- .monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,
4294
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse {
4295
- max-height: 340px;
4296
- }
4297
- @media (max-device-width: 480px) and (orientation: landscape) {
4298
- .monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,
4299
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse {
4300
- max-height: 200px;
4301
- }
4302
- }
4303
- @media (min-width: 768px) {
4304
- .monsterinsights-bootstrap-container .navbar-fixed-top,
4305
- .monsterinsights-bootstrap-container .navbar-fixed-bottom {
4306
- border-radius: 0;
4307
- }
4308
- }
4309
- .monsterinsights-bootstrap-container .navbar-fixed-top {
4310
- top: 0;
4311
- border-width: 0 0 1px;
4312
- }
4313
- .monsterinsights-bootstrap-container .navbar-fixed-bottom {
4314
- bottom: 0;
4315
- margin-bottom: 0;
4316
- border-width: 1px 0 0;
4317
- }
4318
- .monsterinsights-bootstrap-container .container > .navbar-header,
4319
- .monsterinsights-bootstrap-container .container-fluid > .navbar-header,
4320
- .monsterinsights-bootstrap-container .container > .navbar-collapse,
4321
- .monsterinsights-bootstrap-container .container-fluid > .navbar-collapse {
4322
- margin-right: -15px;
4323
- margin-left: -15px;
4324
- }
4325
- @media (min-width: 768px) {
4326
- .monsterinsights-bootstrap-container .container > .navbar-header,
4327
- .monsterinsights-bootstrap-container .container-fluid > .navbar-header,
4328
- .monsterinsights-bootstrap-container .container > .navbar-collapse,
4329
- .monsterinsights-bootstrap-container .container-fluid > .navbar-collapse {
4330
- margin-right: 0;
4331
- margin-left: 0;
4332
- }
4333
- }
4334
- .monsterinsights-bootstrap-container .navbar-static-top {
4335
- z-index: 1000;
4336
- border-width: 0 0 1px;
4337
- }
4338
- @media (min-width: 768px) {
4339
- .monsterinsights-bootstrap-container .navbar-static-top {
4340
- border-radius: 0;
4341
- }
4342
- }
4343
- .monsterinsights-bootstrap-container .navbar-brand {
4344
- float: left;
4345
- height: 50px;
4346
- padding: 15px 15px;
4347
- font-size: 18px;
4348
- line-height: 20px;
4349
- }
4350
- .monsterinsights-bootstrap-container .navbar-brand:hover,
4351
- .monsterinsights-bootstrap-container .navbar-brand:focus {
4352
- text-decoration: none;
4353
- }
4354
- .monsterinsights-bootstrap-container .navbar-brand > img {
4355
- display: block;
4356
- }
4357
- @media (min-width: 768px) {
4358
- .monsterinsights-bootstrap-container .navbar > .container .navbar-brand,
4359
- .monsterinsights-bootstrap-container .navbar > .container-fluid .navbar-brand {
4360
- margin-left: -15px;
4361
- }
4362
- }
4363
- .monsterinsights-bootstrap-container .navbar-toggle {
4364
- position: relative;
4365
- float: right;
4366
- padding: 9px 10px;
4367
- margin-right: 15px;
4368
- margin-top: 8px;
4369
- margin-bottom: 8px;
4370
- background-color: transparent;
4371
- background-image: none;
4372
- border: 1px solid transparent;
4373
- border-radius: 4px;
4374
- }
4375
- .monsterinsights-bootstrap-container .navbar-toggle:focus {
4376
- outline: 0;
4377
- }
4378
- .monsterinsights-bootstrap-container .navbar-toggle .icon-bar {
4379
- display: block;
4380
- width: 22px;
4381
- height: 2px;
4382
- border-radius: 1px;
4383
- }
4384
- .monsterinsights-bootstrap-container .navbar-toggle .icon-bar + .icon-bar {
4385
- margin-top: 4px;
4386
- }
4387
- @media (min-width: 768px) {
4388
- .monsterinsights-bootstrap-container .navbar-toggle {
4389
- display: none;
4390
- }
4391
- }
4392
- .monsterinsights-bootstrap-container .navbar-nav {
4393
- margin: 7.5px -15px;
4394
- }
4395
- .monsterinsights-bootstrap-container .navbar-nav > li > a {
4396
- padding-top: 10px;
4397
- padding-bottom: 10px;
4398
- line-height: 20px;
4399
- }
4400
- @media (max-width: 767px) {
4401
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu {
4402
- position: static;
4403
- float: none;
4404
- width: auto;
4405
- margin-top: 0;
4406
- background-color: transparent;
4407
- border: 0;
4408
- -webkit-box-shadow: none;
4409
- box-shadow: none;
4410
- }
4411
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a,
4412
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu .dropdown-header {
4413
- padding: 5px 15px 5px 25px;
4414
- }
4415
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a {
4416
- line-height: 20px;
4417
- }
4418
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a:hover,
4419
- .monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a:focus {
4420
- background-image: none;
4421
- }
4422
- }
4423
- @media (min-width: 768px) {
4424
- .monsterinsights-bootstrap-container .navbar-nav {
4425
- float: left;
4426
- margin: 0;
4427
- }
4428
- .monsterinsights-bootstrap-container .navbar-nav > li {
4429
- float: left;
4430
- }
4431
- .monsterinsights-bootstrap-container .navbar-nav > li > a {
4432
- padding-top: 15px;
4433
- padding-bottom: 15px;
4434
- }
4435
- }
4436
- .monsterinsights-bootstrap-container .navbar-form {
4437
- padding: 10px 15px;
4438
- margin-right: -15px;
4439
- margin-left: -15px;
4440
- border-top: 1px solid transparent;
4441
- border-bottom: 1px solid transparent;
4442
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1);
4443
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1);
4444
- margin-top: 8px;
4445
- margin-bottom: 8px;
4446
- }
4447
- @media (min-width: 768px) {
4448
- .monsterinsights-bootstrap-container .navbar-form .form-group {
4449
- display: inline-block;
4450
- margin-bottom: 0;
4451
- vertical-align: middle;
4452
- }
4453
- .monsterinsights-bootstrap-container .navbar-form .form-control {
4454
- display: inline-block;
4455
- width: auto;
4456
- vertical-align: middle;
4457
- }
4458
- .monsterinsights-bootstrap-container .navbar-form .form-control-static {
4459
- display: inline-block;
4460
- }
4461
- .monsterinsights-bootstrap-container .navbar-form .input-group {
4462
- display: inline-table;
4463
- vertical-align: middle;
4464
- }
4465
- .monsterinsights-bootstrap-container .navbar-form .input-group .input-group-addon,
4466
- .monsterinsights-bootstrap-container .navbar-form .input-group .input-group-btn,
4467
- .monsterinsights-bootstrap-container .navbar-form .input-group .form-control {
4468
- width: auto;
4469
- }
4470
- .monsterinsights-bootstrap-container .navbar-form .input-group > .form-control {
4471
- width: 100%;
4472
- }
4473
- .monsterinsights-bootstrap-container .navbar-form .control-label {
4474
- margin-bottom: 0;
4475
- vertical-align: middle;
4476
- }
4477
- .monsterinsights-bootstrap-container .navbar-form .radio,
4478
- .monsterinsights-bootstrap-container .navbar-form .checkbox {
4479
- display: inline-block;
4480
- margin-top: 0;
4481
- margin-bottom: 0;
4482
- vertical-align: middle;
4483
- }
4484
- .monsterinsights-bootstrap-container .navbar-form .radio label,
4485
- .monsterinsights-bootstrap-container .navbar-form .checkbox label {
4486
- padding-left: 0;
4487
- }
4488
- .monsterinsights-bootstrap-container .navbar-form .radio input[type="radio"],
4489
- .monsterinsights-bootstrap-container .navbar-form .checkbox input[type="checkbox"] {
4490
- position: relative;
4491
- margin-left: 0;
4492
- }
4493
- .monsterinsights-bootstrap-container .navbar-form .has-feedback .form-control-feedback {
4494
- top: 0;
4495
- }
4496
- }
4497
- @media (max-width: 767px) {
4498
- .monsterinsights-bootstrap-container .navbar-form .form-group {
4499
- margin-bottom: 5px;
4500
- }
4501
- .monsterinsights-bootstrap-container .navbar-form .form-group:last-child {
4502
- margin-bottom: 0;
4503
- }
4504
- }
4505
- @media (min-width: 768px) {
4506
- .monsterinsights-bootstrap-container .navbar-form {
4507
- width: auto;
4508
- padding-top: 0;
4509
- padding-bottom: 0;
4510
- margin-right: 0;
4511
- margin-left: 0;
4512
- border: 0;
4513
- -webkit-box-shadow: none;
4514
- box-shadow: none;
4515
- }
4516
- }
4517
- .monsterinsights-bootstrap-container .navbar-nav > li > .dropdown-menu {
4518
- margin-top: 0;
4519
- border-top-left-radius: 0;
4520
- border-top-right-radius: 0;
4521
- }
4522
- .monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4523
- margin-bottom: 0;
4524
- border-top-left-radius: 4px;
4525
- border-top-right-radius: 4px;
4526
- border-bottom-right-radius: 0;
4527
- border-bottom-left-radius: 0;
4528
- }
4529
- .monsterinsights-bootstrap-container .navbar-btn {
4530
- margin-top: 8px;
4531
- margin-bottom: 8px;
4532
- }
4533
- .monsterinsights-bootstrap-container .navbar-btn.btn-sm {
4534
- margin-top: 10px;
4535
- margin-bottom: 10px;
4536
- }
4537
- .monsterinsights-bootstrap-container .navbar-btn.btn-xs {
4538
- margin-top: 14px;
4539
- margin-bottom: 14px;
4540
- }
4541
- .monsterinsights-bootstrap-container .navbar-text {
4542
- margin-top: 15px;
4543
- margin-bottom: 15px;
4544
- }
4545
- @media (min-width: 768px) {
4546
- .monsterinsights-bootstrap-container .navbar-text {
4547
- float: left;
4548
- margin-right: 15px;
4549
- margin-left: 15px;
4550
- }
4551
- }
4552
- @media (min-width: 768px) {
4553
- .monsterinsights-bootstrap-container .navbar-left {
4554
- float: left !important;
4555
- }
4556
- .monsterinsights-bootstrap-container .navbar-right {
4557
- float: right !important;
4558
- margin-right: -15px;
4559
- }
4560
- .monsterinsights-bootstrap-container .navbar-right ~ .navbar-right {
4561
- margin-right: 0;
4562
- }
4563
- }
4564
- .monsterinsights-bootstrap-container .navbar-default {
4565
- background-color: #f8f8f8;
4566
- border-color: #e7e7e7;
4567
- }
4568
- .monsterinsights-bootstrap-container .navbar-default .navbar-brand {
4569
- color: #777;
4570
- }
4571
- .monsterinsights-bootstrap-container .navbar-default .navbar-brand:hover,
4572
- .monsterinsights-bootstrap-container .navbar-default .navbar-brand:focus {
4573
- color: #5e5e5e;
4574
- background-color: transparent;
4575
- }
4576
- .monsterinsights-bootstrap-container .navbar-default .navbar-text {
4577
- color: #777;
4578
- }
4579
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a {
4580
- color: #777;
4581
- }
4582
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a:hover,
4583
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a:focus {
4584
- color: #333;
4585
- background-color: transparent;
4586
- }
4587
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a,
4588
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a:hover,
4589
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a:focus {
4590
- color: #555;
4591
- background-color: #e7e7e7;
4592
- }
4593
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a,
4594
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a:hover,
4595
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a:focus {
4596
- color: #ccc;
4597
- background-color: transparent;
4598
- }
4599
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a,
4600
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a:hover,
4601
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a:focus {
4602
- color: #555;
4603
- background-color: #e7e7e7;
4604
- }
4605
- @media (max-width: 767px) {
4606
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a {
4607
- color: #777;
4608
- }
4609
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
4610
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
4611
- color: #333;
4612
- background-color: transparent;
4613
- }
4614
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4615
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4616
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4617
- color: #555;
4618
- background-color: #e7e7e7;
4619
- }
4620
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4621
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4622
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4623
- color: #ccc;
4624
- background-color: transparent;
4625
- }
4626
- }
4627
- .monsterinsights-bootstrap-container .navbar-default .navbar-toggle {
4628
- border-color: #ddd;
4629
- }
4630
- .monsterinsights-bootstrap-container .navbar-default .navbar-toggle:hover,
4631
- .monsterinsights-bootstrap-container .navbar-default .navbar-toggle:focus {
4632
- background-color: #ddd;
4633
- }
4634
- .monsterinsights-bootstrap-container .navbar-default .navbar-toggle .icon-bar {
4635
- background-color: #888;
4636
- }
4637
- .monsterinsights-bootstrap-container .navbar-default .navbar-collapse,
4638
- .monsterinsights-bootstrap-container .navbar-default .navbar-form {
4639
- border-color: #e7e7e7;
4640
- }
4641
- .monsterinsights-bootstrap-container .navbar-default .navbar-link {
4642
- color: #777;
4643
- }
4644
- .monsterinsights-bootstrap-container .navbar-default .navbar-link:hover {
4645
- color: #333;
4646
- }
4647
- .monsterinsights-bootstrap-container .navbar-default .btn-link {
4648
- color: #777;
4649
- }
4650
- .monsterinsights-bootstrap-container .navbar-default .btn-link:hover,
4651
- .monsterinsights-bootstrap-container .navbar-default .btn-link:focus {
4652
- color: #333;
4653
- }
4654
- .monsterinsights-bootstrap-container .navbar-default .btn-link[disabled]:hover,
4655
- .monsterinsights-bootstrap-container fieldset[disabled] .navbar-default .btn-link:hover,
4656
- .monsterinsights-bootstrap-container .navbar-default .btn-link[disabled]:focus,
4657
- .monsterinsights-bootstrap-container fieldset[disabled] .navbar-default .btn-link:focus {
4658
- color: #ccc;
4659
- }
4660
- .monsterinsights-bootstrap-container .navbar-inverse {
4661
- background-color: #222;
4662
- border-color: #080808;
4663
- }
4664
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-brand {
4665
- color: #9d9d9d;
4666
- }
4667
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-brand:hover,
4668
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-brand:focus {
4669
- color: #fff;
4670
- background-color: transparent;
4671
- }
4672
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-text {
4673
- color: #9d9d9d;
4674
- }
4675
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a {
4676
- color: #9d9d9d;
4677
- }
4678
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a:hover,
4679
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a:focus {
4680
- color: #fff;
4681
- background-color: transparent;
4682
- }
4683
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a,
4684
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a:hover,
4685
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a:focus {
4686
- color: #fff;
4687
- background-color: #080808;
4688
- }
4689
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a,
4690
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a:hover,
4691
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a:focus {
4692
- color: #444;
4693
- background-color: transparent;
4694
- }
4695
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a,
4696
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a:hover,
4697
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a:focus {
4698
- color: #fff;
4699
- background-color: #080808;
4700
- }
4701
- @media (max-width: 767px) {
4702
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4703
- border-color: #080808;
4704
- }
4705
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4706
- background-color: #080808;
4707
- }
4708
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4709
- color: #9d9d9d;
4710
- }
4711
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4712
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4713
- color: #fff;
4714
- background-color: transparent;
4715
- }
4716
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4717
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4718
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4719
- color: #fff;
4720
- background-color: #080808;
4721
- }
4722
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4723
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4724
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4725
- color: #444;
4726
- background-color: transparent;
4727
- }
4728
- }
4729
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle {
4730
- border-color: #333;
4731
- }
4732
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle:hover,
4733
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle:focus {
4734
- background-color: #333;
4735
- }
4736
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle .icon-bar {
4737
- background-color: #fff;
4738
- }
4739
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-collapse,
4740
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-form {
4741
- border-color: #101010;
4742
- }
4743
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-link {
4744
- color: #9d9d9d;
4745
- }
4746
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-link:hover {
4747
- color: #fff;
4748
- }
4749
- .monsterinsights-bootstrap-container .navbar-inverse .btn-link {
4750
- color: #9d9d9d;
4751
- }
4752
- .monsterinsights-bootstrap-container .navbar-inverse .btn-link:hover,
4753
- .monsterinsights-bootstrap-container .navbar-inverse .btn-link:focus {
4754
- color: #fff;
4755
- }
4756
- .monsterinsights-bootstrap-container .navbar-inverse .btn-link[disabled]:hover,
4757
- .monsterinsights-bootstrap-container fieldset[disabled] .navbar-inverse .btn-link:hover,
4758
- .monsterinsights-bootstrap-container .navbar-inverse .btn-link[disabled]:focus,
4759
- .monsterinsights-bootstrap-container fieldset[disabled] .navbar-inverse .btn-link:focus {
4760
- color: #444;
4761
- }
4762
- .monsterinsights-bootstrap-container .breadcrumb {
4763
- padding: 8px 15px;
4764
- margin-bottom: 20px;
4765
- list-style: none;
4766
- background-color: #f5f5f5;
4767
- border-radius: 4px;
4768
- }
4769
- .monsterinsights-bootstrap-container .breadcrumb > li {
4770
- display: inline-block;
4771
- }
4772
- .monsterinsights-bootstrap-container .breadcrumb > li + li:before {
4773
- padding: 0 5px;
4774
- color: #ccc;
4775
- content: "/\00a0";
4776
- }
4777
- .monsterinsights-bootstrap-container .breadcrumb > .active {
4778
- color: #777777;
4779
- }
4780
- .monsterinsights-bootstrap-container .pagination {
4781
- display: inline-block;
4782
- padding-left: 0;
4783
- margin: 20px 0;
4784
- border-radius: 4px;
4785
- }
4786
- .monsterinsights-bootstrap-container .pagination > li {
4787
- display: inline;
4788
- }
4789
- .monsterinsights-bootstrap-container .pagination > li > a,
4790
- .monsterinsights-bootstrap-container .pagination > li > span {
4791
- position: relative;
4792
- float: left;
4793
- padding: 6px 12px;
4794
- margin-left: -1px;
4795
- line-height: 1.42857143;
4796
- color: #337ab7;
4797
- text-decoration: none;
4798
- background-color: #fff;
4799
- border: 1px solid #ddd;
4800
- }
4801
- .monsterinsights-bootstrap-container .pagination > li > a:hover,
4802
- .monsterinsights-bootstrap-container .pagination > li > span:hover,
4803
- .monsterinsights-bootstrap-container .pagination > li > a:focus,
4804
- .monsterinsights-bootstrap-container .pagination > li > span:focus {
4805
- z-index: 2;
4806
- color: #23527c;
4807
- background-color: #eeeeee;
4808
- border-color: #ddd;
4809
- }
4810
- .monsterinsights-bootstrap-container .pagination > li:first-child > a,
4811
- .monsterinsights-bootstrap-container .pagination > li:first-child > span {
4812
- margin-left: 0;
4813
- border-top-left-radius: 4px;
4814
- border-bottom-left-radius: 4px;
4815
- }
4816
- .monsterinsights-bootstrap-container .pagination > li:last-child > a,
4817
- .monsterinsights-bootstrap-container .pagination > li:last-child > span {
4818
- border-top-right-radius: 4px;
4819
- border-bottom-right-radius: 4px;
4820
- }
4821
- .monsterinsights-bootstrap-container .pagination > .active > a,
4822
- .monsterinsights-bootstrap-container .pagination > .active > span,
4823
- .monsterinsights-bootstrap-container .pagination > .active > a:hover,
4824
- .monsterinsights-bootstrap-container .pagination > .active > span:hover,
4825
- .monsterinsights-bootstrap-container .pagination > .active > a:focus,
4826
- .monsterinsights-bootstrap-container .pagination > .active > span:focus {
4827
- z-index: 3;
4828
- color: #fff;
4829
- cursor: default;
4830
- background-color: #337ab7;
4831
- border-color: #337ab7;
4832
- }
4833
- .monsterinsights-bootstrap-container .pagination > .disabled > span,
4834
- .monsterinsights-bootstrap-container .pagination > .disabled > span:hover,
4835
- .monsterinsights-bootstrap-container .pagination > .disabled > span:focus,
4836
- .monsterinsights-bootstrap-container .pagination > .disabled > a,
4837
- .monsterinsights-bootstrap-container .pagination > .disabled > a:hover,
4838
- .monsterinsights-bootstrap-container .pagination > .disabled > a:focus {
4839
- color: #777777;
4840
- cursor: not-allowed;
4841
- background-color: #fff;
4842
- border-color: #ddd;
4843
- }
4844
- .monsterinsights-bootstrap-container .pagination-lg > li > a,
4845
- .monsterinsights-bootstrap-container .pagination-lg > li > span {
4846
- padding: 10px 16px;
4847
- font-size: 18px;
4848
- line-height: 1.3333333;
4849
- }
4850
- .monsterinsights-bootstrap-container .pagination-lg > li:first-child > a,
4851
- .monsterinsights-bootstrap-container .pagination-lg > li:first-child > span {
4852
- border-top-left-radius: 6px;
4853
- border-bottom-left-radius: 6px;
4854
- }
4855
- .monsterinsights-bootstrap-container .pagination-lg > li:last-child > a,
4856
- .monsterinsights-bootstrap-container .pagination-lg > li:last-child > span {
4857
- border-top-right-radius: 6px;
4858
- border-bottom-right-radius: 6px;
4859
- }
4860
- .monsterinsights-bootstrap-container .pagination-sm > li > a,
4861
- .monsterinsights-bootstrap-container .pagination-sm > li > span {
4862
- padding: 5px 10px;
4863
- font-size: 12px;
4864
- line-height: 1.5;
4865
- }
4866
- .monsterinsights-bootstrap-container .pagination-sm > li:first-child > a,
4867
- .monsterinsights-bootstrap-container .pagination-sm > li:first-child > span {
4868
- border-top-left-radius: 3px;
4869
- border-bottom-left-radius: 3px;
4870
- }
4871
- .monsterinsights-bootstrap-container .pagination-sm > li:last-child > a,
4872
- .monsterinsights-bootstrap-container .pagination-sm > li:last-child > span {
4873
- border-top-right-radius: 3px;
4874
- border-bottom-right-radius: 3px;
4875
- }
4876
- .monsterinsights-bootstrap-container .pager {
4877
- padding-left: 0;
4878
- margin: 20px 0;
4879
- text-align: center;
4880
- list-style: none;
4881
- }
4882
- .monsterinsights-bootstrap-container .pager li {
4883
- display: inline;
4884
- }
4885
- .monsterinsights-bootstrap-container .pager li > a,
4886
- .monsterinsights-bootstrap-container .pager li > span {
4887
- display: inline-block;
4888
- padding: 5px 14px;
4889
- background-color: #fff;
4890
- border: 1px solid #ddd;
4891
- border-radius: 15px;
4892
- }
4893
- .monsterinsights-bootstrap-container .pager li > a:hover,
4894
- .monsterinsights-bootstrap-container .pager li > a:focus {
4895
- text-decoration: none;
4896
- background-color: #eeeeee;
4897
- }
4898
- .monsterinsights-bootstrap-container .pager .next > a,
4899
- .monsterinsights-bootstrap-container .pager .next > span {
4900
- float: right;
4901
- }
4902
- .monsterinsights-bootstrap-container .pager .previous > a,
4903
- .monsterinsights-bootstrap-container .pager .previous > span {
4904
- float: left;
4905
- }
4906
- .monsterinsights-bootstrap-container .pager .disabled > a,
4907
- .monsterinsights-bootstrap-container .pager .disabled > a:hover,
4908
- .monsterinsights-bootstrap-container .pager .disabled > a:focus,
4909
- .monsterinsights-bootstrap-container .pager .disabled > span {
4910
- color: #777777;
4911
- cursor: not-allowed;
4912
- background-color: #fff;
4913
- }
4914
- .monsterinsights-bootstrap-container .label {
4915
- display: inline;
4916
- padding: 0.2em 0.6em 0.3em;
4917
- font-size: 75%;
4918
- font-weight: 700;
4919
- line-height: 1;
4920
- color: #fff;
4921
- text-align: center;
4922
- white-space: nowrap;
4923
- vertical-align: baseline;
4924
- border-radius: 0.25em;
4925
- }
4926
- .monsterinsights-bootstrap-container a.label:hover,
4927
- .monsterinsights-bootstrap-container a.label:focus {
4928
- color: #fff;
4929
- text-decoration: none;
4930
- cursor: pointer;
4931
- }
4932
- .monsterinsights-bootstrap-container .label:empty {
4933
- display: none;
4934
- }
4935
- .monsterinsights-bootstrap-container .btn .label {
4936
- position: relative;
4937
- top: -1px;
4938
- }
4939
- .monsterinsights-bootstrap-container .label-default {
4940
- background-color: #777777;
4941
- }
4942
- .monsterinsights-bootstrap-container .label-default[href]:hover,
4943
- .monsterinsights-bootstrap-container .label-default[href]:focus {
4944
- background-color: #5e5e5e;
4945
- }
4946
- .monsterinsights-bootstrap-container .label-primary {
4947
- background-color: #337ab7;
4948
- }
4949
- .monsterinsights-bootstrap-container .label-primary[href]:hover,
4950
- .monsterinsights-bootstrap-container .label-primary[href]:focus {
4951
- background-color: #286090;
4952
- }
4953
- .monsterinsights-bootstrap-container .label-success {
4954
- background-color: #5cb85c;
4955
- }
4956
- .monsterinsights-bootstrap-container .label-success[href]:hover,
4957
- .monsterinsights-bootstrap-container .label-success[href]:focus {
4958
- background-color: #449d44;
4959
- }
4960
- .monsterinsights-bootstrap-container .label-info {
4961
- background-color: #5bc0de;
4962
- }
4963
- .monsterinsights-bootstrap-container .label-info[href]:hover,
4964
- .monsterinsights-bootstrap-container .label-info[href]:focus {
4965
- background-color: #31b0d5;
4966
- }
4967
- .monsterinsights-bootstrap-container .label-warning {
4968
- background-color: #f0ad4e;
4969
- }
4970
- .monsterinsights-bootstrap-container .label-warning[href]:hover,
4971
- .monsterinsights-bootstrap-container .label-warning[href]:focus {
4972
- background-color: #ec971f;
4973
- }
4974
- .monsterinsights-bootstrap-container .label-danger {
4975
- background-color: #d9534f;
4976
- }
4977
- .monsterinsights-bootstrap-container .label-danger[href]:hover,
4978
- .monsterinsights-bootstrap-container .label-danger[href]:focus {
4979
- background-color: #c9302c;
4980
- }
4981
- .monsterinsights-bootstrap-container .badge {
4982
- display: inline-block;
4983
- min-width: 10px;
4984
- padding: 3px 7px;
4985
- font-size: 12px;
4986
- font-weight: bold;
4987
- line-height: 1;
4988
- color: #fff;
4989
- text-align: center;
4990
- white-space: nowrap;
4991
- vertical-align: middle;
4992
- background-color: #777777;
4993
- border-radius: 10px;
4994
- }
4995
- .monsterinsights-bootstrap-container .badge:empty {
4996
- display: none;
4997
- }
4998
- .monsterinsights-bootstrap-container .btn .badge {
4999
- position: relative;
5000
- top: -1px;
5001
- }
5002
- .monsterinsights-bootstrap-container .btn-xs .badge,
5003
- .monsterinsights-bootstrap-container .btn-group-xs > .btn .badge {
5004
- top: 0;
5005
- padding: 1px 5px;
5006
- }
5007
- .monsterinsights-bootstrap-container a.badge:hover,
5008
- .monsterinsights-bootstrap-container a.badge:focus {
5009
- color: #fff;
5010
- text-decoration: none;
5011
- cursor: pointer;
5012
- }
5013
- .monsterinsights-bootstrap-container .list-group-item.active > .badge,
5014
- .monsterinsights-bootstrap-container .nav-pills > .active > a > .badge {
5015
- color: #337ab7;
5016
- background-color: #fff;
5017
- }
5018
- .monsterinsights-bootstrap-container .list-group-item > .badge {
5019
- float: right;
5020
- }
5021
- .monsterinsights-bootstrap-container .list-group-item > .badge + .badge {
5022
- margin-right: 5px;
5023
- }
5024
- .monsterinsights-bootstrap-container .nav-pills > li > a > .badge {
5025
- margin-left: 3px;
5026
- }
5027
- .monsterinsights-bootstrap-container .jumbotron {
5028
- padding-top: 30px;
5029
- padding-bottom: 30px;
5030
- margin-bottom: 30px;
5031
- color: inherit;
5032
- background-color: #eeeeee;
5033
- }
5034
- .monsterinsights-bootstrap-container .jumbotron h1,
5035
- .monsterinsights-bootstrap-container .jumbotron .h1 {
5036
- color: inherit;
5037
- }
5038
- .monsterinsights-bootstrap-container .jumbotron p {
5039
- margin-bottom: 15px;
5040
- font-size: 21px;
5041
- font-weight: 200;
5042
- }
5043
- .monsterinsights-bootstrap-container .jumbotron > hr {
5044
- border-top-color: #d5d5d5;
5045
- }
5046
- .monsterinsights-bootstrap-container .container .jumbotron,
5047
- .monsterinsights-bootstrap-container .container-fluid .jumbotron {
5048
- padding-right: 15px;
5049
- padding-left: 15px;
5050
- border-radius: 6px;
5051
- }
5052
- .monsterinsights-bootstrap-container .jumbotron .container {
5053
- max-width: 100%;
5054
- }
5055
- @media screen and (min-width: 768px) {
5056
- .monsterinsights-bootstrap-container .jumbotron {
5057
- padding-top: 48px;
5058
- padding-bottom: 48px;
5059
- }
5060
- .monsterinsights-bootstrap-container .container .jumbotron,
5061
- .monsterinsights-bootstrap-container .container-fluid .jumbotron {
5062
- padding-right: 60px;
5063
- padding-left: 60px;
5064
- }
5065
- .monsterinsights-bootstrap-container .jumbotron h1,
5066
- .monsterinsights-bootstrap-container .jumbotron .h1 {
5067
- font-size: 63px;
5068
- }
5069
- }
5070
- .monsterinsights-bootstrap-container .thumbnail {
5071
- display: block;
5072
- padding: 4px;
5073
- margin-bottom: 20px;
5074
- line-height: 1.42857143;
5075
- background-color: #fff;
5076
- border: 1px solid #ddd;
5077
- border-radius: 4px;
5078
- -webkit-transition: border 0.2s ease-in-out;
5079
- -o-transition: border 0.2s ease-in-out;
5080
- transition: border 0.2s ease-in-out;
5081
- }
5082
- .monsterinsights-bootstrap-container .thumbnail > img,
5083
- .monsterinsights-bootstrap-container .thumbnail a > img {
5084
- margin-right: auto;
5085
- margin-left: auto;
5086
- }
5087
- .monsterinsights-bootstrap-container a.thumbnail:hover,
5088
- .monsterinsights-bootstrap-container a.thumbnail:focus,
5089
- .monsterinsights-bootstrap-container a.thumbnail.active {
5090
- border-color: #337ab7;
5091
- }
5092
- .monsterinsights-bootstrap-container .thumbnail .caption {
5093
- padding: 9px;
5094
- color: #333333;
5095
- }
5096
- .monsterinsights-bootstrap-container .alert {
5097
- padding: 15px;
5098
- margin-bottom: 20px;
5099
- border: 1px solid transparent;
5100
- border-radius: 4px;
5101
- }
5102
- .monsterinsights-bootstrap-container .alert h4 {
5103
- margin-top: 0;
5104
- color: inherit;
5105
- }
5106
- .monsterinsights-bootstrap-container .alert .alert-link {
5107
- font-weight: bold;
5108
- }
5109
- .monsterinsights-bootstrap-container .alert > p,
5110
- .monsterinsights-bootstrap-container .alert > ul {
5111
- margin-bottom: 0;
5112
- }
5113
- .monsterinsights-bootstrap-container .alert > p + p {
5114
- margin-top: 5px;
5115
- }
5116
- .monsterinsights-bootstrap-container .alert-dismissable,
5117
- .monsterinsights-bootstrap-container .alert-dismissible {
5118
- padding-right: 35px;
5119
- }
5120
- .monsterinsights-bootstrap-container .alert-dismissable .close,
5121
- .monsterinsights-bootstrap-container .alert-dismissible .close {
5122
- position: relative;
5123
- top: -2px;
5124
- right: -21px;
5125
- color: inherit;
5126
- }
5127
- .monsterinsights-bootstrap-container .alert-success {
5128
- color: #3c763d;
5129
- background-color: #dff0d8;
5130
- border-color: #d6e9c6;
5131
- }
5132
- .monsterinsights-bootstrap-container .alert-success hr {
5133
- border-top-color: #c9e2b3;
5134
- }
5135
- .monsterinsights-bootstrap-container .alert-success .alert-link {
5136
- color: #2b542c;
5137
- }
5138
- .monsterinsights-bootstrap-container .alert-info {
5139
- color: #31708f;
5140
- background-color: #d9edf7;
5141
- border-color: #bce8f1;
5142
- }
5143
- .monsterinsights-bootstrap-container .alert-info hr {
5144
- border-top-color: #a6e1ec;
5145
- }
5146
- .monsterinsights-bootstrap-container .alert-info .alert-link {
5147
- color: #245269;
5148
- }
5149
- .monsterinsights-bootstrap-container .alert-warning {
5150
- color: #8a6d3b;
5151
- background-color: #fcf8e3;
5152
- border-color: #faebcc;
5153
- }
5154
- .monsterinsights-bootstrap-container .alert-warning hr {
5155
- border-top-color: #f7e1b5;
5156
- }
5157
- .monsterinsights-bootstrap-container .alert-warning .alert-link {
5158
- color: #66512c;
5159
- }
5160
- .monsterinsights-bootstrap-container .alert-danger {
5161
- color: #a94442;
5162
- background-color: #f2dede;
5163
- border-color: #ebccd1;
5164
- }
5165
- .monsterinsights-bootstrap-container .alert-danger hr {
5166
- border-top-color: #e4b9c0;
5167
- }
5168
- .monsterinsights-bootstrap-container .alert-danger .alert-link {
5169
- color: #843534;
5170
- }
5171
- @-webkit-keyframes progress-bar-stripes {
5172
- .monsterinsights-bootstrap-container from {
5173
- background-position: 40px 0;
5174
- }
5175
- .monsterinsights-bootstrap-container to {
5176
- background-position: 0 0;
5177
- }
5178
- }
5179
- @-o-keyframes progress-bar-stripes {
5180
- .monsterinsights-bootstrap-container from {
5181
- background-position: 40px 0;
5182
- }
5183
- .monsterinsights-bootstrap-container to {
5184
- background-position: 0 0;
5185
- }
5186
- }
5187
- @keyframes progress-bar-stripes {
5188
- .monsterinsights-bootstrap-container from {
5189
- background-position: 40px 0;
5190
- }
5191
- .monsterinsights-bootstrap-container to {
5192
- background-position: 0 0;
5193
- }
5194
- }
5195
- .monsterinsights-bootstrap-container .progress {
5196
- height: 20px;
5197
- margin-bottom: 20px;
5198
- overflow: hidden;
5199
- background-color: #f5f5f5;
5200
- border-radius: 4px;
5201
- -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
5202
- box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
5203
- }
5204
- .monsterinsights-bootstrap-container .progress-bar {
5205
- float: left;
5206
- width: 0%;
5207
- height: 100%;
5208
- font-size: 12px;
5209
- line-height: 20px;
5210
- color: #fff;
5211
- text-align: center;
5212
- background-color: #337ab7;
5213
- -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
5214
- box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
5215
- -webkit-transition: width 0.6s ease;
5216
- -o-transition: width 0.6s ease;
5217
- transition: width 0.6s ease;
5218
- }
5219
- .monsterinsights-bootstrap-container .progress-striped .progress-bar,
5220
- .monsterinsights-bootstrap-container .progress-bar-striped {
5221
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5222
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5223
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5224
- -webkit-background-size: 40px 40px;
5225
- background-size: 40px 40px;
5226
- }
5227
- .monsterinsights-bootstrap-container .progress.active .progress-bar,
5228
- .monsterinsights-bootstrap-container .progress-bar.active {
5229
- -webkit-animation: progress-bar-stripes 2s linear infinite;
5230
- -o-animation: progress-bar-stripes 2s linear infinite;
5231
- animation: progress-bar-stripes 2s linear infinite;
5232
- }
5233
- .monsterinsights-bootstrap-container .progress-bar-success {
5234
- background-color: #5cb85c;
5235
- }
5236
- .monsterinsights-bootstrap-container .progress-striped .progress-bar-success {
5237
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5238
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5239
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5240
- }
5241
- .monsterinsights-bootstrap-container .progress-bar-info {
5242
- background-color: #5bc0de;
5243
- }
5244
- .monsterinsights-bootstrap-container .progress-striped .progress-bar-info {
5245
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5246
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5247
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5248
- }
5249
- .monsterinsights-bootstrap-container .progress-bar-warning {
5250
- background-color: #f0ad4e;
5251
- }
5252
- .monsterinsights-bootstrap-container .progress-striped .progress-bar-warning {
5253
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5254
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5255
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5256
- }
5257
- .monsterinsights-bootstrap-container .progress-bar-danger {
5258
- background-color: #d9534f;
5259
- }
5260
- .monsterinsights-bootstrap-container .progress-striped .progress-bar-danger {
5261
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5262
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5263
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
5264
- }
5265
- .monsterinsights-bootstrap-container .media {
5266
- margin-top: 15px;
5267
- }
5268
- .monsterinsights-bootstrap-container .media:first-child {
5269
- margin-top: 0;
5270
- }
5271
- .monsterinsights-bootstrap-container .media,
5272
- .monsterinsights-bootstrap-container .media-body {
5273
- overflow: hidden;
5274
- zoom: 1;
5275
- }
5276
- .monsterinsights-bootstrap-container .media-body {
5277
- width: 10000px;
5278
- }
5279
- .monsterinsights-bootstrap-container .media-object {
5280
- display: block;
5281
- }
5282
- .monsterinsights-bootstrap-container .media-object.img-thumbnail {
5283
- max-width: none;
5284
- }
5285
- .monsterinsights-bootstrap-container .media-right,
5286
- .monsterinsights-bootstrap-container .media > .pull-right {
5287
- padding-left: 10px;
5288
- }
5289
- .monsterinsights-bootstrap-container .media-left,
5290
- .monsterinsights-bootstrap-container .media > .pull-left {
5291
- padding-right: 10px;
5292
- }
5293
- .monsterinsights-bootstrap-container .media-left,
5294
- .monsterinsights-bootstrap-container .media-right,
5295
- .monsterinsights-bootstrap-container .media-body {
5296
- display: table-cell;
5297
- vertical-align: top;
5298
- }
5299
- .monsterinsights-bootstrap-container .media-middle {
5300
- vertical-align: middle;
5301
- }
5302
- .monsterinsights-bootstrap-container .media-bottom {
5303
- vertical-align: bottom;
5304
- }
5305
- .monsterinsights-bootstrap-container .media-heading {
5306
- margin-top: 0;
5307
- margin-bottom: 5px;
5308
- }
5309
- .monsterinsights-bootstrap-container .media-list {
5310
- padding-left: 0;
5311
- list-style: none;
5312
- }
5313
- .monsterinsights-bootstrap-container .list-group {
5314
- padding-left: 0;
5315
- margin-bottom: 20px;
5316
- }
5317
- .monsterinsights-bootstrap-container .list-group-item {
5318
- position: relative;
5319
- display: block;
5320
- padding: 10px 15px;
5321
- margin-bottom: -1px;
5322
- background-color: #fff;
5323
- border: 1px solid #ddd;
5324
- }
5325
- .monsterinsights-bootstrap-container .list-group-item:first-child {
5326
- border-top-left-radius: 4px;
5327
- border-top-right-radius: 4px;
5328
- }
5329
- .monsterinsights-bootstrap-container .list-group-item:last-child {
5330
- margin-bottom: 0;
5331
- border-bottom-right-radius: 4px;
5332
- border-bottom-left-radius: 4px;
5333
- }
5334
- .monsterinsights-bootstrap-container .list-group-item.disabled,
5335
- .monsterinsights-bootstrap-container .list-group-item.disabled:hover,
5336
- .monsterinsights-bootstrap-container .list-group-item.disabled:focus {
5337
- color: #777777;
5338
- cursor: not-allowed;
5339
- background-color: #eeeeee;
5340
- }
5341
- .monsterinsights-bootstrap-container .list-group-item.disabled .list-group-item-heading,
5342
- .monsterinsights-bootstrap-container .list-group-item.disabled:hover .list-group-item-heading,
5343
- .monsterinsights-bootstrap-container .list-group-item.disabled:focus .list-group-item-heading {
5344
- color: inherit;
5345
- }
5346
- .monsterinsights-bootstrap-container .list-group-item.disabled .list-group-item-text,
5347
- .monsterinsights-bootstrap-container .list-group-item.disabled:hover .list-group-item-text,
5348
- .monsterinsights-bootstrap-container .list-group-item.disabled:focus .list-group-item-text {
5349
- color: #777777;
5350
- }
5351
- .monsterinsights-bootstrap-container .list-group-item.active,
5352
- .monsterinsights-bootstrap-container .list-group-item.active:hover,
5353
- .monsterinsights-bootstrap-container .list-group-item.active:focus {
5354
- z-index: 2;
5355
- color: #fff;
5356
- background-color: #337ab7;
5357
- border-color: #337ab7;
5358
- }
5359
- .monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading,
5360
- .monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading,
5361
- .monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading,
5362
- .monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading > small,
5363
- .monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading > small,
5364
- .monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading > small,
5365
- .monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading > .small,
5366
- .monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading > .small,
5367
- .monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading > .small {
5368
- color: inherit;
5369
- }
5370
- .monsterinsights-bootstrap-container .list-group-item.active .list-group-item-text,
5371
- .monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-text,
5372
- .monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-text {
5373
- color: #c7ddef;
5374
- }
5375
- .monsterinsights-bootstrap-container a.list-group-item,
5376
- .monsterinsights-bootstrap-container button.list-group-item {
5377
- color: #555;
5378
- }
5379
- .monsterinsights-bootstrap-container a.list-group-item .list-group-item-heading,
5380
- .monsterinsights-bootstrap-container button.list-group-item .list-group-item-heading {
5381
- color: #333;
5382
- }
5383
- .monsterinsights-bootstrap-container a.list-group-item:hover,
5384
- .monsterinsights-bootstrap-container button.list-group-item:hover,
5385
- .monsterinsights-bootstrap-container a.list-group-item:focus,
5386
- .monsterinsights-bootstrap-container button.list-group-item:focus {
5387
- color: #555;
5388
- text-decoration: none;
5389
- background-color: #f5f5f5;
5390
- }
5391
- .monsterinsights-bootstrap-container button.list-group-item {
5392
- width: 100%;
5393
- text-align: left;
5394
- }
5395
- .monsterinsights-bootstrap-container .list-group-item-success {
5396
- color: #3c763d;
5397
- background-color: #dff0d8;
5398
- }
5399
- .monsterinsights-bootstrap-container a.list-group-item-success,
5400
- .monsterinsights-bootstrap-container button.list-group-item-success {
5401
- color: #3c763d;
5402
- }
5403
- .monsterinsights-bootstrap-container a.list-group-item-success .list-group-item-heading,
5404
- .monsterinsights-bootstrap-container button.list-group-item-success .list-group-item-heading {
5405
- color: inherit;
5406
- }
5407
- .monsterinsights-bootstrap-container a.list-group-item-success:hover,
5408
- .monsterinsights-bootstrap-container button.list-group-item-success:hover,
5409
- .monsterinsights-bootstrap-container a.list-group-item-success:focus,
5410
- .monsterinsights-bootstrap-container button.list-group-item-success:focus {
5411
- color: #3c763d;
5412
- background-color: #d0e9c6;
5413
- }
5414
- .monsterinsights-bootstrap-container a.list-group-item-success.active,
5415
- .monsterinsights-bootstrap-container button.list-group-item-success.active,
5416
- .monsterinsights-bootstrap-container a.list-group-item-success.active:hover,
5417
- .monsterinsights-bootstrap-container button.list-group-item-success.active:hover,
5418
- .monsterinsights-bootstrap-container a.list-group-item-success.active:focus,
5419
- .monsterinsights-bootstrap-container button.list-group-item-success.active:focus {
5420
- color: #fff;
5421
- background-color: #3c763d;
5422
- border-color: #3c763d;
5423
- }
5424
- .monsterinsights-bootstrap-container .list-group-item-info {
5425
- color: #31708f;
5426
- background-color: #d9edf7;
5427
- }
5428
- .monsterinsights-bootstrap-container a.list-group-item-info,
5429
- .monsterinsights-bootstrap-container button.list-group-item-info {
5430
- color: #31708f;
5431
- }
5432
- .monsterinsights-bootstrap-container a.list-group-item-info .list-group-item-heading,
5433
- .monsterinsights-bootstrap-container button.list-group-item-info .list-group-item-heading {
5434
- color: inherit;
5435
- }
5436
- .monsterinsights-bootstrap-container a.list-group-item-info:hover,
5437
- .monsterinsights-bootstrap-container button.list-group-item-info:hover,
5438
- .monsterinsights-bootstrap-container a.list-group-item-info:focus,
5439
- .monsterinsights-bootstrap-container button.list-group-item-info:focus {
5440
- color: #31708f;
5441
- background-color: #c4e3f3;
5442
- }
5443
- .monsterinsights-bootstrap-container a.list-group-item-info.active,
5444
- .monsterinsights-bootstrap-container button.list-group-item-info.active,
5445
- .monsterinsights-bootstrap-container a.list-group-item-info.active:hover,
5446
- .monsterinsights-bootstrap-container button.list-group-item-info.active:hover,
5447
- .monsterinsights-bootstrap-container a.list-group-item-info.active:focus,
5448
- .monsterinsights-bootstrap-container button.list-group-item-info.active:focus {
5449
- color: #fff;
5450
- background-color: #31708f;
5451
- border-color: #31708f;
5452
- }
5453
- .monsterinsights-bootstrap-container .list-group-item-warning {
5454
- color: #8a6d3b;
5455
- background-color: #fcf8e3;
5456
- }
5457
- .monsterinsights-bootstrap-container a.list-group-item-warning,
5458
- .monsterinsights-bootstrap-container button.list-group-item-warning {
5459
- color: #8a6d3b;
5460
- }
5461
- .monsterinsights-bootstrap-container a.list-group-item-warning .list-group-item-heading,
5462
- .monsterinsights-bootstrap-container button.list-group-item-warning .list-group-item-heading {
5463
- color: inherit;
5464
- }
5465
- .monsterinsights-bootstrap-container a.list-group-item-warning:hover,
5466
- .monsterinsights-bootstrap-container button.list-group-item-warning:hover,
5467
- .monsterinsights-bootstrap-container a.list-group-item-warning:focus,
5468
- .monsterinsights-bootstrap-container button.list-group-item-warning:focus {
5469
- color: #8a6d3b;
5470
- background-color: #faf2cc;
5471
- }
5472
- .monsterinsights-bootstrap-container a.list-group-item-warning.active,
5473
- .monsterinsights-bootstrap-container button.list-group-item-warning.active,
5474
- .monsterinsights-bootstrap-container a.list-group-item-warning.active:hover,
5475
- .monsterinsights-bootstrap-container button.list-group-item-warning.active:hover,
5476
- .monsterinsights-bootstrap-container a.list-group-item-warning.active:focus,
5477
- .monsterinsights-bootstrap-container button.list-group-item-warning.active:focus {
5478
- color: #fff;
5479
- background-color: #8a6d3b;
5480
- border-color: #8a6d3b;
5481
- }
5482
- .monsterinsights-bootstrap-container .list-group-item-danger {
5483
- color: #a94442;
5484
- background-color: #f2dede;
5485
- }
5486
- .monsterinsights-bootstrap-container a.list-group-item-danger,
5487
- .monsterinsights-bootstrap-container button.list-group-item-danger {
5488
- color: #a94442;
5489
- }
5490
- .monsterinsights-bootstrap-container a.list-group-item-danger .list-group-item-heading,
5491
- .monsterinsights-bootstrap-container button.list-group-item-danger .list-group-item-heading {
5492
- color: inherit;
5493
- }
5494
- .monsterinsights-bootstrap-container a.list-group-item-danger:hover,
5495
- .monsterinsights-bootstrap-container button.list-group-item-danger:hover,
5496
- .monsterinsights-bootstrap-container a.list-group-item-danger:focus,
5497
- .monsterinsights-bootstrap-container button.list-group-item-danger:focus {
5498
- color: #a94442;
5499
- background-color: #ebcccc;
5500
- }
5501
- .monsterinsights-bootstrap-container a.list-group-item-danger.active,
5502
- .monsterinsights-bootstrap-container button.list-group-item-danger.active,
5503
- .monsterinsights-bootstrap-container a.list-group-item-danger.active:hover,
5504
- .monsterinsights-bootstrap-container button.list-group-item-danger.active:hover,
5505
- .monsterinsights-bootstrap-container a.list-group-item-danger.active:focus,
5506
- .monsterinsights-bootstrap-container button.list-group-item-danger.active:focus {
5507
- color: #fff;
5508
- background-color: #a94442;
5509
- border-color: #a94442;
5510
- }
5511
- .monsterinsights-bootstrap-container .list-group-item-heading {
5512
- margin-top: 0;
5513
- margin-bottom: 5px;
5514
- }
5515
- .monsterinsights-bootstrap-container .list-group-item-text {
5516
- margin-bottom: 0;
5517
- line-height: 1.3;
5518
- }
5519
- .monsterinsights-bootstrap-container .panel {
5520
- margin-bottom: 20px;
5521
- background-color: #fff;
5522
- border: 1px solid transparent;
5523
- border-radius: 4px;
5524
- -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.05);
5525
- box-shadow: 0 1px 1px rgba(0,0,0,0.05);
5526
- }
5527
- .monsterinsights-bootstrap-container .panel-body {
5528
- padding: 15px;
5529
- }
5530
- .monsterinsights-bootstrap-container .panel-heading {
5531
- padding: 10px 15px;
5532
- border-bottom: 1px solid transparent;
5533
- border-top-left-radius: 3px;
5534
- border-top-right-radius: 3px;
5535
- }
5536
- .monsterinsights-bootstrap-container .panel-heading > .dropdown .dropdown-toggle {
5537
- color: inherit;
5538
- }
5539
- .monsterinsights-bootstrap-container .panel-title {
5540
- margin-top: 0;
5541
- margin-bottom: 0;
5542
- font-size: 16px;
5543
- color: inherit;
5544
- }
5545
- .monsterinsights-bootstrap-container .panel-title > a,
5546
- .monsterinsights-bootstrap-container .panel-title > small,
5547
- .monsterinsights-bootstrap-container .panel-title > .small,
5548
- .monsterinsights-bootstrap-container .panel-title > small > a,
5549
- .monsterinsights-bootstrap-container .panel-title > .small > a {
5550
- color: inherit;
5551
- }
5552
- .monsterinsights-bootstrap-container .panel-footer {
5553
- padding: 10px 15px;
5554
- background-color: #f5f5f5;
5555
- border-top: 1px solid #ddd;
5556
- border-bottom-right-radius: 3px;
5557
- border-bottom-left-radius: 3px;
5558
- }
5559
- .monsterinsights-bootstrap-container .panel > .list-group,
5560
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group {
5561
- margin-bottom: 0;
5562
- }
5563
- .monsterinsights-bootstrap-container .panel > .list-group .list-group-item,
5564
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group .list-group-item {
5565
- border-width: 1px 0;
5566
- border-radius: 0;
5567
- }
5568
- .monsterinsights-bootstrap-container .panel > .list-group:first-child .list-group-item:first-child,
5569
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5570
- border-top: 0;
5571
- border-top-left-radius: 3px;
5572
- border-top-right-radius: 3px;
5573
- }
5574
- .monsterinsights-bootstrap-container .panel > .list-group:last-child .list-group-item:last-child,
5575
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5576
- border-bottom: 0;
5577
- border-bottom-right-radius: 3px;
5578
- border-bottom-left-radius: 3px;
5579
- }
5580
- .monsterinsights-bootstrap-container .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
5581
- border-top-left-radius: 0;
5582
- border-top-right-radius: 0;
5583
- }
5584
- .monsterinsights-bootstrap-container .panel-heading + .list-group .list-group-item:first-child {
5585
- border-top-width: 0;
5586
- }
5587
- .monsterinsights-bootstrap-container .list-group + .panel-footer {
5588
- border-top-width: 0;
5589
- }
5590
- .monsterinsights-bootstrap-container .panel > .table,
5591
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table,
5592
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .table {
5593
- margin-bottom: 0;
5594
- }
5595
- .monsterinsights-bootstrap-container .panel > .table caption,
5596
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table caption,
5597
- .monsterinsights-bootstrap-container .panel > .panel-collapse > .table caption {
5598
- padding-right: 15px;
5599
- padding-left: 15px;
5600
- }
5601
- .monsterinsights-bootstrap-container .panel > .table:first-child,
5602
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child {
5603
- border-top-left-radius: 3px;
5604
- border-top-right-radius: 3px;
5605
- }
5606
- .monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child,
5607
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5608
- .monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child,
5609
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5610
- border-top-left-radius: 3px;
5611
- border-top-right-radius: 3px;
5612
- }
5613
- .monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5614
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5615
- .monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5616
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5617
- .monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
5618
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
5619
- .monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
5620
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
5621
- border-top-left-radius: 3px;
5622
- }
5623
- .monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
5624
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
5625
- .monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5626
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5627
- .monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
5628
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
5629
- .monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
5630
- .monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
5631
- border-top-right-radius: 3px;
5632
- }
5633
- .monsterinsights-bootstrap-container .panel > .table:last-child,
5634
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child {
5635
- border-bottom-right-radius: 3px;
5636
- border-bottom-left-radius: 3px;
5637
- }
5638
- .monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child,
5639
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5640
- .monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child,
5641
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5642
- border-bottom-right-radius: 3px;
5643
- border-bottom-left-radius: 3px;
5644
- }
5645
- .monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5646
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5647
- .monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5648
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5649
- .monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5650
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5651
- .monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
5652
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
5653
- border-bottom-left-radius: 3px;
5654
- }
5655
- .monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5656
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5657
- .monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5658
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5659
- .monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5660
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5661
- .monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
5662
- .monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
5663
- border-bottom-right-radius: 3px;
5664
- }
5665
- .monsterinsights-bootstrap-container .panel > .panel-body + .table,
5666
- .monsterinsights-bootstrap-container .panel > .panel-body + .table-responsive,
5667
- .monsterinsights-bootstrap-container .panel > .table + .panel-body,
5668
- .monsterinsights-bootstrap-container .panel > .table-responsive + .panel-body {
5669
- border-top: 1px solid #ddd;
5670
- }
5671
- .monsterinsights-bootstrap-container .panel > .table > tbody:first-child > tr:first-child th,
5672
- .monsterinsights-bootstrap-container .panel > .table > tbody:first-child > tr:first-child td {
5673
- border-top: 0;
5674
- }
5675
- .monsterinsights-bootstrap-container .panel > .table-bordered,
5676
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered {
5677
- border: 0;
5678
- }
5679
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > th:first-child,
5680
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5681
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > th:first-child,
5682
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5683
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > th:first-child,
5684
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5685
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > td:first-child,
5686
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5687
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > td:first-child,
5688
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5689
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > td:first-child,
5690
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5691
- border-left: 0;
5692
- }
5693
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > th:last-child,
5694
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5695
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > th:last-child,
5696
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5697
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > th:last-child,
5698
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5699
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > td:last-child,
5700
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5701
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > td:last-child,
5702
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5703
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > td:last-child,
5704
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5705
- border-right: 0;
5706
- }
5707
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr:first-child > td,
5708
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
5709
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:first-child > td,
5710
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
5711
- .monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr:first-child > th,
5712
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
5713
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:first-child > th,
5714
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
5715
- border-bottom: 0;
5716
- }
5717
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:last-child > td,
5718
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5719
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr:last-child > td,
5720
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
5721
- .monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:last-child > th,
5722
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5723
- .monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr:last-child > th,
5724
- .monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
5725
- border-bottom: 0;
5726
- }
5727
- .monsterinsights-bootstrap-container .panel > .table-responsive {
5728
- margin-bottom: 0;
5729
- border: 0;
5730
- }
5731
- .monsterinsights-bootstrap-container .panel-group {
5732
- margin-bottom: 20px;
5733
- }
5734
- .monsterinsights-bootstrap-container .panel-group .panel {
5735
- margin-bottom: 0;
5736
- border-radius: 4px;
5737
- }
5738
- .monsterinsights-bootstrap-container .panel-group .panel + .panel {
5739
- margin-top: 5px;
5740
- }
5741
- .monsterinsights-bootstrap-container .panel-group .panel-heading {
5742
- border-bottom: 0;
5743
- }
5744
- .monsterinsights-bootstrap-container .panel-group .panel-heading + .panel-collapse > .panel-body,
5745
- .monsterinsights-bootstrap-container .panel-group .panel-heading + .panel-collapse > .list-group {
5746
- border-top: 1px solid #ddd;
5747
- }
5748
- .monsterinsights-bootstrap-container .panel-group .panel-footer {
5749
- border-top: 0;
5750
- }
5751
- .monsterinsights-bootstrap-container .panel-group .panel-footer + .panel-collapse .panel-body {
5752
- border-bottom: 1px solid #ddd;
5753
- }
5754
- .monsterinsights-bootstrap-container .panel-default {
5755
- border-color: #ddd;
5756
- }
5757
- .monsterinsights-bootstrap-container .panel-default > .panel-heading {
5758
- color: #333333;
5759
- background-color: #f5f5f5;
5760
- border-color: #ddd;
5761
- }
5762
- .monsterinsights-bootstrap-container .panel-default > .panel-heading + .panel-collapse > .panel-body {
5763
- border-top-color: #ddd;
5764
- }
5765
- .monsterinsights-bootstrap-container .panel-default > .panel-heading .badge {
5766
- color: #f5f5f5;
5767
- background-color: #333333;
5768
- }
5769
- .monsterinsights-bootstrap-container .panel-default > .panel-footer + .panel-collapse > .panel-body {
5770
- border-bottom-color: #ddd;
5771
- }
5772
- .monsterinsights-bootstrap-container .panel-primary {
5773
- border-color: #337ab7;
5774
- }
5775
- .monsterinsights-bootstrap-container .panel-primary > .panel-heading {
5776
- color: #fff;
5777
- background-color: #337ab7;
5778
- border-color: #337ab7;
5779
- }
5780
- .monsterinsights-bootstrap-container .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5781
- border-top-color: #337ab7;
5782
- }
5783
- .monsterinsights-bootstrap-container .panel-primary > .panel-heading .badge {
5784
- color: #337ab7;
5785
- background-color: #fff;
5786
- }
5787
- .monsterinsights-bootstrap-container .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5788
- border-bottom-color: #337ab7;
5789
- }
5790
- .monsterinsights-bootstrap-container .panel-success {
5791
- border-color: #d6e9c6;
5792
- }
5793
- .monsterinsights-bootstrap-container .panel-success > .panel-heading {
5794
- color: #3c763d;
5795
- background-color: #dff0d8;
5796
- border-color: #d6e9c6;
5797
- }
5798
- .monsterinsights-bootstrap-container .panel-success > .panel-heading + .panel-collapse > .panel-body {
5799
- border-top-color: #d6e9c6;
5800
- }
5801
- .monsterinsights-bootstrap-container .panel-success > .panel-heading .badge {
5802
- color: #dff0d8;
5803
- background-color: #3c763d;
5804
- }
5805
- .monsterinsights-bootstrap-container .panel-success > .panel-footer + .panel-collapse > .panel-body {
5806
- border-bottom-color: #d6e9c6;
5807
- }
5808
- .monsterinsights-bootstrap-container .panel-info {
5809
- border-color: #bce8f1;
5810
- }
5811
- .monsterinsights-bootstrap-container .panel-info > .panel-heading {
5812
- color: #31708f;
5813
- background-color: #d9edf7;
5814
- border-color: #bce8f1;
5815
- }
5816
- .monsterinsights-bootstrap-container .panel-info > .panel-heading + .panel-collapse > .panel-body {
5817
- border-top-color: #bce8f1;
5818
- }
5819
- .monsterinsights-bootstrap-container .panel-info > .panel-heading .badge {
5820
- color: #d9edf7;
5821
- background-color: #31708f;
5822
- }
5823
- .monsterinsights-bootstrap-container .panel-info > .panel-footer + .panel-collapse > .panel-body {
5824
- border-bottom-color: #bce8f1;
5825
- }
5826
- .monsterinsights-bootstrap-container .panel-warning {
5827
- border-color: #faebcc;
5828
- }
5829
- .monsterinsights-bootstrap-container .panel-warning > .panel-heading {
5830
- color: #8a6d3b;
5831
- background-color: #fcf8e3;
5832
- border-color: #faebcc;
5833
- }
5834
- .monsterinsights-bootstrap-container .panel-warning > .panel-heading + .panel-collapse > .panel-body {
5835
- border-top-color: #faebcc;
5836
- }
5837
- .monsterinsights-bootstrap-container .panel-warning > .panel-heading .badge {
5838
- color: #fcf8e3;
5839
- background-color: #8a6d3b;
5840
- }
5841
- .monsterinsights-bootstrap-container .panel-warning > .panel-footer + .panel-collapse > .panel-body {
5842
- border-bottom-color: #faebcc;
5843
- }
5844
- .monsterinsights-bootstrap-container .panel-danger {
5845
- border-color: #ebccd1;
5846
- }
5847
- .monsterinsights-bootstrap-container .panel-danger > .panel-heading {
5848
- color: #a94442;
5849
- background-color: #f2dede;
5850
- border-color: #ebccd1;
5851
- }
5852
- .monsterinsights-bootstrap-container .panel-danger > .panel-heading + .panel-collapse > .panel-body {
5853
- border-top-color: #ebccd1;
5854
- }
5855
- .monsterinsights-bootstrap-container .panel-danger > .panel-heading .badge {
5856
- color: #f2dede;
5857
- background-color: #a94442;
5858
- }
5859
- .monsterinsights-bootstrap-container .panel-danger > .panel-footer + .panel-collapse > .panel-body {
5860
- border-bottom-color: #ebccd1;
5861
- }
5862
- .monsterinsights-bootstrap-container .embed-responsive {
5863
- position: relative;
5864
- display: block;
5865
- height: 0;
5866
- padding: 0;
5867
- overflow: hidden;
5868
- }
5869
- .monsterinsights-bootstrap-container .embed-responsive .embed-responsive-item,
5870
- .monsterinsights-bootstrap-container .embed-responsive iframe,
5871
- .monsterinsights-bootstrap-container .embed-responsive embed,
5872
- .monsterinsights-bootstrap-container .embed-responsive object,
5873
- .monsterinsights-bootstrap-container .embed-responsive video {
5874
- position: absolute;
5875
- top: 0;
5876
- bottom: 0;
5877
- left: 0;
5878
- width: 100%;
5879
- height: 100%;
5880
- border: 0;
5881
- }
5882
- .monsterinsights-bootstrap-container .embed-responsive-16by9 {
5883
- padding-bottom: 56.25%;
5884
- }
5885
- .monsterinsights-bootstrap-container .embed-responsive-4by3 {
5886
- padding-bottom: 75%;
5887
- }
5888
- .monsterinsights-bootstrap-container .well {
5889
- min-height: 20px;
5890
- padding: 19px;
5891
- margin-bottom: 20px;
5892
- background-color: #f5f5f5;
5893
- border: 1px solid #e3e3e3;
5894
- border-radius: 4px;
5895
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
5896
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
5897
- }
5898
- .monsterinsights-bootstrap-container .well blockquote {
5899
- border-color: #ddd;
5900
- border-color: rgba(0,0,0,0.15);
5901
- }
5902
- .monsterinsights-bootstrap-container .well-lg {
5903
- padding: 24px;
5904
- border-radius: 6px;
5905
- }
5906
- .monsterinsights-bootstrap-container .well-sm {
5907
- padding: 9px;
5908
- border-radius: 3px;
5909
- }
5910
- .monsterinsights-bootstrap-container .close {
5911
- float: right;
5912
- font-size: 21px;
5913
- font-weight: bold;
5914
- line-height: 1;
5915
- color: #000;
5916
- text-shadow: 0 1px 0 #fff;
5917
- filter: alpha(opacity=20);
5918
- opacity: 0.2;
5919
- }
5920
- .monsterinsights-bootstrap-container .close:hover,
5921
- .monsterinsights-bootstrap-container .close:focus {
5922
- color: #000;
5923
- text-decoration: none;
5924
- cursor: pointer;
5925
- filter: alpha(opacity=50);
5926
- opacity: 0.5;
5927
- }
5928
- .monsterinsights-bootstrap-container button.close {
5929
- padding: 0;
5930
- cursor: pointer;
5931
- background: transparent;
5932
- border: 0;
5933
- -webkit-appearance: none;
5934
- -moz-appearance: none;
5935
- appearance: none;
5936
- }
5937
- .monsterinsights-bootstrap-container .modal-open {
5938
- overflow: hidden;
5939
- }
5940
- .monsterinsights-bootstrap-container .modal {
5941
- position: fixed;
5942
- top: 0;
5943
- right: 0;
5944
- bottom: 0;
5945
- left: 0;
5946
- z-index: 1050;
5947
- display: none;
5948
- overflow: hidden;
5949
- -webkit-overflow-scrolling: touch;
5950
- outline: 0;
5951
- }
5952
- .monsterinsights-bootstrap-container .modal.fade .modal-dialog {
5953
- -webkit-transform: translate(0,-25%);
5954
- -ms-transform: translate(0,-25%);
5955
- -o-transform: translate(0,-25%);
5956
- transform: translate(0,-25%);
5957
- -webkit-transition: -webkit-transform 0.3s ease-out;
5958
- -o-transition: -o-transform 0.3s ease-out;
5959
- transition: -webkit-transform 0.3s ease-out;
5960
- transition: transform 0.3s ease-out;
5961
- transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
5962
- }
5963
- .monsterinsights-bootstrap-container .modal.in .modal-dialog {
5964
- -webkit-transform: translate(0,0);
5965
- -ms-transform: translate(0,0);
5966
- -o-transform: translate(0,0);
5967
- transform: translate(0,0);
5968
- }
5969
- .monsterinsights-bootstrap-container .modal-open .modal {
5970
- overflow-x: hidden;
5971
- overflow-y: auto;
5972
- }
5973
- .monsterinsights-bootstrap-container .modal-dialog {
5974
- position: relative;
5975
- width: auto;
5976
- margin: 10px;
5977
- }
5978
- .monsterinsights-bootstrap-container .modal-content {
5979
- position: relative;
5980
- background-color: #fff;
5981
- background-clip: padding-box;
5982
- border: 1px solid #999;
5983
- border: 1px solid rgba(0,0,0,0.2);
5984
- border-radius: 6px;
5985
- -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
5986
- box-shadow: 0 3px 9px rgba(0,0,0,0.5);
5987
- outline: 0;
5988
- }
5989
- .monsterinsights-bootstrap-container .modal-backdrop {
5990
- position: fixed;
5991
- top: 0;
5992
- right: 0;
5993
- bottom: 0;
5994
- left: 0;
5995
- z-index: 1040;
5996
- background-color: #000;
5997
- }
5998
- .monsterinsights-bootstrap-container .modal-backdrop.fade {
5999
- filter: alpha(opacity=0);
6000
- opacity: 0;
6001
- }
6002
- .monsterinsights-bootstrap-container .modal-backdrop.in {
6003
- filter: alpha(opacity=50);
6004
- opacity: 0.5;
6005
- }
6006
- .monsterinsights-bootstrap-container .modal-header {
6007
- padding: 15px;
6008
- border-bottom: 1px solid #e5e5e5;
6009
- }
6010
- .monsterinsights-bootstrap-container .modal-header .close {
6011
- margin-top: -2px;
6012
- }
6013
- .monsterinsights-bootstrap-container .modal-title {
6014
- margin: 0;
6015
- line-height: 1.42857143;
6016
- }
6017
- .monsterinsights-bootstrap-container .modal-body {
6018
- position: relative;
6019
- padding: 15px;
6020
- }
6021
- .monsterinsights-bootstrap-container .modal-footer {
6022
- padding: 15px;
6023
- text-align: right;
6024
- border-top: 1px solid #e5e5e5;
6025
- }
6026
- .monsterinsights-bootstrap-container .modal-footer .btn + .btn {
6027
- margin-bottom: 0;
6028
- margin-left: 5px;
6029
- }
6030
- .monsterinsights-bootstrap-container .modal-footer .btn-group .btn + .btn {
6031
- margin-left: -1px;
6032
- }
6033
- .monsterinsights-bootstrap-container .modal-footer .btn-block + .btn-block {
6034
- margin-left: 0;
6035
- }
6036
- .monsterinsights-bootstrap-container .modal-scrollbar-measure {
6037
- position: absolute;
6038
- top: -9999px;
6039
- width: 50px;
6040
- height: 50px;
6041
- overflow: scroll;
6042
- }
6043
- @media (min-width: 768px) {
6044
- .monsterinsights-bootstrap-container .modal-dialog {
6045
- width: 600px;
6046
- margin: 30px auto;
6047
- }
6048
- .monsterinsights-bootstrap-container .modal-content {
6049
- -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
6050
- box-shadow: 0 5px 15px rgba(0,0,0,0.5);
6051
- }
6052
- .monsterinsights-bootstrap-container .modal-sm {
6053
- width: 300px;
6054
- }
6055
- }
6056
- @media (min-width: 992px) {
6057
- .monsterinsights-bootstrap-container .modal-lg {
6058
- width: 900px;
6059
- }
6060
- }
6061
- .monsterinsights-bootstrap-container .tooltip {
6062
- position: absolute;
6063
- z-index: 1070;
6064
- display: block;
6065
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6066
- font-style: normal;
6067
- font-weight: 400;
6068
- line-height: 1.42857143;
6069
- line-break: auto;
6070
- text-align: left;
6071
- text-align: start;
6072
- text-decoration: none;
6073
- text-shadow: none;
6074
- text-transform: none;
6075
- letter-spacing: normal;
6076
- word-break: normal;
6077
- word-spacing: normal;
6078
- word-wrap: normal;
6079
- white-space: normal;
6080
- font-size: 12px;
6081
- filter: alpha(opacity=0);
6082
- opacity: 0;
6083
- }
6084
- .monsterinsights-bootstrap-container .tooltip.in {
6085
- filter: alpha(opacity=90);
6086
- opacity: 0.9;
6087
- }
6088
- .monsterinsights-bootstrap-container .tooltip.top {
6089
- padding: 5px 0;
6090
- margin-top: -3px;
6091
- }
6092
- .monsterinsights-bootstrap-container .tooltip.right {
6093
- padding: 0 5px;
6094
- margin-left: 3px;
6095
- }
6096
- .monsterinsights-bootstrap-container .tooltip.bottom {
6097
- padding: 5px 0;
6098
- margin-top: 3px;
6099
- }
6100
- .monsterinsights-bootstrap-container .tooltip.left {
6101
- padding: 0 5px;
6102
- margin-left: -3px;
6103
- }
6104
- .monsterinsights-bootstrap-container .tooltip.top .tooltip-arrow {
6105
- bottom: 0;
6106
- left: 50%;
6107
- margin-left: -5px;
6108
- border-width: 5px 5px 0;
6109
- border-top-color: #000;
6110
- }
6111
- .monsterinsights-bootstrap-container .tooltip.top-left .tooltip-arrow {
6112
- right: 5px;
6113
- bottom: 0;
6114
- margin-bottom: -5px;
6115
- border-width: 5px 5px 0;
6116
- border-top-color: #000;
6117
- }
6118
- .monsterinsights-bootstrap-container .tooltip.top-right .tooltip-arrow {
6119
- bottom: 0;
6120
- left: 5px;
6121
- margin-bottom: -5px;
6122
- border-width: 5px 5px 0;
6123
- border-top-color: #000;
6124
- }
6125
- .monsterinsights-bootstrap-container .tooltip.right .tooltip-arrow {
6126
- top: 50%;
6127
- left: 0;
6128
- margin-top: -5px;
6129
- border-width: 5px 5px 5px 0;
6130
- border-right-color: #000;
6131
- }
6132
- .monsterinsights-bootstrap-container .tooltip.left .tooltip-arrow {
6133
- top: 50%;
6134
- right: 0;
6135
- margin-top: -5px;
6136
- border-width: 5px 0 5px 5px;
6137
- border-left-color: #000;
6138
- }
6139
- .monsterinsights-bootstrap-container .tooltip.bottom .tooltip-arrow {
6140
- top: 0;
6141
- left: 50%;
6142
- margin-left: -5px;
6143
- border-width: 0 5px 5px;
6144
- border-bottom-color: #000;
6145
- }
6146
- .monsterinsights-bootstrap-container .tooltip.bottom-left .tooltip-arrow {
6147
- top: 0;
6148
- right: 5px;
6149
- margin-top: -5px;
6150
- border-width: 0 5px 5px;
6151
- border-bottom-color: #000;
6152
- }
6153
- .monsterinsights-bootstrap-container .tooltip.bottom-right .tooltip-arrow {
6154
- top: 0;
6155
- left: 5px;
6156
- margin-top: -5px;
6157
- border-width: 0 5px 5px;
6158
- border-bottom-color: #000;
6159
- }
6160
- .monsterinsights-bootstrap-container .tooltip-inner {
6161
- max-width: 200px;
6162
- padding: 3px 8px;
6163
- color: #fff;
6164
- text-align: center;
6165
- background-color: #000;
6166
- border-radius: 4px;
6167
- }
6168
- .monsterinsights-bootstrap-container .tooltip-arrow {
6169
- position: absolute;
6170
- width: 0;
6171
- height: 0;
6172
- border-color: transparent;
6173
- border-style: solid;
6174
- }
6175
- .monsterinsights-bootstrap-container .popover {
6176
- position: absolute;
6177
- top: 0;
6178
- left: 0;
6179
- z-index: 1060;
6180
- display: none;
6181
- max-width: 276px;
6182
- padding: 1px;
6183
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6184
- font-style: normal;
6185
- font-weight: 400;
6186
- line-height: 1.42857143;
6187
- line-break: auto;
6188
- text-align: left;
6189
- text-align: start;
6190
- text-decoration: none;
6191
- text-shadow: none;
6192
- text-transform: none;
6193
- letter-spacing: normal;
6194
- word-break: normal;
6195
- word-spacing: normal;
6196
- word-wrap: normal;
6197
- white-space: normal;
6198
- font-size: 14px;
6199
- background-color: #fff;
6200
- background-clip: padding-box;
6201
- border: 1px solid #ccc;
6202
- border: 1px solid rgba(0,0,0,0.2);
6203
- border-radius: 6px;
6204
- -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
6205
- box-shadow: 0 5px 10px rgba(0,0,0,0.2);
6206
- }
6207
- .monsterinsights-bootstrap-container .popover.top {
6208
- margin-top: -10px;
6209
- }
6210
- .monsterinsights-bootstrap-container .popover.right {
6211
- margin-left: 10px;
6212
- }
6213
- .monsterinsights-bootstrap-container .popover.bottom {
6214
- margin-top: 10px;
6215
- }
6216
- .monsterinsights-bootstrap-container .popover.left {
6217
- margin-left: -10px;
6218
- }
6219
- .monsterinsights-bootstrap-container .popover > .arrow {
6220
- border-width: 11px;
6221
- }
6222
- .monsterinsights-bootstrap-container .popover > .arrow,
6223
- .monsterinsights-bootstrap-container .popover > .arrow:after {
6224
- position: absolute;
6225
- display: block;
6226
- width: 0;
6227
- height: 0;
6228
- border-color: transparent;
6229
- border-style: solid;
6230
- }
6231
- .monsterinsights-bootstrap-container .popover > .arrow:after {
6232
- content: "";
6233
- border-width: 10px;
6234
- }
6235
- .monsterinsights-bootstrap-container .popover.top > .arrow {
6236
- bottom: -11px;
6237
- left: 50%;
6238
- margin-left: -11px;
6239
- border-top-color: #999999;
6240
- border-top-color: rgba(0,0,0,0.25);
6241
- border-bottom-width: 0;
6242
- }
6243
- .monsterinsights-bootstrap-container .popover.top > .arrow:after {
6244
- bottom: 1px;
6245
- margin-left: -10px;
6246
- content: " ";
6247
- border-top-color: #fff;
6248
- border-bottom-width: 0;
6249
- }
6250
- .monsterinsights-bootstrap-container .popover.right > .arrow {
6251
- top: 50%;
6252
- left: -11px;
6253
- margin-top: -11px;
6254
- border-right-color: #999999;
6255
- border-right-color: rgba(0,0,0,0.25);
6256
- border-left-width: 0;
6257
- }
6258
- .monsterinsights-bootstrap-container .popover.right > .arrow:after {
6259
- bottom: -10px;
6260
- left: 1px;
6261
- content: " ";
6262
- border-right-color: #fff;
6263
- border-left-width: 0;
6264
- }
6265
- .monsterinsights-bootstrap-container .popover.bottom > .arrow {
6266
- top: -11px;
6267
- left: 50%;
6268
- margin-left: -11px;
6269
- border-top-width: 0;
6270
- border-bottom-color: #999999;
6271
- border-bottom-color: rgba(0,0,0,0.25);
6272
- }
6273
- .monsterinsights-bootstrap-container .popover.bottom > .arrow:after {
6274
- top: 1px;
6275
- margin-left: -10px;
6276
- content: " ";
6277
- border-top-width: 0;
6278
- border-bottom-color: #fff;
6279
- }
6280
- .monsterinsights-bootstrap-container .popover.left > .arrow {
6281
- top: 50%;
6282
- right: -11px;
6283
- margin-top: -11px;
6284
- border-right-width: 0;
6285
- border-left-color: #999999;
6286
- border-left-color: rgba(0,0,0,0.25);
6287
- }
6288
- .monsterinsights-bootstrap-container .popover.left > .arrow:after {
6289
- right: 1px;
6290
- bottom: -10px;
6291
- content: " ";
6292
- border-right-width: 0;
6293
- border-left-color: #fff;
6294
- }
6295
- .monsterinsights-bootstrap-container .popover-title {
6296
- padding: 8px 14px;
6297
- margin: 0;
6298
- font-size: 14px;
6299
- background-color: #f7f7f7;
6300
- border-bottom: 1px solid #ebebeb;
6301
- border-radius: 5px 5px 0 0;
6302
- }
6303
- .monsterinsights-bootstrap-container .popover-content {
6304
- padding: 9px 14px;
6305
- }
6306
- .monsterinsights-bootstrap-container .carousel {
6307
- position: relative;
6308
- }
6309
- .monsterinsights-bootstrap-container .carousel-inner {
6310
- position: relative;
6311
- width: 100%;
6312
- overflow: hidden;
6313
- }
6314
- .monsterinsights-bootstrap-container .carousel-inner > .item {
6315
- position: relative;
6316
- display: none;
6317
- -webkit-transition: 0.6s ease-in-out left;
6318
- -o-transition: 0.6s ease-in-out left;
6319
- transition: 0.6s ease-in-out left;
6320
- }
6321
- .monsterinsights-bootstrap-container .carousel-inner > .item > img,
6322
- .monsterinsights-bootstrap-container .carousel-inner > .item > a > img {
6323
- line-height: 1;
6324
- }
6325
- @media all and (transform-3d),(-webkit-transform-3d) {
6326
- .monsterinsights-bootstrap-container .carousel-inner > .item {
6327
- -webkit-transition: -webkit-transform 0.6s ease-in-out;
6328
- -o-transition: -o-transform 0.6s ease-in-out;
6329
- transition: -webkit-transform 0.6s ease-in-out;
6330
- transition: transform 0.6s ease-in-out;
6331
- transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
6332
- -webkit-backface-visibility: hidden;
6333
- backface-visibility: hidden;
6334
- -webkit-perspective: 1000px;
6335
- perspective: 1000px;
6336
- }
6337
- .monsterinsights-bootstrap-container .carousel-inner > .item.next,
6338
- .monsterinsights-bootstrap-container .carousel-inner > .item.active.right {
6339
- -webkit-transform: translate3d(100%,0,0);
6340
- transform: translate3d(100%,0,0);
6341
- left: 0;
6342
- }
6343
- .monsterinsights-bootstrap-container .carousel-inner > .item.prev,
6344
- .monsterinsights-bootstrap-container .carousel-inner > .item.active.left {
6345
- -webkit-transform: translate3d(-100%,0,0);
6346
- transform: translate3d(-100%,0,0);
6347
- left: 0;
6348
- }
6349
- .monsterinsights-bootstrap-container .carousel-inner > .item.next.left,
6350
- .monsterinsights-bootstrap-container .carousel-inner > .item.prev.right,
6351
- .monsterinsights-bootstrap-container .carousel-inner > .item.active {
6352
- -webkit-transform: translate3d(0,0,0);
6353
- transform: translate3d(0,0,0);
6354
- left: 0;
6355
- }
6356
- }
6357
- .monsterinsights-bootstrap-container .carousel-inner > .active,
6358
- .monsterinsights-bootstrap-container .carousel-inner > .next,
6359
- .monsterinsights-bootstrap-container .carousel-inner > .prev {
6360
- display: block;
6361
- }
6362
- .monsterinsights-bootstrap-container .carousel-inner > .active {
6363
- left: 0;
6364
- }
6365
- .monsterinsights-bootstrap-container .carousel-inner > .next,
6366
- .monsterinsights-bootstrap-container .carousel-inner > .prev {
6367
- position: absolute;
6368
- top: 0;
6369
- width: 100%;
6370
- }
6371
- .monsterinsights-bootstrap-container .carousel-inner > .next {
6372
- left: 100%;
6373
- }
6374
- .monsterinsights-bootstrap-container .carousel-inner > .prev {
6375
- left: -100%;
6376
- }
6377
- .monsterinsights-bootstrap-container .carousel-inner > .next.left,
6378
- .monsterinsights-bootstrap-container .carousel-inner > .prev.right {
6379
- left: 0;
6380
- }
6381
- .monsterinsights-bootstrap-container .carousel-inner > .active.left {
6382
- left: -100%;
6383
- }
6384
- .monsterinsights-bootstrap-container .carousel-inner > .active.right {
6385
- left: 100%;
6386
- }
6387
- .monsterinsights-bootstrap-container .carousel-control {
6388
- position: absolute;
6389
- top: 0;
6390
- bottom: 0;
6391
- left: 0;
6392
- width: 15%;
6393
- font-size: 20px;
6394
- color: #fff;
6395
- text-align: center;
6396
- text-shadow: 0 1px 2px rgba(0,0,0,0.6);
6397
- background-color: rgba(0,0,0,0);
6398
- filter: alpha(opacity=50);
6399
- opacity: 0.5;
6400
- }
6401
- .monsterinsights-bootstrap-container .carousel-control.left {
6402
- background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);
6403
- background-image: -o-linear-gradient(left,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);
6404
- background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));
6405
- background-image: linear-gradient(to right,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);
6406
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);
6407
- background-repeat: repeat-x;
6408
- }
6409
- .monsterinsights-bootstrap-container .carousel-control.right {
6410
- right: 0;
6411
- left: auto;
6412
- background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);
6413
- background-image: -o-linear-gradient(left,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);
6414
- background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));
6415
- background-image: linear-gradient(to right,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);
6416
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);
6417
- background-repeat: repeat-x;
6418
- }
6419
- .monsterinsights-bootstrap-container .carousel-control:hover,
6420
- .monsterinsights-bootstrap-container .carousel-control:focus {
6421
- color: #fff;
6422
- text-decoration: none;
6423
- outline: 0;
6424
- filter: alpha(opacity=90);
6425
- opacity: 0.9;
6426
- }
6427
- .monsterinsights-bootstrap-container .carousel-control .icon-prev,
6428
- .monsterinsights-bootstrap-container .carousel-control .icon-next,
6429
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,
6430
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right {
6431
- position: absolute;
6432
- top: 50%;
6433
- z-index: 5;
6434
- display: inline-block;
6435
- margin-top: -10px;
6436
- }
6437
- .monsterinsights-bootstrap-container .carousel-control .icon-prev,
6438
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left {
6439
- left: 50%;
6440
- margin-left: -10px;
6441
- }
6442
- .monsterinsights-bootstrap-container .carousel-control .icon-next,
6443
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right {
6444
- right: 50%;
6445
- margin-right: -10px;
6446
- }
6447
- .monsterinsights-bootstrap-container .carousel-control .icon-prev,
6448
- .monsterinsights-bootstrap-container .carousel-control .icon-next {
6449
- width: 20px;
6450
- height: 20px;
6451
- font-family: serif;
6452
- line-height: 1;
6453
- }
6454
- .monsterinsights-bootstrap-container .carousel-control .icon-prev:before {
6455
- content: "\2039";
6456
- }
6457
- .monsterinsights-bootstrap-container .carousel-control .icon-next:before {
6458
- content: "\203a";
6459
- }
6460
- .monsterinsights-bootstrap-container .carousel-indicators {
6461
- position: absolute;
6462
- bottom: 10px;
6463
- left: 50%;
6464
- z-index: 15;
6465
- width: 60%;
6466
- padding-left: 0;
6467
- margin-left: -30%;
6468
- text-align: center;
6469
- list-style: none;
6470
- }
6471
- .monsterinsights-bootstrap-container .carousel-indicators li {
6472
- display: inline-block;
6473
- width: 10px;
6474
- height: 10px;
6475
- margin: 1px;
6476
- text-indent: -999px;
6477
- cursor: pointer;
6478
- background-color: #000 \9;
6479
- background-color: rgba(0,0,0,0);
6480
- border: 1px solid #fff;
6481
- border-radius: 10px;
6482
- }
6483
- .monsterinsights-bootstrap-container .carousel-indicators .active {
6484
- width: 12px;
6485
- height: 12px;
6486
- margin: 0;
6487
- background-color: #fff;
6488
- }
6489
- .monsterinsights-bootstrap-container .carousel-caption {
6490
- position: absolute;
6491
- right: 15%;
6492
- bottom: 20px;
6493
- left: 15%;
6494
- z-index: 10;
6495
- padding-top: 20px;
6496
- padding-bottom: 20px;
6497
- color: #fff;
6498
- text-align: center;
6499
- text-shadow: 0 1px 2px rgba(0,0,0,0.6);
6500
- }
6501
- .monsterinsights-bootstrap-container .carousel-caption .btn {
6502
- text-shadow: none;
6503
- }
6504
- @media screen and (min-width: 768px) {
6505
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,
6506
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right,
6507
- .monsterinsights-bootstrap-container .carousel-control .icon-prev,
6508
- .monsterinsights-bootstrap-container .carousel-control .icon-next {
6509
- width: 30px;
6510
- height: 30px;
6511
- margin-top: -10px;
6512
- font-size: 30px;
6513
- }
6514
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,
6515
- .monsterinsights-bootstrap-container .carousel-control .icon-prev {
6516
- margin-left: -10px;
6517
- }
6518
- .monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right,
6519
- .monsterinsights-bootstrap-container .carousel-control .icon-next {
6520
- margin-right: -10px;
6521
- }
6522
- .monsterinsights-bootstrap-container .carousel-caption {
6523
- right: 20%;
6524
- left: 20%;
6525
- padding-bottom: 30px;
6526
- }
6527
- .monsterinsights-bootstrap-container .carousel-indicators {
6528
- bottom: 20px;
6529
- }
6530
- }
6531
- .monsterinsights-bootstrap-container .clearfix:before,
6532
- .monsterinsights-bootstrap-container .clearfix:after,
6533
- .monsterinsights-bootstrap-container .dl-horizontal dd:before,
6534
- .monsterinsights-bootstrap-container .dl-horizontal dd:after,
6535
- .monsterinsights-bootstrap-container .container:before,
6536
- .monsterinsights-bootstrap-container .container:after,
6537
- .monsterinsights-bootstrap-container .container-fluid:before,
6538
- .monsterinsights-bootstrap-container .container-fluid:after,
6539
- .monsterinsights-bootstrap-container .row:before,
6540
- .monsterinsights-bootstrap-container .row:after,
6541
- .monsterinsights-bootstrap-container .form-horizontal .form-group:before,
6542
- .monsterinsights-bootstrap-container .form-horizontal .form-group:after,
6543
- .monsterinsights-bootstrap-container .btn-toolbar:before,
6544
- .monsterinsights-bootstrap-container .btn-toolbar:after,
6545
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:before,
6546
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:after,
6547
- .monsterinsights-bootstrap-container .nav:before,
6548
- .monsterinsights-bootstrap-container .nav:after,
6549
- .monsterinsights-bootstrap-container .navbar:before,
6550
- .monsterinsights-bootstrap-container .navbar:after,
6551
- .monsterinsights-bootstrap-container .navbar-header:before,
6552
- .monsterinsights-bootstrap-container .navbar-header:after,
6553
- .monsterinsights-bootstrap-container .navbar-collapse:before,
6554
- .monsterinsights-bootstrap-container .navbar-collapse:after,
6555
- .monsterinsights-bootstrap-container .pager:before,
6556
- .monsterinsights-bootstrap-container .pager:after,
6557
- .monsterinsights-bootstrap-container .panel-body:before,
6558
- .monsterinsights-bootstrap-container .panel-body:after,
6559
- .monsterinsights-bootstrap-container .modal-header:before,
6560
- .monsterinsights-bootstrap-container .modal-header:after,
6561
- .monsterinsights-bootstrap-container .modal-footer:before,
6562
- .monsterinsights-bootstrap-container .modal-footer:after {
6563
- display: table;
6564
- content: " ";
6565
- }
6566
- .monsterinsights-bootstrap-container .clearfix:after,
6567
- .monsterinsights-bootstrap-container .dl-horizontal dd:after,
6568
- .monsterinsights-bootstrap-container .container:after,
6569
- .monsterinsights-bootstrap-container .container-fluid:after,
6570
- .monsterinsights-bootstrap-container .row:after,
6571
- .monsterinsights-bootstrap-container .form-horizontal .form-group:after,
6572
- .monsterinsights-bootstrap-container .btn-toolbar:after,
6573
- .monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:after,
6574
- .monsterinsights-bootstrap-container .nav:after,
6575
- .monsterinsights-bootstrap-container .navbar:after,
6576
- .monsterinsights-bootstrap-container .navbar-header:after,
6577
- .monsterinsights-bootstrap-container .navbar-collapse:after,
6578
- .monsterinsights-bootstrap-container .pager:after,
6579
- .monsterinsights-bootstrap-container .panel-body:after,
6580
- .monsterinsights-bootstrap-container .modal-header:after,
6581
- .monsterinsights-bootstrap-container .modal-footer:after {
6582
- clear: both;
6583
- }
6584
- .monsterinsights-bootstrap-container .center-block {
6585
- display: block;
6586
- margin-right: auto;
6587
- margin-left: auto;
6588
- }
6589
- .monsterinsights-bootstrap-container .pull-right {
6590
- float: right !important;
6591
- }
6592
- .monsterinsights-bootstrap-container .pull-left {
6593
- float: left !important;
6594
- }
6595
- .monsterinsights-bootstrap-container .hide {
6596
- display: none !important;
6597
- }
6598
- .monsterinsights-bootstrap-container .show {
6599
- display: block !important;
6600
- }
6601
- .monsterinsights-bootstrap-container .invisible {
6602
- visibility: hidden;
6603
- }
6604
- .monsterinsights-bootstrap-container .text-hide {
6605
- font: 0/0 a;
6606
- color: transparent;
6607
- text-shadow: none;
6608
- background-color: transparent;
6609
- border: 0;
6610
- }
6611
- .monsterinsights-bootstrap-container .hidden {
6612
- display: none !important;
6613
- }
6614
- .monsterinsights-bootstrap-container .affix {
6615
- position: fixed;
6616
- }
6617
- @-ms-viewport {
6618
- width: device-width;
6619
- }
6620
- .monsterinsights-bootstrap-container .visible-xs,
6621
- .monsterinsights-bootstrap-container .visible-sm,
6622
- .monsterinsights-bootstrap-container .visible-md,
6623
- .monsterinsights-bootstrap-container .visible-lg {
6624
- display: none !important;
6625
- }
6626
- .monsterinsights-bootstrap-container .visible-xs-block,
6627
- .monsterinsights-bootstrap-container .visible-xs-inline,
6628
- .monsterinsights-bootstrap-container .visible-xs-inline-block,
6629
- .monsterinsights-bootstrap-container .visible-sm-block,
6630
- .monsterinsights-bootstrap-container .visible-sm-inline,
6631
- .monsterinsights-bootstrap-container .visible-sm-inline-block,
6632
- .monsterinsights-bootstrap-container .visible-md-block,
6633
- .monsterinsights-bootstrap-container .visible-md-inline,
6634
- .monsterinsights-bootstrap-container .visible-md-inline-block,
6635
- .monsterinsights-bootstrap-container .visible-lg-block,
6636
- .monsterinsights-bootstrap-container .visible-lg-inline,
6637
- .monsterinsights-bootstrap-container .visible-lg-inline-block {
6638
- display: none !important;
6639
- }
6640
- @media (max-width: 767px) {
6641
- .monsterinsights-bootstrap-container .visible-xs {
6642
- display: block !important;
6643
- }
6644
- .monsterinsights-bootstrap-container table.visible-xs {
6645
- display: table !important;
6646
- }
6647
- .monsterinsights-bootstrap-container tr.visible-xs {
6648
- display: table-row !important;
6649
- }
6650
- .monsterinsights-bootstrap-container th.visible-xs,
6651
- .monsterinsights-bootstrap-container td.visible-xs {
6652
- display: table-cell !important;
6653
- }
6654
- }
6655
- @media (max-width: 767px) {
6656
- .monsterinsights-bootstrap-container .visible-xs-block {
6657
- display: block !important;
6658
- }
6659
- }
6660
- @media (max-width: 767px) {
6661
- .monsterinsights-bootstrap-container .visible-xs-inline {
6662
- display: inline !important;
6663
- }
6664
- }
6665
- @media (max-width: 767px) {
6666
- .monsterinsights-bootstrap-container .visible-xs-inline-block {
6667
- display: inline-block !important;
6668
- }
6669
- }
6670
- @media (min-width: 768px) and (max-width: 991px) {
6671
- .monsterinsights-bootstrap-container .visible-sm {
6672
- display: block !important;
6673
- }
6674
- .monsterinsights-bootstrap-container table.visible-sm {
6675
- display: table !important;
6676
- }
6677
- .monsterinsights-bootstrap-container tr.visible-sm {
6678
- display: table-row !important;
6679
- }
6680
- .monsterinsights-bootstrap-container th.visible-sm,
6681
- .monsterinsights-bootstrap-container td.visible-sm {
6682
- display: table-cell !important;
6683
- }
6684
- }
6685
- @media (min-width: 768px) and (max-width: 991px) {
6686
- .monsterinsights-bootstrap-container .visible-sm-block {
6687
- display: block !important;
6688
- }
6689
- }
6690
- @media (min-width: 768px) and (max-width: 991px) {
6691
- .monsterinsights-bootstrap-container .visible-sm-inline {
6692
- display: inline !important;
6693
- }
6694
- }
6695
- @media (min-width: 768px) and (max-width: 991px) {
6696
- .monsterinsights-bootstrap-container .visible-sm-inline-block {
6697
- display: inline-block !important;
6698
- }
6699
- }
6700
- @media (min-width: 992px) and (max-width: 1199px) {
6701
- .monsterinsights-bootstrap-container .visible-md {
6702
- display: block !important;
6703
- }
6704
- .monsterinsights-bootstrap-container table.visible-md {
6705
- display: table !important;
6706
- }
6707
- .monsterinsights-bootstrap-container tr.visible-md {
6708
- display: table-row !important;
6709
- }
6710
- .monsterinsights-bootstrap-container th.visible-md,
6711
- .monsterinsights-bootstrap-container td.visible-md {
6712
- display: table-cell !important;
6713
- }
6714
- }
6715
- @media (min-width: 992px) and (max-width: 1199px) {
6716
- .monsterinsights-bootstrap-container .visible-md-block {
6717
- display: block !important;
6718
- }
6719
- }
6720
- @media (min-width: 992px) and (max-width: 1199px) {
6721
- .monsterinsights-bootstrap-container .visible-md-inline {
6722
- display: inline !important;
6723
- }
6724
- }
6725
- @media (min-width: 992px) and (max-width: 1199px) {
6726
- .monsterinsights-bootstrap-container .visible-md-inline-block {
6727
- display: inline-block !important;
6728
- }
6729
- }
6730
- @media (min-width: 1200px) {
6731
- .monsterinsights-bootstrap-container .visible-lg {
6732
- display: block !important;
6733
- }
6734
- .monsterinsights-bootstrap-container table.visible-lg {
6735
- display: table !important;
6736
- }
6737
- .monsterinsights-bootstrap-container tr.visible-lg {
6738
- display: table-row !important;
6739
- }
6740
- .monsterinsights-bootstrap-container th.visible-lg,
6741
- .monsterinsights-bootstrap-container td.visible-lg {
6742
- display: table-cell !important;
6743
- }
6744
- }
6745
- @media (min-width: 1200px) {
6746
- .monsterinsights-bootstrap-container .visible-lg-block {
6747
- display: block !important;
6748
- }
6749
- }
6750
- @media (min-width: 1200px) {
6751
- .monsterinsights-bootstrap-container .visible-lg-inline {
6752
- display: inline !important;
6753
- }
6754
- }
6755
- @media (min-width: 1200px) {
6756
- .monsterinsights-bootstrap-container .visible-lg-inline-block {
6757
- display: inline-block !important;
6758
- }
6759
- }
6760
- @media (max-width: 767px) {
6761
- .monsterinsights-bootstrap-container .hidden-xs {
6762
- display: none !important;
6763
- }
6764
- }
6765
- @media (min-width: 768px) and (max-width: 991px) {
6766
- .monsterinsights-bootstrap-container .hidden-sm {
6767
- display: none !important;
6768
- }
6769
- }
6770
- @media (min-width: 992px) and (max-width: 1199px) {
6771
- .monsterinsights-bootstrap-container .hidden-md {
6772
- display: none !important;
6773
- }
6774
- }
6775
- @media (min-width: 1200px) {
6776
- .monsterinsights-bootstrap-container .hidden-lg {
6777
- display: none !important;
6778
- }
6779
- }
6780
- .monsterinsights-bootstrap-container .visible-print {
6781
- display: none !important;
6782
- }
6783
- @media print {
6784
- .monsterinsights-bootstrap-container .visible-print {
6785
- display: block !important;
6786
- }
6787
- .monsterinsights-bootstrap-container table.visible-print {
6788
- display: table !important;
6789
- }
6790
- .monsterinsights-bootstrap-container tr.visible-print {
6791
- display: table-row !important;
6792
- }
6793
- .monsterinsights-bootstrap-container th.visible-print,
6794
- .monsterinsights-bootstrap-container td.visible-print {
6795
- display: table-cell !important;
6796
- }
6797
- }
6798
- .monsterinsights-bootstrap-container .visible-print-block {
6799
- display: none !important;
6800
- }
6801
- @media print {
6802
- .monsterinsights-bootstrap-container .visible-print-block {
6803
- display: block !important;
6804
- }
6805
- }
6806
- .monsterinsights-bootstrap-container .visible-print-inline {
6807
- display: none !important;
6808
- }
6809
- @media print {
6810
- .monsterinsights-bootstrap-container .visible-print-inline {
6811
- display: inline !important;
6812
- }
6813
- }
6814
- .monsterinsights-bootstrap-container .visible-print-inline-block {
6815
- display: none !important;
6816
- }
6817
- @media print {
6818
- .monsterinsights-bootstrap-container .visible-print-inline-block {
6819
- display: inline-block !important;
6820
- }
6821
- }
6822
- @media print {
6823
- .monsterinsights-bootstrap-container .hidden-print {
6824
- display: none !important;
6825
- }
6826
- }
6827
- .monsterinsights-bootstrap-container .btn-default,
6828
- .monsterinsights-bootstrap-container .btn-primary,
6829
- .monsterinsights-bootstrap-container .btn-success,
6830
- .monsterinsights-bootstrap-container .btn-info,
6831
- .monsterinsights-bootstrap-container .btn-warning,
6832
- .monsterinsights-bootstrap-container .btn-danger {
6833
- text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
6834
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 1px rgba(0,0,0,0.075);
6835
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 1px rgba(0,0,0,0.075);
6836
- }
6837
- .monsterinsights-bootstrap-container .btn-default:active,
6838
- .monsterinsights-bootstrap-container .btn-primary:active,
6839
- .monsterinsights-bootstrap-container .btn-success:active,
6840
- .monsterinsights-bootstrap-container .btn-info:active,
6841
- .monsterinsights-bootstrap-container .btn-warning:active,
6842
- .monsterinsights-bootstrap-container .btn-danger:active,
6843
- .monsterinsights-bootstrap-container .btn-default.active,
6844
- .monsterinsights-bootstrap-container .btn-primary.active,
6845
- .monsterinsights-bootstrap-container .btn-success.active,
6846
- .monsterinsights-bootstrap-container .btn-info.active,
6847
- .monsterinsights-bootstrap-container .btn-warning.active,
6848
- .monsterinsights-bootstrap-container .btn-danger.active {
6849
- -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
6850
- box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
6851
- }
6852
- .monsterinsights-bootstrap-container .btn-default.disabled,
6853
- .monsterinsights-bootstrap-container .btn-primary.disabled,
6854
- .monsterinsights-bootstrap-container .btn-success.disabled,
6855
- .monsterinsights-bootstrap-container .btn-info.disabled,
6856
- .monsterinsights-bootstrap-container .btn-warning.disabled,
6857
- .monsterinsights-bootstrap-container .btn-danger.disabled,
6858
- .monsterinsights-bootstrap-container .btn-default[disabled],
6859
- .monsterinsights-bootstrap-container .btn-primary[disabled],
6860
- .monsterinsights-bootstrap-container .btn-success[disabled],
6861
- .monsterinsights-bootstrap-container .btn-info[disabled],
6862
- .monsterinsights-bootstrap-container .btn-warning[disabled],
6863
- .monsterinsights-bootstrap-container .btn-danger[disabled],
6864
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default,
6865
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary,
6866
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success,
6867
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info,
6868
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning,
6869
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger {
6870
- -webkit-box-shadow: none;
6871
- box-shadow: none;
6872
- }
6873
- .monsterinsights-bootstrap-container .btn-default .badge,
6874
- .monsterinsights-bootstrap-container .btn-primary .badge,
6875
- .monsterinsights-bootstrap-container .btn-success .badge,
6876
- .monsterinsights-bootstrap-container .btn-info .badge,
6877
- .monsterinsights-bootstrap-container .btn-warning .badge,
6878
- .monsterinsights-bootstrap-container .btn-danger .badge {
6879
- text-shadow: none;
6880
- }
6881
- .monsterinsights-bootstrap-container .btn:active,
6882
- .monsterinsights-bootstrap-container .btn.active {
6883
- background-image: none;
6884
- }
6885
- .monsterinsights-bootstrap-container .btn-default {
6886
- background-image: -webkit-linear-gradient(top,#fff 0%,#e0e0e0 100%);
6887
- background-image: -o-linear-gradient(top,#fff 0%,#e0e0e0 100%);
6888
- background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));
6889
- background-image: linear-gradient(to bottom,#fff 0%,#e0e0e0 100%);
6890
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);
6891
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
6892
- background-repeat: repeat-x;
6893
- border-color: #dbdbdb;
6894
- text-shadow: 0 1px 0 #fff;
6895
- border-color: #ccc;
6896
- }
6897
- .monsterinsights-bootstrap-container .btn-default:hover,
6898
- .monsterinsights-bootstrap-container .btn-default:focus {
6899
- background-color: #e0e0e0;
6900
- background-position: 0 -15px;
6901
- }
6902
- .monsterinsights-bootstrap-container .btn-default:active,
6903
- .monsterinsights-bootstrap-container .btn-default.active {
6904
- background-color: #e0e0e0;
6905
- border-color: #dbdbdb;
6906
- }
6907
- .monsterinsights-bootstrap-container .btn-default.disabled,
6908
- .monsterinsights-bootstrap-container .btn-default[disabled],
6909
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default,
6910
- .monsterinsights-bootstrap-container .btn-default.disabled:hover,
6911
- .monsterinsights-bootstrap-container .btn-default[disabled]:hover,
6912
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default:hover,
6913
- .monsterinsights-bootstrap-container .btn-default.disabled:focus,
6914
- .monsterinsights-bootstrap-container .btn-default[disabled]:focus,
6915
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default:focus,
6916
- .monsterinsights-bootstrap-container .btn-default.disabled.focus,
6917
- .monsterinsights-bootstrap-container .btn-default[disabled].focus,
6918
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default.focus,
6919
- .monsterinsights-bootstrap-container .btn-default.disabled:active,
6920
- .monsterinsights-bootstrap-container .btn-default[disabled]:active,
6921
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default:active,
6922
- .monsterinsights-bootstrap-container .btn-default.disabled.active,
6923
- .monsterinsights-bootstrap-container .btn-default[disabled].active,
6924
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-default.active {
6925
- background-color: #e0e0e0;
6926
- background-image: none;
6927
- }
6928
- .monsterinsights-bootstrap-container .btn-primary {
6929
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#265a88 100%);
6930
- background-image: -o-linear-gradient(top,#337ab7 0%,#265a88 100%);
6931
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));
6932
- background-image: linear-gradient(to bottom,#337ab7 0%,#265a88 100%);
6933
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff265a88',GradientType=0);
6934
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
6935
- background-repeat: repeat-x;
6936
- border-color: #245580;
6937
- }
6938
- .monsterinsights-bootstrap-container .btn-primary:hover,
6939
- .monsterinsights-bootstrap-container .btn-primary:focus {
6940
- background-color: #265a88;
6941
- background-position: 0 -15px;
6942
- }
6943
- .monsterinsights-bootstrap-container .btn-primary:active,
6944
- .monsterinsights-bootstrap-container .btn-primary.active {
6945
- background-color: #265a88;
6946
- border-color: #245580;
6947
- }
6948
- .monsterinsights-bootstrap-container .btn-primary.disabled,
6949
- .monsterinsights-bootstrap-container .btn-primary[disabled],
6950
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary,
6951
- .monsterinsights-bootstrap-container .btn-primary.disabled:hover,
6952
- .monsterinsights-bootstrap-container .btn-primary[disabled]:hover,
6953
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:hover,
6954
- .monsterinsights-bootstrap-container .btn-primary.disabled:focus,
6955
- .monsterinsights-bootstrap-container .btn-primary[disabled]:focus,
6956
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:focus,
6957
- .monsterinsights-bootstrap-container .btn-primary.disabled.focus,
6958
- .monsterinsights-bootstrap-container .btn-primary[disabled].focus,
6959
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.focus,
6960
- .monsterinsights-bootstrap-container .btn-primary.disabled:active,
6961
- .monsterinsights-bootstrap-container .btn-primary[disabled]:active,
6962
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:active,
6963
- .monsterinsights-bootstrap-container .btn-primary.disabled.active,
6964
- .monsterinsights-bootstrap-container .btn-primary[disabled].active,
6965
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.active {
6966
- background-color: #265a88;
6967
- background-image: none;
6968
- }
6969
- .monsterinsights-bootstrap-container .btn-success {
6970
- background-image: -webkit-linear-gradient(top,#5cb85c 0%,#419641 100%);
6971
- background-image: -o-linear-gradient(top,#5cb85c 0%,#419641 100%);
6972
- background-image: -webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));
6973
- background-image: linear-gradient(to bottom,#5cb85c 0%,#419641 100%);
6974
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);
6975
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
6976
- background-repeat: repeat-x;
6977
- border-color: #3e8f3e;
6978
- }
6979
- .monsterinsights-bootstrap-container .btn-success:hover,
6980
- .monsterinsights-bootstrap-container .btn-success:focus {
6981
- background-color: #419641;
6982
- background-position: 0 -15px;
6983
- }
6984
- .monsterinsights-bootstrap-container .btn-success:active,
6985
- .monsterinsights-bootstrap-container .btn-success.active {
6986
- background-color: #419641;
6987
- border-color: #3e8f3e;
6988
- }
6989
- .monsterinsights-bootstrap-container .btn-success.disabled,
6990
- .monsterinsights-bootstrap-container .btn-success[disabled],
6991
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success,
6992
- .monsterinsights-bootstrap-container .btn-success.disabled:hover,
6993
- .monsterinsights-bootstrap-container .btn-success[disabled]:hover,
6994
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success:hover,
6995
- .monsterinsights-bootstrap-container .btn-success.disabled:focus,
6996
- .monsterinsights-bootstrap-container .btn-success[disabled]:focus,
6997
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success:focus,
6998
- .monsterinsights-bootstrap-container .btn-success.disabled.focus,
6999
- .monsterinsights-bootstrap-container .btn-success[disabled].focus,
7000
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success.focus,
7001
- .monsterinsights-bootstrap-container .btn-success.disabled:active,
7002
- .monsterinsights-bootstrap-container .btn-success[disabled]:active,
7003
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success:active,
7004
- .monsterinsights-bootstrap-container .btn-success.disabled.active,
7005
- .monsterinsights-bootstrap-container .btn-success[disabled].active,
7006
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-success.active {
7007
- background-color: #419641;
7008
- background-image: none;
7009
- }
7010
- .monsterinsights-bootstrap-container .btn-info {
7011
- background-image: -webkit-linear-gradient(top,#5bc0de 0%,#2aabd2 100%);
7012
- background-image: -o-linear-gradient(top,#5bc0de 0%,#2aabd2 100%);
7013
- background-image: -webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));
7014
- background-image: linear-gradient(to bottom,#5bc0de 0%,#2aabd2 100%);
7015
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);
7016
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
7017
- background-repeat: repeat-x;
7018
- border-color: #28a4c9;
7019
- }
7020
- .monsterinsights-bootstrap-container .btn-info:hover,
7021
- .monsterinsights-bootstrap-container .btn-info:focus {
7022
- background-color: #2aabd2;
7023
- background-position: 0 -15px;
7024
- }
7025
- .monsterinsights-bootstrap-container .btn-info:active,
7026
- .monsterinsights-bootstrap-container .btn-info.active {
7027
- background-color: #2aabd2;
7028
- border-color: #28a4c9;
7029
- }
7030
- .monsterinsights-bootstrap-container .btn-info.disabled,
7031
- .monsterinsights-bootstrap-container .btn-info[disabled],
7032
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info,
7033
- .monsterinsights-bootstrap-container .btn-info.disabled:hover,
7034
- .monsterinsights-bootstrap-container .btn-info[disabled]:hover,
7035
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info:hover,
7036
- .monsterinsights-bootstrap-container .btn-info.disabled:focus,
7037
- .monsterinsights-bootstrap-container .btn-info[disabled]:focus,
7038
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info:focus,
7039
- .monsterinsights-bootstrap-container .btn-info.disabled.focus,
7040
- .monsterinsights-bootstrap-container .btn-info[disabled].focus,
7041
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info.focus,
7042
- .monsterinsights-bootstrap-container .btn-info.disabled:active,
7043
- .monsterinsights-bootstrap-container .btn-info[disabled]:active,
7044
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info:active,
7045
- .monsterinsights-bootstrap-container .btn-info.disabled.active,
7046
- .monsterinsights-bootstrap-container .btn-info[disabled].active,
7047
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-info.active {
7048
- background-color: #2aabd2;
7049
- background-image: none;
7050
- }
7051
- .monsterinsights-bootstrap-container .btn-warning {
7052
- background-image: -webkit-linear-gradient(top,#f0ad4e 0%,#eb9316 100%);
7053
- background-image: -o-linear-gradient(top,#f0ad4e 0%,#eb9316 100%);
7054
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));
7055
- background-image: linear-gradient(to bottom,#f0ad4e 0%,#eb9316 100%);
7056
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);
7057
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
7058
- background-repeat: repeat-x;
7059
- border-color: #e38d13;
7060
- }
7061
- .monsterinsights-bootstrap-container .btn-warning:hover,
7062
- .monsterinsights-bootstrap-container .btn-warning:focus {
7063
- background-color: #eb9316;
7064
- background-position: 0 -15px;
7065
- }
7066
- .monsterinsights-bootstrap-container .btn-warning:active,
7067
- .monsterinsights-bootstrap-container .btn-warning.active {
7068
- background-color: #eb9316;
7069
- border-color: #e38d13;
7070
- }
7071
- .monsterinsights-bootstrap-container .btn-warning.disabled,
7072
- .monsterinsights-bootstrap-container .btn-warning[disabled],
7073
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning,
7074
- .monsterinsights-bootstrap-container .btn-warning.disabled:hover,
7075
- .monsterinsights-bootstrap-container .btn-warning[disabled]:hover,
7076
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:hover,
7077
- .monsterinsights-bootstrap-container .btn-warning.disabled:focus,
7078
- .monsterinsights-bootstrap-container .btn-warning[disabled]:focus,
7079
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:focus,
7080
- .monsterinsights-bootstrap-container .btn-warning.disabled.focus,
7081
- .monsterinsights-bootstrap-container .btn-warning[disabled].focus,
7082
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.focus,
7083
- .monsterinsights-bootstrap-container .btn-warning.disabled:active,
7084
- .monsterinsights-bootstrap-container .btn-warning[disabled]:active,
7085
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:active,
7086
- .monsterinsights-bootstrap-container .btn-warning.disabled.active,
7087
- .monsterinsights-bootstrap-container .btn-warning[disabled].active,
7088
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.active {
7089
- background-color: #eb9316;
7090
- background-image: none;
7091
- }
7092
- .monsterinsights-bootstrap-container .btn-danger {
7093
- background-image: -webkit-linear-gradient(top,#d9534f 0%,#c12e2a 100%);
7094
- background-image: -o-linear-gradient(top,#d9534f 0%,#c12e2a 100%);
7095
- background-image: -webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));
7096
- background-image: linear-gradient(to bottom,#d9534f 0%,#c12e2a 100%);
7097
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);
7098
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
7099
- background-repeat: repeat-x;
7100
- border-color: #b92c28;
7101
- }
7102
- .monsterinsights-bootstrap-container .btn-danger:hover,
7103
- .monsterinsights-bootstrap-container .btn-danger:focus {
7104
- background-color: #c12e2a;
7105
- background-position: 0 -15px;
7106
- }
7107
- .monsterinsights-bootstrap-container .btn-danger:active,
7108
- .monsterinsights-bootstrap-container .btn-danger.active {
7109
- background-color: #c12e2a;
7110
- border-color: #b92c28;
7111
- }
7112
- .monsterinsights-bootstrap-container .btn-danger.disabled,
7113
- .monsterinsights-bootstrap-container .btn-danger[disabled],
7114
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger,
7115
- .monsterinsights-bootstrap-container .btn-danger.disabled:hover,
7116
- .monsterinsights-bootstrap-container .btn-danger[disabled]:hover,
7117
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:hover,
7118
- .monsterinsights-bootstrap-container .btn-danger.disabled:focus,
7119
- .monsterinsights-bootstrap-container .btn-danger[disabled]:focus,
7120
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:focus,
7121
- .monsterinsights-bootstrap-container .btn-danger.disabled.focus,
7122
- .monsterinsights-bootstrap-container .btn-danger[disabled].focus,
7123
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.focus,
7124
- .monsterinsights-bootstrap-container .btn-danger.disabled:active,
7125
- .monsterinsights-bootstrap-container .btn-danger[disabled]:active,
7126
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:active,
7127
- .monsterinsights-bootstrap-container .btn-danger.disabled.active,
7128
- .monsterinsights-bootstrap-container .btn-danger[disabled].active,
7129
- .monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.active {
7130
- background-color: #c12e2a;
7131
- background-image: none;
7132
- }
7133
- .monsterinsights-bootstrap-container .thumbnail,
7134
- .monsterinsights-bootstrap-container .img-thumbnail {
7135
- -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.075);
7136
- box-shadow: 0 1px 2px rgba(0,0,0,0.075);
7137
- }
7138
- .monsterinsights-bootstrap-container .dropdown-menu > li > a:hover,
7139
- .monsterinsights-bootstrap-container .dropdown-menu > li > a:focus {
7140
- background-image: -webkit-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);
7141
- background-image: -o-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);
7142
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
7143
- background-image: linear-gradient(to bottom,#f5f5f5 0%,#e8e8e8 100%);
7144
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);
7145
- background-repeat: repeat-x;
7146
- background-color: #e8e8e8;
7147
- }
7148
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a,
7149
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a:hover,
7150
- .monsterinsights-bootstrap-container .dropdown-menu > .active > a:focus {
7151
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7152
- background-image: -o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7153
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));
7154
- background-image: linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);
7155
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);
7156
- background-repeat: repeat-x;
7157
- background-color: #2e6da4;
7158
- }
7159
- .monsterinsights-bootstrap-container .navbar-default {
7160
- background-image: -webkit-linear-gradient(top,#ffffff 0%,#f8f8f8 100%);
7161
- background-image: -o-linear-gradient(top,#ffffff 0%,#f8f8f8 100%);
7162
- background-image: -webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#f8f8f8));
7163
- background-image: linear-gradient(to bottom,#ffffff 0%,#f8f8f8 100%);
7164
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);
7165
- background-repeat: repeat-x;
7166
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
7167
- border-radius: 4px;
7168
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 5px rgba(0,0,0,0.075);
7169
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 5px rgba(0,0,0,0.075);
7170
- }
7171
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a,
7172
- .monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a {
7173
- background-image: -webkit-linear-gradient(top,#dbdbdb 0%,#e2e2e2 100%);
7174
- background-image: -o-linear-gradient(top,#dbdbdb 0%,#e2e2e2 100%);
7175
- background-image: -webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));
7176
- background-image: linear-gradient(to bottom,#dbdbdb 0%,#e2e2e2 100%);
7177
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb',endColorstr='#ffe2e2e2',GradientType=0);
7178
- background-repeat: repeat-x;
7179
- -webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,0.075);
7180
- box-shadow: inset 0 3px 9px rgba(0,0,0,0.075);
7181
- }
7182
- .monsterinsights-bootstrap-container .navbar-brand,
7183
- .monsterinsights-bootstrap-container .navbar-nav > li > a {
7184
- text-shadow: 0 1px 0 rgba(255,255,255,0.25);
7185
- }
7186
- .monsterinsights-bootstrap-container .navbar-inverse {
7187
- background-image: -webkit-linear-gradient(top,#3c3c3c 0%,#222 100%);
7188
- background-image: -o-linear-gradient(top,#3c3c3c 0%,#222 100%);
7189
- background-image: -webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));
7190
- background-image: linear-gradient(to bottom,#3c3c3c 0%,#222 100%);
7191
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);
7192
- background-repeat: repeat-x;
7193
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
7194
- border-radius: 4px;
7195
- }
7196
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a,
7197
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a {
7198
- background-image: -webkit-linear-gradient(top,#080808 0%,#0f0f0f 100%);
7199
- background-image: -o-linear-gradient(top,#080808 0%,#0f0f0f 100%);
7200
- background-image: -webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));
7201
- background-image: linear-gradient(to bottom,#080808 0%,#0f0f0f 100%);
7202
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808',endColorstr='#ff0f0f0f',GradientType=0);
7203
- background-repeat: repeat-x;
7204
- -webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,0.25);
7205
- box-shadow: inset 0 3px 9px rgba(0,0,0,0.25);
7206
- }
7207
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-brand,
7208
- .monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a {
7209
- text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
7210
- }
7211
- .monsterinsights-bootstrap-container .navbar-static-top,
7212
- .monsterinsights-bootstrap-container .navbar-fixed-top,
7213
- .monsterinsights-bootstrap-container .navbar-fixed-bottom {
7214
- border-radius: 0;
7215
- }
7216
- @media (max-width: 767px) {
7217
- .monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a,
7218
- .monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
7219
- .monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
7220
- color: #fff;
7221
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7222
- background-image: -o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7223
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));
7224
- background-image: linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);
7225
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);
7226
- background-repeat: repeat-x;
7227
- }
7228
- }
7229
- .monsterinsights-bootstrap-container .alert {
7230
- text-shadow: 0 1px 0 rgba(255,255,255,0.2);
7231
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.05);
7232
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.05);
7233
- }
7234
- .monsterinsights-bootstrap-container .alert-success {
7235
- background-image: -webkit-linear-gradient(top,#dff0d8 0%,#c8e5bc 100%);
7236
- background-image: -o-linear-gradient(top,#dff0d8 0%,#c8e5bc 100%);
7237
- background-image: -webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));
7238
- background-image: linear-gradient(to bottom,#dff0d8 0%,#c8e5bc 100%);
7239
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0);
7240
- background-repeat: repeat-x;
7241
- border-color: #b2dba1;
7242
- }
7243
- .monsterinsights-bootstrap-container .alert-info {
7244
- background-image: -webkit-linear-gradient(top,#d9edf7 0%,#b9def0 100%);
7245
- background-image: -o-linear-gradient(top,#d9edf7 0%,#b9def0 100%);
7246
- background-image: -webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));
7247
- background-image: linear-gradient(to bottom,#d9edf7 0%,#b9def0 100%);
7248
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0);
7249
- background-repeat: repeat-x;
7250
- border-color: #9acfea;
7251
- }
7252
- .monsterinsights-bootstrap-container .alert-warning {
7253
- background-image: -webkit-linear-gradient(top,#fcf8e3 0%,#f8efc0 100%);
7254
- background-image: -o-linear-gradient(top,#fcf8e3 0%,#f8efc0 100%);
7255
- background-image: -webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));
7256
- background-image: linear-gradient(to bottom,#fcf8e3 0%,#f8efc0 100%);
7257
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0);
7258
- background-repeat: repeat-x;
7259
- border-color: #f5e79e;
7260
- }
7261
- .monsterinsights-bootstrap-container .alert-danger {
7262
- background-image: -webkit-linear-gradient(top,#f2dede 0%,#e7c3c3 100%);
7263
- background-image: -o-linear-gradient(top,#f2dede 0%,#e7c3c3 100%);
7264
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));
7265
- background-image: linear-gradient(to bottom,#f2dede 0%,#e7c3c3 100%);
7266
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0);
7267
- background-repeat: repeat-x;
7268
- border-color: #dca7a7;
7269
- }
7270
- .monsterinsights-bootstrap-container .progress {
7271
- background-image: -webkit-linear-gradient(top,#ebebeb 0%,#f5f5f5 100%);
7272
- background-image: -o-linear-gradient(top,#ebebeb 0%,#f5f5f5 100%);
7273
- background-image: -webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));
7274
- background-image: linear-gradient(to bottom,#ebebeb 0%,#f5f5f5 100%);
7275
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0);
7276
- background-repeat: repeat-x;
7277
- }
7278
- .monsterinsights-bootstrap-container .progress-bar {
7279
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#286090 100%);
7280
- background-image: -o-linear-gradient(top,#337ab7 0%,#286090 100%);
7281
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));
7282
- background-image: linear-gradient(to bottom,#337ab7 0%,#286090 100%);
7283
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff286090',GradientType=0);
7284
- background-repeat: repeat-x;
7285
- }
7286
- .monsterinsights-bootstrap-container .progress-bar-success {
7287
- background-image: -webkit-linear-gradient(top,#5cb85c 0%,#449d44 100%);
7288
- background-image: -o-linear-gradient(top,#5cb85c 0%,#449d44 100%);
7289
- background-image: -webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));
7290
- background-image: linear-gradient(to bottom,#5cb85c 0%,#449d44 100%);
7291
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0);
7292
- background-repeat: repeat-x;
7293
- }
7294
- .monsterinsights-bootstrap-container .progress-bar-info {
7295
- background-image: -webkit-linear-gradient(top,#5bc0de 0%,#31b0d5 100%);
7296
- background-image: -o-linear-gradient(top,#5bc0de 0%,#31b0d5 100%);
7297
- background-image: -webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));
7298
- background-image: linear-gradient(to bottom,#5bc0de 0%,#31b0d5 100%);
7299
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0);
7300
- background-repeat: repeat-x;
7301
- }
7302
- .monsterinsights-bootstrap-container .progress-bar-warning {
7303
- background-image: -webkit-linear-gradient(top,#f0ad4e 0%,#ec971f 100%);
7304
- background-image: -o-linear-gradient(top,#f0ad4e 0%,#ec971f 100%);
7305
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));
7306
- background-image: linear-gradient(to bottom,#f0ad4e 0%,#ec971f 100%);
7307
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0);
7308
- background-repeat: repeat-x;
7309
- }
7310
- .monsterinsights-bootstrap-container .progress-bar-danger {
7311
- background-image: -webkit-linear-gradient(top,#d9534f 0%,#c9302c 100%);
7312
- background-image: -o-linear-gradient(top,#d9534f 0%,#c9302c 100%);
7313
- background-image: -webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));
7314
- background-image: linear-gradient(to bottom,#d9534f 0%,#c9302c 100%);
7315
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0);
7316
- background-repeat: repeat-x;
7317
- }
7318
- .monsterinsights-bootstrap-container .progress-bar-striped {
7319
- background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
7320
- background-image: -o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
7321
- background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
7322
- }
7323
- .monsterinsights-bootstrap-container .list-group {
7324
- border-radius: 4px;
7325
- -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.075);
7326
- box-shadow: 0 1px 2px rgba(0,0,0,0.075);
7327
- }
7328
- .monsterinsights-bootstrap-container .list-group-item.active,
7329
- .monsterinsights-bootstrap-container .list-group-item.active:hover,
7330
- .monsterinsights-bootstrap-container .list-group-item.active:focus {
7331
- text-shadow: 0 -1px 0 #286090;
7332
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#2b669a 100%);
7333
- background-image: -o-linear-gradient(top,#337ab7 0%,#2b669a 100%);
7334
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));
7335
- background-image: linear-gradient(to bottom,#337ab7 0%,#2b669a 100%);
7336
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2b669a',GradientType=0);
7337
- background-repeat: repeat-x;
7338
- border-color: #2b669a;
7339
- }
7340
- .monsterinsights-bootstrap-container .list-group-item.active .badge,
7341
- .monsterinsights-bootstrap-container .list-group-item.active:hover .badge,
7342
- .monsterinsights-bootstrap-container .list-group-item.active:focus .badge {
7343
- text-shadow: none;
7344
- }
7345
- .monsterinsights-bootstrap-container .panel {
7346
- -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
7347
- box-shadow: 0 1px 2px rgba(0,0,0,0.05);
7348
- }
7349
- .monsterinsights-bootstrap-container .panel-default > .panel-heading {
7350
- background-image: -webkit-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);
7351
- background-image: -o-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);
7352
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
7353
- background-image: linear-gradient(to bottom,#f5f5f5 0%,#e8e8e8 100%);
7354
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);
7355
- background-repeat: repeat-x;
7356
- }
7357
- .monsterinsights-bootstrap-container .panel-primary > .panel-heading {
7358
- background-image: -webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7359
- background-image: -o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);
7360
- background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));
7361
- background-image: linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);
7362
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);
7363
- background-repeat: repeat-x;
7364
- }
7365
- .monsterinsights-bootstrap-container .panel-success > .panel-heading {
7366
- background-image: -webkit-linear-gradient(top,#dff0d8 0%,#d0e9c6 100%);
7367
- background-image: -o-linear-gradient(top,#dff0d8 0%,#d0e9c6 100%);
7368
- background-image: -webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));
7369
- background-image: linear-gradient(to bottom,#dff0d8 0%,#d0e9c6 100%);
7370
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0);
7371
- background-repeat: repeat-x;
7372
- }
7373
- .monsterinsights-bootstrap-container .panel-info > .panel-heading {
7374
- background-image: -webkit-linear-gradient(top,#d9edf7 0%,#c4e3f3 100%);
7375
- background-image: -o-linear-gradient(top,#d9edf7 0%,#c4e3f3 100%);
7376
- background-image: -webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));
7377
- background-image: linear-gradient(to bottom,#d9edf7 0%,#c4e3f3 100%);
7378
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0);
7379
- background-repeat: repeat-x;
7380
- }
7381
- .monsterinsights-bootstrap-container .panel-warning > .panel-heading {
7382
- background-image: -webkit-linear-gradient(top,#fcf8e3 0%,#faf2cc 100%);
7383
- background-image: -o-linear-gradient(top,#fcf8e3 0%,#faf2cc 100%);
7384
- background-image: -webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));
7385
- background-image: linear-gradient(to bottom,#fcf8e3 0%,#faf2cc 100%);
7386
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0);
7387
- background-repeat: repeat-x;
7388
- }
7389
- .monsterinsights-bootstrap-container .panel-danger > .panel-heading {
7390
- background-image: -webkit-linear-gradient(top,#f2dede 0%,#ebcccc 100%);
7391
- background-image: -o-linear-gradient(top,#f2dede 0%,#ebcccc 100%);
7392
- background-image: -webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));
7393
- background-image: linear-gradient(to bottom,#f2dede 0%,#ebcccc 100%);
7394
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0);
7395
- background-repeat: repeat-x;
7396
- }
7397
- .monsterinsights-bootstrap-container .well {
7398
- background-image: -webkit-linear-gradient(top,#e8e8e8 0%,#f5f5f5 100%);
7399
- background-image: -o-linear-gradient(top,#e8e8e8 0%,#f5f5f5 100%);
7400
- background-image: -webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));
7401
- background-image: linear-gradient(to bottom,#e8e8e8 0%,#f5f5f5 100%);
7402
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);
7403
- background-repeat: repeat-x;
7404
- border-color: #dcdcdc;
7405
- -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,0.1);
7406
- box-shadow: inset 0 1px 3px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,0.1);
7407
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/bootstrap-prefixed.min.css DELETED
@@ -1 +0,0 @@
1
- .monsterinsights-bootstrap-container html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}.monsterinsights-bootstrap-container body{margin:0}.monsterinsights-bootstrap-container article,.monsterinsights-bootstrap-container aside,.monsterinsights-bootstrap-container details,.monsterinsights-bootstrap-container figcaption,.monsterinsights-bootstrap-container figure,.monsterinsights-bootstrap-container footer,.monsterinsights-bootstrap-container header,.monsterinsights-bootstrap-container hgroup,.monsterinsights-bootstrap-container main,.monsterinsights-bootstrap-container menu,.monsterinsights-bootstrap-container nav,.monsterinsights-bootstrap-container section,.monsterinsights-bootstrap-container summary{display:block}.monsterinsights-bootstrap-container audio,.monsterinsights-bootstrap-container canvas,.monsterinsights-bootstrap-container progress,.monsterinsights-bootstrap-container video{display:inline-block;vertical-align:baseline}.monsterinsights-bootstrap-container audio:not([controls]){display:none;height:0}.monsterinsights-bootstrap-container [hidden],.monsterinsights-bootstrap-container template{display:none}.monsterinsights-bootstrap-container a{background-color:transparent}.monsterinsights-bootstrap-container a:active,.monsterinsights-bootstrap-container a:hover{outline:0}.monsterinsights-bootstrap-container abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}.monsterinsights-bootstrap-container b,.monsterinsights-bootstrap-container strong{font-weight:bold}.monsterinsights-bootstrap-container dfn{font-style:italic}.monsterinsights-bootstrap-container h1{font-size:2em;margin:0.67em 0}.monsterinsights-bootstrap-container mark{background:#ff0;color:#000}.monsterinsights-bootstrap-container small{font-size:80%}.monsterinsights-bootstrap-container sub,.monsterinsights-bootstrap-container sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.monsterinsights-bootstrap-container sup{top:-0.5em}.monsterinsights-bootstrap-container sub{bottom:-0.25em}.monsterinsights-bootstrap-container img{border:0}.monsterinsights-bootstrap-container svg:not(:root){overflow:hidden}.monsterinsights-bootstrap-container figure{margin:1em 40px}.monsterinsights-bootstrap-container hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}.monsterinsights-bootstrap-container pre{overflow:auto}.monsterinsights-bootstrap-container code,.monsterinsights-bootstrap-container kbd,.monsterinsights-bootstrap-container pre,.monsterinsights-bootstrap-container samp{font-family:monospace, monospace;font-size:1em}.monsterinsights-bootstrap-container button,.monsterinsights-bootstrap-container input,.monsterinsights-bootstrap-container optgroup,.monsterinsights-bootstrap-container select,.monsterinsights-bootstrap-container textarea{color:inherit;font:inherit;margin:0}.monsterinsights-bootstrap-container button{overflow:visible}.monsterinsights-bootstrap-container button,.monsterinsights-bootstrap-container select{text-transform:none}.monsterinsights-bootstrap-container button,.monsterinsights-bootstrap-container html input[type="button"],.monsterinsights-bootstrap-container input[type="reset"],.monsterinsights-bootstrap-container input[type="submit"]{-webkit-appearance:button;cursor:pointer}.monsterinsights-bootstrap-container button[disabled],.monsterinsights-bootstrap-container html input[disabled]{cursor:default}.monsterinsights-bootstrap-container button::-moz-focus-inner,.monsterinsights-bootstrap-container input::-moz-focus-inner{border:0;padding:0}.monsterinsights-bootstrap-container input{line-height:normal}.monsterinsights-bootstrap-container input[type="checkbox"],.monsterinsights-bootstrap-container input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}.monsterinsights-bootstrap-container input[type="number"]::-webkit-inner-spin-button,.monsterinsights-bootstrap-container input[type="number"]::-webkit-outer-spin-button{height:auto}.monsterinsights-bootstrap-container input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.monsterinsights-bootstrap-container input[type="search"]::-webkit-search-cancel-button,.monsterinsights-bootstrap-container input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}.monsterinsights-bootstrap-container fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}.monsterinsights-bootstrap-container legend{border:0;padding:0}.monsterinsights-bootstrap-container textarea{overflow:auto}.monsterinsights-bootstrap-container optgroup{font-weight:bold}.monsterinsights-bootstrap-container table{border-collapse:collapse;border-spacing:0}.monsterinsights-bootstrap-container td,.monsterinsights-bootstrap-container th{padding:0}@media print{.monsterinsights-bootstrap-container *,.monsterinsights-bootstrap-container *:before,.monsterinsights-bootstrap-container *:after{color:#000 !important;text-shadow:none !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important}.monsterinsights-bootstrap-container a,.monsterinsights-bootstrap-container a:visited{text-decoration:underline}.monsterinsights-bootstrap-container a[href]:after{content:" (" attr(href) ")"}.monsterinsights-bootstrap-container abbr[title]:after{content:" (" attr(title) ")"}.monsterinsights-bootstrap-container a[href^="#"]:after,.monsterinsights-bootstrap-container a[href^="javascript:"]:after{content:""}.monsterinsights-bootstrap-container pre,.monsterinsights-bootstrap-container blockquote{border:1px solid #999;page-break-inside:avoid}.monsterinsights-bootstrap-container thead{display:table-header-group}.monsterinsights-bootstrap-container tr,.monsterinsights-bootstrap-container img{page-break-inside:avoid}.monsterinsights-bootstrap-container img{max-width:100% !important}.monsterinsights-bootstrap-container p,.monsterinsights-bootstrap-container h2,.monsterinsights-bootstrap-container h3{orphans:3;widows:3}.monsterinsights-bootstrap-container h2,.monsterinsights-bootstrap-container h3{page-break-after:avoid}.monsterinsights-bootstrap-container .navbar{display:none}.monsterinsights-bootstrap-container .btn > .caret,.monsterinsights-bootstrap-container .dropup > .btn > .caret{border-top-color:#000 !important}.monsterinsights-bootstrap-container .label{border:1px solid #000}.monsterinsights-bootstrap-container .table{border-collapse:collapse !important}.monsterinsights-bootstrap-container .table td,.monsterinsights-bootstrap-container .table th{background-color:#fff !important}.monsterinsights-bootstrap-container .table-bordered th,.monsterinsights-bootstrap-container .table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:"Glyphicons Halflings";src:url("../fonts/glyphicons-halflings-regular.eot");src:url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.monsterinsights-bootstrap-container .glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monsterinsights-bootstrap-container .glyphicon-asterisk:before{content:"\002a"}.monsterinsights-bootstrap-container .glyphicon-plus:before{content:"\002b"}.monsterinsights-bootstrap-container .glyphicon-euro:before,.monsterinsights-bootstrap-container .glyphicon-eur:before{content:"\20ac"}.monsterinsights-bootstrap-container .glyphicon-minus:before{content:"\2212"}.monsterinsights-bootstrap-container .glyphicon-cloud:before{content:"\2601"}.monsterinsights-bootstrap-container .glyphicon-envelope:before{content:"\2709"}.monsterinsights-bootstrap-container .glyphicon-pencil:before{content:"\270f"}.monsterinsights-bootstrap-container .glyphicon-glass:before{content:"\e001"}.monsterinsights-bootstrap-container .glyphicon-music:before{content:"\e002"}.monsterinsights-bootstrap-container .glyphicon-search:before{content:"\e003"}.monsterinsights-bootstrap-container .glyphicon-heart:before{content:"\e005"}.monsterinsights-bootstrap-container .glyphicon-star:before{content:"\e006"}.monsterinsights-bootstrap-container .glyphicon-star-empty:before{content:"\e007"}.monsterinsights-bootstrap-container .glyphicon-user:before{content:"\e008"}.monsterinsights-bootstrap-container .glyphicon-film:before{content:"\e009"}.monsterinsights-bootstrap-container .glyphicon-th-large:before{content:"\e010"}.monsterinsights-bootstrap-container .glyphicon-th:before{content:"\e011"}.monsterinsights-bootstrap-container .glyphicon-th-list:before{content:"\e012"}.monsterinsights-bootstrap-container .glyphicon-ok:before{content:"\e013"}.monsterinsights-bootstrap-container .glyphicon-remove:before{content:"\e014"}.monsterinsights-bootstrap-container .glyphicon-zoom-in:before{content:"\e015"}.monsterinsights-bootstrap-container .glyphicon-zoom-out:before{content:"\e016"}.monsterinsights-bootstrap-container .glyphicon-off:before{content:"\e017"}.monsterinsights-bootstrap-container .glyphicon-signal:before{content:"\e018"}.monsterinsights-bootstrap-container .glyphicon-cog:before{content:"\e019"}.monsterinsights-bootstrap-container .glyphicon-trash:before{content:"\e020"}.monsterinsights-bootstrap-container .glyphicon-home:before{content:"\e021"}.monsterinsights-bootstrap-container .glyphicon-file:before{content:"\e022"}.monsterinsights-bootstrap-container .glyphicon-time:before{content:"\e023"}.monsterinsights-bootstrap-container .glyphicon-road:before{content:"\e024"}.monsterinsights-bootstrap-container .glyphicon-download-alt:before{content:"\e025"}.monsterinsights-bootstrap-container .glyphicon-download:before{content:"\e026"}.monsterinsights-bootstrap-container .glyphicon-upload:before{content:"\e027"}.monsterinsights-bootstrap-container .glyphicon-inbox:before{content:"\e028"}.monsterinsights-bootstrap-container .glyphicon-play-circle:before{content:"\e029"}.monsterinsights-bootstrap-container .glyphicon-repeat:before{content:"\e030"}.monsterinsights-bootstrap-container .glyphicon-refresh:before{content:"\e031"}.monsterinsights-bootstrap-container .glyphicon-list-alt:before{content:"\e032"}.monsterinsights-bootstrap-container .glyphicon-lock:before{content:"\e033"}.monsterinsights-bootstrap-container .glyphicon-flag:before{content:"\e034"}.monsterinsights-bootstrap-container .glyphicon-headphones:before{content:"\e035"}.monsterinsights-bootstrap-container .glyphicon-volume-off:before{content:"\e036"}.monsterinsights-bootstrap-container .glyphicon-volume-down:before{content:"\e037"}.monsterinsights-bootstrap-container .glyphicon-volume-up:before{content:"\e038"}.monsterinsights-bootstrap-container .glyphicon-qrcode:before{content:"\e039"}.monsterinsights-bootstrap-container .glyphicon-barcode:before{content:"\e040"}.monsterinsights-bootstrap-container .glyphicon-tag:before{content:"\e041"}.monsterinsights-bootstrap-container .glyphicon-tags:before{content:"\e042"}.monsterinsights-bootstrap-container .glyphicon-book:before{content:"\e043"}.monsterinsights-bootstrap-container .glyphicon-bookmark:before{content:"\e044"}.monsterinsights-bootstrap-container .glyphicon-print:before{content:"\e045"}.monsterinsights-bootstrap-container .glyphicon-camera:before{content:"\e046"}.monsterinsights-bootstrap-container .glyphicon-font:before{content:"\e047"}.monsterinsights-bootstrap-container .glyphicon-bold:before{content:"\e048"}.monsterinsights-bootstrap-container .glyphicon-italic:before{content:"\e049"}.monsterinsights-bootstrap-container .glyphicon-text-height:before{content:"\e050"}.monsterinsights-bootstrap-container .glyphicon-text-width:before{content:"\e051"}.monsterinsights-bootstrap-container .glyphicon-align-left:before{content:"\e052"}.monsterinsights-bootstrap-container .glyphicon-align-center:before{content:"\e053"}.monsterinsights-bootstrap-container .glyphicon-align-right:before{content:"\e054"}.monsterinsights-bootstrap-container .glyphicon-align-justify:before{content:"\e055"}.monsterinsights-bootstrap-container .glyphicon-list:before{content:"\e056"}.monsterinsights-bootstrap-container .glyphicon-indent-left:before{content:"\e057"}.monsterinsights-bootstrap-container .glyphicon-indent-right:before{content:"\e058"}.monsterinsights-bootstrap-container .glyphicon-facetime-video:before{content:"\e059"}.monsterinsights-bootstrap-container .glyphicon-picture:before{content:"\e060"}.monsterinsights-bootstrap-container .glyphicon-map-marker:before{content:"\e062"}.monsterinsights-bootstrap-container .glyphicon-adjust:before{content:"\e063"}.monsterinsights-bootstrap-container .glyphicon-tint:before{content:"\e064"}.monsterinsights-bootstrap-container .glyphicon-edit:before{content:"\e065"}.monsterinsights-bootstrap-container .glyphicon-share:before{content:"\e066"}.monsterinsights-bootstrap-container .glyphicon-check:before{content:"\e067"}.monsterinsights-bootstrap-container .glyphicon-move:before{content:"\e068"}.monsterinsights-bootstrap-container .glyphicon-step-backward:before{content:"\e069"}.monsterinsights-bootstrap-container .glyphicon-fast-backward:before{content:"\e070"}.monsterinsights-bootstrap-container .glyphicon-backward:before{content:"\e071"}.monsterinsights-bootstrap-container .glyphicon-play:before{content:"\e072"}.monsterinsights-bootstrap-container .glyphicon-pause:before{content:"\e073"}.monsterinsights-bootstrap-container .glyphicon-stop:before{content:"\e074"}.monsterinsights-bootstrap-container .glyphicon-forward:before{content:"\e075"}.monsterinsights-bootstrap-container .glyphicon-fast-forward:before{content:"\e076"}.monsterinsights-bootstrap-container .glyphicon-step-forward:before{content:"\e077"}.monsterinsights-bootstrap-container .glyphicon-eject:before{content:"\e078"}.monsterinsights-bootstrap-container .glyphicon-chevron-left:before{content:"\e079"}.monsterinsights-bootstrap-container .glyphicon-chevron-right:before{content:"\e080"}.monsterinsights-bootstrap-container .glyphicon-plus-sign:before{content:"\e081"}.monsterinsights-bootstrap-container .glyphicon-minus-sign:before{content:"\e082"}.monsterinsights-bootstrap-container .glyphicon-remove-sign:before{content:"\e083"}.monsterinsights-bootstrap-container .glyphicon-ok-sign:before{content:"\e084"}.monsterinsights-bootstrap-container .glyphicon-question-sign:before{content:"\e085"}.monsterinsights-bootstrap-container .glyphicon-info-sign:before{content:"\e086"}.monsterinsights-bootstrap-container .glyphicon-screenshot:before{content:"\e087"}.monsterinsights-bootstrap-container .glyphicon-remove-circle:before{content:"\e088"}.monsterinsights-bootstrap-container .glyphicon-ok-circle:before{content:"\e089"}.monsterinsights-bootstrap-container .glyphicon-ban-circle:before{content:"\e090"}.monsterinsights-bootstrap-container .glyphicon-arrow-left:before{content:"\e091"}.monsterinsights-bootstrap-container .glyphicon-arrow-right:before{content:"\e092"}.monsterinsights-bootstrap-container .glyphicon-arrow-up:before{content:"\e093"}.monsterinsights-bootstrap-container .glyphicon-arrow-down:before{content:"\e094"}.monsterinsights-bootstrap-container .glyphicon-share-alt:before{content:"\e095"}.monsterinsights-bootstrap-container .glyphicon-resize-full:before{content:"\e096"}.monsterinsights-bootstrap-container .glyphicon-resize-small:before{content:"\e097"}.monsterinsights-bootstrap-container .glyphicon-exclamation-sign:before{content:"\e101"}.monsterinsights-bootstrap-container .glyphicon-gift:before{content:"\e102"}.monsterinsights-bootstrap-container .glyphicon-leaf:before{content:"\e103"}.monsterinsights-bootstrap-container .glyphicon-fire:before{content:"\e104"}.monsterinsights-bootstrap-container .glyphicon-eye-open:before{content:"\e105"}.monsterinsights-bootstrap-container .glyphicon-eye-close:before{content:"\e106"}.monsterinsights-bootstrap-container .glyphicon-warning-sign:before{content:"\e107"}.monsterinsights-bootstrap-container .glyphicon-plane:before{content:"\e108"}.monsterinsights-bootstrap-container .glyphicon-calendar:before{content:"\e109"}.monsterinsights-bootstrap-container .glyphicon-random:before{content:"\e110"}.monsterinsights-bootstrap-container .glyphicon-comment:before{content:"\e111"}.monsterinsights-bootstrap-container .glyphicon-magnet:before{content:"\e112"}.monsterinsights-bootstrap-container .glyphicon-chevron-up:before{content:"\e113"}.monsterinsights-bootstrap-container .glyphicon-chevron-down:before{content:"\e114"}.monsterinsights-bootstrap-container .glyphicon-retweet:before{content:"\e115"}.monsterinsights-bootstrap-container .glyphicon-shopping-cart:before{content:"\e116"}.monsterinsights-bootstrap-container .glyphicon-folder-close:before{content:"\e117"}.monsterinsights-bootstrap-container .glyphicon-folder-open:before{content:"\e118"}.monsterinsights-bootstrap-container .glyphicon-resize-vertical:before{content:"\e119"}.monsterinsights-bootstrap-container .glyphicon-resize-horizontal:before{content:"\e120"}.monsterinsights-bootstrap-container .glyphicon-hdd:before{content:"\e121"}.monsterinsights-bootstrap-container .glyphicon-bullhorn:before{content:"\e122"}.monsterinsights-bootstrap-container .glyphicon-bell:before{content:"\e123"}.monsterinsights-bootstrap-container .glyphicon-certificate:before{content:"\e124"}.monsterinsights-bootstrap-container .glyphicon-thumbs-up:before{content:"\e125"}.monsterinsights-bootstrap-container .glyphicon-thumbs-down:before{content:"\e126"}.monsterinsights-bootstrap-container .glyphicon-hand-right:before{content:"\e127"}.monsterinsights-bootstrap-container .glyphicon-hand-left:before{content:"\e128"}.monsterinsights-bootstrap-container .glyphicon-hand-up:before{content:"\e129"}.monsterinsights-bootstrap-container .glyphicon-hand-down:before{content:"\e130"}.monsterinsights-bootstrap-container .glyphicon-circle-arrow-right:before{content:"\e131"}.monsterinsights-bootstrap-container .glyphicon-circle-arrow-left:before{content:"\e132"}.monsterinsights-bootstrap-container .glyphicon-circle-arrow-up:before{content:"\e133"}.monsterinsights-bootstrap-container .glyphicon-circle-arrow-down:before{content:"\e134"}.monsterinsights-bootstrap-container .glyphicon-globe:before{content:"\e135"}.monsterinsights-bootstrap-container .glyphicon-wrench:before{content:"\e136"}.monsterinsights-bootstrap-container .glyphicon-tasks:before{content:"\e137"}.monsterinsights-bootstrap-container .glyphicon-filter:before{content:"\e138"}.monsterinsights-bootstrap-container .glyphicon-briefcase:before{content:"\e139"}.monsterinsights-bootstrap-container .glyphicon-fullscreen:before{content:"\e140"}.monsterinsights-bootstrap-container .glyphicon-dashboard:before{content:"\e141"}.monsterinsights-bootstrap-container .glyphicon-paperclip:before{content:"\e142"}.monsterinsights-bootstrap-container .glyphicon-heart-empty:before{content:"\e143"}.monsterinsights-bootstrap-container .glyphicon-link:before{content:"\e144"}.monsterinsights-bootstrap-container .glyphicon-phone:before{content:"\e145"}.monsterinsights-bootstrap-container .glyphicon-pushpin:before{content:"\e146"}.monsterinsights-bootstrap-container .glyphicon-usd:before{content:"\e148"}.monsterinsights-bootstrap-container .glyphicon-gbp:before{content:"\e149"}.monsterinsights-bootstrap-container .glyphicon-sort:before{content:"\e150"}.monsterinsights-bootstrap-container .glyphicon-sort-by-alphabet:before{content:"\e151"}.monsterinsights-bootstrap-container .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.monsterinsights-bootstrap-container .glyphicon-sort-by-order:before{content:"\e153"}.monsterinsights-bootstrap-container .glyphicon-sort-by-order-alt:before{content:"\e154"}.monsterinsights-bootstrap-container .glyphicon-sort-by-attributes:before{content:"\e155"}.monsterinsights-bootstrap-container .glyphicon-sort-by-attributes-alt:before{content:"\e156"}.monsterinsights-bootstrap-container .glyphicon-unchecked:before{content:"\e157"}.monsterinsights-bootstrap-container .glyphicon-expand:before{content:"\e158"}.monsterinsights-bootstrap-container .glyphicon-collapse-down:before{content:"\e159"}.monsterinsights-bootstrap-container .glyphicon-collapse-up:before{content:"\e160"}.monsterinsights-bootstrap-container .glyphicon-log-in:before{content:"\e161"}.monsterinsights-bootstrap-container .glyphicon-flash:before{content:"\e162"}.monsterinsights-bootstrap-container .glyphicon-log-out:before{content:"\e163"}.monsterinsights-bootstrap-container .glyphicon-new-window:before{content:"\e164"}.monsterinsights-bootstrap-container .glyphicon-record:before{content:"\e165"}.monsterinsights-bootstrap-container .glyphicon-save:before{content:"\e166"}.monsterinsights-bootstrap-container .glyphicon-open:before{content:"\e167"}.monsterinsights-bootstrap-container .glyphicon-saved:before{content:"\e168"}.monsterinsights-bootstrap-container .glyphicon-import:before{content:"\e169"}.monsterinsights-bootstrap-container .glyphicon-export:before{content:"\e170"}.monsterinsights-bootstrap-container .glyphicon-send:before{content:"\e171"}.monsterinsights-bootstrap-container .glyphicon-floppy-disk:before{content:"\e172"}.monsterinsights-bootstrap-container .glyphicon-floppy-saved:before{content:"\e173"}.monsterinsights-bootstrap-container .glyphicon-floppy-remove:before{content:"\e174"}.monsterinsights-bootstrap-container .glyphicon-floppy-save:before{content:"\e175"}.monsterinsights-bootstrap-container .glyphicon-floppy-open:before{content:"\e176"}.monsterinsights-bootstrap-container .glyphicon-credit-card:before{content:"\e177"}.monsterinsights-bootstrap-container .glyphicon-transfer:before{content:"\e178"}.monsterinsights-bootstrap-container .glyphicon-cutlery:before{content:"\e179"}.monsterinsights-bootstrap-container .glyphicon-header:before{content:"\e180"}.monsterinsights-bootstrap-container .glyphicon-compressed:before{content:"\e181"}.monsterinsights-bootstrap-container .glyphicon-earphone:before{content:"\e182"}.monsterinsights-bootstrap-container .glyphicon-phone-alt:before{content:"\e183"}.monsterinsights-bootstrap-container .glyphicon-tower:before{content:"\e184"}.monsterinsights-bootstrap-container .glyphicon-stats:before{content:"\e185"}.monsterinsights-bootstrap-container .glyphicon-sd-video:before{content:"\e186"}.monsterinsights-bootstrap-container .glyphicon-hd-video:before{content:"\e187"}.monsterinsights-bootstrap-container .glyphicon-subtitles:before{content:"\e188"}.monsterinsights-bootstrap-container .glyphicon-sound-stereo:before{content:"\e189"}.monsterinsights-bootstrap-container .glyphicon-sound-dolby:before{content:"\e190"}.monsterinsights-bootstrap-container .glyphicon-sound-5-1:before{content:"\e191"}.monsterinsights-bootstrap-container .glyphicon-sound-6-1:before{content:"\e192"}.monsterinsights-bootstrap-container .glyphicon-sound-7-1:before{content:"\e193"}.monsterinsights-bootstrap-container .glyphicon-copyright-mark:before{content:"\e194"}.monsterinsights-bootstrap-container .glyphicon-registration-mark:before{content:"\e195"}.monsterinsights-bootstrap-container .glyphicon-cloud-download:before{content:"\e197"}.monsterinsights-bootstrap-container .glyphicon-cloud-upload:before{content:"\e198"}.monsterinsights-bootstrap-container .glyphicon-tree-conifer:before{content:"\e199"}.monsterinsights-bootstrap-container .glyphicon-tree-deciduous:before{content:"\e200"}.monsterinsights-bootstrap-container .glyphicon-cd:before{content:"\e201"}.monsterinsights-bootstrap-container .glyphicon-save-file:before{content:"\e202"}.monsterinsights-bootstrap-container .glyphicon-open-file:before{content:"\e203"}.monsterinsights-bootstrap-container .glyphicon-level-up:before{content:"\e204"}.monsterinsights-bootstrap-container .glyphicon-copy:before{content:"\e205"}.monsterinsights-bootstrap-container .glyphicon-paste:before{content:"\e206"}.monsterinsights-bootstrap-container .glyphicon-alert:before{content:"\e209"}.monsterinsights-bootstrap-container .glyphicon-equalizer:before{content:"\e210"}.monsterinsights-bootstrap-container .glyphicon-king:before{content:"\e211"}.monsterinsights-bootstrap-container .glyphicon-queen:before{content:"\e212"}.monsterinsights-bootstrap-container .glyphicon-pawn:before{content:"\e213"}.monsterinsights-bootstrap-container .glyphicon-bishop:before{content:"\e214"}.monsterinsights-bootstrap-container .glyphicon-knight:before{content:"\e215"}.monsterinsights-bootstrap-container .glyphicon-baby-formula:before{content:"\e216"}.monsterinsights-bootstrap-container .glyphicon-tent:before{content:"\26fa"}.monsterinsights-bootstrap-container .glyphicon-blackboard:before{content:"\e218"}.monsterinsights-bootstrap-container .glyphicon-bed:before{content:"\e219"}.monsterinsights-bootstrap-container .glyphicon-apple:before{content:"\f8ff"}.monsterinsights-bootstrap-container .glyphicon-erase:before{content:"\e221"}.monsterinsights-bootstrap-container .glyphicon-hourglass:before{content:"\231b"}.monsterinsights-bootstrap-container .glyphicon-lamp:before{content:"\e223"}.monsterinsights-bootstrap-container .glyphicon-duplicate:before{content:"\e224"}.monsterinsights-bootstrap-container .glyphicon-piggy-bank:before{content:"\e225"}.monsterinsights-bootstrap-container .glyphicon-scissors:before{content:"\e226"}.monsterinsights-bootstrap-container .glyphicon-bitcoin:before{content:"\e227"}.monsterinsights-bootstrap-container .glyphicon-btc:before{content:"\e227"}.monsterinsights-bootstrap-container .glyphicon-xbt:before{content:"\e227"}.monsterinsights-bootstrap-container .glyphicon-yen:before{content:"\00a5"}.monsterinsights-bootstrap-container .glyphicon-jpy:before{content:"\00a5"}.monsterinsights-bootstrap-container .glyphicon-ruble:before{content:"\20bd"}.monsterinsights-bootstrap-container .glyphicon-rub:before{content:"\20bd"}.monsterinsights-bootstrap-container .glyphicon-scale:before{content:"\e230"}.monsterinsights-bootstrap-container .glyphicon-ice-lolly:before{content:"\e231"}.monsterinsights-bootstrap-container .glyphicon-ice-lolly-tasted:before{content:"\e232"}.monsterinsights-bootstrap-container .glyphicon-education:before{content:"\e233"}.monsterinsights-bootstrap-container .glyphicon-option-horizontal:before{content:"\e234"}.monsterinsights-bootstrap-container .glyphicon-option-vertical:before{content:"\e235"}.monsterinsights-bootstrap-container .glyphicon-menu-hamburger:before{content:"\e236"}.monsterinsights-bootstrap-container .glyphicon-modal-window:before{content:"\e237"}.monsterinsights-bootstrap-container .glyphicon-oil:before{content:"\e238"}.monsterinsights-bootstrap-container .glyphicon-grain:before{content:"\e239"}.monsterinsights-bootstrap-container .glyphicon-sunglasses:before{content:"\e240"}.monsterinsights-bootstrap-container .glyphicon-text-size:before{content:"\e241"}.monsterinsights-bootstrap-container .glyphicon-text-color:before{content:"\e242"}.monsterinsights-bootstrap-container .glyphicon-text-background:before{content:"\e243"}.monsterinsights-bootstrap-container .glyphicon-object-align-top:before{content:"\e244"}.monsterinsights-bootstrap-container .glyphicon-object-align-bottom:before{content:"\e245"}.monsterinsights-bootstrap-container .glyphicon-object-align-horizontal:before{content:"\e246"}.monsterinsights-bootstrap-container .glyphicon-object-align-left:before{content:"\e247"}.monsterinsights-bootstrap-container .glyphicon-object-align-vertical:before{content:"\e248"}.monsterinsights-bootstrap-container .glyphicon-object-align-right:before{content:"\e249"}.monsterinsights-bootstrap-container .glyphicon-triangle-right:before{content:"\e250"}.monsterinsights-bootstrap-container .glyphicon-triangle-left:before{content:"\e251"}.monsterinsights-bootstrap-container .glyphicon-triangle-bottom:before{content:"\e252"}.monsterinsights-bootstrap-container .glyphicon-triangle-top:before{content:"\e253"}.monsterinsights-bootstrap-container .glyphicon-console:before{content:"\e254"}.monsterinsights-bootstrap-container .glyphicon-superscript:before{content:"\e255"}.monsterinsights-bootstrap-container .glyphicon-subscript:before{content:"\e256"}.monsterinsights-bootstrap-container .glyphicon-menu-left:before{content:"\e257"}.monsterinsights-bootstrap-container .glyphicon-menu-right:before{content:"\e258"}.monsterinsights-bootstrap-container .glyphicon-menu-down:before{content:"\e259"}.monsterinsights-bootstrap-container .glyphicon-menu-up:before{content:"\e260"}.monsterinsights-bootstrap-container *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.monsterinsights-bootstrap-container *:before,.monsterinsights-bootstrap-container *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.monsterinsights-bootstrap-container html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.monsterinsights-bootstrap-container body{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:14px;line-height:1.42857143;color:#333333;background-color:#fff}.monsterinsights-bootstrap-container input,.monsterinsights-bootstrap-container button,.monsterinsights-bootstrap-container select,.monsterinsights-bootstrap-container textarea{font-family:inherit;font-size:inherit;line-height:inherit}.monsterinsights-bootstrap-container a{color:#337ab7;text-decoration:none}.monsterinsights-bootstrap-container a:hover,.monsterinsights-bootstrap-container a:focus{color:#23527c;text-decoration:underline}.monsterinsights-bootstrap-container a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.monsterinsights-bootstrap-container figure{margin:0}.monsterinsights-bootstrap-container img{vertical-align:middle}.monsterinsights-bootstrap-container .img-responsive,.monsterinsights-bootstrap-container .thumbnail > img,.monsterinsights-bootstrap-container .thumbnail a > img,.monsterinsights-bootstrap-container .carousel-inner > .item > img,.monsterinsights-bootstrap-container .carousel-inner > .item > a > img{display:block;max-width:100%;height:auto}.monsterinsights-bootstrap-container .img-rounded{border-radius:6px}.monsterinsights-bootstrap-container .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.monsterinsights-bootstrap-container .img-circle{border-radius:50%}.monsterinsights-bootstrap-container hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eeeeee}.monsterinsights-bootstrap-container .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.monsterinsights-bootstrap-container .sr-only-focusable:active,.monsterinsights-bootstrap-container .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.monsterinsights-bootstrap-container [role="button"]{cursor:pointer}.monsterinsights-bootstrap-container h1,.monsterinsights-bootstrap-container h2,.monsterinsights-bootstrap-container h3,.monsterinsights-bootstrap-container h4,.monsterinsights-bootstrap-container h5,.monsterinsights-bootstrap-container h6,.monsterinsights-bootstrap-container .h1,.monsterinsights-bootstrap-container .h2,.monsterinsights-bootstrap-container .h3,.monsterinsights-bootstrap-container .h4,.monsterinsights-bootstrap-container .h5,.monsterinsights-bootstrap-container .h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.monsterinsights-bootstrap-container h1 small,.monsterinsights-bootstrap-container h2 small,.monsterinsights-bootstrap-container h3 small,.monsterinsights-bootstrap-container h4 small,.monsterinsights-bootstrap-container h5 small,.monsterinsights-bootstrap-container h6 small,.monsterinsights-bootstrap-container .h1 small,.monsterinsights-bootstrap-container .h2 small,.monsterinsights-bootstrap-container .h3 small,.monsterinsights-bootstrap-container .h4 small,.monsterinsights-bootstrap-container .h5 small,.monsterinsights-bootstrap-container .h6 small,.monsterinsights-bootstrap-container h1 .small,.monsterinsights-bootstrap-container h2 .small,.monsterinsights-bootstrap-container h3 .small,.monsterinsights-bootstrap-container h4 .small,.monsterinsights-bootstrap-container h5 .small,.monsterinsights-bootstrap-container h6 .small,.monsterinsights-bootstrap-container .h1 .small,.monsterinsights-bootstrap-container .h2 .small,.monsterinsights-bootstrap-container .h3 .small,.monsterinsights-bootstrap-container .h4 .small,.monsterinsights-bootstrap-container .h5 .small,.monsterinsights-bootstrap-container .h6 .small{font-weight:400;line-height:1;color:#777777}.monsterinsights-bootstrap-container h1,.monsterinsights-bootstrap-container .h1,.monsterinsights-bootstrap-container h2,.monsterinsights-bootstrap-container .h2,.monsterinsights-bootstrap-container h3,.monsterinsights-bootstrap-container .h3{margin-top:20px;margin-bottom:10px}.monsterinsights-bootstrap-container h1 small,.monsterinsights-bootstrap-container .h1 small,.monsterinsights-bootstrap-container h2 small,.monsterinsights-bootstrap-container .h2 small,.monsterinsights-bootstrap-container h3 small,.monsterinsights-bootstrap-container .h3 small,.monsterinsights-bootstrap-container h1 .small,.monsterinsights-bootstrap-container .h1 .small,.monsterinsights-bootstrap-container h2 .small,.monsterinsights-bootstrap-container .h2 .small,.monsterinsights-bootstrap-container h3 .small,.monsterinsights-bootstrap-container .h3 .small{font-size:65%}.monsterinsights-bootstrap-container h4,.monsterinsights-bootstrap-container .h4,.monsterinsights-bootstrap-container h5,.monsterinsights-bootstrap-container .h5,.monsterinsights-bootstrap-container h6,.monsterinsights-bootstrap-container .h6{margin-top:10px;margin-bottom:10px}.monsterinsights-bootstrap-container h4 small,.monsterinsights-bootstrap-container .h4 small,.monsterinsights-bootstrap-container h5 small,.monsterinsights-bootstrap-container .h5 small,.monsterinsights-bootstrap-container h6 small,.monsterinsights-bootstrap-container .h6 small,.monsterinsights-bootstrap-container h4 .small,.monsterinsights-bootstrap-container .h4 .small,.monsterinsights-bootstrap-container h5 .small,.monsterinsights-bootstrap-container .h5 .small,.monsterinsights-bootstrap-container h6 .small,.monsterinsights-bootstrap-container .h6 .small{font-size:75%}.monsterinsights-bootstrap-container h1,.monsterinsights-bootstrap-container .h1{font-size:36px}.monsterinsights-bootstrap-container h2,.monsterinsights-bootstrap-container .h2{font-size:30px}.monsterinsights-bootstrap-container h3,.monsterinsights-bootstrap-container .h3{font-size:24px}.monsterinsights-bootstrap-container h4,.monsterinsights-bootstrap-container .h4{font-size:18px}.monsterinsights-bootstrap-container h5,.monsterinsights-bootstrap-container .h5{font-size:14px}.monsterinsights-bootstrap-container h6,.monsterinsights-bootstrap-container .h6{font-size:12px}.monsterinsights-bootstrap-container p{margin:0 0 10px}.monsterinsights-bootstrap-container .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width: 768px){.monsterinsights-bootstrap-container .lead{font-size:21px}}.monsterinsights-bootstrap-container small,.monsterinsights-bootstrap-container .small{font-size:85%}.monsterinsights-bootstrap-container mark,.monsterinsights-bootstrap-container .mark{padding:0.2em;background-color:#fcf8e3}.monsterinsights-bootstrap-container .text-left{text-align:left}.monsterinsights-bootstrap-container .text-right{text-align:right}.monsterinsights-bootstrap-container .text-center{text-align:center}.monsterinsights-bootstrap-container .text-justify{text-align:justify}.monsterinsights-bootstrap-container .text-nowrap{white-space:nowrap}.monsterinsights-bootstrap-container .text-lowercase{text-transform:lowercase}.monsterinsights-bootstrap-container .text-uppercase{text-transform:uppercase}.monsterinsights-bootstrap-container .text-capitalize{text-transform:capitalize}.monsterinsights-bootstrap-container .text-muted{color:#777777}.monsterinsights-bootstrap-container .text-primary{color:#337ab7}.monsterinsights-bootstrap-container a.text-primary:hover,.monsterinsights-bootstrap-container a.text-primary:focus{color:#286090}.monsterinsights-bootstrap-container .text-success{color:#3c763d}.monsterinsights-bootstrap-container a.text-success:hover,.monsterinsights-bootstrap-container a.text-success:focus{color:#2b542c}.monsterinsights-bootstrap-container .text-info{color:#31708f}.monsterinsights-bootstrap-container a.text-info:hover,.monsterinsights-bootstrap-container a.text-info:focus{color:#245269}.monsterinsights-bootstrap-container .text-warning{color:#8a6d3b}.monsterinsights-bootstrap-container a.text-warning:hover,.monsterinsights-bootstrap-container a.text-warning:focus{color:#66512c}.monsterinsights-bootstrap-container .text-danger{color:#a94442}.monsterinsights-bootstrap-container a.text-danger:hover,.monsterinsights-bootstrap-container a.text-danger:focus{color:#843534}.monsterinsights-bootstrap-container .bg-primary{color:#fff;background-color:#337ab7}.monsterinsights-bootstrap-container a.bg-primary:hover,.monsterinsights-bootstrap-container a.bg-primary:focus{background-color:#286090}.monsterinsights-bootstrap-container .bg-success{background-color:#dff0d8}.monsterinsights-bootstrap-container a.bg-success:hover,.monsterinsights-bootstrap-container a.bg-success:focus{background-color:#c1e2b3}.monsterinsights-bootstrap-container .bg-info{background-color:#d9edf7}.monsterinsights-bootstrap-container a.bg-info:hover,.monsterinsights-bootstrap-container a.bg-info:focus{background-color:#afd9ee}.monsterinsights-bootstrap-container .bg-warning{background-color:#fcf8e3}.monsterinsights-bootstrap-container a.bg-warning:hover,.monsterinsights-bootstrap-container a.bg-warning:focus{background-color:#f7ecb5}.monsterinsights-bootstrap-container .bg-danger{background-color:#f2dede}.monsterinsights-bootstrap-container a.bg-danger:hover,.monsterinsights-bootstrap-container a.bg-danger:focus{background-color:#e4b9b9}.monsterinsights-bootstrap-container .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eeeeee}.monsterinsights-bootstrap-container ul,.monsterinsights-bootstrap-container ol{margin-top:0;margin-bottom:10px}.monsterinsights-bootstrap-container ul ul,.monsterinsights-bootstrap-container ol ul,.monsterinsights-bootstrap-container ul ol,.monsterinsights-bootstrap-container ol ol{margin-bottom:0}.monsterinsights-bootstrap-container .list-unstyled{padding-left:0;list-style:none}.monsterinsights-bootstrap-container .list-inline{padding-left:0;list-style:none;margin-left:-5px}.monsterinsights-bootstrap-container .list-inline > li{display:inline-block;padding-right:5px;padding-left:5px}.monsterinsights-bootstrap-container dl{margin-top:0;margin-bottom:20px}.monsterinsights-bootstrap-container dt,.monsterinsights-bootstrap-container dd{line-height:1.42857143}.monsterinsights-bootstrap-container dt{font-weight:700}.monsterinsights-bootstrap-container dd{margin-left:0}@media (min-width: 768px){.monsterinsights-bootstrap-container .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.monsterinsights-bootstrap-container .dl-horizontal dd{margin-left:180px}}.monsterinsights-bootstrap-container abbr[title],.monsterinsights-bootstrap-container abbr[data-original-title]{cursor:help}.monsterinsights-bootstrap-container .initialism{font-size:90%;text-transform:uppercase}.monsterinsights-bootstrap-container blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eeeeee}.monsterinsights-bootstrap-container blockquote p:last-child,.monsterinsights-bootstrap-container blockquote ul:last-child,.monsterinsights-bootstrap-container blockquote ol:last-child{margin-bottom:0}.monsterinsights-bootstrap-container blockquote footer,.monsterinsights-bootstrap-container blockquote small,.monsterinsights-bootstrap-container blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777777}.monsterinsights-bootstrap-container blockquote footer:before,.monsterinsights-bootstrap-container blockquote small:before,.monsterinsights-bootstrap-container blockquote .small:before{content:"\2014 \00A0"}.monsterinsights-bootstrap-container .blockquote-reverse,.monsterinsights-bootstrap-container blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eeeeee;border-left:0}.monsterinsights-bootstrap-container .blockquote-reverse footer:before,.monsterinsights-bootstrap-container blockquote.pull-right footer:before,.monsterinsights-bootstrap-container .blockquote-reverse small:before,.monsterinsights-bootstrap-container blockquote.pull-right small:before,.monsterinsights-bootstrap-container .blockquote-reverse .small:before,.monsterinsights-bootstrap-container blockquote.pull-right .small:before{content:""}.monsterinsights-bootstrap-container .blockquote-reverse footer:after,.monsterinsights-bootstrap-container blockquote.pull-right footer:after,.monsterinsights-bootstrap-container .blockquote-reverse small:after,.monsterinsights-bootstrap-container blockquote.pull-right small:after,.monsterinsights-bootstrap-container .blockquote-reverse .small:after,.monsterinsights-bootstrap-container blockquote.pull-right .small:after{content:"\00A0 \2014"}.monsterinsights-bootstrap-container address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.monsterinsights-bootstrap-container code,.monsterinsights-bootstrap-container kbd,.monsterinsights-bootstrap-container pre,.monsterinsights-bootstrap-container samp{font-family:Menlo, Monaco, Consolas, "Courier New", monospace}.monsterinsights-bootstrap-container code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}.monsterinsights-bootstrap-container kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}.monsterinsights-bootstrap-container kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.monsterinsights-bootstrap-container pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.monsterinsights-bootstrap-container .pre-scrollable{max-height:340px;overflow-y:scroll}.monsterinsights-bootstrap-container .container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 768px){.monsterinsights-bootstrap-container .container{width:750px}}@media (min-width: 992px){.monsterinsights-bootstrap-container .container{width:970px}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .container{width:1170px}}.monsterinsights-bootstrap-container .container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.monsterinsights-bootstrap-container .row{margin-right:-15px;margin-left:-15px}.monsterinsights-bootstrap-container .row-no-gutters{margin-right:0;margin-left:0}.monsterinsights-bootstrap-container .row-no-gutters [class*="col-"]{padding-right:0;padding-left:0}.monsterinsights-bootstrap-container .col-xs-1,.monsterinsights-bootstrap-container .col-sm-1,.monsterinsights-bootstrap-container .col-md-1,.monsterinsights-bootstrap-container .col-lg-1,.monsterinsights-bootstrap-container .col-xs-2,.monsterinsights-bootstrap-container .col-sm-2,.monsterinsights-bootstrap-container .col-md-2,.monsterinsights-bootstrap-container .col-lg-2,.monsterinsights-bootstrap-container .col-xs-3,.monsterinsights-bootstrap-container .col-sm-3,.monsterinsights-bootstrap-container .col-md-3,.monsterinsights-bootstrap-container .col-lg-3,.monsterinsights-bootstrap-container .col-xs-4,.monsterinsights-bootstrap-container .col-sm-4,.monsterinsights-bootstrap-container .col-md-4,.monsterinsights-bootstrap-container .col-lg-4,.monsterinsights-bootstrap-container .col-xs-5,.monsterinsights-bootstrap-container .col-sm-5,.monsterinsights-bootstrap-container .col-md-5,.monsterinsights-bootstrap-container .col-lg-5,.monsterinsights-bootstrap-container .col-xs-6,.monsterinsights-bootstrap-container .col-sm-6,.monsterinsights-bootstrap-container .col-md-6,.monsterinsights-bootstrap-container .col-lg-6,.monsterinsights-bootstrap-container .col-xs-7,.monsterinsights-bootstrap-container .col-sm-7,.monsterinsights-bootstrap-container .col-md-7,.monsterinsights-bootstrap-container .col-lg-7,.monsterinsights-bootstrap-container .col-xs-8,.monsterinsights-bootstrap-container .col-sm-8,.monsterinsights-bootstrap-container .col-md-8,.monsterinsights-bootstrap-container .col-lg-8,.monsterinsights-bootstrap-container .col-xs-9,.monsterinsights-bootstrap-container .col-sm-9,.monsterinsights-bootstrap-container .col-md-9,.monsterinsights-bootstrap-container .col-lg-9,.monsterinsights-bootstrap-container .col-xs-10,.monsterinsights-bootstrap-container .col-sm-10,.monsterinsights-bootstrap-container .col-md-10,.monsterinsights-bootstrap-container .col-lg-10,.monsterinsights-bootstrap-container .col-xs-11,.monsterinsights-bootstrap-container .col-sm-11,.monsterinsights-bootstrap-container .col-md-11,.monsterinsights-bootstrap-container .col-lg-11,.monsterinsights-bootstrap-container .col-xs-12,.monsterinsights-bootstrap-container .col-sm-12,.monsterinsights-bootstrap-container .col-md-12,.monsterinsights-bootstrap-container .col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.monsterinsights-bootstrap-container .col-xs-1,.monsterinsights-bootstrap-container .col-xs-2,.monsterinsights-bootstrap-container .col-xs-3,.monsterinsights-bootstrap-container .col-xs-4,.monsterinsights-bootstrap-container .col-xs-5,.monsterinsights-bootstrap-container .col-xs-6,.monsterinsights-bootstrap-container .col-xs-7,.monsterinsights-bootstrap-container .col-xs-8,.monsterinsights-bootstrap-container .col-xs-9,.monsterinsights-bootstrap-container .col-xs-10,.monsterinsights-bootstrap-container .col-xs-11,.monsterinsights-bootstrap-container .col-xs-12{float:left}.monsterinsights-bootstrap-container .col-xs-12{width:100%}.monsterinsights-bootstrap-container .col-xs-11{width:91.66666667%}.monsterinsights-bootstrap-container .col-xs-10{width:83.33333333%}.monsterinsights-bootstrap-container .col-xs-9{width:75%}.monsterinsights-bootstrap-container .col-xs-8{width:66.66666667%}.monsterinsights-bootstrap-container .col-xs-7{width:58.33333333%}.monsterinsights-bootstrap-container .col-xs-6{width:50%}.monsterinsights-bootstrap-container .col-xs-5{width:41.66666667%}.monsterinsights-bootstrap-container .col-xs-4{width:33.33333333%}.monsterinsights-bootstrap-container .col-xs-3{width:25%}.monsterinsights-bootstrap-container .col-xs-2{width:16.66666667%}.monsterinsights-bootstrap-container .col-xs-1{width:8.33333333%}.monsterinsights-bootstrap-container .col-xs-pull-12{right:100%}.monsterinsights-bootstrap-container .col-xs-pull-11{right:91.66666667%}.monsterinsights-bootstrap-container .col-xs-pull-10{right:83.33333333%}.monsterinsights-bootstrap-container .col-xs-pull-9{right:75%}.monsterinsights-bootstrap-container .col-xs-pull-8{right:66.66666667%}.monsterinsights-bootstrap-container .col-xs-pull-7{right:58.33333333%}.monsterinsights-bootstrap-container .col-xs-pull-6{right:50%}.monsterinsights-bootstrap-container .col-xs-pull-5{right:41.66666667%}.monsterinsights-bootstrap-container .col-xs-pull-4{right:33.33333333%}.monsterinsights-bootstrap-container .col-xs-pull-3{right:25%}.monsterinsights-bootstrap-container .col-xs-pull-2{right:16.66666667%}.monsterinsights-bootstrap-container .col-xs-pull-1{right:8.33333333%}.monsterinsights-bootstrap-container .col-xs-pull-0{right:auto}.monsterinsights-bootstrap-container .col-xs-push-12{left:100%}.monsterinsights-bootstrap-container .col-xs-push-11{left:91.66666667%}.monsterinsights-bootstrap-container .col-xs-push-10{left:83.33333333%}.monsterinsights-bootstrap-container .col-xs-push-9{left:75%}.monsterinsights-bootstrap-container .col-xs-push-8{left:66.66666667%}.monsterinsights-bootstrap-container .col-xs-push-7{left:58.33333333%}.monsterinsights-bootstrap-container .col-xs-push-6{left:50%}.monsterinsights-bootstrap-container .col-xs-push-5{left:41.66666667%}.monsterinsights-bootstrap-container .col-xs-push-4{left:33.33333333%}.monsterinsights-bootstrap-container .col-xs-push-3{left:25%}.monsterinsights-bootstrap-container .col-xs-push-2{left:16.66666667%}.monsterinsights-bootstrap-container .col-xs-push-1{left:8.33333333%}.monsterinsights-bootstrap-container .col-xs-push-0{left:auto}.monsterinsights-bootstrap-container .col-xs-offset-12{margin-left:100%}.monsterinsights-bootstrap-container .col-xs-offset-11{margin-left:91.66666667%}.monsterinsights-bootstrap-container .col-xs-offset-10{margin-left:83.33333333%}.monsterinsights-bootstrap-container .col-xs-offset-9{margin-left:75%}.monsterinsights-bootstrap-container .col-xs-offset-8{margin-left:66.66666667%}.monsterinsights-bootstrap-container .col-xs-offset-7{margin-left:58.33333333%}.monsterinsights-bootstrap-container .col-xs-offset-6{margin-left:50%}.monsterinsights-bootstrap-container .col-xs-offset-5{margin-left:41.66666667%}.monsterinsights-bootstrap-container .col-xs-offset-4{margin-left:33.33333333%}.monsterinsights-bootstrap-container .col-xs-offset-3{margin-left:25%}.monsterinsights-bootstrap-container .col-xs-offset-2{margin-left:16.66666667%}.monsterinsights-bootstrap-container .col-xs-offset-1{margin-left:8.33333333%}.monsterinsights-bootstrap-container .col-xs-offset-0{margin-left:0%}@media (min-width: 768px){.monsterinsights-bootstrap-container .col-sm-1,.monsterinsights-bootstrap-container .col-sm-2,.monsterinsights-bootstrap-container .col-sm-3,.monsterinsights-bootstrap-container .col-sm-4,.monsterinsights-bootstrap-container .col-sm-5,.monsterinsights-bootstrap-container .col-sm-6,.monsterinsights-bootstrap-container .col-sm-7,.monsterinsights-bootstrap-container .col-sm-8,.monsterinsights-bootstrap-container .col-sm-9,.monsterinsights-bootstrap-container .col-sm-10,.monsterinsights-bootstrap-container .col-sm-11,.monsterinsights-bootstrap-container .col-sm-12{float:left}.monsterinsights-bootstrap-container .col-sm-12{width:100%}.monsterinsights-bootstrap-container .col-sm-11{width:91.66666667%}.monsterinsights-bootstrap-container .col-sm-10{width:83.33333333%}.monsterinsights-bootstrap-container .col-sm-9{width:75%}.monsterinsights-bootstrap-container .col-sm-8{width:66.66666667%}.monsterinsights-bootstrap-container .col-sm-7{width:58.33333333%}.monsterinsights-bootstrap-container .col-sm-6{width:50%}.monsterinsights-bootstrap-container .col-sm-5{width:41.66666667%}.monsterinsights-bootstrap-container .col-sm-4{width:33.33333333%}.monsterinsights-bootstrap-container .col-sm-3{width:25%}.monsterinsights-bootstrap-container .col-sm-2{width:16.66666667%}.monsterinsights-bootstrap-container .col-sm-1{width:8.33333333%}.monsterinsights-bootstrap-container .col-sm-pull-12{right:100%}.monsterinsights-bootstrap-container .col-sm-pull-11{right:91.66666667%}.monsterinsights-bootstrap-container .col-sm-pull-10{right:83.33333333%}.monsterinsights-bootstrap-container .col-sm-pull-9{right:75%}.monsterinsights-bootstrap-container .col-sm-pull-8{right:66.66666667%}.monsterinsights-bootstrap-container .col-sm-pull-7{right:58.33333333%}.monsterinsights-bootstrap-container .col-sm-pull-6{right:50%}.monsterinsights-bootstrap-container .col-sm-pull-5{right:41.66666667%}.monsterinsights-bootstrap-container .col-sm-pull-4{right:33.33333333%}.monsterinsights-bootstrap-container .col-sm-pull-3{right:25%}.monsterinsights-bootstrap-container .col-sm-pull-2{right:16.66666667%}.monsterinsights-bootstrap-container .col-sm-pull-1{right:8.33333333%}.monsterinsights-bootstrap-container .col-sm-pull-0{right:auto}.monsterinsights-bootstrap-container .col-sm-push-12{left:100%}.monsterinsights-bootstrap-container .col-sm-push-11{left:91.66666667%}.monsterinsights-bootstrap-container .col-sm-push-10{left:83.33333333%}.monsterinsights-bootstrap-container .col-sm-push-9{left:75%}.monsterinsights-bootstrap-container .col-sm-push-8{left:66.66666667%}.monsterinsights-bootstrap-container .col-sm-push-7{left:58.33333333%}.monsterinsights-bootstrap-container .col-sm-push-6{left:50%}.monsterinsights-bootstrap-container .col-sm-push-5{left:41.66666667%}.monsterinsights-bootstrap-container .col-sm-push-4{left:33.33333333%}.monsterinsights-bootstrap-container .col-sm-push-3{left:25%}.monsterinsights-bootstrap-container .col-sm-push-2{left:16.66666667%}.monsterinsights-bootstrap-container .col-sm-push-1{left:8.33333333%}.monsterinsights-bootstrap-container .col-sm-push-0{left:auto}.monsterinsights-bootstrap-container .col-sm-offset-12{margin-left:100%}.monsterinsights-bootstrap-container .col-sm-offset-11{margin-left:91.66666667%}.monsterinsights-bootstrap-container .col-sm-offset-10{margin-left:83.33333333%}.monsterinsights-bootstrap-container .col-sm-offset-9{margin-left:75%}.monsterinsights-bootstrap-container .col-sm-offset-8{margin-left:66.66666667%}.monsterinsights-bootstrap-container .col-sm-offset-7{margin-left:58.33333333%}.monsterinsights-bootstrap-container .col-sm-offset-6{margin-left:50%}.monsterinsights-bootstrap-container .col-sm-offset-5{margin-left:41.66666667%}.monsterinsights-bootstrap-container .col-sm-offset-4{margin-left:33.33333333%}.monsterinsights-bootstrap-container .col-sm-offset-3{margin-left:25%}.monsterinsights-bootstrap-container .col-sm-offset-2{margin-left:16.66666667%}.monsterinsights-bootstrap-container .col-sm-offset-1{margin-left:8.33333333%}.monsterinsights-bootstrap-container .col-sm-offset-0{margin-left:0%}}@media (min-width: 992px){.monsterinsights-bootstrap-container .col-md-1,.monsterinsights-bootstrap-container .col-md-2,.monsterinsights-bootstrap-container .col-md-3,.monsterinsights-bootstrap-container .col-md-4,.monsterinsights-bootstrap-container .col-md-5,.monsterinsights-bootstrap-container .col-md-6,.monsterinsights-bootstrap-container .col-md-7,.monsterinsights-bootstrap-container .col-md-8,.monsterinsights-bootstrap-container .col-md-9,.monsterinsights-bootstrap-container .col-md-10,.monsterinsights-bootstrap-container .col-md-11,.monsterinsights-bootstrap-container .col-md-12{float:left}.monsterinsights-bootstrap-container .col-md-12{width:100%}.monsterinsights-bootstrap-container .col-md-11{width:91.66666667%}.monsterinsights-bootstrap-container .col-md-10{width:83.33333333%}.monsterinsights-bootstrap-container .col-md-9{width:75%}.monsterinsights-bootstrap-container .col-md-8{width:66.66666667%}.monsterinsights-bootstrap-container .col-md-7{width:58.33333333%}.monsterinsights-bootstrap-container .col-md-6{width:50%}.monsterinsights-bootstrap-container .col-md-5{width:41.66666667%}.monsterinsights-bootstrap-container .col-md-4{width:33.33333333%}.monsterinsights-bootstrap-container .col-md-3{width:25%}.monsterinsights-bootstrap-container .col-md-2{width:16.66666667%}.monsterinsights-bootstrap-container .col-md-1{width:8.33333333%}.monsterinsights-bootstrap-container .col-md-pull-12{right:100%}.monsterinsights-bootstrap-container .col-md-pull-11{right:91.66666667%}.monsterinsights-bootstrap-container .col-md-pull-10{right:83.33333333%}.monsterinsights-bootstrap-container .col-md-pull-9{right:75%}.monsterinsights-bootstrap-container .col-md-pull-8{right:66.66666667%}.monsterinsights-bootstrap-container .col-md-pull-7{right:58.33333333%}.monsterinsights-bootstrap-container .col-md-pull-6{right:50%}.monsterinsights-bootstrap-container .col-md-pull-5{right:41.66666667%}.monsterinsights-bootstrap-container .col-md-pull-4{right:33.33333333%}.monsterinsights-bootstrap-container .col-md-pull-3{right:25%}.monsterinsights-bootstrap-container .col-md-pull-2{right:16.66666667%}.monsterinsights-bootstrap-container .col-md-pull-1{right:8.33333333%}.monsterinsights-bootstrap-container .col-md-pull-0{right:auto}.monsterinsights-bootstrap-container .col-md-push-12{left:100%}.monsterinsights-bootstrap-container .col-md-push-11{left:91.66666667%}.monsterinsights-bootstrap-container .col-md-push-10{left:83.33333333%}.monsterinsights-bootstrap-container .col-md-push-9{left:75%}.monsterinsights-bootstrap-container .col-md-push-8{left:66.66666667%}.monsterinsights-bootstrap-container .col-md-push-7{left:58.33333333%}.monsterinsights-bootstrap-container .col-md-push-6{left:50%}.monsterinsights-bootstrap-container .col-md-push-5{left:41.66666667%}.monsterinsights-bootstrap-container .col-md-push-4{left:33.33333333%}.monsterinsights-bootstrap-container .col-md-push-3{left:25%}.monsterinsights-bootstrap-container .col-md-push-2{left:16.66666667%}.monsterinsights-bootstrap-container .col-md-push-1{left:8.33333333%}.monsterinsights-bootstrap-container .col-md-push-0{left:auto}.monsterinsights-bootstrap-container .col-md-offset-12{margin-left:100%}.monsterinsights-bootstrap-container .col-md-offset-11{margin-left:91.66666667%}.monsterinsights-bootstrap-container .col-md-offset-10{margin-left:83.33333333%}.monsterinsights-bootstrap-container .col-md-offset-9{margin-left:75%}.monsterinsights-bootstrap-container .col-md-offset-8{margin-left:66.66666667%}.monsterinsights-bootstrap-container .col-md-offset-7{margin-left:58.33333333%}.monsterinsights-bootstrap-container .col-md-offset-6{margin-left:50%}.monsterinsights-bootstrap-container .col-md-offset-5{margin-left:41.66666667%}.monsterinsights-bootstrap-container .col-md-offset-4{margin-left:33.33333333%}.monsterinsights-bootstrap-container .col-md-offset-3{margin-left:25%}.monsterinsights-bootstrap-container .col-md-offset-2{margin-left:16.66666667%}.monsterinsights-bootstrap-container .col-md-offset-1{margin-left:8.33333333%}.monsterinsights-bootstrap-container .col-md-offset-0{margin-left:0%}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .col-lg-1,.monsterinsights-bootstrap-container .col-lg-2,.monsterinsights-bootstrap-container .col-lg-3,.monsterinsights-bootstrap-container .col-lg-4,.monsterinsights-bootstrap-container .col-lg-5,.monsterinsights-bootstrap-container .col-lg-6,.monsterinsights-bootstrap-container .col-lg-7,.monsterinsights-bootstrap-container .col-lg-8,.monsterinsights-bootstrap-container .col-lg-9,.monsterinsights-bootstrap-container .col-lg-10,.monsterinsights-bootstrap-container .col-lg-11,.monsterinsights-bootstrap-container .col-lg-12{float:left}.monsterinsights-bootstrap-container .col-lg-12{width:100%}.monsterinsights-bootstrap-container .col-lg-11{width:91.66666667%}.monsterinsights-bootstrap-container .col-lg-10{width:83.33333333%}.monsterinsights-bootstrap-container .col-lg-9{width:75%}.monsterinsights-bootstrap-container .col-lg-8{width:66.66666667%}.monsterinsights-bootstrap-container .col-lg-7{width:58.33333333%}.monsterinsights-bootstrap-container .col-lg-6{width:50%}.monsterinsights-bootstrap-container .col-lg-5{width:41.66666667%}.monsterinsights-bootstrap-container .col-lg-4{width:33.33333333%}.monsterinsights-bootstrap-container .col-lg-3{width:25%}.monsterinsights-bootstrap-container .col-lg-2{width:16.66666667%}.monsterinsights-bootstrap-container .col-lg-1{width:8.33333333%}.monsterinsights-bootstrap-container .col-lg-pull-12{right:100%}.monsterinsights-bootstrap-container .col-lg-pull-11{right:91.66666667%}.monsterinsights-bootstrap-container .col-lg-pull-10{right:83.33333333%}.monsterinsights-bootstrap-container .col-lg-pull-9{right:75%}.monsterinsights-bootstrap-container .col-lg-pull-8{right:66.66666667%}.monsterinsights-bootstrap-container .col-lg-pull-7{right:58.33333333%}.monsterinsights-bootstrap-container .col-lg-pull-6{right:50%}.monsterinsights-bootstrap-container .col-lg-pull-5{right:41.66666667%}.monsterinsights-bootstrap-container .col-lg-pull-4{right:33.33333333%}.monsterinsights-bootstrap-container .col-lg-pull-3{right:25%}.monsterinsights-bootstrap-container .col-lg-pull-2{right:16.66666667%}.monsterinsights-bootstrap-container .col-lg-pull-1{right:8.33333333%}.monsterinsights-bootstrap-container .col-lg-pull-0{right:auto}.monsterinsights-bootstrap-container .col-lg-push-12{left:100%}.monsterinsights-bootstrap-container .col-lg-push-11{left:91.66666667%}.monsterinsights-bootstrap-container .col-lg-push-10{left:83.33333333%}.monsterinsights-bootstrap-container .col-lg-push-9{left:75%}.monsterinsights-bootstrap-container .col-lg-push-8{left:66.66666667%}.monsterinsights-bootstrap-container .col-lg-push-7{left:58.33333333%}.monsterinsights-bootstrap-container .col-lg-push-6{left:50%}.monsterinsights-bootstrap-container .col-lg-push-5{left:41.66666667%}.monsterinsights-bootstrap-container .col-lg-push-4{left:33.33333333%}.monsterinsights-bootstrap-container .col-lg-push-3{left:25%}.monsterinsights-bootstrap-container .col-lg-push-2{left:16.66666667%}.monsterinsights-bootstrap-container .col-lg-push-1{left:8.33333333%}.monsterinsights-bootstrap-container .col-lg-push-0{left:auto}.monsterinsights-bootstrap-container .col-lg-offset-12{margin-left:100%}.monsterinsights-bootstrap-container .col-lg-offset-11{margin-left:91.66666667%}.monsterinsights-bootstrap-container .col-lg-offset-10{margin-left:83.33333333%}.monsterinsights-bootstrap-container .col-lg-offset-9{margin-left:75%}.monsterinsights-bootstrap-container .col-lg-offset-8{margin-left:66.66666667%}.monsterinsights-bootstrap-container .col-lg-offset-7{margin-left:58.33333333%}.monsterinsights-bootstrap-container .col-lg-offset-6{margin-left:50%}.monsterinsights-bootstrap-container .col-lg-offset-5{margin-left:41.66666667%}.monsterinsights-bootstrap-container .col-lg-offset-4{margin-left:33.33333333%}.monsterinsights-bootstrap-container .col-lg-offset-3{margin-left:25%}.monsterinsights-bootstrap-container .col-lg-offset-2{margin-left:16.66666667%}.monsterinsights-bootstrap-container .col-lg-offset-1{margin-left:8.33333333%}.monsterinsights-bootstrap-container .col-lg-offset-0{margin-left:0%}}.monsterinsights-bootstrap-container table{background-color:transparent}.monsterinsights-bootstrap-container table col[class*="col-"]{position:static;display:table-column;float:none}.monsterinsights-bootstrap-container table td[class*="col-"],.monsterinsights-bootstrap-container table th[class*="col-"]{position:static;display:table-cell;float:none}.monsterinsights-bootstrap-container caption{padding-top:8px;padding-bottom:8px;color:#777777;text-align:left}.monsterinsights-bootstrap-container th{text-align:left}.monsterinsights-bootstrap-container .table{width:100%;max-width:100%;margin-bottom:20px}.monsterinsights-bootstrap-container .table > thead > tr > th,.monsterinsights-bootstrap-container .table > tbody > tr > th,.monsterinsights-bootstrap-container .table > tfoot > tr > th,.monsterinsights-bootstrap-container .table > thead > tr > td,.monsterinsights-bootstrap-container .table > tbody > tr > td,.monsterinsights-bootstrap-container .table > tfoot > tr > td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.monsterinsights-bootstrap-container .table > thead > tr > th{vertical-align:bottom;border-bottom:2px solid #ddd}.monsterinsights-bootstrap-container .table > caption + thead > tr:first-child > th,.monsterinsights-bootstrap-container .table > colgroup + thead > tr:first-child > th,.monsterinsights-bootstrap-container .table > thead:first-child > tr:first-child > th,.monsterinsights-bootstrap-container .table > caption + thead > tr:first-child > td,.monsterinsights-bootstrap-container .table > colgroup + thead > tr:first-child > td,.monsterinsights-bootstrap-container .table > thead:first-child > tr:first-child > td{border-top:0}.monsterinsights-bootstrap-container .table > tbody + tbody{border-top:2px solid #ddd}.monsterinsights-bootstrap-container .table .table{background-color:#fff}.monsterinsights-bootstrap-container .table-condensed > thead > tr > th,.monsterinsights-bootstrap-container .table-condensed > tbody > tr > th,.monsterinsights-bootstrap-container .table-condensed > tfoot > tr > th,.monsterinsights-bootstrap-container .table-condensed > thead > tr > td,.monsterinsights-bootstrap-container .table-condensed > tbody > tr > td,.monsterinsights-bootstrap-container .table-condensed > tfoot > tr > td{padding:5px}.monsterinsights-bootstrap-container .table-bordered{border:1px solid #ddd}.monsterinsights-bootstrap-container .table-bordered > thead > tr > th,.monsterinsights-bootstrap-container .table-bordered > tbody > tr > th,.monsterinsights-bootstrap-container .table-bordered > tfoot > tr > th,.monsterinsights-bootstrap-container .table-bordered > thead > tr > td,.monsterinsights-bootstrap-container .table-bordered > tbody > tr > td,.monsterinsights-bootstrap-container .table-bordered > tfoot > tr > td{border:1px solid #ddd}.monsterinsights-bootstrap-container .table-bordered > thead > tr > th,.monsterinsights-bootstrap-container .table-bordered > thead > tr > td{border-bottom-width:2px}.monsterinsights-bootstrap-container .table-striped > tbody > tr:nth-of-type(odd){background-color:#f9f9f9}.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover{background-color:#f5f5f5}.monsterinsights-bootstrap-container .table > thead > tr > td.active,.monsterinsights-bootstrap-container .table > tbody > tr > td.active,.monsterinsights-bootstrap-container .table > tfoot > tr > td.active,.monsterinsights-bootstrap-container .table > thead > tr > th.active,.monsterinsights-bootstrap-container .table > tbody > tr > th.active,.monsterinsights-bootstrap-container .table > tfoot > tr > th.active,.monsterinsights-bootstrap-container .table > thead > tr.active > td,.monsterinsights-bootstrap-container .table > tbody > tr.active > td,.monsterinsights-bootstrap-container .table > tfoot > tr.active > td,.monsterinsights-bootstrap-container .table > thead > tr.active > th,.monsterinsights-bootstrap-container .table > tbody > tr.active > th,.monsterinsights-bootstrap-container .table > tfoot > tr.active > th{background-color:#f5f5f5}.monsterinsights-bootstrap-container .table-hover > tbody > tr > td.active:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr > th.active:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr.active:hover > td,.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .active,.monsterinsights-bootstrap-container .table-hover > tbody > tr.active:hover > th{background-color:#e8e8e8}.monsterinsights-bootstrap-container .table > thead > tr > td.success,.monsterinsights-bootstrap-container .table > tbody > tr > td.success,.monsterinsights-bootstrap-container .table > tfoot > tr > td.success,.monsterinsights-bootstrap-container .table > thead > tr > th.success,.monsterinsights-bootstrap-container .table > tbody > tr > th.success,.monsterinsights-bootstrap-container .table > tfoot > tr > th.success,.monsterinsights-bootstrap-container .table > thead > tr.success > td,.monsterinsights-bootstrap-container .table > tbody > tr.success > td,.monsterinsights-bootstrap-container .table > tfoot > tr.success > td,.monsterinsights-bootstrap-container .table > thead > tr.success > th,.monsterinsights-bootstrap-container .table > tbody > tr.success > th,.monsterinsights-bootstrap-container .table > tfoot > tr.success > th{background-color:#dff0d8}.monsterinsights-bootstrap-container .table-hover > tbody > tr > td.success:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr > th.success:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr.success:hover > td,.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .success,.monsterinsights-bootstrap-container .table-hover > tbody > tr.success:hover > th{background-color:#d0e9c6}.monsterinsights-bootstrap-container .table > thead > tr > td.info,.monsterinsights-bootstrap-container .table > tbody > tr > td.info,.monsterinsights-bootstrap-container .table > tfoot > tr > td.info,.monsterinsights-bootstrap-container .table > thead > tr > th.info,.monsterinsights-bootstrap-container .table > tbody > tr > th.info,.monsterinsights-bootstrap-container .table > tfoot > tr > th.info,.monsterinsights-bootstrap-container .table > thead > tr.info > td,.monsterinsights-bootstrap-container .table > tbody > tr.info > td,.monsterinsights-bootstrap-container .table > tfoot > tr.info > td,.monsterinsights-bootstrap-container .table > thead > tr.info > th,.monsterinsights-bootstrap-container .table > tbody > tr.info > th,.monsterinsights-bootstrap-container .table > tfoot > tr.info > th{background-color:#d9edf7}.monsterinsights-bootstrap-container .table-hover > tbody > tr > td.info:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr > th.info:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr.info:hover > td,.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .info,.monsterinsights-bootstrap-container .table-hover > tbody > tr.info:hover > th{background-color:#c4e3f3}.monsterinsights-bootstrap-container .table > thead > tr > td.warning,.monsterinsights-bootstrap-container .table > tbody > tr > td.warning,.monsterinsights-bootstrap-container .table > tfoot > tr > td.warning,.monsterinsights-bootstrap-container .table > thead > tr > th.warning,.monsterinsights-bootstrap-container .table > tbody > tr > th.warning,.monsterinsights-bootstrap-container .table > tfoot > tr > th.warning,.monsterinsights-bootstrap-container .table > thead > tr.warning > td,.monsterinsights-bootstrap-container .table > tbody > tr.warning > td,.monsterinsights-bootstrap-container .table > tfoot > tr.warning > td,.monsterinsights-bootstrap-container .table > thead > tr.warning > th,.monsterinsights-bootstrap-container .table > tbody > tr.warning > th,.monsterinsights-bootstrap-container .table > tfoot > tr.warning > th{background-color:#fcf8e3}.monsterinsights-bootstrap-container .table-hover > tbody > tr > td.warning:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr > th.warning:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr.warning:hover > td,.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .warning,.monsterinsights-bootstrap-container .table-hover > tbody > tr.warning:hover > th{background-color:#faf2cc}.monsterinsights-bootstrap-container .table > thead > tr > td.danger,.monsterinsights-bootstrap-container .table > tbody > tr > td.danger,.monsterinsights-bootstrap-container .table > tfoot > tr > td.danger,.monsterinsights-bootstrap-container .table > thead > tr > th.danger,.monsterinsights-bootstrap-container .table > tbody > tr > th.danger,.monsterinsights-bootstrap-container .table > tfoot > tr > th.danger,.monsterinsights-bootstrap-container .table > thead > tr.danger > td,.monsterinsights-bootstrap-container .table > tbody > tr.danger > td,.monsterinsights-bootstrap-container .table > tfoot > tr.danger > td,.monsterinsights-bootstrap-container .table > thead > tr.danger > th,.monsterinsights-bootstrap-container .table > tbody > tr.danger > th,.monsterinsights-bootstrap-container .table > tfoot > tr.danger > th{background-color:#f2dede}.monsterinsights-bootstrap-container .table-hover > tbody > tr > td.danger:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr > th.danger:hover,.monsterinsights-bootstrap-container .table-hover > tbody > tr.danger:hover > td,.monsterinsights-bootstrap-container .table-hover > tbody > tr:hover > .danger,.monsterinsights-bootstrap-container .table-hover > tbody > tr.danger:hover > th{background-color:#ebcccc}.monsterinsights-bootstrap-container .table-responsive{min-height:0.01%;overflow-x:auto}@media screen and (max-width: 767px){.monsterinsights-bootstrap-container .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.monsterinsights-bootstrap-container .table-responsive > .table{margin-bottom:0}.monsterinsights-bootstrap-container .table-responsive > .table > thead > tr > th,.monsterinsights-bootstrap-container .table-responsive > .table > tbody > tr > th,.monsterinsights-bootstrap-container .table-responsive > .table > tfoot > tr > th,.monsterinsights-bootstrap-container .table-responsive > .table > thead > tr > td,.monsterinsights-bootstrap-container .table-responsive > .table > tbody > tr > td,.monsterinsights-bootstrap-container .table-responsive > .table > tfoot > tr > td{white-space:nowrap}.monsterinsights-bootstrap-container .table-responsive > .table-bordered{border:0}.monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > th:first-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > th:first-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > th:first-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > td:first-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > td:first-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > td:first-child{border-left:0}.monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > th:last-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > th:last-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > th:last-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > thead > tr > td:last-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr > td:last-child,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr > td:last-child{border-right:0}.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr:last-child > th,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr:last-child > th,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tbody > tr:last-child > td,.monsterinsights-bootstrap-container .table-responsive > .table-bordered > tfoot > tr:last-child > td{border-bottom:0}}.monsterinsights-bootstrap-container fieldset{min-width:0;padding:0;margin:0;border:0}.monsterinsights-bootstrap-container legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333333;border:0;border-bottom:1px solid #e5e5e5}.monsterinsights-bootstrap-container label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.monsterinsights-bootstrap-container input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}.monsterinsights-bootstrap-container input[type="radio"],.monsterinsights-bootstrap-container input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}.monsterinsights-bootstrap-container input[type="radio"][disabled],.monsterinsights-bootstrap-container input[type="checkbox"][disabled],.monsterinsights-bootstrap-container input[type="radio"].disabled,.monsterinsights-bootstrap-container input[type="checkbox"].disabled,.monsterinsights-bootstrap-container fieldset[disabled] input[type="radio"],.monsterinsights-bootstrap-container fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.monsterinsights-bootstrap-container input[type="file"]{display:block}.monsterinsights-bootstrap-container input[type="range"]{display:block;width:100%}.monsterinsights-bootstrap-container select[multiple],.monsterinsights-bootstrap-container select[size]{height:auto}.monsterinsights-bootstrap-container input[type="file"]:focus,.monsterinsights-bootstrap-container input[type="radio"]:focus,.monsterinsights-bootstrap-container input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.monsterinsights-bootstrap-container output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555555}.monsterinsights-bootstrap-container .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s}.monsterinsights-bootstrap-container .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6)}.monsterinsights-bootstrap-container .form-control::-moz-placeholder{color:#999;opacity:1}.monsterinsights-bootstrap-container .form-control:-ms-input-placeholder{color:#999}.monsterinsights-bootstrap-container .form-control::-webkit-input-placeholder{color:#999}.monsterinsights-bootstrap-container .form-control::-ms-expand{background-color:transparent;border:0}.monsterinsights-bootstrap-container .form-control[disabled],.monsterinsights-bootstrap-container .form-control[readonly],.monsterinsights-bootstrap-container fieldset[disabled] .form-control{background-color:#eeeeee;opacity:1}.monsterinsights-bootstrap-container .form-control[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .form-control{cursor:not-allowed}.monsterinsights-bootstrap-container textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio: 0){.monsterinsights-bootstrap-container input[type="date"].form-control,.monsterinsights-bootstrap-container input[type="time"].form-control,.monsterinsights-bootstrap-container input[type="datetime-local"].form-control,.monsterinsights-bootstrap-container input[type="month"].form-control{line-height:34px}.monsterinsights-bootstrap-container input[type="date"].input-sm,.monsterinsights-bootstrap-container input[type="time"].input-sm,.monsterinsights-bootstrap-container input[type="datetime-local"].input-sm,.monsterinsights-bootstrap-container input[type="month"].input-sm,.monsterinsights-bootstrap-container .input-group-sm input[type="date"],.monsterinsights-bootstrap-container .input-group-sm input[type="time"],.monsterinsights-bootstrap-container .input-group-sm input[type="datetime-local"],.monsterinsights-bootstrap-container .input-group-sm input[type="month"]{line-height:30px}.monsterinsights-bootstrap-container input[type="date"].input-lg,.monsterinsights-bootstrap-container input[type="time"].input-lg,.monsterinsights-bootstrap-container input[type="datetime-local"].input-lg,.monsterinsights-bootstrap-container input[type="month"].input-lg,.monsterinsights-bootstrap-container .input-group-lg input[type="date"],.monsterinsights-bootstrap-container .input-group-lg input[type="time"],.monsterinsights-bootstrap-container .input-group-lg input[type="datetime-local"],.monsterinsights-bootstrap-container .input-group-lg input[type="month"]{line-height:46px}}.monsterinsights-bootstrap-container .form-group{margin-bottom:15px}.monsterinsights-bootstrap-container .radio,.monsterinsights-bootstrap-container .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.monsterinsights-bootstrap-container .radio.disabled label,.monsterinsights-bootstrap-container .checkbox.disabled label,.monsterinsights-bootstrap-container fieldset[disabled] .radio label,.monsterinsights-bootstrap-container fieldset[disabled] .checkbox label{cursor:not-allowed}.monsterinsights-bootstrap-container .radio label,.monsterinsights-bootstrap-container .checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.monsterinsights-bootstrap-container .radio input[type="radio"],.monsterinsights-bootstrap-container .radio-inline input[type="radio"],.monsterinsights-bootstrap-container .checkbox input[type="checkbox"],.monsterinsights-bootstrap-container .checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.monsterinsights-bootstrap-container .radio + .radio,.monsterinsights-bootstrap-container .checkbox + .checkbox{margin-top:-5px}.monsterinsights-bootstrap-container .radio-inline,.monsterinsights-bootstrap-container .checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.monsterinsights-bootstrap-container .radio-inline.disabled,.monsterinsights-bootstrap-container .checkbox-inline.disabled,.monsterinsights-bootstrap-container fieldset[disabled] .radio-inline,.monsterinsights-bootstrap-container fieldset[disabled] .checkbox-inline{cursor:not-allowed}.monsterinsights-bootstrap-container .radio-inline + .radio-inline,.monsterinsights-bootstrap-container .checkbox-inline + .checkbox-inline{margin-top:0;margin-left:10px}.monsterinsights-bootstrap-container .form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.monsterinsights-bootstrap-container .form-control-static.input-lg,.monsterinsights-bootstrap-container .form-control-static.input-sm{padding-right:0;padding-left:0}.monsterinsights-bootstrap-container .input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.monsterinsights-bootstrap-container select.input-sm{height:30px;line-height:30px}.monsterinsights-bootstrap-container textarea.input-sm,.monsterinsights-bootstrap-container select[multiple].input-sm{height:auto}.monsterinsights-bootstrap-container .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.monsterinsights-bootstrap-container .form-group-sm select.form-control{height:30px;line-height:30px}.monsterinsights-bootstrap-container .form-group-sm textarea.form-control,.monsterinsights-bootstrap-container .form-group-sm select[multiple].form-control{height:auto}.monsterinsights-bootstrap-container .form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.monsterinsights-bootstrap-container .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.monsterinsights-bootstrap-container select.input-lg{height:46px;line-height:46px}.monsterinsights-bootstrap-container textarea.input-lg,.monsterinsights-bootstrap-container select[multiple].input-lg{height:auto}.monsterinsights-bootstrap-container .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.monsterinsights-bootstrap-container .form-group-lg select.form-control{height:46px;line-height:46px}.monsterinsights-bootstrap-container .form-group-lg textarea.form-control,.monsterinsights-bootstrap-container .form-group-lg select[multiple].form-control{height:auto}.monsterinsights-bootstrap-container .form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.monsterinsights-bootstrap-container .has-feedback{position:relative}.monsterinsights-bootstrap-container .has-feedback .form-control{padding-right:42.5px}.monsterinsights-bootstrap-container .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.monsterinsights-bootstrap-container .input-lg + .form-control-feedback,.monsterinsights-bootstrap-container .input-group-lg + .form-control-feedback,.monsterinsights-bootstrap-container .form-group-lg .form-control + .form-control-feedback{width:46px;height:46px;line-height:46px}.monsterinsights-bootstrap-container .input-sm + .form-control-feedback,.monsterinsights-bootstrap-container .input-group-sm + .form-control-feedback,.monsterinsights-bootstrap-container .form-group-sm .form-control + .form-control-feedback{width:30px;height:30px;line-height:30px}.monsterinsights-bootstrap-container .has-success .help-block,.monsterinsights-bootstrap-container .has-success .control-label,.monsterinsights-bootstrap-container .has-success .radio,.monsterinsights-bootstrap-container .has-success .checkbox,.monsterinsights-bootstrap-container .has-success .radio-inline,.monsterinsights-bootstrap-container .has-success .checkbox-inline,.monsterinsights-bootstrap-container .has-success.radio label,.monsterinsights-bootstrap-container .has-success.checkbox label,.monsterinsights-bootstrap-container .has-success.radio-inline label,.monsterinsights-bootstrap-container .has-success.checkbox-inline label{color:#3c763d}.monsterinsights-bootstrap-container .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168}.monsterinsights-bootstrap-container .has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.monsterinsights-bootstrap-container .has-success .form-control-feedback{color:#3c763d}.monsterinsights-bootstrap-container .has-warning .help-block,.monsterinsights-bootstrap-container .has-warning .control-label,.monsterinsights-bootstrap-container .has-warning .radio,.monsterinsights-bootstrap-container .has-warning .checkbox,.monsterinsights-bootstrap-container .has-warning .radio-inline,.monsterinsights-bootstrap-container .has-warning .checkbox-inline,.monsterinsights-bootstrap-container .has-warning.radio label,.monsterinsights-bootstrap-container .has-warning.checkbox label,.monsterinsights-bootstrap-container .has-warning.radio-inline label,.monsterinsights-bootstrap-container .has-warning.checkbox-inline label{color:#8a6d3b}.monsterinsights-bootstrap-container .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b}.monsterinsights-bootstrap-container .has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.monsterinsights-bootstrap-container .has-warning .form-control-feedback{color:#8a6d3b}.monsterinsights-bootstrap-container .has-error .help-block,.monsterinsights-bootstrap-container .has-error .control-label,.monsterinsights-bootstrap-container .has-error .radio,.monsterinsights-bootstrap-container .has-error .checkbox,.monsterinsights-bootstrap-container .has-error .radio-inline,.monsterinsights-bootstrap-container .has-error .checkbox-inline,.monsterinsights-bootstrap-container .has-error.radio label,.monsterinsights-bootstrap-container .has-error.checkbox label,.monsterinsights-bootstrap-container .has-error.radio-inline label,.monsterinsights-bootstrap-container .has-error.checkbox-inline label{color:#a94442}.monsterinsights-bootstrap-container .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483}.monsterinsights-bootstrap-container .has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.monsterinsights-bootstrap-container .has-error .form-control-feedback{color:#a94442}.monsterinsights-bootstrap-container .has-feedback label ~ .form-control-feedback{top:25px}.monsterinsights-bootstrap-container .has-feedback label.sr-only ~ .form-control-feedback{top:0}.monsterinsights-bootstrap-container .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width: 768px){.monsterinsights-bootstrap-container .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.monsterinsights-bootstrap-container .form-inline .form-control-static{display:inline-block}.monsterinsights-bootstrap-container .form-inline .input-group{display:inline-table;vertical-align:middle}.monsterinsights-bootstrap-container .form-inline .input-group .input-group-addon,.monsterinsights-bootstrap-container .form-inline .input-group .input-group-btn,.monsterinsights-bootstrap-container .form-inline .input-group .form-control{width:auto}.monsterinsights-bootstrap-container .form-inline .input-group > .form-control{width:100%}.monsterinsights-bootstrap-container .form-inline .control-label{margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .form-inline .radio,.monsterinsights-bootstrap-container .form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .form-inline .radio label,.monsterinsights-bootstrap-container .form-inline .checkbox label{padding-left:0}.monsterinsights-bootstrap-container .form-inline .radio input[type="radio"],.monsterinsights-bootstrap-container .form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.monsterinsights-bootstrap-container .form-inline .has-feedback .form-control-feedback{top:0}}.monsterinsights-bootstrap-container .form-horizontal .radio,.monsterinsights-bootstrap-container .form-horizontal .checkbox,.monsterinsights-bootstrap-container .form-horizontal .radio-inline,.monsterinsights-bootstrap-container .form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.monsterinsights-bootstrap-container .form-horizontal .radio,.monsterinsights-bootstrap-container .form-horizontal .checkbox{min-height:27px}.monsterinsights-bootstrap-container .form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.monsterinsights-bootstrap-container .form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.monsterinsights-bootstrap-container .form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width: 768px){.monsterinsights-bootstrap-container .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width: 768px){.monsterinsights-bootstrap-container .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.monsterinsights-bootstrap-container .btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights-bootstrap-container .btn:focus,.monsterinsights-bootstrap-container .btn:active:focus,.monsterinsights-bootstrap-container .btn.active:focus,.monsterinsights-bootstrap-container .btn.focus,.monsterinsights-bootstrap-container .btn:active.focus,.monsterinsights-bootstrap-container .btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.monsterinsights-bootstrap-container .btn:hover,.monsterinsights-bootstrap-container .btn:focus,.monsterinsights-bootstrap-container .btn.focus{color:#333;text-decoration:none}.monsterinsights-bootstrap-container .btn:active,.monsterinsights-bootstrap-container .btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.monsterinsights-bootstrap-container .btn.disabled,.monsterinsights-bootstrap-container .btn[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:0.65;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container a.btn.disabled,.monsterinsights-bootstrap-container fieldset[disabled] a.btn{pointer-events:none}.monsterinsights-bootstrap-container .btn-default{color:#333;background-color:#fff;border-color:#ccc}.monsterinsights-bootstrap-container .btn-default:focus,.monsterinsights-bootstrap-container .btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.monsterinsights-bootstrap-container .btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.monsterinsights-bootstrap-container .btn-default:active,.monsterinsights-bootstrap-container .btn-default.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.monsterinsights-bootstrap-container .btn-default:active:hover,.monsterinsights-bootstrap-container .btn-default.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default:hover,.monsterinsights-bootstrap-container .btn-default:active:focus,.monsterinsights-bootstrap-container .btn-default.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default:focus,.monsterinsights-bootstrap-container .btn-default:active.focus,.monsterinsights-bootstrap-container .btn-default.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.monsterinsights-bootstrap-container .btn-default.disabled:hover,.monsterinsights-bootstrap-container .btn-default[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default:hover,.monsterinsights-bootstrap-container .btn-default.disabled:focus,.monsterinsights-bootstrap-container .btn-default[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default:focus,.monsterinsights-bootstrap-container .btn-default.disabled.focus,.monsterinsights-bootstrap-container .btn-default[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.monsterinsights-bootstrap-container .btn-default .badge{color:#fff;background-color:#333}.monsterinsights-bootstrap-container .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.monsterinsights-bootstrap-container .btn-primary:focus,.monsterinsights-bootstrap-container .btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.monsterinsights-bootstrap-container .btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.monsterinsights-bootstrap-container .btn-primary:active,.monsterinsights-bootstrap-container .btn-primary.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}.monsterinsights-bootstrap-container .btn-primary:active:hover,.monsterinsights-bootstrap-container .btn-primary.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary:hover,.monsterinsights-bootstrap-container .btn-primary:active:focus,.monsterinsights-bootstrap-container .btn-primary.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary:focus,.monsterinsights-bootstrap-container .btn-primary:active.focus,.monsterinsights-bootstrap-container .btn-primary.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.monsterinsights-bootstrap-container .btn-primary.disabled:hover,.monsterinsights-bootstrap-container .btn-primary[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:hover,.monsterinsights-bootstrap-container .btn-primary.disabled:focus,.monsterinsights-bootstrap-container .btn-primary[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:focus,.monsterinsights-bootstrap-container .btn-primary.disabled.focus,.monsterinsights-bootstrap-container .btn-primary[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.monsterinsights-bootstrap-container .btn-primary .badge{color:#337ab7;background-color:#fff}.monsterinsights-bootstrap-container .btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.monsterinsights-bootstrap-container .btn-success:focus,.monsterinsights-bootstrap-container .btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.monsterinsights-bootstrap-container .btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.monsterinsights-bootstrap-container .btn-success:active,.monsterinsights-bootstrap-container .btn-success.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.monsterinsights-bootstrap-container .btn-success:active:hover,.monsterinsights-bootstrap-container .btn-success.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success:hover,.monsterinsights-bootstrap-container .btn-success:active:focus,.monsterinsights-bootstrap-container .btn-success.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success:focus,.monsterinsights-bootstrap-container .btn-success:active.focus,.monsterinsights-bootstrap-container .btn-success.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.monsterinsights-bootstrap-container .btn-success.disabled:hover,.monsterinsights-bootstrap-container .btn-success[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success:hover,.monsterinsights-bootstrap-container .btn-success.disabled:focus,.monsterinsights-bootstrap-container .btn-success[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success:focus,.monsterinsights-bootstrap-container .btn-success.disabled.focus,.monsterinsights-bootstrap-container .btn-success[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.monsterinsights-bootstrap-container .btn-success .badge{color:#5cb85c;background-color:#fff}.monsterinsights-bootstrap-container .btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.monsterinsights-bootstrap-container .btn-info:focus,.monsterinsights-bootstrap-container .btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.monsterinsights-bootstrap-container .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.monsterinsights-bootstrap-container .btn-info:active,.monsterinsights-bootstrap-container .btn-info.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.monsterinsights-bootstrap-container .btn-info:active:hover,.monsterinsights-bootstrap-container .btn-info.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info:hover,.monsterinsights-bootstrap-container .btn-info:active:focus,.monsterinsights-bootstrap-container .btn-info.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info:focus,.monsterinsights-bootstrap-container .btn-info:active.focus,.monsterinsights-bootstrap-container .btn-info.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.monsterinsights-bootstrap-container .btn-info.disabled:hover,.monsterinsights-bootstrap-container .btn-info[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info:hover,.monsterinsights-bootstrap-container .btn-info.disabled:focus,.monsterinsights-bootstrap-container .btn-info[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info:focus,.monsterinsights-bootstrap-container .btn-info.disabled.focus,.monsterinsights-bootstrap-container .btn-info[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.monsterinsights-bootstrap-container .btn-info .badge{color:#5bc0de;background-color:#fff}.monsterinsights-bootstrap-container .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.monsterinsights-bootstrap-container .btn-warning:focus,.monsterinsights-bootstrap-container .btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.monsterinsights-bootstrap-container .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.monsterinsights-bootstrap-container .btn-warning:active,.monsterinsights-bootstrap-container .btn-warning.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.monsterinsights-bootstrap-container .btn-warning:active:hover,.monsterinsights-bootstrap-container .btn-warning.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning:hover,.monsterinsights-bootstrap-container .btn-warning:active:focus,.monsterinsights-bootstrap-container .btn-warning.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning:focus,.monsterinsights-bootstrap-container .btn-warning:active.focus,.monsterinsights-bootstrap-container .btn-warning.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.monsterinsights-bootstrap-container .btn-warning.disabled:hover,.monsterinsights-bootstrap-container .btn-warning[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:hover,.monsterinsights-bootstrap-container .btn-warning.disabled:focus,.monsterinsights-bootstrap-container .btn-warning[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:focus,.monsterinsights-bootstrap-container .btn-warning.disabled.focus,.monsterinsights-bootstrap-container .btn-warning[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.monsterinsights-bootstrap-container .btn-warning .badge{color:#f0ad4e;background-color:#fff}.monsterinsights-bootstrap-container .btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.monsterinsights-bootstrap-container .btn-danger:focus,.monsterinsights-bootstrap-container .btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.monsterinsights-bootstrap-container .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.monsterinsights-bootstrap-container .btn-danger:active,.monsterinsights-bootstrap-container .btn-danger.active,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.monsterinsights-bootstrap-container .btn-danger:active:hover,.monsterinsights-bootstrap-container .btn-danger.active:hover,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger:hover,.monsterinsights-bootstrap-container .btn-danger:active:focus,.monsterinsights-bootstrap-container .btn-danger.active:focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger:focus,.monsterinsights-bootstrap-container .btn-danger:active.focus,.monsterinsights-bootstrap-container .btn-danger.active.focus,.monsterinsights-bootstrap-container .open > .dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.monsterinsights-bootstrap-container .btn-danger.disabled:hover,.monsterinsights-bootstrap-container .btn-danger[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:hover,.monsterinsights-bootstrap-container .btn-danger.disabled:focus,.monsterinsights-bootstrap-container .btn-danger[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:focus,.monsterinsights-bootstrap-container .btn-danger.disabled.focus,.monsterinsights-bootstrap-container .btn-danger[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.monsterinsights-bootstrap-container .btn-danger .badge{color:#d9534f;background-color:#fff}.monsterinsights-bootstrap-container .btn-link{font-weight:400;color:#337ab7;border-radius:0}.monsterinsights-bootstrap-container .btn-link,.monsterinsights-bootstrap-container .btn-link:active,.monsterinsights-bootstrap-container .btn-link.active,.monsterinsights-bootstrap-container .btn-link[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container .btn-link,.monsterinsights-bootstrap-container .btn-link:hover,.monsterinsights-bootstrap-container .btn-link:focus,.monsterinsights-bootstrap-container .btn-link:active{border-color:transparent}.monsterinsights-bootstrap-container .btn-link:hover,.monsterinsights-bootstrap-container .btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.monsterinsights-bootstrap-container .btn-link[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-link:hover,.monsterinsights-bootstrap-container .btn-link[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-link:focus{color:#777777;text-decoration:none}.monsterinsights-bootstrap-container .btn-lg,.monsterinsights-bootstrap-container .btn-group-lg > .btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.monsterinsights-bootstrap-container .btn-sm,.monsterinsights-bootstrap-container .btn-group-sm > .btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.monsterinsights-bootstrap-container .btn-xs,.monsterinsights-bootstrap-container .btn-group-xs > .btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.monsterinsights-bootstrap-container .btn-block{display:block;width:100%}.monsterinsights-bootstrap-container .btn-block + .btn-block{margin-top:5px}.monsterinsights-bootstrap-container input[type="submit"].btn-block,.monsterinsights-bootstrap-container input[type="reset"].btn-block,.monsterinsights-bootstrap-container input[type="button"].btn-block{width:100%}.monsterinsights-bootstrap-container .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear}.monsterinsights-bootstrap-container .fade.in{opacity:1}.monsterinsights-bootstrap-container .collapse{display:none}.monsterinsights-bootstrap-container .collapse.in{display:block}.monsterinsights-bootstrap-container tr.collapse.in{display:table-row}.monsterinsights-bootstrap-container tbody.collapse.in{display:table-row-group}.monsterinsights-bootstrap-container .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:0.35s;-o-transition-duration:0.35s;transition-duration:0.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.monsterinsights-bootstrap-container .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.monsterinsights-bootstrap-container .dropup,.monsterinsights-bootstrap-container .dropdown{position:relative}.monsterinsights-bootstrap-container .dropdown-toggle:focus{outline:0}.monsterinsights-bootstrap-container .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.monsterinsights-bootstrap-container .dropdown-menu.pull-right{right:0;left:auto}.monsterinsights-bootstrap-container .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.monsterinsights-bootstrap-container .dropdown-menu > li > a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333333;white-space:nowrap}.monsterinsights-bootstrap-container .dropdown-menu > li > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > li > a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.monsterinsights-bootstrap-container .dropdown-menu > .active > a,.monsterinsights-bootstrap-container .dropdown-menu > .active > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > .active > a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.monsterinsights-bootstrap-container .dropdown-menu > .disabled > a,.monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:focus{color:#777777}.monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > .disabled > a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.monsterinsights-bootstrap-container .open > .dropdown-menu{display:block}.monsterinsights-bootstrap-container .open > a{outline:0}.monsterinsights-bootstrap-container .dropdown-menu-right{right:0;left:auto}.monsterinsights-bootstrap-container .dropdown-menu-left{right:auto;left:0}.monsterinsights-bootstrap-container .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777777;white-space:nowrap}.monsterinsights-bootstrap-container .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.monsterinsights-bootstrap-container .pull-right > .dropdown-menu{right:0;left:auto}.monsterinsights-bootstrap-container .dropup .caret,.monsterinsights-bootstrap-container .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.monsterinsights-bootstrap-container .dropup .dropdown-menu,.monsterinsights-bootstrap-container .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-right .dropdown-menu{right:0;left:auto}.monsterinsights-bootstrap-container .navbar-right .dropdown-menu-left{right:auto;left:0}}.monsterinsights-bootstrap-container .btn-group,.monsterinsights-bootstrap-container .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.monsterinsights-bootstrap-container .btn-group > .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn{position:relative;float:left}.monsterinsights-bootstrap-container .btn-group > .btn:hover,.monsterinsights-bootstrap-container .btn-group-vertical > .btn:hover,.monsterinsights-bootstrap-container .btn-group > .btn:focus,.monsterinsights-bootstrap-container .btn-group-vertical > .btn:focus,.monsterinsights-bootstrap-container .btn-group > .btn:active,.monsterinsights-bootstrap-container .btn-group-vertical > .btn:active,.monsterinsights-bootstrap-container .btn-group > .btn.active,.monsterinsights-bootstrap-container .btn-group-vertical > .btn.active{z-index:2}.monsterinsights-bootstrap-container .btn-group .btn + .btn,.monsterinsights-bootstrap-container .btn-group .btn + .btn-group,.monsterinsights-bootstrap-container .btn-group .btn-group + .btn,.monsterinsights-bootstrap-container .btn-group .btn-group + .btn-group{margin-left:-1px}.monsterinsights-bootstrap-container .btn-toolbar{margin-left:-5px}.monsterinsights-bootstrap-container .btn-toolbar .btn,.monsterinsights-bootstrap-container .btn-toolbar .btn-group,.monsterinsights-bootstrap-container .btn-toolbar .input-group{float:left}.monsterinsights-bootstrap-container .btn-toolbar > .btn,.monsterinsights-bootstrap-container .btn-toolbar > .btn-group,.monsterinsights-bootstrap-container .btn-toolbar > .input-group{margin-left:5px}.monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.monsterinsights-bootstrap-container .btn-group > .btn:first-child{margin-left:0}.monsterinsights-bootstrap-container .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.monsterinsights-bootstrap-container .btn-group > .btn:last-child:not(:first-child),.monsterinsights-bootstrap-container .btn-group > .dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .btn-group > .btn-group{float:left}.monsterinsights-bootstrap-container .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn{border-radius:0}.monsterinsights-bootstrap-container .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,.monsterinsights-bootstrap-container .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.monsterinsights-bootstrap-container .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .btn-group .dropdown-toggle:active,.monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle{outline:0}.monsterinsights-bootstrap-container .btn-group > .btn + .dropdown-toggle{padding-right:8px;padding-left:8px}.monsterinsights-bootstrap-container .btn-group > .btn-lg + .dropdown-toggle{padding-right:12px;padding-left:12px}.monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.monsterinsights-bootstrap-container .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container .btn .caret{margin-left:0}.monsterinsights-bootstrap-container .btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.monsterinsights-bootstrap-container .dropup .btn-lg .caret{border-width:0 5px 5px}.monsterinsights-bootstrap-container .btn-group-vertical > .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group > .btn{display:block;float:none;width:100%;max-width:100%}.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group > .btn{float:none}.monsterinsights-bootstrap-container .btn-group-vertical > .btn + .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn + .btn-group,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group + .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group + .btn-group{margin-top:-1px;margin-left:0}.monsterinsights-bootstrap-container .btn-group-vertical > .btn:not(:first-child):not(:last-child){border-radius:0}.monsterinsights-bootstrap-container .btn-group-vertical > .btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .btn-group-vertical > .btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn{border-radius:0}.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-bootstrap-container .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.monsterinsights-bootstrap-container .btn-group-justified > .btn,.monsterinsights-bootstrap-container .btn-group-justified > .btn-group{display:table-cell;float:none;width:1%}.monsterinsights-bootstrap-container .btn-group-justified > .btn-group .btn{width:100%}.monsterinsights-bootstrap-container .btn-group-justified > .btn-group .dropdown-menu{left:auto}.monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn input[type="radio"],.monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],.monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn input[type="checkbox"],.monsterinsights-bootstrap-container [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.monsterinsights-bootstrap-container .input-group{position:relative;display:table;border-collapse:separate}.monsterinsights-bootstrap-container .input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.monsterinsights-bootstrap-container .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.monsterinsights-bootstrap-container .input-group .form-control:focus{z-index:3}.monsterinsights-bootstrap-container .input-group-lg > .form-control,.monsterinsights-bootstrap-container .input-group-lg > .input-group-addon,.monsterinsights-bootstrap-container .input-group-lg > .input-group-btn > .btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.monsterinsights-bootstrap-container select.input-group-lg > .form-control,.monsterinsights-bootstrap-container select.input-group-lg > .input-group-addon,.monsterinsights-bootstrap-container select.input-group-lg > .input-group-btn > .btn{height:46px;line-height:46px}.monsterinsights-bootstrap-container textarea.input-group-lg > .form-control,.monsterinsights-bootstrap-container textarea.input-group-lg > .input-group-addon,.monsterinsights-bootstrap-container textarea.input-group-lg > .input-group-btn > .btn,.monsterinsights-bootstrap-container select[multiple].input-group-lg > .form-control,.monsterinsights-bootstrap-container select[multiple].input-group-lg > .input-group-addon,.monsterinsights-bootstrap-container select[multiple].input-group-lg > .input-group-btn > .btn{height:auto}.monsterinsights-bootstrap-container .input-group-sm > .form-control,.monsterinsights-bootstrap-container .input-group-sm > .input-group-addon,.monsterinsights-bootstrap-container .input-group-sm > .input-group-btn > .btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.monsterinsights-bootstrap-container select.input-group-sm > .form-control,.monsterinsights-bootstrap-container select.input-group-sm > .input-group-addon,.monsterinsights-bootstrap-container select.input-group-sm > .input-group-btn > .btn{height:30px;line-height:30px}.monsterinsights-bootstrap-container textarea.input-group-sm > .form-control,.monsterinsights-bootstrap-container textarea.input-group-sm > .input-group-addon,.monsterinsights-bootstrap-container textarea.input-group-sm > .input-group-btn > .btn,.monsterinsights-bootstrap-container select[multiple].input-group-sm > .form-control,.monsterinsights-bootstrap-container select[multiple].input-group-sm > .input-group-addon,.monsterinsights-bootstrap-container select[multiple].input-group-sm > .input-group-btn > .btn{height:auto}.monsterinsights-bootstrap-container .input-group-addon,.monsterinsights-bootstrap-container .input-group-btn,.monsterinsights-bootstrap-container .input-group .form-control{display:table-cell}.monsterinsights-bootstrap-container .input-group-addon:not(:first-child):not(:last-child),.monsterinsights-bootstrap-container .input-group-btn:not(:first-child):not(:last-child),.monsterinsights-bootstrap-container .input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.monsterinsights-bootstrap-container .input-group-addon,.monsterinsights-bootstrap-container .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.monsterinsights-bootstrap-container .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555555;text-align:center;background-color:#eeeeee;border:1px solid #ccc;border-radius:4px}.monsterinsights-bootstrap-container .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.monsterinsights-bootstrap-container .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.monsterinsights-bootstrap-container .input-group-addon input[type="radio"],.monsterinsights-bootstrap-container .input-group-addon input[type="checkbox"]{margin-top:0}.monsterinsights-bootstrap-container .input-group .form-control:first-child,.monsterinsights-bootstrap-container .input-group-addon:first-child,.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn,.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group > .btn,.monsterinsights-bootstrap-container .input-group-btn:first-child > .dropdown-toggle,.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group:not(:last-child) > .btn{border-top-right-radius:0;border-bottom-right-radius:0}.monsterinsights-bootstrap-container .input-group-addon:first-child{border-right:0}.monsterinsights-bootstrap-container .input-group .form-control:last-child,.monsterinsights-bootstrap-container .input-group-addon:last-child,.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn,.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group > .btn,.monsterinsights-bootstrap-container .input-group-btn:last-child > .dropdown-toggle,.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn:not(:first-child),.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group:not(:first-child) > .btn{border-top-left-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .input-group-addon:last-child{border-left:0}.monsterinsights-bootstrap-container .input-group-btn{position:relative;font-size:0;white-space:nowrap}.monsterinsights-bootstrap-container .input-group-btn > .btn{position:relative}.monsterinsights-bootstrap-container .input-group-btn > .btn + .btn{margin-left:-1px}.monsterinsights-bootstrap-container .input-group-btn > .btn:hover,.monsterinsights-bootstrap-container .input-group-btn > .btn:focus,.monsterinsights-bootstrap-container .input-group-btn > .btn:active{z-index:2}.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn,.monsterinsights-bootstrap-container .input-group-btn:first-child > .btn-group{margin-right:-1px}.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn,.monsterinsights-bootstrap-container .input-group-btn:last-child > .btn-group{z-index:2;margin-left:-1px}.monsterinsights-bootstrap-container .nav{padding-left:0;margin-bottom:0;list-style:none}.monsterinsights-bootstrap-container .nav > li{position:relative;display:block}.monsterinsights-bootstrap-container .nav > li > a{position:relative;display:block;padding:10px 15px}.monsterinsights-bootstrap-container .nav > li > a:hover,.monsterinsights-bootstrap-container .nav > li > a:focus{text-decoration:none;background-color:#eeeeee}.monsterinsights-bootstrap-container .nav > li.disabled > a{color:#777777}.monsterinsights-bootstrap-container .nav > li.disabled > a:hover,.monsterinsights-bootstrap-container .nav > li.disabled > a:focus{color:#777777;text-decoration:none;cursor:not-allowed;background-color:transparent}.monsterinsights-bootstrap-container .nav .open > a,.monsterinsights-bootstrap-container .nav .open > a:hover,.monsterinsights-bootstrap-container .nav .open > a:focus{background-color:#eeeeee;border-color:#337ab7}.monsterinsights-bootstrap-container .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.monsterinsights-bootstrap-container .nav > li > a > img{max-width:none}.monsterinsights-bootstrap-container .nav-tabs{border-bottom:1px solid #ddd}.monsterinsights-bootstrap-container .nav-tabs > li{float:left;margin-bottom:-1px}.monsterinsights-bootstrap-container .nav-tabs > li > a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.monsterinsights-bootstrap-container .nav-tabs > li > a:hover{border-color:#eeeeee #eeeeee #ddd}.monsterinsights-bootstrap-container .nav-tabs > li.active > a,.monsterinsights-bootstrap-container .nav-tabs > li.active > a:hover,.monsterinsights-bootstrap-container .nav-tabs > li.active > a:focus{color:#555555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.monsterinsights-bootstrap-container .nav-tabs.nav-justified{width:100%;border-bottom:0}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li{float:none}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a{margin-bottom:5px;text-align:center}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li{display:table-cell;width:1%}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a{margin-bottom:0}}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a{margin-right:0;border-radius:4px}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus{border:1px solid #ddd}@media (min-width: 768px){.monsterinsights-bootstrap-container .nav-tabs.nav-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,.monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus{border-bottom-color:#fff}}.monsterinsights-bootstrap-container .nav-pills > li{float:left}.monsterinsights-bootstrap-container .nav-pills > li > a{border-radius:4px}.monsterinsights-bootstrap-container .nav-pills > li + li{margin-left:2px}.monsterinsights-bootstrap-container .nav-pills > li.active > a,.monsterinsights-bootstrap-container .nav-pills > li.active > a:hover,.monsterinsights-bootstrap-container .nav-pills > li.active > a:focus{color:#fff;background-color:#337ab7}.monsterinsights-bootstrap-container .nav-stacked > li{float:none}.monsterinsights-bootstrap-container .nav-stacked > li + li{margin-top:2px;margin-left:0}.monsterinsights-bootstrap-container .nav-justified{width:100%}.monsterinsights-bootstrap-container .nav-justified > li{float:none}.monsterinsights-bootstrap-container .nav-justified > li > a{margin-bottom:5px;text-align:center}.monsterinsights-bootstrap-container .nav-justified > .dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.monsterinsights-bootstrap-container .nav-justified > li{display:table-cell;width:1%}.monsterinsights-bootstrap-container .nav-justified > li > a{margin-bottom:0}}.monsterinsights-bootstrap-container .nav-tabs-justified{border-bottom:0}.monsterinsights-bootstrap-container .nav-tabs-justified > li > a{margin-right:0;border-radius:4px}.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a,.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:hover,.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:focus{border:1px solid #ddd}@media (min-width: 768px){.monsterinsights-bootstrap-container .nav-tabs-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a,.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:hover,.monsterinsights-bootstrap-container .nav-tabs-justified > .active > a:focus{border-bottom-color:#fff}}.monsterinsights-bootstrap-container .tab-content > .tab-pane{display:none}.monsterinsights-bootstrap-container .tab-content > .active{display:block}.monsterinsights-bootstrap-container .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-bootstrap-container .navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar{border-radius:4px}}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-header{float:left}}.monsterinsights-bootstrap-container .navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.monsterinsights-bootstrap-container .navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container .navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.monsterinsights-bootstrap-container .navbar-collapse.in{overflow-y:visible}.monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,.monsterinsights-bootstrap-container .navbar-static-top .navbar-collapse,.monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.monsterinsights-bootstrap-container .navbar-fixed-top,.monsterinsights-bootstrap-container .navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,.monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width: 480px) and (orientation: landscape){.monsterinsights-bootstrap-container .navbar-fixed-top .navbar-collapse,.monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-fixed-top,.monsterinsights-bootstrap-container .navbar-fixed-bottom{border-radius:0}}.monsterinsights-bootstrap-container .navbar-fixed-top{top:0;border-width:0 0 1px}.monsterinsights-bootstrap-container .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.monsterinsights-bootstrap-container .container > .navbar-header,.monsterinsights-bootstrap-container .container-fluid > .navbar-header,.monsterinsights-bootstrap-container .container > .navbar-collapse,.monsterinsights-bootstrap-container .container-fluid > .navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.monsterinsights-bootstrap-container .container > .navbar-header,.monsterinsights-bootstrap-container .container-fluid > .navbar-header,.monsterinsights-bootstrap-container .container > .navbar-collapse,.monsterinsights-bootstrap-container .container-fluid > .navbar-collapse{margin-right:0;margin-left:0}}.monsterinsights-bootstrap-container .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-static-top{border-radius:0}}.monsterinsights-bootstrap-container .navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.monsterinsights-bootstrap-container .navbar-brand:hover,.monsterinsights-bootstrap-container .navbar-brand:focus{text-decoration:none}.monsterinsights-bootstrap-container .navbar-brand > img{display:block}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar > .container .navbar-brand,.monsterinsights-bootstrap-container .navbar > .container-fluid .navbar-brand{margin-left:-15px}}.monsterinsights-bootstrap-container .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.monsterinsights-bootstrap-container .navbar-toggle:focus{outline:0}.monsterinsights-bootstrap-container .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.monsterinsights-bootstrap-container .navbar-toggle .icon-bar + .icon-bar{margin-top:4px}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-toggle{display:none}}.monsterinsights-bootstrap-container .navbar-nav{margin:7.5px -15px}.monsterinsights-bootstrap-container .navbar-nav > li > a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width: 767px){.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a,.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a{line-height:20px}.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a:hover,.monsterinsights-bootstrap-container .navbar-nav .open .dropdown-menu > li > a:focus{background-image:none}}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-nav{float:left;margin:0}.monsterinsights-bootstrap-container .navbar-nav > li{float:left}.monsterinsights-bootstrap-container .navbar-nav > li > a{padding-top:15px;padding-bottom:15px}}.monsterinsights-bootstrap-container .navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.monsterinsights-bootstrap-container .navbar-form .form-control-static{display:inline-block}.monsterinsights-bootstrap-container .navbar-form .input-group{display:inline-table;vertical-align:middle}.monsterinsights-bootstrap-container .navbar-form .input-group .input-group-addon,.monsterinsights-bootstrap-container .navbar-form .input-group .input-group-btn,.monsterinsights-bootstrap-container .navbar-form .input-group .form-control{width:auto}.monsterinsights-bootstrap-container .navbar-form .input-group > .form-control{width:100%}.monsterinsights-bootstrap-container .navbar-form .control-label{margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .navbar-form .radio,.monsterinsights-bootstrap-container .navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.monsterinsights-bootstrap-container .navbar-form .radio label,.monsterinsights-bootstrap-container .navbar-form .checkbox label{padding-left:0}.monsterinsights-bootstrap-container .navbar-form .radio input[type="radio"],.monsterinsights-bootstrap-container .navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.monsterinsights-bootstrap-container .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width: 767px){.monsterinsights-bootstrap-container .navbar-form .form-group{margin-bottom:5px}.monsterinsights-bootstrap-container .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.monsterinsights-bootstrap-container .navbar-nav > li > .dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-bootstrap-container .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.monsterinsights-bootstrap-container .navbar-btn{margin-top:8px;margin-bottom:8px}.monsterinsights-bootstrap-container .navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.monsterinsights-bootstrap-container .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.monsterinsights-bootstrap-container .navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width: 768px){.monsterinsights-bootstrap-container .navbar-left{float:left !important}.monsterinsights-bootstrap-container .navbar-right{float:right !important;margin-right:-15px}.monsterinsights-bootstrap-container .navbar-right ~ .navbar-right{margin-right:0}}.monsterinsights-bootstrap-container .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.monsterinsights-bootstrap-container .navbar-default .navbar-brand{color:#777}.monsterinsights-bootstrap-container .navbar-default .navbar-brand:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.monsterinsights-bootstrap-container .navbar-default .navbar-text{color:#777}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a{color:#777}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > li > a:focus{color:#333;background-color:transparent}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a:focus{color:#555;background-color:#e7e7e7}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .disabled > a:focus{color:#ccc;background-color:transparent}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a:focus{color:#555;background-color:#e7e7e7}@media (max-width: 767px){.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#777}.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{color:#333;background-color:transparent}.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus{color:#555;background-color:#e7e7e7}.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus{color:#ccc;background-color:transparent}}.monsterinsights-bootstrap-container .navbar-default .navbar-toggle{border-color:#ddd}.monsterinsights-bootstrap-container .navbar-default .navbar-toggle:hover,.monsterinsights-bootstrap-container .navbar-default .navbar-toggle:focus{background-color:#ddd}.monsterinsights-bootstrap-container .navbar-default .navbar-toggle .icon-bar{background-color:#888}.monsterinsights-bootstrap-container .navbar-default .navbar-collapse,.monsterinsights-bootstrap-container .navbar-default .navbar-form{border-color:#e7e7e7}.monsterinsights-bootstrap-container .navbar-default .navbar-link{color:#777}.monsterinsights-bootstrap-container .navbar-default .navbar-link:hover{color:#333}.monsterinsights-bootstrap-container .navbar-default .btn-link{color:#777}.monsterinsights-bootstrap-container .navbar-default .btn-link:hover,.monsterinsights-bootstrap-container .navbar-default .btn-link:focus{color:#333}.monsterinsights-bootstrap-container .navbar-default .btn-link[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .navbar-default .btn-link:hover,.monsterinsights-bootstrap-container .navbar-default .btn-link[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.monsterinsights-bootstrap-container .navbar-inverse{background-color:#222;border-color:#080808}.monsterinsights-bootstrap-container .navbar-inverse .navbar-brand{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .navbar-brand:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.monsterinsights-bootstrap-container .navbar-inverse .navbar-text{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a:focus{color:#fff;background-color:transparent}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a:focus{color:#fff;background-color:#080808}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .disabled > a:focus{color:#444;background-color:transparent}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a:focus{color:#fff;background-color:#080808}@media (max-width: 767px){.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header{border-color:#080808}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus{color:#fff;background-color:transparent}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus{color:#fff;background-color:#080808}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus{color:#444;background-color:transparent}}.monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle{border-color:#333}.monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle:hover,.monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle:focus{background-color:#333}.monsterinsights-bootstrap-container .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.monsterinsights-bootstrap-container .navbar-inverse .navbar-collapse,.monsterinsights-bootstrap-container .navbar-inverse .navbar-form{border-color:#101010}.monsterinsights-bootstrap-container .navbar-inverse .navbar-link{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .navbar-link:hover{color:#fff}.monsterinsights-bootstrap-container .navbar-inverse .btn-link{color:#9d9d9d}.monsterinsights-bootstrap-container .navbar-inverse .btn-link:hover,.monsterinsights-bootstrap-container .navbar-inverse .btn-link:focus{color:#fff}.monsterinsights-bootstrap-container .navbar-inverse .btn-link[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .navbar-inverse .btn-link:hover,.monsterinsights-bootstrap-container .navbar-inverse .btn-link[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.monsterinsights-bootstrap-container .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.monsterinsights-bootstrap-container .breadcrumb > li{display:inline-block}.monsterinsights-bootstrap-container .breadcrumb > li + li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.monsterinsights-bootstrap-container .breadcrumb > .active{color:#777777}.monsterinsights-bootstrap-container .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.monsterinsights-bootstrap-container .pagination > li{display:inline}.monsterinsights-bootstrap-container .pagination > li > a,.monsterinsights-bootstrap-container .pagination > li > span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.monsterinsights-bootstrap-container .pagination > li > a:hover,.monsterinsights-bootstrap-container .pagination > li > span:hover,.monsterinsights-bootstrap-container .pagination > li > a:focus,.monsterinsights-bootstrap-container .pagination > li > span:focus{z-index:2;color:#23527c;background-color:#eeeeee;border-color:#ddd}.monsterinsights-bootstrap-container .pagination > li:first-child > a,.monsterinsights-bootstrap-container .pagination > li:first-child > span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.monsterinsights-bootstrap-container .pagination > li:last-child > a,.monsterinsights-bootstrap-container .pagination > li:last-child > span{border-top-right-radius:4px;border-bottom-right-radius:4px}.monsterinsights-bootstrap-container .pagination > .active > a,.monsterinsights-bootstrap-container .pagination > .active > span,.monsterinsights-bootstrap-container .pagination > .active > a:hover,.monsterinsights-bootstrap-container .pagination > .active > span:hover,.monsterinsights-bootstrap-container .pagination > .active > a:focus,.monsterinsights-bootstrap-container .pagination > .active > span:focus{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.monsterinsights-bootstrap-container .pagination > .disabled > span,.monsterinsights-bootstrap-container .pagination > .disabled > span:hover,.monsterinsights-bootstrap-container .pagination > .disabled > span:focus,.monsterinsights-bootstrap-container .pagination > .disabled > a,.monsterinsights-bootstrap-container .pagination > .disabled > a:hover,.monsterinsights-bootstrap-container .pagination > .disabled > a:focus{color:#777777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.monsterinsights-bootstrap-container .pagination-lg > li > a,.monsterinsights-bootstrap-container .pagination-lg > li > span{padding:10px 16px;font-size:18px;line-height:1.3333333}.monsterinsights-bootstrap-container .pagination-lg > li:first-child > a,.monsterinsights-bootstrap-container .pagination-lg > li:first-child > span{border-top-left-radius:6px;border-bottom-left-radius:6px}.monsterinsights-bootstrap-container .pagination-lg > li:last-child > a,.monsterinsights-bootstrap-container .pagination-lg > li:last-child > span{border-top-right-radius:6px;border-bottom-right-radius:6px}.monsterinsights-bootstrap-container .pagination-sm > li > a,.monsterinsights-bootstrap-container .pagination-sm > li > span{padding:5px 10px;font-size:12px;line-height:1.5}.monsterinsights-bootstrap-container .pagination-sm > li:first-child > a,.monsterinsights-bootstrap-container .pagination-sm > li:first-child > span{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .pagination-sm > li:last-child > a,.monsterinsights-bootstrap-container .pagination-sm > li:last-child > span{border-top-right-radius:3px;border-bottom-right-radius:3px}.monsterinsights-bootstrap-container .pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.monsterinsights-bootstrap-container .pager li{display:inline}.monsterinsights-bootstrap-container .pager li > a,.monsterinsights-bootstrap-container .pager li > span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.monsterinsights-bootstrap-container .pager li > a:hover,.monsterinsights-bootstrap-container .pager li > a:focus{text-decoration:none;background-color:#eeeeee}.monsterinsights-bootstrap-container .pager .next > a,.monsterinsights-bootstrap-container .pager .next > span{float:right}.monsterinsights-bootstrap-container .pager .previous > a,.monsterinsights-bootstrap-container .pager .previous > span{float:left}.monsterinsights-bootstrap-container .pager .disabled > a,.monsterinsights-bootstrap-container .pager .disabled > a:hover,.monsterinsights-bootstrap-container .pager .disabled > a:focus,.monsterinsights-bootstrap-container .pager .disabled > span{color:#777777;cursor:not-allowed;background-color:#fff}.monsterinsights-bootstrap-container .label{display:inline;padding:0.2em 0.6em 0.3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25em}.monsterinsights-bootstrap-container a.label:hover,.monsterinsights-bootstrap-container a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.monsterinsights-bootstrap-container .label:empty{display:none}.monsterinsights-bootstrap-container .btn .label{position:relative;top:-1px}.monsterinsights-bootstrap-container .label-default{background-color:#777777}.monsterinsights-bootstrap-container .label-default[href]:hover,.monsterinsights-bootstrap-container .label-default[href]:focus{background-color:#5e5e5e}.monsterinsights-bootstrap-container .label-primary{background-color:#337ab7}.monsterinsights-bootstrap-container .label-primary[href]:hover,.monsterinsights-bootstrap-container .label-primary[href]:focus{background-color:#286090}.monsterinsights-bootstrap-container .label-success{background-color:#5cb85c}.monsterinsights-bootstrap-container .label-success[href]:hover,.monsterinsights-bootstrap-container .label-success[href]:focus{background-color:#449d44}.monsterinsights-bootstrap-container .label-info{background-color:#5bc0de}.monsterinsights-bootstrap-container .label-info[href]:hover,.monsterinsights-bootstrap-container .label-info[href]:focus{background-color:#31b0d5}.monsterinsights-bootstrap-container .label-warning{background-color:#f0ad4e}.monsterinsights-bootstrap-container .label-warning[href]:hover,.monsterinsights-bootstrap-container .label-warning[href]:focus{background-color:#ec971f}.monsterinsights-bootstrap-container .label-danger{background-color:#d9534f}.monsterinsights-bootstrap-container .label-danger[href]:hover,.monsterinsights-bootstrap-container .label-danger[href]:focus{background-color:#c9302c}.monsterinsights-bootstrap-container .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777777;border-radius:10px}.monsterinsights-bootstrap-container .badge:empty{display:none}.monsterinsights-bootstrap-container .btn .badge{position:relative;top:-1px}.monsterinsights-bootstrap-container .btn-xs .badge,.monsterinsights-bootstrap-container .btn-group-xs > .btn .badge{top:0;padding:1px 5px}.monsterinsights-bootstrap-container a.badge:hover,.monsterinsights-bootstrap-container a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.monsterinsights-bootstrap-container .list-group-item.active > .badge,.monsterinsights-bootstrap-container .nav-pills > .active > a > .badge{color:#337ab7;background-color:#fff}.monsterinsights-bootstrap-container .list-group-item > .badge{float:right}.monsterinsights-bootstrap-container .list-group-item > .badge + .badge{margin-right:5px}.monsterinsights-bootstrap-container .nav-pills > li > a > .badge{margin-left:3px}.monsterinsights-bootstrap-container .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eeeeee}.monsterinsights-bootstrap-container .jumbotron h1,.monsterinsights-bootstrap-container .jumbotron .h1{color:inherit}.monsterinsights-bootstrap-container .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.monsterinsights-bootstrap-container .jumbotron > hr{border-top-color:#d5d5d5}.monsterinsights-bootstrap-container .container .jumbotron,.monsterinsights-bootstrap-container .container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.monsterinsights-bootstrap-container .jumbotron .container{max-width:100%}@media screen and (min-width: 768px){.monsterinsights-bootstrap-container .jumbotron{padding-top:48px;padding-bottom:48px}.monsterinsights-bootstrap-container .container .jumbotron,.monsterinsights-bootstrap-container .container-fluid .jumbotron{padding-right:60px;padding-left:60px}.monsterinsights-bootstrap-container .jumbotron h1,.monsterinsights-bootstrap-container .jumbotron .h1{font-size:63px}}.monsterinsights-bootstrap-container .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border 0.2s ease-in-out;-o-transition:border 0.2s ease-in-out;transition:border 0.2s ease-in-out}.monsterinsights-bootstrap-container .thumbnail > img,.monsterinsights-bootstrap-container .thumbnail a > img{margin-right:auto;margin-left:auto}.monsterinsights-bootstrap-container a.thumbnail:hover,.monsterinsights-bootstrap-container a.thumbnail:focus,.monsterinsights-bootstrap-container a.thumbnail.active{border-color:#337ab7}.monsterinsights-bootstrap-container .thumbnail .caption{padding:9px;color:#333333}.monsterinsights-bootstrap-container .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.monsterinsights-bootstrap-container .alert h4{margin-top:0;color:inherit}.monsterinsights-bootstrap-container .alert .alert-link{font-weight:bold}.monsterinsights-bootstrap-container .alert > p,.monsterinsights-bootstrap-container .alert > ul{margin-bottom:0}.monsterinsights-bootstrap-container .alert > p + p{margin-top:5px}.monsterinsights-bootstrap-container .alert-dismissable,.monsterinsights-bootstrap-container .alert-dismissible{padding-right:35px}.monsterinsights-bootstrap-container .alert-dismissable .close,.monsterinsights-bootstrap-container .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.monsterinsights-bootstrap-container .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.monsterinsights-bootstrap-container .alert-success hr{border-top-color:#c9e2b3}.monsterinsights-bootstrap-container .alert-success .alert-link{color:#2b542c}.monsterinsights-bootstrap-container .alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.monsterinsights-bootstrap-container .alert-info hr{border-top-color:#a6e1ec}.monsterinsights-bootstrap-container .alert-info .alert-link{color:#245269}.monsterinsights-bootstrap-container .alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.monsterinsights-bootstrap-container .alert-warning hr{border-top-color:#f7e1b5}.monsterinsights-bootstrap-container .alert-warning .alert-link{color:#66512c}.monsterinsights-bootstrap-container .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.monsterinsights-bootstrap-container .alert-danger hr{border-top-color:#e4b9c0}.monsterinsights-bootstrap-container .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{.monsterinsights-bootstrap-container from{background-position:40px 0;}.monsterinsights-bootstrap-container to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{.monsterinsights-bootstrap-container from{background-position:40px 0;}.monsterinsights-bootstrap-container to{background-position:0 0;}}@keyframes progress-bar-stripes{.monsterinsights-bootstrap-container from{background-position:40px 0;}.monsterinsights-bootstrap-container to{background-position:0 0;}}.monsterinsights-bootstrap-container .progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.monsterinsights-bootstrap-container .progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease}.monsterinsights-bootstrap-container .progress-striped .progress-bar,.monsterinsights-bootstrap-container .progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.monsterinsights-bootstrap-container .progress.active .progress-bar,.monsterinsights-bootstrap-container .progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.monsterinsights-bootstrap-container .progress-bar-success{background-color:#5cb85c}.monsterinsights-bootstrap-container .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.monsterinsights-bootstrap-container .progress-bar-info{background-color:#5bc0de}.monsterinsights-bootstrap-container .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.monsterinsights-bootstrap-container .progress-bar-warning{background-color:#f0ad4e}.monsterinsights-bootstrap-container .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.monsterinsights-bootstrap-container .progress-bar-danger{background-color:#d9534f}.monsterinsights-bootstrap-container .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.monsterinsights-bootstrap-container .media{margin-top:15px}.monsterinsights-bootstrap-container .media:first-child{margin-top:0}.monsterinsights-bootstrap-container .media,.monsterinsights-bootstrap-container .media-body{overflow:hidden;zoom:1}.monsterinsights-bootstrap-container .media-body{width:10000px}.monsterinsights-bootstrap-container .media-object{display:block}.monsterinsights-bootstrap-container .media-object.img-thumbnail{max-width:none}.monsterinsights-bootstrap-container .media-right,.monsterinsights-bootstrap-container .media > .pull-right{padding-left:10px}.monsterinsights-bootstrap-container .media-left,.monsterinsights-bootstrap-container .media > .pull-left{padding-right:10px}.monsterinsights-bootstrap-container .media-left,.monsterinsights-bootstrap-container .media-right,.monsterinsights-bootstrap-container .media-body{display:table-cell;vertical-align:top}.monsterinsights-bootstrap-container .media-middle{vertical-align:middle}.monsterinsights-bootstrap-container .media-bottom{vertical-align:bottom}.monsterinsights-bootstrap-container .media-heading{margin-top:0;margin-bottom:5px}.monsterinsights-bootstrap-container .media-list{padding-left:0;list-style:none}.monsterinsights-bootstrap-container .list-group{padding-left:0;margin-bottom:20px}.monsterinsights-bootstrap-container .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.monsterinsights-bootstrap-container .list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.monsterinsights-bootstrap-container .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.monsterinsights-bootstrap-container .list-group-item.disabled,.monsterinsights-bootstrap-container .list-group-item.disabled:hover,.monsterinsights-bootstrap-container .list-group-item.disabled:focus{color:#777777;cursor:not-allowed;background-color:#eeeeee}.monsterinsights-bootstrap-container .list-group-item.disabled .list-group-item-heading,.monsterinsights-bootstrap-container .list-group-item.disabled:hover .list-group-item-heading,.monsterinsights-bootstrap-container .list-group-item.disabled:focus .list-group-item-heading{color:inherit}.monsterinsights-bootstrap-container .list-group-item.disabled .list-group-item-text,.monsterinsights-bootstrap-container .list-group-item.disabled:hover .list-group-item-text,.monsterinsights-bootstrap-container .list-group-item.disabled:focus .list-group-item-text{color:#777777}.monsterinsights-bootstrap-container .list-group-item.active,.monsterinsights-bootstrap-container .list-group-item.active:hover,.monsterinsights-bootstrap-container .list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading,.monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading,.monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading,.monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading > small,.monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading > small,.monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading > small,.monsterinsights-bootstrap-container .list-group-item.active .list-group-item-heading > .small,.monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-heading > .small,.monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-heading > .small{color:inherit}.monsterinsights-bootstrap-container .list-group-item.active .list-group-item-text,.monsterinsights-bootstrap-container .list-group-item.active:hover .list-group-item-text,.monsterinsights-bootstrap-container .list-group-item.active:focus .list-group-item-text{color:#c7ddef}.monsterinsights-bootstrap-container a.list-group-item,.monsterinsights-bootstrap-container button.list-group-item{color:#555}.monsterinsights-bootstrap-container a.list-group-item .list-group-item-heading,.monsterinsights-bootstrap-container button.list-group-item .list-group-item-heading{color:#333}.monsterinsights-bootstrap-container a.list-group-item:hover,.monsterinsights-bootstrap-container button.list-group-item:hover,.monsterinsights-bootstrap-container a.list-group-item:focus,.monsterinsights-bootstrap-container button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.monsterinsights-bootstrap-container button.list-group-item{width:100%;text-align:left}.monsterinsights-bootstrap-container .list-group-item-success{color:#3c763d;background-color:#dff0d8}.monsterinsights-bootstrap-container a.list-group-item-success,.monsterinsights-bootstrap-container button.list-group-item-success{color:#3c763d}.monsterinsights-bootstrap-container a.list-group-item-success .list-group-item-heading,.monsterinsights-bootstrap-container button.list-group-item-success .list-group-item-heading{color:inherit}.monsterinsights-bootstrap-container a.list-group-item-success:hover,.monsterinsights-bootstrap-container button.list-group-item-success:hover,.monsterinsights-bootstrap-container a.list-group-item-success:focus,.monsterinsights-bootstrap-container button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}.monsterinsights-bootstrap-container a.list-group-item-success.active,.monsterinsights-bootstrap-container button.list-group-item-success.active,.monsterinsights-bootstrap-container a.list-group-item-success.active:hover,.monsterinsights-bootstrap-container button.list-group-item-success.active:hover,.monsterinsights-bootstrap-container a.list-group-item-success.active:focus,.monsterinsights-bootstrap-container button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.monsterinsights-bootstrap-container .list-group-item-info{color:#31708f;background-color:#d9edf7}.monsterinsights-bootstrap-container a.list-group-item-info,.monsterinsights-bootstrap-container button.list-group-item-info{color:#31708f}.monsterinsights-bootstrap-container a.list-group-item-info .list-group-item-heading,.monsterinsights-bootstrap-container button.list-group-item-info .list-group-item-heading{color:inherit}.monsterinsights-bootstrap-container a.list-group-item-info:hover,.monsterinsights-bootstrap-container button.list-group-item-info:hover,.monsterinsights-bootstrap-container a.list-group-item-info:focus,.monsterinsights-bootstrap-container button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}.monsterinsights-bootstrap-container a.list-group-item-info.active,.monsterinsights-bootstrap-container button.list-group-item-info.active,.monsterinsights-bootstrap-container a.list-group-item-info.active:hover,.monsterinsights-bootstrap-container button.list-group-item-info.active:hover,.monsterinsights-bootstrap-container a.list-group-item-info.active:focus,.monsterinsights-bootstrap-container button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.monsterinsights-bootstrap-container .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}.monsterinsights-bootstrap-container a.list-group-item-warning,.monsterinsights-bootstrap-container button.list-group-item-warning{color:#8a6d3b}.monsterinsights-bootstrap-container a.list-group-item-warning .list-group-item-heading,.monsterinsights-bootstrap-container button.list-group-item-warning .list-group-item-heading{color:inherit}.monsterinsights-bootstrap-container a.list-group-item-warning:hover,.monsterinsights-bootstrap-container button.list-group-item-warning:hover,.monsterinsights-bootstrap-container a.list-group-item-warning:focus,.monsterinsights-bootstrap-container button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}.monsterinsights-bootstrap-container a.list-group-item-warning.active,.monsterinsights-bootstrap-container button.list-group-item-warning.active,.monsterinsights-bootstrap-container a.list-group-item-warning.active:hover,.monsterinsights-bootstrap-container button.list-group-item-warning.active:hover,.monsterinsights-bootstrap-container a.list-group-item-warning.active:focus,.monsterinsights-bootstrap-container button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.monsterinsights-bootstrap-container .list-group-item-danger{color:#a94442;background-color:#f2dede}.monsterinsights-bootstrap-container a.list-group-item-danger,.monsterinsights-bootstrap-container button.list-group-item-danger{color:#a94442}.monsterinsights-bootstrap-container a.list-group-item-danger .list-group-item-heading,.monsterinsights-bootstrap-container button.list-group-item-danger .list-group-item-heading{color:inherit}.monsterinsights-bootstrap-container a.list-group-item-danger:hover,.monsterinsights-bootstrap-container button.list-group-item-danger:hover,.monsterinsights-bootstrap-container a.list-group-item-danger:focus,.monsterinsights-bootstrap-container button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}.monsterinsights-bootstrap-container a.list-group-item-danger.active,.monsterinsights-bootstrap-container button.list-group-item-danger.active,.monsterinsights-bootstrap-container a.list-group-item-danger.active:hover,.monsterinsights-bootstrap-container button.list-group-item-danger.active:hover,.monsterinsights-bootstrap-container a.list-group-item-danger.active:focus,.monsterinsights-bootstrap-container button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.monsterinsights-bootstrap-container .list-group-item-heading{margin-top:0;margin-bottom:5px}.monsterinsights-bootstrap-container .list-group-item-text{margin-bottom:0;line-height:1.3}.monsterinsights-bootstrap-container .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.monsterinsights-bootstrap-container .panel-body{padding:15px}.monsterinsights-bootstrap-container .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.monsterinsights-bootstrap-container .panel-heading > .dropdown .dropdown-toggle{color:inherit}.monsterinsights-bootstrap-container .panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.monsterinsights-bootstrap-container .panel-title > a,.monsterinsights-bootstrap-container .panel-title > small,.monsterinsights-bootstrap-container .panel-title > .small,.monsterinsights-bootstrap-container .panel-title > small > a,.monsterinsights-bootstrap-container .panel-title > .small > a{color:inherit}.monsterinsights-bootstrap-container .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .panel > .list-group,.monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group{margin-bottom:0}.monsterinsights-bootstrap-container .panel > .list-group .list-group-item,.monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group .list-group-item{border-width:1px 0;border-radius:0}.monsterinsights-bootstrap-container .panel > .list-group:first-child .list-group-item:first-child,.monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.monsterinsights-bootstrap-container .panel > .list-group:last-child .list-group-item:last-child,.monsterinsights-bootstrap-container .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.monsterinsights-bootstrap-container .panel-heading + .list-group .list-group-item:first-child{border-top-width:0}.monsterinsights-bootstrap-container .list-group + .panel-footer{border-top-width:0}.monsterinsights-bootstrap-container .panel > .table,.monsterinsights-bootstrap-container .panel > .table-responsive > .table,.monsterinsights-bootstrap-container .panel > .panel-collapse > .table{margin-bottom:0}.monsterinsights-bootstrap-container .panel > .table caption,.monsterinsights-bootstrap-container .panel > .table-responsive > .table caption,.monsterinsights-bootstrap-container .panel > .panel-collapse > .table caption{padding-right:15px;padding-left:15px}.monsterinsights-bootstrap-container .panel > .table:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,.monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,.monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,.monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,.monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child{border-top-left-radius:3px}.monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,.monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,.monsterinsights-bootstrap-container .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,.monsterinsights-bootstrap-container .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child{border-top-right-radius:3px}.monsterinsights-bootstrap-container .panel > .table:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child{border-bottom-left-radius:3px}.monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,.monsterinsights-bootstrap-container .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child{border-bottom-right-radius:3px}.monsterinsights-bootstrap-container .panel > .panel-body + .table,.monsterinsights-bootstrap-container .panel > .panel-body + .table-responsive,.monsterinsights-bootstrap-container .panel > .table + .panel-body,.monsterinsights-bootstrap-container .panel > .table-responsive + .panel-body{border-top:1px solid #ddd}.monsterinsights-bootstrap-container .panel > .table > tbody:first-child > tr:first-child th,.monsterinsights-bootstrap-container .panel > .table > tbody:first-child > tr:first-child td{border-top:0}.monsterinsights-bootstrap-container .panel > .table-bordered,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered{border:0}.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > td:first-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child{border-left:0}.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr > td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr > td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr > td:last-child,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child{border-right:0}.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr:first-child > td,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:first-child > td,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,.monsterinsights-bootstrap-container .panel > .table-bordered > thead > tr:first-child > th,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:first-child > th,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th{border-bottom:0}.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:last-child > td,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr:last-child > td,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,.monsterinsights-bootstrap-container .panel > .table-bordered > tbody > tr:last-child > th,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,.monsterinsights-bootstrap-container .panel > .table-bordered > tfoot > tr:last-child > th,.monsterinsights-bootstrap-container .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th{border-bottom:0}.monsterinsights-bootstrap-container .panel > .table-responsive{margin-bottom:0;border:0}.monsterinsights-bootstrap-container .panel-group{margin-bottom:20px}.monsterinsights-bootstrap-container .panel-group .panel{margin-bottom:0;border-radius:4px}.monsterinsights-bootstrap-container .panel-group .panel + .panel{margin-top:5px}.monsterinsights-bootstrap-container .panel-group .panel-heading{border-bottom:0}.monsterinsights-bootstrap-container .panel-group .panel-heading + .panel-collapse > .panel-body,.monsterinsights-bootstrap-container .panel-group .panel-heading + .panel-collapse > .list-group{border-top:1px solid #ddd}.monsterinsights-bootstrap-container .panel-group .panel-footer{border-top:0}.monsterinsights-bootstrap-container .panel-group .panel-footer + .panel-collapse .panel-body{border-bottom:1px solid #ddd}.monsterinsights-bootstrap-container .panel-default{border-color:#ddd}.monsterinsights-bootstrap-container .panel-default > .panel-heading{color:#333333;background-color:#f5f5f5;border-color:#ddd}.monsterinsights-bootstrap-container .panel-default > .panel-heading + .panel-collapse > .panel-body{border-top-color:#ddd}.monsterinsights-bootstrap-container .panel-default > .panel-heading .badge{color:#f5f5f5;background-color:#333333}.monsterinsights-bootstrap-container .panel-default > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#ddd}.monsterinsights-bootstrap-container .panel-primary{border-color:#337ab7}.monsterinsights-bootstrap-container .panel-primary > .panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.monsterinsights-bootstrap-container .panel-primary > .panel-heading + .panel-collapse > .panel-body{border-top-color:#337ab7}.monsterinsights-bootstrap-container .panel-primary > .panel-heading .badge{color:#337ab7;background-color:#fff}.monsterinsights-bootstrap-container .panel-primary > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#337ab7}.monsterinsights-bootstrap-container .panel-success{border-color:#d6e9c6}.monsterinsights-bootstrap-container .panel-success > .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.monsterinsights-bootstrap-container .panel-success > .panel-heading + .panel-collapse > .panel-body{border-top-color:#d6e9c6}.monsterinsights-bootstrap-container .panel-success > .panel-heading .badge{color:#dff0d8;background-color:#3c763d}.monsterinsights-bootstrap-container .panel-success > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#d6e9c6}.monsterinsights-bootstrap-container .panel-info{border-color:#bce8f1}.monsterinsights-bootstrap-container .panel-info > .panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.monsterinsights-bootstrap-container .panel-info > .panel-heading + .panel-collapse > .panel-body{border-top-color:#bce8f1}.monsterinsights-bootstrap-container .panel-info > .panel-heading .badge{color:#d9edf7;background-color:#31708f}.monsterinsights-bootstrap-container .panel-info > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#bce8f1}.monsterinsights-bootstrap-container .panel-warning{border-color:#faebcc}.monsterinsights-bootstrap-container .panel-warning > .panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.monsterinsights-bootstrap-container .panel-warning > .panel-heading + .panel-collapse > .panel-body{border-top-color:#faebcc}.monsterinsights-bootstrap-container .panel-warning > .panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.monsterinsights-bootstrap-container .panel-warning > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#faebcc}.monsterinsights-bootstrap-container .panel-danger{border-color:#ebccd1}.monsterinsights-bootstrap-container .panel-danger > .panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.monsterinsights-bootstrap-container .panel-danger > .panel-heading + .panel-collapse > .panel-body{border-top-color:#ebccd1}.monsterinsights-bootstrap-container .panel-danger > .panel-heading .badge{color:#f2dede;background-color:#a94442}.monsterinsights-bootstrap-container .panel-danger > .panel-footer + .panel-collapse > .panel-body{border-bottom-color:#ebccd1}.monsterinsights-bootstrap-container .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.monsterinsights-bootstrap-container .embed-responsive .embed-responsive-item,.monsterinsights-bootstrap-container .embed-responsive iframe,.monsterinsights-bootstrap-container .embed-responsive embed,.monsterinsights-bootstrap-container .embed-responsive object,.monsterinsights-bootstrap-container .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.monsterinsights-bootstrap-container .embed-responsive-16by9{padding-bottom:56.25%}.monsterinsights-bootstrap-container .embed-responsive-4by3{padding-bottom:75%}.monsterinsights-bootstrap-container .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.monsterinsights-bootstrap-container .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.monsterinsights-bootstrap-container .well-lg{padding:24px;border-radius:6px}.monsterinsights-bootstrap-container .well-sm{padding:9px;border-radius:3px}.monsterinsights-bootstrap-container .close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:0.2}.monsterinsights-bootstrap-container .close:hover,.monsterinsights-bootstrap-container .close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:0.5}.monsterinsights-bootstrap-container button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.monsterinsights-bootstrap-container .modal-open{overflow:hidden}.monsterinsights-bootstrap-container .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.monsterinsights-bootstrap-container .modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out}.monsterinsights-bootstrap-container .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.monsterinsights-bootstrap-container .modal-open .modal{overflow-x:hidden;overflow-y:auto}.monsterinsights-bootstrap-container .modal-dialog{position:relative;width:auto;margin:10px}.monsterinsights-bootstrap-container .modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);outline:0}.monsterinsights-bootstrap-container .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.monsterinsights-bootstrap-container .modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.monsterinsights-bootstrap-container .modal-backdrop.in{filter:alpha(opacity=50);opacity:0.5}.monsterinsights-bootstrap-container .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.monsterinsights-bootstrap-container .modal-header .close{margin-top:-2px}.monsterinsights-bootstrap-container .modal-title{margin:0;line-height:1.42857143}.monsterinsights-bootstrap-container .modal-body{position:relative;padding:15px}.monsterinsights-bootstrap-container .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.monsterinsights-bootstrap-container .modal-footer .btn + .btn{margin-bottom:0;margin-left:5px}.monsterinsights-bootstrap-container .modal-footer .btn-group .btn + .btn{margin-left:-1px}.monsterinsights-bootstrap-container .modal-footer .btn-block + .btn-block{margin-left:0}.monsterinsights-bootstrap-container .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 768px){.monsterinsights-bootstrap-container .modal-dialog{width:600px;margin:30px auto}.monsterinsights-bootstrap-container .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.monsterinsights-bootstrap-container .modal-sm{width:300px}}@media (min-width: 992px){.monsterinsights-bootstrap-container .modal-lg{width:900px}}.monsterinsights-bootstrap-container .tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.monsterinsights-bootstrap-container .tooltip.in{filter:alpha(opacity=90);opacity:0.9}.monsterinsights-bootstrap-container .tooltip.top{padding:5px 0;margin-top:-3px}.monsterinsights-bootstrap-container .tooltip.right{padding:0 5px;margin-left:3px}.monsterinsights-bootstrap-container .tooltip.bottom{padding:5px 0;margin-top:3px}.monsterinsights-bootstrap-container .tooltip.left{padding:0 5px;margin-left:-3px}.monsterinsights-bootstrap-container .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.monsterinsights-bootstrap-container .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.monsterinsights-bootstrap-container .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.monsterinsights-bootstrap-container .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.monsterinsights-bootstrap-container .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.monsterinsights-bootstrap-container .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.monsterinsights-bootstrap-container .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.monsterinsights-bootstrap-container .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.monsterinsights-bootstrap-container .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.monsterinsights-bootstrap-container .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.monsterinsights-bootstrap-container .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.monsterinsights-bootstrap-container .popover.top{margin-top:-10px}.monsterinsights-bootstrap-container .popover.right{margin-left:10px}.monsterinsights-bootstrap-container .popover.bottom{margin-top:10px}.monsterinsights-bootstrap-container .popover.left{margin-left:-10px}.monsterinsights-bootstrap-container .popover > .arrow{border-width:11px}.monsterinsights-bootstrap-container .popover > .arrow,.monsterinsights-bootstrap-container .popover > .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.monsterinsights-bootstrap-container .popover > .arrow:after{content:"";border-width:10px}.monsterinsights-bootstrap-container .popover.top > .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.monsterinsights-bootstrap-container .popover.top > .arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.monsterinsights-bootstrap-container .popover.right > .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.monsterinsights-bootstrap-container .popover.right > .arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.monsterinsights-bootstrap-container .popover.bottom > .arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999999;border-bottom-color:rgba(0,0,0,0.25)}.monsterinsights-bootstrap-container .popover.bottom > .arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.monsterinsights-bootstrap-container .popover.left > .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999999;border-left-color:rgba(0,0,0,0.25)}.monsterinsights-bootstrap-container .popover.left > .arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.monsterinsights-bootstrap-container .popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.monsterinsights-bootstrap-container .popover-content{padding:9px 14px}.monsterinsights-bootstrap-container .carousel{position:relative}.monsterinsights-bootstrap-container .carousel-inner{position:relative;width:100%;overflow:hidden}.monsterinsights-bootstrap-container .carousel-inner > .item{position:relative;display:none;-webkit-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}.monsterinsights-bootstrap-container .carousel-inner > .item > img,.monsterinsights-bootstrap-container .carousel-inner > .item > a > img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.monsterinsights-bootstrap-container .carousel-inner > .item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.monsterinsights-bootstrap-container .carousel-inner > .item.next,.monsterinsights-bootstrap-container .carousel-inner > .item.active.right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.monsterinsights-bootstrap-container .carousel-inner > .item.prev,.monsterinsights-bootstrap-container .carousel-inner > .item.active.left{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.monsterinsights-bootstrap-container .carousel-inner > .item.next.left,.monsterinsights-bootstrap-container .carousel-inner > .item.prev.right,.monsterinsights-bootstrap-container .carousel-inner > .item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.monsterinsights-bootstrap-container .carousel-inner > .active,.monsterinsights-bootstrap-container .carousel-inner > .next,.monsterinsights-bootstrap-container .carousel-inner > .prev{display:block}.monsterinsights-bootstrap-container .carousel-inner > .active{left:0}.monsterinsights-bootstrap-container .carousel-inner > .next,.monsterinsights-bootstrap-container .carousel-inner > .prev{position:absolute;top:0;width:100%}.monsterinsights-bootstrap-container .carousel-inner > .next{left:100%}.monsterinsights-bootstrap-container .carousel-inner > .prev{left:-100%}.monsterinsights-bootstrap-container .carousel-inner > .next.left,.monsterinsights-bootstrap-container .carousel-inner > .prev.right{left:0}.monsterinsights-bootstrap-container .carousel-inner > .active.left{left:-100%}.monsterinsights-bootstrap-container .carousel-inner > .active.right{left:100%}.monsterinsights-bootstrap-container .carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:0.5}.monsterinsights-bootstrap-container .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);background-repeat:repeat-x}.monsterinsights-bootstrap-container .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.0001)),to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0%,rgba(0,0,0,0.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);background-repeat:repeat-x}.monsterinsights-bootstrap-container .carousel-control:hover,.monsterinsights-bootstrap-container .carousel-control:focus{color:#fff;text-decoration:none;outline:0;filter:alpha(opacity=90);opacity:0.9}.monsterinsights-bootstrap-container .carousel-control .icon-prev,.monsterinsights-bootstrap-container .carousel-control .icon-next,.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.monsterinsights-bootstrap-container .carousel-control .icon-prev,.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.monsterinsights-bootstrap-container .carousel-control .icon-next,.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.monsterinsights-bootstrap-container .carousel-control .icon-prev,.monsterinsights-bootstrap-container .carousel-control .icon-next{width:20px;height:20px;font-family:serif;line-height:1}.monsterinsights-bootstrap-container .carousel-control .icon-prev:before{content:"\2039"}.monsterinsights-bootstrap-container .carousel-control .icon-next:before{content:"\203a"}.monsterinsights-bootstrap-container .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.monsterinsights-bootstrap-container .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.monsterinsights-bootstrap-container .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.monsterinsights-bootstrap-container .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.monsterinsights-bootstrap-container .carousel-caption .btn{text-shadow:none}@media screen and (min-width: 768px){.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right,.monsterinsights-bootstrap-container .carousel-control .icon-prev,.monsterinsights-bootstrap-container .carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-left,.monsterinsights-bootstrap-container .carousel-control .icon-prev{margin-left:-10px}.monsterinsights-bootstrap-container .carousel-control .glyphicon-chevron-right,.monsterinsights-bootstrap-container .carousel-control .icon-next{margin-right:-10px}.monsterinsights-bootstrap-container .carousel-caption{right:20%;left:20%;padding-bottom:30px}.monsterinsights-bootstrap-container .carousel-indicators{bottom:20px}}.monsterinsights-bootstrap-container .clearfix:before,.monsterinsights-bootstrap-container .clearfix:after,.monsterinsights-bootstrap-container .dl-horizontal dd:before,.monsterinsights-bootstrap-container .dl-horizontal dd:after,.monsterinsights-bootstrap-container .container:before,.monsterinsights-bootstrap-container .container:after,.monsterinsights-bootstrap-container .container-fluid:before,.monsterinsights-bootstrap-container .container-fluid:after,.monsterinsights-bootstrap-container .row:before,.monsterinsights-bootstrap-container .row:after,.monsterinsights-bootstrap-container .form-horizontal .form-group:before,.monsterinsights-bootstrap-container .form-horizontal .form-group:after,.monsterinsights-bootstrap-container .btn-toolbar:before,.monsterinsights-bootstrap-container .btn-toolbar:after,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:before,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:after,.monsterinsights-bootstrap-container .nav:before,.monsterinsights-bootstrap-container .nav:after,.monsterinsights-bootstrap-container .navbar:before,.monsterinsights-bootstrap-container .navbar:after,.monsterinsights-bootstrap-container .navbar-header:before,.monsterinsights-bootstrap-container .navbar-header:after,.monsterinsights-bootstrap-container .navbar-collapse:before,.monsterinsights-bootstrap-container .navbar-collapse:after,.monsterinsights-bootstrap-container .pager:before,.monsterinsights-bootstrap-container .pager:after,.monsterinsights-bootstrap-container .panel-body:before,.monsterinsights-bootstrap-container .panel-body:after,.monsterinsights-bootstrap-container .modal-header:before,.monsterinsights-bootstrap-container .modal-header:after,.monsterinsights-bootstrap-container .modal-footer:before,.monsterinsights-bootstrap-container .modal-footer:after{display:table;content:" "}.monsterinsights-bootstrap-container .clearfix:after,.monsterinsights-bootstrap-container .dl-horizontal dd:after,.monsterinsights-bootstrap-container .container:after,.monsterinsights-bootstrap-container .container-fluid:after,.monsterinsights-bootstrap-container .row:after,.monsterinsights-bootstrap-container .form-horizontal .form-group:after,.monsterinsights-bootstrap-container .btn-toolbar:after,.monsterinsights-bootstrap-container .btn-group-vertical > .btn-group:after,.monsterinsights-bootstrap-container .nav:after,.monsterinsights-bootstrap-container .navbar:after,.monsterinsights-bootstrap-container .navbar-header:after,.monsterinsights-bootstrap-container .navbar-collapse:after,.monsterinsights-bootstrap-container .pager:after,.monsterinsights-bootstrap-container .panel-body:after,.monsterinsights-bootstrap-container .modal-header:after,.monsterinsights-bootstrap-container .modal-footer:after{clear:both}.monsterinsights-bootstrap-container .center-block{display:block;margin-right:auto;margin-left:auto}.monsterinsights-bootstrap-container .pull-right{float:right !important}.monsterinsights-bootstrap-container .pull-left{float:left !important}.monsterinsights-bootstrap-container .hide{display:none !important}.monsterinsights-bootstrap-container .show{display:block !important}.monsterinsights-bootstrap-container .invisible{visibility:hidden}.monsterinsights-bootstrap-container .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.monsterinsights-bootstrap-container .hidden{display:none !important}.monsterinsights-bootstrap-container .affix{position:fixed}@-ms-viewport{width:device-width}.monsterinsights-bootstrap-container .visible-xs,.monsterinsights-bootstrap-container .visible-sm,.monsterinsights-bootstrap-container .visible-md,.monsterinsights-bootstrap-container .visible-lg{display:none !important}.monsterinsights-bootstrap-container .visible-xs-block,.monsterinsights-bootstrap-container .visible-xs-inline,.monsterinsights-bootstrap-container .visible-xs-inline-block,.monsterinsights-bootstrap-container .visible-sm-block,.monsterinsights-bootstrap-container .visible-sm-inline,.monsterinsights-bootstrap-container .visible-sm-inline-block,.monsterinsights-bootstrap-container .visible-md-block,.monsterinsights-bootstrap-container .visible-md-inline,.monsterinsights-bootstrap-container .visible-md-inline-block,.monsterinsights-bootstrap-container .visible-lg-block,.monsterinsights-bootstrap-container .visible-lg-inline,.monsterinsights-bootstrap-container .visible-lg-inline-block{display:none !important}@media (max-width: 767px){.monsterinsights-bootstrap-container .visible-xs{display:block !important}.monsterinsights-bootstrap-container table.visible-xs{display:table !important}.monsterinsights-bootstrap-container tr.visible-xs{display:table-row !important}.monsterinsights-bootstrap-container th.visible-xs,.monsterinsights-bootstrap-container td.visible-xs{display:table-cell !important}}@media (max-width: 767px){.monsterinsights-bootstrap-container .visible-xs-block{display:block !important}}@media (max-width: 767px){.monsterinsights-bootstrap-container .visible-xs-inline{display:inline !important}}@media (max-width: 767px){.monsterinsights-bootstrap-container .visible-xs-inline-block{display:inline-block !important}}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-bootstrap-container .visible-sm{display:block !important}.monsterinsights-bootstrap-container table.visible-sm{display:table !important}.monsterinsights-bootstrap-container tr.visible-sm{display:table-row !important}.monsterinsights-bootstrap-container th.visible-sm,.monsterinsights-bootstrap-container td.visible-sm{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-bootstrap-container .visible-sm-block{display:block !important}}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-bootstrap-container .visible-sm-inline{display:inline !important}}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-bootstrap-container .visible-sm-inline-block{display:inline-block !important}}@media (min-width: 992px) and (max-width: 1199px){.monsterinsights-bootstrap-container .visible-md{display:block !important}.monsterinsights-bootstrap-container table.visible-md{display:table !important}.monsterinsights-bootstrap-container tr.visible-md{display:table-row !important}.monsterinsights-bootstrap-container th.visible-md,.monsterinsights-bootstrap-container td.visible-md{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){.monsterinsights-bootstrap-container .visible-md-block{display:block !important}}@media (min-width: 992px) and (max-width: 1199px){.monsterinsights-bootstrap-container .visible-md-inline{display:inline !important}}@media (min-width: 992px) and (max-width: 1199px){.monsterinsights-bootstrap-container .visible-md-inline-block{display:inline-block !important}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .visible-lg{display:block !important}.monsterinsights-bootstrap-container table.visible-lg{display:table !important}.monsterinsights-bootstrap-container tr.visible-lg{display:table-row !important}.monsterinsights-bootstrap-container th.visible-lg,.monsterinsights-bootstrap-container td.visible-lg{display:table-cell !important}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .visible-lg-block{display:block !important}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .visible-lg-inline{display:inline !important}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .visible-lg-inline-block{display:inline-block !important}}@media (max-width: 767px){.monsterinsights-bootstrap-container .hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-bootstrap-container .hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){.monsterinsights-bootstrap-container .hidden-md{display:none !important}}@media (min-width: 1200px){.monsterinsights-bootstrap-container .hidden-lg{display:none !important}}.monsterinsights-bootstrap-container .visible-print{display:none !important}@media print{.monsterinsights-bootstrap-container .visible-print{display:block !important}.monsterinsights-bootstrap-container table.visible-print{display:table !important}.monsterinsights-bootstrap-container tr.visible-print{display:table-row !important}.monsterinsights-bootstrap-container th.visible-print,.monsterinsights-bootstrap-container td.visible-print{display:table-cell !important}}.monsterinsights-bootstrap-container .visible-print-block{display:none !important}@media print{.monsterinsights-bootstrap-container .visible-print-block{display:block !important}}.monsterinsights-bootstrap-container .visible-print-inline{display:none !important}@media print{.monsterinsights-bootstrap-container .visible-print-inline{display:inline !important}}.monsterinsights-bootstrap-container .visible-print-inline-block{display:none !important}@media print{.monsterinsights-bootstrap-container .visible-print-inline-block{display:inline-block !important}}@media print{.monsterinsights-bootstrap-container .hidden-print{display:none !important}}.monsterinsights-bootstrap-container .btn-default,.monsterinsights-bootstrap-container .btn-primary,.monsterinsights-bootstrap-container .btn-success,.monsterinsights-bootstrap-container .btn-info,.monsterinsights-bootstrap-container .btn-warning,.monsterinsights-bootstrap-container .btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 1px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .btn-default:active,.monsterinsights-bootstrap-container .btn-primary:active,.monsterinsights-bootstrap-container .btn-success:active,.monsterinsights-bootstrap-container .btn-info:active,.monsterinsights-bootstrap-container .btn-warning:active,.monsterinsights-bootstrap-container .btn-danger:active,.monsterinsights-bootstrap-container .btn-default.active,.monsterinsights-bootstrap-container .btn-primary.active,.monsterinsights-bootstrap-container .btn-success.active,.monsterinsights-bootstrap-container .btn-info.active,.monsterinsights-bootstrap-container .btn-warning.active,.monsterinsights-bootstrap-container .btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.monsterinsights-bootstrap-container .btn-default.disabled,.monsterinsights-bootstrap-container .btn-primary.disabled,.monsterinsights-bootstrap-container .btn-success.disabled,.monsterinsights-bootstrap-container .btn-info.disabled,.monsterinsights-bootstrap-container .btn-warning.disabled,.monsterinsights-bootstrap-container .btn-danger.disabled,.monsterinsights-bootstrap-container .btn-default[disabled],.monsterinsights-bootstrap-container .btn-primary[disabled],.monsterinsights-bootstrap-container .btn-success[disabled],.monsterinsights-bootstrap-container .btn-info[disabled],.monsterinsights-bootstrap-container .btn-warning[disabled],.monsterinsights-bootstrap-container .btn-danger[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-default,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger{-webkit-box-shadow:none;box-shadow:none}.monsterinsights-bootstrap-container .btn-default .badge,.monsterinsights-bootstrap-container .btn-primary .badge,.monsterinsights-bootstrap-container .btn-success .badge,.monsterinsights-bootstrap-container .btn-info .badge,.monsterinsights-bootstrap-container .btn-warning .badge,.monsterinsights-bootstrap-container .btn-danger .badge{text-shadow:none}.monsterinsights-bootstrap-container .btn:active,.monsterinsights-bootstrap-container .btn.active{background-image:none}.monsterinsights-bootstrap-container .btn-default{background-image:-webkit-linear-gradient(top,#fff 0%,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0%,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0%,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.monsterinsights-bootstrap-container .btn-default:hover,.monsterinsights-bootstrap-container .btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-default:active,.monsterinsights-bootstrap-container .btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.monsterinsights-bootstrap-container .btn-default.disabled,.monsterinsights-bootstrap-container .btn-default[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-default,.monsterinsights-bootstrap-container .btn-default.disabled:hover,.monsterinsights-bootstrap-container .btn-default[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default:hover,.monsterinsights-bootstrap-container .btn-default.disabled:focus,.monsterinsights-bootstrap-container .btn-default[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default:focus,.monsterinsights-bootstrap-container .btn-default.disabled.focus,.monsterinsights-bootstrap-container .btn-default[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default.focus,.monsterinsights-bootstrap-container .btn-default.disabled:active,.monsterinsights-bootstrap-container .btn-default[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default:active,.monsterinsights-bootstrap-container .btn-default.disabled.active,.monsterinsights-bootstrap-container .btn-default[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-default.active{background-color:#e0e0e0;background-image:none}.monsterinsights-bootstrap-container .btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0%,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0%,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff265a88',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.monsterinsights-bootstrap-container .btn-primary:hover,.monsterinsights-bootstrap-container .btn-primary:focus{background-color:#265a88;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-primary:active,.monsterinsights-bootstrap-container .btn-primary.active{background-color:#265a88;border-color:#245580}.monsterinsights-bootstrap-container .btn-primary.disabled,.monsterinsights-bootstrap-container .btn-primary[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary,.monsterinsights-bootstrap-container .btn-primary.disabled:hover,.monsterinsights-bootstrap-container .btn-primary[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:hover,.monsterinsights-bootstrap-container .btn-primary.disabled:focus,.monsterinsights-bootstrap-container .btn-primary[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:focus,.monsterinsights-bootstrap-container .btn-primary.disabled.focus,.monsterinsights-bootstrap-container .btn-primary[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.focus,.monsterinsights-bootstrap-container .btn-primary.disabled:active,.monsterinsights-bootstrap-container .btn-primary[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary:active,.monsterinsights-bootstrap-container .btn-primary.disabled.active,.monsterinsights-bootstrap-container .btn-primary[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-primary.active{background-color:#265a88;background-image:none}.monsterinsights-bootstrap-container .btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0%,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0%,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0%,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff419641',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.monsterinsights-bootstrap-container .btn-success:hover,.monsterinsights-bootstrap-container .btn-success:focus{background-color:#419641;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-success:active,.monsterinsights-bootstrap-container .btn-success.active{background-color:#419641;border-color:#3e8f3e}.monsterinsights-bootstrap-container .btn-success.disabled,.monsterinsights-bootstrap-container .btn-success[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-success,.monsterinsights-bootstrap-container .btn-success.disabled:hover,.monsterinsights-bootstrap-container .btn-success[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success:hover,.monsterinsights-bootstrap-container .btn-success.disabled:focus,.monsterinsights-bootstrap-container .btn-success[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success:focus,.monsterinsights-bootstrap-container .btn-success.disabled.focus,.monsterinsights-bootstrap-container .btn-success[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success.focus,.monsterinsights-bootstrap-container .btn-success.disabled:active,.monsterinsights-bootstrap-container .btn-success[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success:active,.monsterinsights-bootstrap-container .btn-success.disabled.active,.monsterinsights-bootstrap-container .btn-success[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-success.active{background-color:#419641;background-image:none}.monsterinsights-bootstrap-container .btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0%,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0%,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0%,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2aabd2',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.monsterinsights-bootstrap-container .btn-info:hover,.monsterinsights-bootstrap-container .btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-info:active,.monsterinsights-bootstrap-container .btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.monsterinsights-bootstrap-container .btn-info.disabled,.monsterinsights-bootstrap-container .btn-info[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-info,.monsterinsights-bootstrap-container .btn-info.disabled:hover,.monsterinsights-bootstrap-container .btn-info[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info:hover,.monsterinsights-bootstrap-container .btn-info.disabled:focus,.monsterinsights-bootstrap-container .btn-info[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info:focus,.monsterinsights-bootstrap-container .btn-info.disabled.focus,.monsterinsights-bootstrap-container .btn-info[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info.focus,.monsterinsights-bootstrap-container .btn-info.disabled:active,.monsterinsights-bootstrap-container .btn-info[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info:active,.monsterinsights-bootstrap-container .btn-info.disabled.active,.monsterinsights-bootstrap-container .btn-info[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-info.active{background-color:#2aabd2;background-image:none}.monsterinsights-bootstrap-container .btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0%,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0%,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0%,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffeb9316',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.monsterinsights-bootstrap-container .btn-warning:hover,.monsterinsights-bootstrap-container .btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-warning:active,.monsterinsights-bootstrap-container .btn-warning.active{background-color:#eb9316;border-color:#e38d13}.monsterinsights-bootstrap-container .btn-warning.disabled,.monsterinsights-bootstrap-container .btn-warning[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning,.monsterinsights-bootstrap-container .btn-warning.disabled:hover,.monsterinsights-bootstrap-container .btn-warning[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:hover,.monsterinsights-bootstrap-container .btn-warning.disabled:focus,.monsterinsights-bootstrap-container .btn-warning[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:focus,.monsterinsights-bootstrap-container .btn-warning.disabled.focus,.monsterinsights-bootstrap-container .btn-warning[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.focus,.monsterinsights-bootstrap-container .btn-warning.disabled:active,.monsterinsights-bootstrap-container .btn-warning[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning:active,.monsterinsights-bootstrap-container .btn-warning.disabled.active,.monsterinsights-bootstrap-container .btn-warning[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-warning.active{background-color:#eb9316;background-image:none}.monsterinsights-bootstrap-container .btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0%,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0%,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0%,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc12e2a',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.monsterinsights-bootstrap-container .btn-danger:hover,.monsterinsights-bootstrap-container .btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.monsterinsights-bootstrap-container .btn-danger:active,.monsterinsights-bootstrap-container .btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.monsterinsights-bootstrap-container .btn-danger.disabled,.monsterinsights-bootstrap-container .btn-danger[disabled],.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger,.monsterinsights-bootstrap-container .btn-danger.disabled:hover,.monsterinsights-bootstrap-container .btn-danger[disabled]:hover,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:hover,.monsterinsights-bootstrap-container .btn-danger.disabled:focus,.monsterinsights-bootstrap-container .btn-danger[disabled]:focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:focus,.monsterinsights-bootstrap-container .btn-danger.disabled.focus,.monsterinsights-bootstrap-container .btn-danger[disabled].focus,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.focus,.monsterinsights-bootstrap-container .btn-danger.disabled:active,.monsterinsights-bootstrap-container .btn-danger[disabled]:active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger:active,.monsterinsights-bootstrap-container .btn-danger.disabled.active,.monsterinsights-bootstrap-container .btn-danger[disabled].active,.monsterinsights-bootstrap-container fieldset[disabled] .btn-danger.active{background-color:#c12e2a;background-image:none}.monsterinsights-bootstrap-container .thumbnail,.monsterinsights-bootstrap-container .img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .dropdown-menu > li > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > li > a:focus{background-image:-webkit-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0%,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);background-repeat:repeat-x;background-color:#e8e8e8}.monsterinsights-bootstrap-container .dropdown-menu > .active > a,.monsterinsights-bootstrap-container .dropdown-menu > .active > a:hover,.monsterinsights-bootstrap-container .dropdown-menu > .active > a:focus{background-image:-webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);background-repeat:repeat-x;background-color:#2e6da4}.monsterinsights-bootstrap-container .navbar-default{background-image:-webkit-linear-gradient(top,#ffffff 0%,#f8f8f8 100%);background-image:-o-linear-gradient(top,#ffffff 0%,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#f8f8f8));background-image:linear-gradient(to bottom,#ffffff 0%,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff8f8f8',GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15), 0 1px 5px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .open > a,.monsterinsights-bootstrap-container .navbar-default .navbar-nav > .active > a{background-image:-webkit-linear-gradient(top,#dbdbdb 0%,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0%,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0%,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb',endColorstr='#ffe2e2e2',GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .navbar-brand,.monsterinsights-bootstrap-container .navbar-nav > li > a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.monsterinsights-bootstrap-container .navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0%,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0%,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0%,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c',endColorstr='#ff222222',GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border-radius:4px}.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .open > a,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > .active > a{background-image:-webkit-linear-gradient(top,#080808 0%,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0%,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0%,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808',endColorstr='#ff0f0f0f',GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.monsterinsights-bootstrap-container .navbar-inverse .navbar-brand,.monsterinsights-bootstrap-container .navbar-inverse .navbar-nav > li > a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.monsterinsights-bootstrap-container .navbar-static-top,.monsterinsights-bootstrap-container .navbar-fixed-top,.monsterinsights-bootstrap-container .navbar-fixed-bottom{border-radius:0}@media (max-width: 767px){.monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a,.monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,.monsterinsights-bootstrap-container .navbar .navbar-nav .open .dropdown-menu > .active > a:focus{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);background-repeat:repeat-x}}.monsterinsights-bootstrap-container .alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.05)}.monsterinsights-bootstrap-container .alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0%,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0%,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0%,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffc8e5bc',GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.monsterinsights-bootstrap-container .alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0%,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0%,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0%,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffb9def0',GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.monsterinsights-bootstrap-container .alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0%,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0%,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0%,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fff8efc0',GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.monsterinsights-bootstrap-container .alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0%,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0%,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0%,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffe7c3c3',GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.monsterinsights-bootstrap-container .progress{background-image:-webkit-linear-gradient(top,#ebebeb 0%,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0%,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0%,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb',endColorstr='#fff5f5f5',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0%,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0%,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff286090',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0%,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0%,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0%,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',endColorstr='#ff449d44',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0%,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0%,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0%,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff31b0d5',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0%,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0%,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0%,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e',endColorstr='#ffec971f',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0%,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0%,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0%,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f',endColorstr='#ffc9302c',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.monsterinsights-bootstrap-container .list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.monsterinsights-bootstrap-container .list-group-item.active,.monsterinsights-bootstrap-container .list-group-item.active:hover,.monsterinsights-bootstrap-container .list-group-item.active:focus{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0%,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0%,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2b669a',GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.monsterinsights-bootstrap-container .list-group-item.active .badge,.monsterinsights-bootstrap-container .list-group-item.active:hover .badge,.monsterinsights-bootstrap-container .list-group-item.active:focus .badge{text-shadow:none}.monsterinsights-bootstrap-container .panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.monsterinsights-bootstrap-container .panel-default > .panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0%,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0%,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .panel-primary > .panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0%,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0%,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',endColorstr='#ff2e6da4',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .panel-success > .panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0%,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0%,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0%,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8',endColorstr='#ffd0e9c6',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .panel-info > .panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0%,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0%,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0%,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7',endColorstr='#ffc4e3f3',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .panel-warning > .panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0%,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0%,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0%,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3',endColorstr='#fffaf2cc',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .panel-danger > .panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0%,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0%,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0%,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede',endColorstr='#ffebcccc',GradientType=0);background-repeat:repeat-x}.monsterinsights-bootstrap-container .well{background-image:-webkit-linear-gradient(top,#e8e8e8 0%,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0%,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0%,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8',endColorstr='#fff5f5f5',GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,0.1)}
 
assets/css/images/index.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
- //Nothing to see here
3
-
4
  header( 'HTTP/1.0 403 Forbidden' );
1
+ <?php
2
+ //Nothing to see here
3
+
4
  header( 'HTTP/1.0 403 Forbidden' );
assets/css/images/logo.png CHANGED
Binary file
assets/css/images/logo@2x.png CHANGED
Binary file
assets/css/images/mascot.png CHANGED
Binary file
assets/css/images/mascot@2x.png CHANGED
Binary file
assets/css/images/menu-icon-black@2x.png DELETED
Binary file
assets/css/images/menu-icon.png DELETED
Binary file
assets/css/images/menu-icon@2x.png DELETED
Binary file
assets/css/images/monsterinsights.png DELETED
Binary file
assets/css/index.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
- //Nothing to see here
3
-
4
  header( 'HTTP/1.0 403 Forbidden' );
1
+ <?php
2
+ //Nothing to see here
3
+
4
  header( 'HTTP/1.0 403 Forbidden' );
assets/css/vendors.css DELETED
@@ -1,2688 +0,0 @@
1
- .monsterinsights-flag-icon-background {
2
- background-size: contain;
3
- background-position: 50%;
4
- background-repeat: no-repeat;
5
- }
6
- .monsterinsights-flag-icon {
7
- background-size: contain;
8
- background-position: 50%;
9
- background-repeat: no-repeat;
10
- position: relative;
11
- display: inline-block;
12
- width: 1.33333333em;
13
- line-height: 1em;
14
- }
15
- .monsterinsights-flag-icon:before {
16
- content: "\00a0";
17
- }
18
- .monsterinsights-flag-icon.monsterinsights-flag-icon-squared {
19
- width: 1em;
20
- }
21
- .monsterinsights-flag-icon-ad {
22
- background-image: url(../flags/4x3/ad.svg);
23
- }
24
- .monsterinsights-flag-icon-ad.monsterinsights-flag-icon-squared {
25
- background-image: url(../flags/1x1/ad.svg);
26
- }
27
- .monsterinsights-flag-icon-ae {
28
- background-image: url(../flags/4x3/ae.svg);
29
- }
30
- .monsterinsights-flag-icon-ae.monsterinsights-flag-icon-squared {
31
- background-image: url(../flags/1x1/ae.svg);
32
- }
33
- .monsterinsights-flag-icon-af {
34
- background-image: url(../flags/4x3/af.svg);
35
- }
36
- .monsterinsights-flag-icon-af.monsterinsights-flag-icon-squared {
37
- background-image: url(../flags/1x1/af.svg);
38
- }
39
- .monsterinsights-flag-icon-ag {
40
- background-image: url(../flags/4x3/ag.svg);
41
- }
42
- .monsterinsights-flag-icon-ag.monsterinsights-flag-icon-squared {
43
- background-image: url(../flags/1x1/ag.svg);
44
- }
45
- .monsterinsights-flag-icon-ai {
46
- background-image: url(../flags/4x3/ai.svg);
47
- }
48
- .monsterinsights-flag-icon-ai.monsterinsights-flag-icon-squared {
49
- background-image: url(../flags/1x1/ai.svg);
50
- }
51
- .monsterinsights-flag-icon-al {
52
- background-image: url(../flags/4x3/al.svg);
53
- }
54
- .monsterinsights-flag-icon-al.monsterinsights-flag-icon-squared {
55
- background-image: url(../flags/1x1/al.svg);
56
- }
57
- .monsterinsights-flag-icon-am {
58
- background-image: url(../flags/4x3/am.svg);
59
- }
60
- .monsterinsights-flag-icon-am.monsterinsights-flag-icon-squared {
61
- background-image: url(../flags/1x1/am.svg);
62
- }
63
- .monsterinsights-flag-icon-ao {
64
- background-image: url(../flags/4x3/ao.svg);
65
- }
66
- .monsterinsights-flag-icon-ao.monsterinsights-flag-icon-squared {
67
- background-image: url(../flags/1x1/ao.svg);
68
- }
69
- .monsterinsights-flag-icon-aq {
70
- background-image: url(../flags/4x3/aq.svg);
71
- }
72
- .monsterinsights-flag-icon-aq.monsterinsights-flag-icon-squared {
73
- background-image: url(../flags/1x1/aq.svg);
74
- }
75
- .monsterinsights-flag-icon-ar {
76
- background-image: url(../flags/4x3/ar.svg);
77
- }
78
- .monsterinsights-flag-icon-ar.monsterinsights-flag-icon-squared {
79
- background-image: url(../flags/1x1/ar.svg);
80
- }
81
- .monsterinsights-flag-icon-as {
82
- background-image: url(../flags/4x3/as.svg);
83
- }
84
- .monsterinsights-flag-icon-as.monsterinsights-flag-icon-squared {
85
- background-image: url(../flags/1x1/as.svg);
86
- }
87
- .monsterinsights-flag-icon-at {
88
- background-image: url(../flags/4x3/at.svg);
89
- }
90
- .monsterinsights-flag-icon-at.monsterinsights-flag-icon-squared {
91
- background-image: url(../flags/1x1/at.svg);
92
- }
93
- .monsterinsights-flag-icon-au {
94
- background-image: url(../flags/4x3/au.svg);
95
- }
96
- .monsterinsights-flag-icon-au.monsterinsights-flag-icon-squared {
97
- background-image: url(../flags/1x1/au.svg);
98
- }
99
- .monsterinsights-flag-icon-aw {
100
- background-image: url(../flags/4x3/aw.svg);
101
- }
102
- .monsterinsights-flag-icon-aw.monsterinsights-flag-icon-squared {
103
- background-image: url(../flags/1x1/aw.svg);
104
- }
105
- .monsterinsights-flag-icon-ax {
106
- background-image: url(../flags/4x3/ax.svg);
107
- }
108
- .monsterinsights-flag-icon-ax.monsterinsights-flag-icon-squared {
109
- background-image: url(../flags/1x1/ax.svg);
110
- }
111
- .monsterinsights-flag-icon-az {
112
- background-image: url(../flags/4x3/az.svg);
113
- }
114
- .monsterinsights-flag-icon-az.monsterinsights-flag-icon-squared {
115
- background-image: url(../flags/1x1/az.svg);
116
- }
117
- .monsterinsights-flag-icon-ba {
118
- background-image: url(../flags/4x3/ba.svg);
119
- }
120
- .monsterinsights-flag-icon-ba.monsterinsights-flag-icon-squared {
121
- background-image: url(../flags/1x1/ba.svg);
122
- }
123
- .monsterinsights-flag-icon-bb {
124
- background-image: url(../flags/4x3/bb.svg);
125
- }
126
- .monsterinsights-flag-icon-bb.monsterinsights-flag-icon-squared {
127
- background-image: url(../flags/1x1/bb.svg);
128
- }
129
- .monsterinsights-flag-icon-bd {
130
- background-image: url(../flags/4x3/bd.svg);
131
- }
132
- .monsterinsights-flag-icon-bd.monsterinsights-flag-icon-squared {
133
- background-image: url(../flags/1x1/bd.svg);
134
- }
135
- .monsterinsights-flag-icon-be {
136
- background-image: url(../flags/4x3/be.svg);
137
- }
138
- .monsterinsights-flag-icon-be.monsterinsights-flag-icon-squared {
139
- background-image: url(../flags/1x1/be.svg);
140
- }
141
- .monsterinsights-flag-icon-bf {
142
- background-image: url(../flags/4x3/bf.svg);
143
- }
144
- .monsterinsights-flag-icon-bf.monsterinsights-flag-icon-squared {
145
- background-image: url(../flags/1x1/bf.svg);
146
- }
147
- .monsterinsights-flag-icon-bg {
148
- background-image: url(../flags/4x3/bg.svg);
149
- }
150
- .monsterinsights-flag-icon-bg.monsterinsights-flag-icon-squared {
151
- background-image: url(../flags/1x1/bg.svg);
152
- }
153
- .monsterinsights-flag-icon-bh {
154
- background-image: url(../flags/4x3/bh.svg);
155
- }
156
- .monsterinsights-flag-icon-bh.monsterinsights-flag-icon-squared {
157
- background-image: url(../flags/1x1/bh.svg);
158
- }
159
- .monsterinsights-flag-icon-bi {
160
- background-image: url(../flags/4x3/bi.svg);
161
- }
162
- .monsterinsights-flag-icon-bi.monsterinsights-flag-icon-squared {
163
- background-image: url(../flags/1x1/bi.svg);
164
- }
165
- .monsterinsights-flag-icon-bj {
166
- background-image: url(../flags/4x3/bj.svg);
167
- }
168
- .monsterinsights-flag-icon-bj.monsterinsights-flag-icon-squared {
169
- background-image: url(../flags/1x1/bj.svg);
170
- }
171
- .monsterinsights-flag-icon-bl {
172
- background-image: url(../flags/4x3/bl.svg);
173
- }
174
- .monsterinsights-flag-icon-bl.monsterinsights-flag-icon-squared {
175
- background-image: url(../flags/1x1/bl.svg);
176
- }
177
- .monsterinsights-flag-icon-bm {
178
- background-image: url(../flags/4x3/bm.svg);
179
- }
180
- .monsterinsights-flag-icon-bm.monsterinsights-flag-icon-squared {
181
- background-image: url(../flags/1x1/bm.svg);
182
- }
183
- .monsterinsights-flag-icon-bn {
184
- background-image: url(../flags/4x3/bn.svg);
185
- }
186
- .monsterinsights-flag-icon-bn.monsterinsights-flag-icon-squared {
187
- background-image: url(../flags/1x1/bn.svg);
188
- }
189
- .monsterinsights-flag-icon-bo {
190
- background-image: url(../flags/4x3/bo.svg);
191
- }
192
- .monsterinsights-flag-icon-bo.monsterinsights-flag-icon-squared {
193
- background-image: url(../flags/1x1/bo.svg);
194
- }
195
- .monsterinsights-flag-icon-bq {
196
- background-image: url(../flags/4x3/bq.svg);
197
- }
198
- .monsterinsights-flag-icon-bq.monsterinsights-flag-icon-squared {
199
- background-image: url(../flags/1x1/bq.svg);
200
- }
201
- .monsterinsights-flag-icon-br {
202
- background-image: url(../flags/4x3/br.svg);
203
- }
204
- .monsterinsights-flag-icon-br.monsterinsights-flag-icon-squared {
205
- background-image: url(../flags/1x1/br.svg);
206
- }
207
- .monsterinsights-flag-icon-bs {
208
- background-image: url(../flags/4x3/bs.svg);
209
- }
210
- .monsterinsights-flag-icon-bs.monsterinsights-flag-icon-squared {
211
- background-image: url(../flags/1x1/bs.svg);
212
- }
213
- .monsterinsights-flag-icon-bt {
214
- background-image: url(../flags/4x3/bt.svg);
215
- }
216
- .monsterinsights-flag-icon-bt.monsterinsights-flag-icon-squared {
217
- background-image: url(../flags/1x1/bt.svg);
218
- }
219
- .monsterinsights-flag-icon-bv {
220
- background-image: url(../flags/4x3/bv.svg);
221
- }
222
- .monsterinsights-flag-icon-bv.monsterinsights-flag-icon-squared {
223
- background-image: url(../flags/1x1/bv.svg);
224
- }
225
- .monsterinsights-flag-icon-bw {
226
- background-image: url(../flags/4x3/bw.svg);
227
- }
228
- .monsterinsights-flag-icon-bw.monsterinsights-flag-icon-squared {
229
- background-image: url(../flags/1x1/bw.svg);
230
- }
231
- .monsterinsights-flag-icon-by {
232
- background-image: url(../flags/4x3/by.svg);
233
- }
234
- .monsterinsights-flag-icon-by.monsterinsights-flag-icon-squared {
235
- background-image: url(../flags/1x1/by.svg);
236
- }
237
- .monsterinsights-flag-icon-bz {
238
- background-image: url(../flags/4x3/bz.svg);
239
- }
240
- .monsterinsights-flag-icon-bz.monsterinsights-flag-icon-squared {
241
- background-image: url(../flags/1x1/bz.svg);
242
- }
243
- .monsterinsights-flag-icon-ca {
244
- background-image: url(../flags/4x3/ca.svg);
245
- }
246
- .monsterinsights-flag-icon-ca.monsterinsights-flag-icon-squared {
247
- background-image: url(../flags/1x1/ca.svg);
248
- }
249
- .monsterinsights-flag-icon-cc {
250
- background-image: url(../flags/4x3/cc.svg);
251
- }
252
- .monsterinsights-flag-icon-cc.monsterinsights-flag-icon-squared {
253
- background-image: url(../flags/1x1/cc.svg);
254
- }
255
- .monsterinsights-flag-icon-cd {
256
- background-image: url(../flags/4x3/cd.svg);
257
- }
258
- .monsterinsights-flag-icon-cd.monsterinsights-flag-icon-squared {
259
- background-image: url(../flags/1x1/cd.svg);
260
- }
261
- .monsterinsights-flag-icon-cf {
262
- background-image: url(../flags/4x3/cf.svg);
263
- }
264
- .monsterinsights-flag-icon-cf.monsterinsights-flag-icon-squared {
265
- background-image: url(../flags/1x1/cf.svg);
266
- }
267
- .monsterinsights-flag-icon-cg {
268
- background-image: url(../flags/4x3/cg.svg);
269
- }
270
- .monsterinsights-flag-icon-cg.monsterinsights-flag-icon-squared {
271
- background-image: url(../flags/1x1/cg.svg);
272
- }
273
- .monsterinsights-flag-icon-ch {
274
- background-image: url(../flags/4x3/ch.svg);
275
- }
276
- .monsterinsights-flag-icon-ch.monsterinsights-flag-icon-squared {
277
- background-image: url(../flags/1x1/ch.svg);
278
- }
279
- .monsterinsights-flag-icon-ci {
280
- background-image: url(../flags/4x3/ci.svg);
281
- }
282
- .monsterinsights-flag-icon-ci.monsterinsights-flag-icon-squared {
283
- background-image: url(../flags/1x1/ci.svg);
284
- }
285
- .monsterinsights-flag-icon-ck {
286
- background-image: url(../flags/4x3/ck.svg);
287
- }
288
- .monsterinsights-flag-icon-ck.monsterinsights-flag-icon-squared {
289
- background-image: url(../flags/1x1/ck.svg);
290
- }
291
- .monsterinsights-flag-icon-cl {
292
- background-image: url(../flags/4x3/cl.svg);
293
- }
294
- .monsterinsights-flag-icon-cl.monsterinsights-flag-icon-squared {
295
- background-image: url(../flags/1x1/cl.svg);
296
- }
297
- .monsterinsights-flag-icon-cm {
298
- background-image: url(../flags/4x3/cm.svg);
299
- }
300
- .monsterinsights-flag-icon-cm.monsterinsights-flag-icon-squared {
301
- background-image: url(../flags/1x1/cm.svg);
302
- }
303
- .monsterinsights-flag-icon-cn {
304
- background-image: url(../flags/4x3/cn.svg);
305
- }
306
- .monsterinsights-flag-icon-cn.monsterinsights-flag-icon-squared {
307
- background-image: url(../flags/1x1/cn.svg);
308
- }
309
- .monsterinsights-flag-icon-co {
310
- background-image: url(../flags/4x3/co.svg);
311
- }
312
- .monsterinsights-flag-icon-co.monsterinsights-flag-icon-squared {
313
- background-image: url(../flags/1x1/co.svg);
314
- }
315
- .monsterinsights-flag-icon-cr {
316
- background-image: url(../flags/4x3/cr.svg);
317
- }
318
- .monsterinsights-flag-icon-cr.monsterinsights-flag-icon-squared {
319
- background-image: url(../flags/1x1/cr.svg);
320
- }
321
- .monsterinsights-flag-icon-cu {
322
- background-image: url(../flags/4x3/cu.svg);
323
- }
324
- .monsterinsights-flag-icon-cu.monsterinsights-flag-icon-squared {
325
- background-image: url(../flags/1x1/cu.svg);
326
- }
327
- .monsterinsights-flag-icon-cv {
328
- background-image: url(../flags/4x3/cv.svg);
329
- }
330
- .monsterinsights-flag-icon-cv.monsterinsights-flag-icon-squared {
331
- background-image: url(../flags/1x1/cv.svg);
332
- }
333
- .monsterinsights-flag-icon-cw {
334
- background-image: url(../flags/4x3/cw.svg);
335
- }
336
- .monsterinsights-flag-icon-cw.monsterinsights-flag-icon-squared {
337
- background-image: url(../flags/1x1/cw.svg);
338
- }
339
- .monsterinsights-flag-icon-cx {
340
- background-image: url(../flags/4x3/cx.svg);
341
- }
342
- .monsterinsights-flag-icon-cx.monsterinsights-flag-icon-squared {
343
- background-image: url(../flags/1x1/cx.svg);
344
- }
345
- .monsterinsights-flag-icon-cy {
346
- background-image: url(../flags/4x3/cy.svg);
347
- }
348
- .monsterinsights-flag-icon-cy.monsterinsights-flag-icon-squared {
349
- background-image: url(../flags/1x1/cy.svg);
350
- }
351
- .monsterinsights-flag-icon-cz {
352
- background-image: url(../flags/4x3/cz.svg);
353
- }
354
- .monsterinsights-flag-icon-cz.monsterinsights-flag-icon-squared {
355
- background-image: url(../flags/1x1/cz.svg);
356
- }
357
- .monsterinsights-flag-icon-de {
358
- background-image: url(../flags/4x3/de.svg);
359
- }
360
- .monsterinsights-flag-icon-de.monsterinsights-flag-icon-squared {
361
- background-image: url(../flags/1x1/de.svg);
362
- }
363
- .monsterinsights-flag-icon-dj {
364
- background-image: url(../flags/4x3/dj.svg);
365
- }
366
- .monsterinsights-flag-icon-dj.monsterinsights-flag-icon-squared {
367
- background-image: url(../flags/1x1/dj.svg);
368
- }
369
- .monsterinsights-flag-icon-dk {
370
- background-image: url(../flags/4x3/dk.svg);
371
- }
372
- .monsterinsights-flag-icon-dk.monsterinsights-flag-icon-squared {
373
- background-image: url(../flags/1x1/dk.svg);
374
- }
375
- .monsterinsights-flag-icon-dm {
376
- background-image: url(../flags/4x3/dm.svg);
377
- }
378
- .monsterinsights-flag-icon-dm.monsterinsights-flag-icon-squared {
379
- background-image: url(../flags/1x1/dm.svg);
380
- }
381
- .monsterinsights-flag-icon-do {
382
- background-image: url(../flags/4x3/do.svg);
383
- }
384
- .monsterinsights-flag-icon-do.monsterinsights-flag-icon-squared {
385
- background-image: url(../flags/1x1/do.svg);
386
- }
387
- .monsterinsights-flag-icon-dz {
388
- background-image: url(../flags/4x3/dz.svg);
389
- }
390
- .monsterinsights-flag-icon-dz.monsterinsights-flag-icon-squared {
391
- background-image: url(../flags/1x1/dz.svg);
392
- }
393
- .monsterinsights-flag-icon-ec {
394
- background-image: url(../flags/4x3/ec.svg);
395
- }
396
- .monsterinsights-flag-icon-ec.monsterinsights-flag-icon-squared {
397
- background-image: url(../flags/1x1/ec.svg);
398
- }
399
- .monsterinsights-flag-icon-ee {
400
- background-image: url(../flags/4x3/ee.svg);
401
- }
402
- .monsterinsights-flag-icon-ee.monsterinsights-flag-icon-squared {
403
- background-image: url(../flags/1x1/ee.svg);
404
- }
405
- .monsterinsights-flag-icon-eg {
406
- background-image: url(../flags/4x3/eg.svg);
407
- }
408
- .monsterinsights-flag-icon-eg.monsterinsights-flag-icon-squared {
409
- background-image: url(../flags/1x1/eg.svg);
410
- }
411
- .monsterinsights-flag-icon-eh {
412
- background-image: url(../flags/4x3/eh.svg);
413
- }
414
- .monsterinsights-flag-icon-eh.monsterinsights-flag-icon-squared {
415
- background-image: url(../flags/1x1/eh.svg);
416
- }
417
- .monsterinsights-flag-icon-er {
418
- background-image: url(../flags/4x3/er.svg);
419
- }
420
- .monsterinsights-flag-icon-er.monsterinsights-flag-icon-squared {
421
- background-image: url(../flags/1x1/er.svg);
422
- }
423
- .monsterinsights-flag-icon-es {
424
- background-image: url(../flags/4x3/es.svg);
425
- }
426
- .monsterinsights-flag-icon-es.monsterinsights-flag-icon-squared {
427
- background-image: url(../flags/1x1/es.svg);
428
- }
429
- .monsterinsights-flag-icon-et {
430
- background-image: url(../flags/4x3/et.svg);
431
- }
432
- .monsterinsights-flag-icon-et.monsterinsights-flag-icon-squared {
433
- background-image: url(../flags/1x1/et.svg);
434
- }
435
- .monsterinsights-flag-icon-fi {
436
- background-image: url(../flags/4x3/fi.svg);
437
- }
438
- .monsterinsights-flag-icon-fi.monsterinsights-flag-icon-squared {
439
- background-image: url(../flags/1x1/fi.svg);
440
- }
441
- .monsterinsights-flag-icon-fj {
442
- background-image: url(../flags/4x3/fj.svg);
443
- }
444
- .monsterinsights-flag-icon-fj.monsterinsights-flag-icon-squared {
445
- background-image: url(../flags/1x1/fj.svg);
446
- }
447
- .monsterinsights-flag-icon-fk {
448
- background-image: url(../flags/4x3/fk.svg);
449
- }
450
- .monsterinsights-flag-icon-fk.monsterinsights-flag-icon-squared {
451
- background-image: url(../flags/1x1/fk.svg);
452
- }
453
- .monsterinsights-flag-icon-fm {
454
- background-image: url(../flags/4x3/fm.svg);
455
- }
456
- .monsterinsights-flag-icon-fm.monsterinsights-flag-icon-squared {
457
- background-image: url(../flags/1x1/fm.svg);
458
- }
459
- .monsterinsights-flag-icon-fo {
460
- background-image: url(../flags/4x3/fo.svg);
461
- }
462
- .monsterinsights-flag-icon-fo.monsterinsights-flag-icon-squared {
463
- background-image: url(../flags/1x1/fo.svg);
464
- }
465
- .monsterinsights-flag-icon-fr {
466
- background-image: url(../flags/4x3/fr.svg);
467
- }
468
- .monsterinsights-flag-icon-fr.monsterinsights-flag-icon-squared {
469
- background-image: url(../flags/1x1/fr.svg);
470
- }
471
- .monsterinsights-flag-icon-ga {
472
- background-image: url(../flags/4x3/ga.svg);
473
- }
474
- .monsterinsights-flag-icon-ga.monsterinsights-flag-icon-squared {
475
- background-image: url(../flags/1x1/ga.svg);
476
- }
477
- .monsterinsights-flag-icon-gb {
478
- background-image: url(../flags/4x3/gb.svg);
479
- }
480
- .monsterinsights-flag-icon-gb.monsterinsights-flag-icon-squared {
481
- background-image: url(../flags/1x1/gb.svg);
482
- }
483
- .monsterinsights-flag-icon-gd {
484
- background-image: url(../flags/4x3/gd.svg);
485
- }
486
- .monsterinsights-flag-icon-gd.monsterinsights-flag-icon-squared {
487
- background-image: url(../flags/1x1/gd.svg);
488
- }
489
- .monsterinsights-flag-icon-ge {
490
- background-image: url(../flags/4x3/ge.svg);
491
- }
492
- .monsterinsights-flag-icon-ge.monsterinsights-flag-icon-squared {
493
- background-image: url(../flags/1x1/ge.svg);
494
- }
495
- .monsterinsights-flag-icon-gf {
496
- background-image: url(../flags/4x3/gf.svg);
497
- }
498
- .monsterinsights-flag-icon-gf.monsterinsights-flag-icon-squared {
499
- background-image: url(../flags/1x1/gf.svg);
500
- }
501
- .monsterinsights-flag-icon-gg {
502
- background-image: url(../flags/4x3/gg.svg);
503
- }
504
- .monsterinsights-flag-icon-gg.monsterinsights-flag-icon-squared {
505
- background-image: url(../flags/1x1/gg.svg);
506
- }
507
- .monsterinsights-flag-icon-gh {
508
- background-image: url(../flags/4x3/gh.svg);
509
- }
510
- .monsterinsights-flag-icon-gh.monsterinsights-flag-icon-squared {
511
- background-image: url(../flags/1x1/gh.svg);
512
- }
513
- .monsterinsights-flag-icon-gi {
514
- background-image: url(../flags/4x3/gi.svg);
515
- }
516
- .monsterinsights-flag-icon-gi.monsterinsights-flag-icon-squared {
517
- background-image: url(../flags/1x1/gi.svg);
518
- }
519
- .monsterinsights-flag-icon-gl {
520
- background-image: url(../flags/4x3/gl.svg);
521
- }
522
- .monsterinsights-flag-icon-gl.monsterinsights-flag-icon-squared {
523
- background-image: url(../flags/1x1/gl.svg);
524
- }
525
- .monsterinsights-flag-icon-gm {
526
- background-image: url(../flags/4x3/gm.svg);
527
- }
528
- .monsterinsights-flag-icon-gm.monsterinsights-flag-icon-squared {
529
- background-image: url(../flags/1x1/gm.svg);
530
- }
531
- .monsterinsights-flag-icon-gn {
532
- background-image: url(../flags/4x3/gn.svg);
533
- }
534
- .monsterinsights-flag-icon-gn.monsterinsights-flag-icon-squared {
535
- background-image: url(../flags/1x1/gn.svg);
536
- }
537
- .monsterinsights-flag-icon-gp {
538
- background-image: url(../flags/4x3/gp.svg);
539
- }
540
- .monsterinsights-flag-icon-gp.monsterinsights-flag-icon-squared {
541
- background-image: url(../flags/1x1/gp.svg);
542
- }
543
- .monsterinsights-flag-icon-gq {
544
- background-image: url(../flags/4x3/gq.svg);
545
- }
546
- .monsterinsights-flag-icon-gq.monsterinsights-flag-icon-squared {
547
- background-image: url(../flags/1x1/gq.svg);
548
- }
549
- .monsterinsights-flag-icon-gr {
550
- background-image: url(../flags/4x3/gr.svg);
551
- }
552
- .monsterinsights-flag-icon-gr.monsterinsights-flag-icon-squared {
553
- background-image: url(../flags/1x1/gr.svg);
554
- }
555
- .monsterinsights-flag-icon-gs {
556
- background-image: url(../flags/4x3/gs.svg);
557
- }
558
- .monsterinsights-flag-icon-gs.monsterinsights-flag-icon-squared {
559
- background-image: url(../flags/1x1/gs.svg);
560
- }
561
- .monsterinsights-flag-icon-gt {
562
- background-image: url(../flags/4x3/gt.svg);
563
- }
564
- .monsterinsights-flag-icon-gt.monsterinsights-flag-icon-squared {
565
- background-image: url(../flags/1x1/gt.svg);
566
- }
567
- .monsterinsights-flag-icon-gu {
568
- background-image: url(../flags/4x3/gu.svg);
569
- }
570
- .monsterinsights-flag-icon-gu.monsterinsights-flag-icon-squared {
571
- background-image: url(../flags/1x1/gu.svg);
572
- }
573
- .monsterinsights-flag-icon-gw {
574
- background-image: url(../flags/4x3/gw.svg);
575
- }
576
- .monsterinsights-flag-icon-gw.monsterinsights-flag-icon-squared {
577
- background-image: url(../flags/1x1/gw.svg);
578
- }
579
- .monsterinsights-flag-icon-gy {
580
- background-image: url(../flags/4x3/gy.svg);
581
- }
582
- .monsterinsights-flag-icon-gy.monsterinsights-flag-icon-squared {
583
- background-image: url(../flags/1x1/gy.svg);
584
- }
585
- .monsterinsights-flag-icon-hk {
586
- background-image: url(../flags/4x3/hk.svg);
587
- }
588
- .monsterinsights-flag-icon-hk.monsterinsights-flag-icon-squared {
589
- background-image: url(../flags/1x1/hk.svg);
590
- }
591
- .monsterinsights-flag-icon-hm {
592
- background-image: url(../flags/4x3/hm.svg);
593
- }
594
- .monsterinsights-flag-icon-hm.monsterinsights-flag-icon-squared {
595
- background-image: url(../flags/1x1/hm.svg);
596
- }
597
- .monsterinsights-flag-icon-hn {
598
- background-image: url(../flags/4x3/hn.svg);
599
- }
600
- .monsterinsights-flag-icon-hn.monsterinsights-flag-icon-squared {
601
- background-image: url(../flags/1x1/hn.svg);
602
- }
603
- .monsterinsights-flag-icon-hr {
604
- background-image: url(../flags/4x3/hr.svg);
605
- }
606
- .monsterinsights-flag-icon-hr.monsterinsights-flag-icon-squared {
607
- background-image: url(../flags/1x1/hr.svg);
608
- }
609
- .monsterinsights-flag-icon-ht {
610
- background-image: url(../flags/4x3/ht.svg);
611
- }
612
- .monsterinsights-flag-icon-ht.monsterinsights-flag-icon-squared {
613
- background-image: url(../flags/1x1/ht.svg);
614
- }
615
- .monsterinsights-flag-icon-hu {
616
- background-image: url(../flags/4x3/hu.svg);
617
- }
618
- .monsterinsights-flag-icon-hu.monsterinsights-flag-icon-squared {
619
- background-image: url(../flags/1x1/hu.svg);
620
- }
621
- .monsterinsights-flag-icon-id {
622
- background-image: url(../flags/4x3/id.svg);
623
- }
624
- .monsterinsights-flag-icon-id.monsterinsights-flag-icon-squared {
625
- background-image: url(../flags/1x1/id.svg);
626
- }
627
- .monsterinsights-flag-icon-ie {
628
- background-image: url(../flags/4x3/ie.svg);
629
- }
630
- .monsterinsights-flag-icon-ie.monsterinsights-flag-icon-squared {
631
- background-image: url(../flags/1x1/ie.svg);
632
- }
633
- .monsterinsights-flag-icon-il {
634
- background-image: url(../flags/4x3/il.svg);
635
- }
636
- .monsterinsights-flag-icon-il.monsterinsights-flag-icon-squared {
637
- background-image: url(../flags/1x1/il.svg);
638
- }
639
- .monsterinsights-flag-icon-im {
640
- background-image: url(../flags/4x3/im.svg);
641
- }
642
- .monsterinsights-flag-icon-im.monsterinsights-flag-icon-squared {
643
- background-image: url(../flags/1x1/im.svg);
644
- }
645
- .monsterinsights-flag-icon-in {
646
- background-image: url(../flags/4x3/in.svg);
647
- }
648
- .monsterinsights-flag-icon-in.monsterinsights-flag-icon-squared {
649
- background-image: url(../flags/1x1/in.svg);
650
- }
651
- .monsterinsights-flag-icon-io {
652
- background-image: url(../flags/4x3/io.svg);
653
- }
654
- .monsterinsights-flag-icon-io.monsterinsights-flag-icon-squared {
655
- background-image: url(../flags/1x1/io.svg);
656
- }
657
- .monsterinsights-flag-icon-iq {
658
- background-image: url(../flags/4x3/iq.svg);
659
- }
660
- .monsterinsights-flag-icon-iq.monsterinsights-flag-icon-squared {
661
- background-image: url(../flags/1x1/iq.svg);
662
- }
663
- .monsterinsights-flag-icon-ir {
664
- background-image: url(../flags/4x3/ir.svg);
665
- }
666
- .monsterinsights-flag-icon-ir.monsterinsights-flag-icon-squared {
667
- background-image: url(../flags/1x1/ir.svg);
668
- }
669
- .monsterinsights-flag-icon-is {
670
- background-image: url(../flags/4x3/is.svg);
671
- }
672
- .monsterinsights-flag-icon-is.monsterinsights-flag-icon-squared {
673
- background-image: url(../flags/1x1/is.svg);
674
- }
675
- .monsterinsights-flag-icon-it {
676
- background-image: url(../flags/4x3/it.svg);
677
- }
678
- .monsterinsights-flag-icon-it.monsterinsights-flag-icon-squared {
679
- background-image: url(../flags/1x1/it.svg);
680
- }
681
- .monsterinsights-flag-icon-je {
682
- background-image: url(../flags/4x3/je.svg);
683
- }
684
- .monsterinsights-flag-icon-je.monsterinsights-flag-icon-squared {
685
- background-image: url(../flags/1x1/je.svg);
686
- }
687
- .monsterinsights-flag-icon-jm {
688
- background-image: url(../flags/4x3/jm.svg);
689
- }
690
- .monsterinsights-flag-icon-jm.monsterinsights-flag-icon-squared {
691
- background-image: url(../flags/1x1/jm.svg);
692
- }
693
- .monsterinsights-flag-icon-jo {
694
- background-image: url(../flags/4x3/jo.svg);
695
- }
696
- .monsterinsights-flag-icon-jo.monsterinsights-flag-icon-squared {
697
- background-image: url(../flags/1x1/jo.svg);
698
- }
699
- .monsterinsights-flag-icon-jp {
700
- background-image: url(../flags/4x3/jp.svg);
701
- }
702
- .monsterinsights-flag-icon-jp.monsterinsights-flag-icon-squared {
703
- background-image: url(../flags/1x1/jp.svg);
704
- }
705
- .monsterinsights-flag-icon-ke {
706
- background-image: url(../flags/4x3/ke.svg);
707
- }
708
- .monsterinsights-flag-icon-ke.monsterinsights-flag-icon-squared {
709
- background-image: url(../flags/1x1/ke.svg);
710
- }
711
- .monsterinsights-flag-icon-kg {
712
- background-image: url(../flags/4x3/kg.svg);
713
- }
714
- .monsterinsights-flag-icon-kg.monsterinsights-flag-icon-squared {
715
- background-image: url(../flags/1x1/kg.svg);
716
- }
717
- .monsterinsights-flag-icon-kh {
718
- background-image: url(../flags/4x3/kh.svg);
719
- }
720
- .monsterinsights-flag-icon-kh.monsterinsights-flag-icon-squared {
721
- background-image: url(../flags/1x1/kh.svg);
722
- }
723
- .monsterinsights-flag-icon-ki {
724
- background-image: url(../flags/4x3/ki.svg);
725
- }
726
- .monsterinsights-flag-icon-ki.monsterinsights-flag-icon-squared {
727
- background-image: url(../flags/1x1/ki.svg);
728
- }
729
- .monsterinsights-flag-icon-km {
730
- background-image: url(../flags/4x3/km.svg);
731
- }
732
- .monsterinsights-flag-icon-km.monsterinsights-flag-icon-squared {
733
- background-image: url(../flags/1x1/km.svg);
734
- }
735
- .monsterinsights-flag-icon-kn {
736
- background-image: url(../flags/4x3/kn.svg);
737
- }
738
- .monsterinsights-flag-icon-kn.monsterinsights-flag-icon-squared {
739
- background-image: url(../flags/1x1/kn.svg);
740
- }
741
- .monsterinsights-flag-icon-kp {
742
- background-image: url(../flags/4x3/kp.svg);
743
- }
744
- .monsterinsights-flag-icon-kp.monsterinsights-flag-icon-squared {
745
- background-image: url(../flags/1x1/kp.svg);
746
- }
747
- .monsterinsights-flag-icon-kr {
748
- background-image: url(../flags/4x3/kr.svg);
749
- }
750
- .monsterinsights-flag-icon-kr.monsterinsights-flag-icon-squared {
751
- background-image: url(../flags/1x1/kr.svg);
752
- }
753
- .monsterinsights-flag-icon-kw {
754
- background-image: url(../flags/4x3/kw.svg);
755
- }
756
- .monsterinsights-flag-icon-kw.monsterinsights-flag-icon-squared {
757
- background-image: url(../flags/1x1/kw.svg);
758
- }
759
- .monsterinsights-flag-icon-ky {
760
- background-image: url(../flags/4x3/ky.svg);
761
- }
762
- .monsterinsights-flag-icon-ky.monsterinsights-flag-icon-squared {
763
- background-image: url(../flags/1x1/ky.svg);
764
- }
765
- .monsterinsights-flag-icon-kz {
766
- background-image: url(../flags/4x3/kz.svg);
767
- }
768
- .monsterinsights-flag-icon-kz.monsterinsights-flag-icon-squared {
769
- background-image: url(../flags/1x1/kz.svg);
770
- }
771
- .monsterinsights-flag-icon-la {
772
- background-image: url(../flags/4x3/la.svg);
773
- }
774
- .monsterinsights-flag-icon-la.monsterinsights-flag-icon-squared {
775
- background-image: url(../flags/1x1/la.svg);
776
- }
777
- .monsterinsights-flag-icon-lb {
778
- background-image: url(../flags/4x3/lb.svg);
779
- }
780
- .monsterinsights-flag-icon-lb.monsterinsights-flag-icon-squared {
781
- background-image: url(../flags/1x1/lb.svg);
782
- }
783
- .monsterinsights-flag-icon-lc {
784
- background-image: url(../flags/4x3/lc.svg);
785
- }
786
- .monsterinsights-flag-icon-lc.monsterinsights-flag-icon-squared {
787
- background-image: url(../flags/1x1/lc.svg);
788
- }
789
- .monsterinsights-flag-icon-li {
790
- background-image: url(../flags/4x3/li.svg);
791
- }
792
- .monsterinsights-flag-icon-li.monsterinsights-flag-icon-squared {
793
- background-image: url(../flags/1x1/li.svg);
794
- }
795
- .monsterinsights-flag-icon-lk {
796
- background-image: url(../flags/4x3/lk.svg);
797
- }
798
- .monsterinsights-flag-icon-lk.monsterinsights-flag-icon-squared {
799
- background-image: url(../flags/1x1/lk.svg);
800
- }
801
- .monsterinsights-flag-icon-lr {
802
- background-image: url(../flags/4x3/lr.svg);
803
- }
804
- .monsterinsights-flag-icon-lr.monsterinsights-flag-icon-squared {
805
- background-image: url(../flags/1x1/lr.svg);
806
- }
807
- .monsterinsights-flag-icon-ls {
808
- background-image: url(../flags/4x3/ls.svg);
809
- }
810
- .monsterinsights-flag-icon-ls.monsterinsights-flag-icon-squared {
811
- background-image: url(../flags/1x1/ls.svg);
812
- }
813
- .monsterinsights-flag-icon-lt {
814
- background-image: url(../flags/4x3/lt.svg);
815
- }
816
- .monsterinsights-flag-icon-lt.monsterinsights-flag-icon-squared {
817
- background-image: url(../flags/1x1/lt.svg);
818
- }
819
- .monsterinsights-flag-icon-lu {
820
- background-image: url(../flags/4x3/lu.svg);
821
- }
822
- .monsterinsights-flag-icon-lu.monsterinsights-flag-icon-squared {
823
- background-image: url(../flags/1x1/lu.svg);
824
- }
825
- .monsterinsights-flag-icon-lv {
826
- background-image: url(../flags/4x3/lv.svg);
827
- }
828
- .monsterinsights-flag-icon-lv.monsterinsights-flag-icon-squared {
829
- background-image: url(../flags/1x1/lv.svg);
830
- }
831
- .monsterinsights-flag-icon-ly {
832
- background-image: url(../flags/4x3/ly.svg);
833
- }
834
- .monsterinsights-flag-icon-ly.monsterinsights-flag-icon-squared {
835
- background-image: url(../flags/1x1/ly.svg);
836
- }
837
- .monsterinsights-flag-icon-ma {
838
- background-image: url(../flags/4x3/ma.svg);
839
- }
840
- .monsterinsights-flag-icon-ma.monsterinsights-flag-icon-squared {
841
- background-image: url(../flags/1x1/ma.svg);
842
- }
843
- .monsterinsights-flag-icon-mc {
844
- background-image: url(../flags/4x3/mc.svg);
845
- }
846
- .monsterinsights-flag-icon-mc.monsterinsights-flag-icon-squared {
847
- background-image: url(../flags/1x1/mc.svg);
848
- }
849
- .monsterinsights-flag-icon-md {
850
- background-image: url(../flags/4x3/md.svg);
851
- }
852
- .monsterinsights-flag-icon-md.monsterinsights-flag-icon-squared {
853
- background-image: url(../flags/1x1/md.svg);
854
- }
855
- .monsterinsights-flag-icon-me {
856
- background-image: url(../flags/4x3/me.svg);
857
- }
858
- .monsterinsights-flag-icon-me.monsterinsights-flag-icon-squared {
859
- background-image: url(../flags/1x1/me.svg);
860
- }
861
- .monsterinsights-flag-icon-mf {
862
- background-image: url(../flags/4x3/mf.svg);
863
- }
864
- .monsterinsights-flag-icon-mf.monsterinsights-flag-icon-squared {
865
- background-image: url(../flags/1x1/mf.svg);
866
- }
867
- .monsterinsights-flag-icon-mg {
868
- background-image: url(../flags/4x3/mg.svg);
869
- }
870
- .monsterinsights-flag-icon-mg.monsterinsights-flag-icon-squared {
871
- background-image: url(../flags/1x1/mg.svg);
872
- }
873
- .monsterinsights-flag-icon-mh {
874
- background-image: url(../flags/4x3/mh.svg);
875
- }
876
- .monsterinsights-flag-icon-mh.monsterinsights-flag-icon-squared {
877
- background-image: url(../flags/1x1/mh.svg);
878
- }
879
- .monsterinsights-flag-icon-mk {
880
- background-image: url(../flags/4x3/mk.svg);
881
- }
882
- .monsterinsights-flag-icon-mk.monsterinsights-flag-icon-squared {
883
- background-image: url(../flags/1x1/mk.svg);
884
- }
885
- .monsterinsights-flag-icon-ml {
886
- background-image: url(../flags/4x3/ml.svg);
887
- }
888
- .monsterinsights-flag-icon-ml.monsterinsights-flag-icon-squared {
889
- background-image: url(../flags/1x1/ml.svg);
890
- }
891
- .monsterinsights-flag-icon-mm {
892
- background-image: url(../flags/4x3/mm.svg);
893
- }
894
- .monsterinsights-flag-icon-mm.monsterinsights-flag-icon-squared {
895
- background-image: url(../flags/1x1/mm.svg);
896
- }
897
- .monsterinsights-flag-icon-mn {
898
- background-image: url(../flags/4x3/mn.svg);
899
- }
900
- .monsterinsights-flag-icon-mn.monsterinsights-flag-icon-squared {
901
- background-image: url(../flags/1x1/mn.svg);
902
- }
903
- .monsterinsights-flag-icon-mo {
904
- background-image: url(../flags/4x3/mo.svg);
905
- }
906
- .monsterinsights-flag-icon-mo.monsterinsights-flag-icon-squared {
907
- background-image: url(../flags/1x1/mo.svg);
908
- }
909
- .monsterinsights-flag-icon-mp {
910
- background-image: url(../flags/4x3/mp.svg);
911
- }
912
- .monsterinsights-flag-icon-mp.monsterinsights-flag-icon-squared {
913
- background-image: url(../flags/1x1/mp.svg);
914
- }
915
- .monsterinsights-flag-icon-mq {
916
- background-image: url(../flags/4x3/mq.svg);
917
- }
918
- .monsterinsights-flag-icon-mq.monsterinsights-flag-icon-squared {
919
- background-image: url(../flags/1x1/mq.svg);
920
- }
921
- .monsterinsights-flag-icon-mr {
922
- background-image: url(../flags/4x3/mr.svg);
923
- }
924
- .monsterinsights-flag-icon-mr.monsterinsights-flag-icon-squared {
925
- background-image: url(../flags/1x1/mr.svg);
926
- }
927
- .monsterinsights-flag-icon-ms {
928
- background-image: url(../flags/4x3/ms.svg);
929
- }
930
- .monsterinsights-flag-icon-ms.monsterinsights-flag-icon-squared {
931
- background-image: url(../flags/1x1/ms.svg);
932
- }
933
- .monsterinsights-flag-icon-mt {
934
- background-image: url(../flags/4x3/mt.svg);
935
- }
936
- .monsterinsights-flag-icon-mt.monsterinsights-flag-icon-squared {
937
- background-image: url(../flags/1x1/mt.svg);
938
- }
939
- .monsterinsights-flag-icon-mu {
940
- background-image: url(../flags/4x3/mu.svg);
941
- }
942
- .monsterinsights-flag-icon-mu.monsterinsights-flag-icon-squared {
943
- background-image: url(../flags/1x1/mu.svg);
944
- }
945
- .monsterinsights-flag-icon-mv {
946
- background-image: url(../flags/4x3/mv.svg);
947
- }
948
- .monsterinsights-flag-icon-mv.monsterinsights-flag-icon-squared {
949
- background-image: url(../flags/1x1/mv.svg);
950
- }
951
- .monsterinsights-flag-icon-mw {
952
- background-image: url(../flags/4x3/mw.svg);
953
- }
954
- .monsterinsights-flag-icon-mw.monsterinsights-flag-icon-squared {
955
- background-image: url(../flags/1x1/mw.svg);
956
- }
957
- .monsterinsights-flag-icon-mx {
958
- background-image: url(../flags/4x3/mx.svg);
959
- }
960
- .monsterinsights-flag-icon-mx.monsterinsights-flag-icon-squared {
961
- background-image: url(../flags/1x1/mx.svg);
962
- }
963
- .monsterinsights-flag-icon-my {
964
- background-image: url(../flags/4x3/my.svg);
965
- }
966
- .monsterinsights-flag-icon-my.monsterinsights-flag-icon-squared {
967
- background-image: url(../flags/1x1/my.svg);
968
- }
969
- .monsterinsights-flag-icon-mz {
970
- background-image: url(../flags/4x3/mz.svg);
971
- }
972
- .monsterinsights-flag-icon-mz.monsterinsights-flag-icon-squared {
973
- background-image: url(../flags/1x1/mz.svg);
974
- }
975
- .monsterinsights-flag-icon-na {
976
- background-image: url(../flags/4x3/na.svg);
977
- }
978
- .monsterinsights-flag-icon-na.monsterinsights-flag-icon-squared {
979
- background-image: url(../flags/1x1/na.svg);
980
- }
981
- .monsterinsights-flag-icon-nc {
982
- background-image: url(../flags/4x3/nc.svg);
983
- }
984
- .monsterinsights-flag-icon-nc.monsterinsights-flag-icon-squared {
985
- background-image: url(../flags/1x1/nc.svg);
986
- }
987
- .monsterinsights-flag-icon-ne {
988
- background-image: url(../flags/4x3/ne.svg);
989
- }
990
- .monsterinsights-flag-icon-ne.monsterinsights-flag-icon-squared {
991
- background-image: url(../flags/1x1/ne.svg);
992
- }
993
- .monsterinsights-flag-icon-nf {
994
- background-image: url(../flags/4x3/nf.svg);
995
- }
996
- .monsterinsights-flag-icon-nf.monsterinsights-flag-icon-squared {
997
- background-image: url(../flags/1x1/nf.svg);
998
- }
999
- .monsterinsights-flag-icon-ng {
1000
- background-image: url(../flags/4x3/ng.svg);
1001
- }
1002
- .monsterinsights-flag-icon-ng.monsterinsights-flag-icon-squared {
1003
- background-image: url(../flags/1x1/ng.svg);
1004
- }
1005
- .monsterinsights-flag-icon-ni {
1006
- background-image: url(../flags/4x3/ni.svg);
1007
- }
1008
- .monsterinsights-flag-icon-ni.monsterinsights-flag-icon-squared {
1009
- background-image: url(../flags/1x1/ni.svg);
1010
- }
1011
- .monsterinsights-flag-icon-nl {
1012
- background-image: url(../flags/4x3/nl.svg);
1013
- }
1014
- .monsterinsights-flag-icon-nl.monsterinsights-flag-icon-squared {
1015
- background-image: url(../flags/1x1/nl.svg);
1016
- }
1017
- .monsterinsights-flag-icon-no {
1018
- background-image: url(../flags/4x3/no.svg);
1019
- }
1020
- .monsterinsights-flag-icon-no.monsterinsights-flag-icon-squared {
1021
- background-image: url(../flags/1x1/no.svg);
1022
- }
1023
- .monsterinsights-flag-icon-np {
1024
- background-image: url(../flags/4x3/np.svg);
1025
- }
1026
- .monsterinsights-flag-icon-np.monsterinsights-flag-icon-squared {
1027
- background-image: url(../flags/1x1/np.svg);
1028
- }
1029
- .monsterinsights-flag-icon-nr {
1030
- background-image: url(../flags/4x3/nr.svg);
1031
- }
1032
- .monsterinsights-flag-icon-nr.monsterinsights-flag-icon-squared {
1033
- background-image: url(../flags/1x1/nr.svg);
1034
- }
1035
- .monsterinsights-flag-icon-nu {
1036
- background-image: url(../flags/4x3/nu.svg);
1037
- }
1038
- .monsterinsights-flag-icon-nu.monsterinsights-flag-icon-squared {
1039
- background-image: url(../flags/1x1/nu.svg);
1040
- }
1041
- .monsterinsights-flag-icon-nz {
1042
- background-image: url(../flags/4x3/nz.svg);
1043
- }
1044
- .monsterinsights-flag-icon-nz.monsterinsights-flag-icon-squared {
1045
- background-image: url(../flags/1x1/nz.svg);
1046
- }
1047
- .monsterinsights-flag-icon-om {
1048
- background-image: url(../flags/4x3/om.svg);
1049
- }
1050
- .monsterinsights-flag-icon-om.monsterinsights-flag-icon-squared {
1051
- background-image: url(../flags/1x1/om.svg);
1052
- }
1053
- .monsterinsights-flag-icon-pa {
1054
- background-image: url(../flags/4x3/pa.svg);
1055
- }
1056
- .monsterinsights-flag-icon-pa.monsterinsights-flag-icon-squared {
1057
- background-image: url(../flags/1x1/pa.svg);
1058
- }
1059
- .monsterinsights-flag-icon-pe {
1060
- background-image: url(../flags/4x3/pe.svg);
1061
- }
1062
- .monsterinsights-flag-icon-pe.monsterinsights-flag-icon-squared {
1063
- background-image: url(../flags/1x1/pe.svg);
1064
- }
1065
- .monsterinsights-flag-icon-pf {
1066
- background-image: url(../flags/4x3/pf.svg);
1067
- }
1068
- .monsterinsights-flag-icon-pf.monsterinsights-flag-icon-squared {
1069
- background-image: url(../flags/1x1/pf.svg);
1070
- }
1071
- .monsterinsights-flag-icon-pg {
1072
- background-image: url(../flags/4x3/pg.svg);
1073
- }
1074
- .monsterinsights-flag-icon-pg.monsterinsights-flag-icon-squared {
1075
- background-image: url(../flags/1x1/pg.svg);
1076
- }
1077
- .monsterinsights-flag-icon-ph {
1078
- background-image: url(../flags/4x3/ph.svg);
1079
- }
1080
- .monsterinsights-flag-icon-ph.monsterinsights-flag-icon-squared {
1081
- background-image: url(../flags/1x1/ph.svg);
1082
- }
1083
- .monsterinsights-flag-icon-pk {
1084
- background-image: url(../flags/4x3/pk.svg);
1085
- }
1086
- .monsterinsights-flag-icon-pk.monsterinsights-flag-icon-squared {
1087
- background-image: url(../flags/1x1/pk.svg);
1088
- }
1089
- .monsterinsights-flag-icon-pl {
1090
- background-image: url(../flags/4x3/pl.svg);
1091
- }
1092
- .monsterinsights-flag-icon-pl.monsterinsights-flag-icon-squared {
1093
- background-image: url(../flags/1x1/pl.svg);
1094
- }
1095
- .monsterinsights-flag-icon-pm {
1096
- background-image: url(../flags/4x3/pm.svg);
1097
- }
1098
- .monsterinsights-flag-icon-pm.monsterinsights-flag-icon-squared {
1099
- background-image: url(../flags/1x1/pm.svg);
1100
- }
1101
- .monsterinsights-flag-icon-pn {
1102
- background-image: url(../flags/4x3/pn.svg);
1103
- }
1104
- .monsterinsights-flag-icon-pn.monsterinsights-flag-icon-squared {
1105
- background-image: url(../flags/1x1/pn.svg);
1106
- }
1107
- .monsterinsights-flag-icon-pr {
1108
- background-image: url(../flags/4x3/pr.svg);
1109
- }
1110
- .monsterinsights-flag-icon-pr.monsterinsights-flag-icon-squared {
1111
- background-image: url(../flags/1x1/pr.svg);
1112
- }
1113
- .monsterinsights-flag-icon-ps {
1114
- background-image: url(../flags/4x3/ps.svg);
1115
- }
1116
- .monsterinsights-flag-icon-ps.monsterinsights-flag-icon-squared {
1117
- background-image: url(../flags/1x1/ps.svg);
1118
- }
1119
- .monsterinsights-flag-icon-pt {
1120
- background-image: url(../flags/4x3/pt.svg);
1121
- }
1122
- .monsterinsights-flag-icon-pt.monsterinsights-flag-icon-squared {
1123
- background-image: url(../flags/1x1/pt.svg);
1124
- }
1125
- .monsterinsights-flag-icon-pw {
1126
- background-image: url(../flags/4x3/pw.svg);
1127
- }
1128
- .monsterinsights-flag-icon-pw.monsterinsights-flag-icon-squared {
1129
- background-image: url(../flags/1x1/pw.svg);
1130
- }
1131
- .monsterinsights-flag-icon-py {
1132
- background-image: url(../flags/4x3/py.svg);
1133
- }
1134
- .monsterinsights-flag-icon-py.monsterinsights-flag-icon-squared {
1135
- background-image: url(../flags/1x1/py.svg);
1136
- }
1137
- .monsterinsights-flag-icon-qa {
1138
- background-image: url(../flags/4x3/qa.svg);
1139
- }
1140
- .monsterinsights-flag-icon-qa.monsterinsights-flag-icon-squared {
1141
- background-image: url(../flags/1x1/qa.svg);
1142
- }
1143
- .monsterinsights-flag-icon-re {
1144
- background-image: url(../flags/4x3/re.svg);
1145
- }
1146
- .monsterinsights-flag-icon-re.monsterinsights-flag-icon-squared {
1147
- background-image: url(../flags/1x1/re.svg);
1148
- }
1149
- .monsterinsights-flag-icon-ro {
1150
- background-image: url(../flags/4x3/ro.svg);
1151
- }
1152
- .monsterinsights-flag-icon-ro.monsterinsights-flag-icon-squared {
1153
- background-image: url(../flags/1x1/ro.svg);
1154
- }
1155
- .monsterinsights-flag-icon-rs {
1156
- background-image: url(../flags/4x3/rs.svg);
1157
- }
1158
- .monsterinsights-flag-icon-rs.monsterinsights-flag-icon-squared {
1159
- background-image: url(../flags/1x1/rs.svg);
1160
- }
1161
- .monsterinsights-flag-icon-ru {
1162
- background-image: url(../flags/4x3/ru.svg);
1163
- }
1164
- .monsterinsights-flag-icon-ru.monsterinsights-flag-icon-squared {
1165
- background-image: url(../flags/1x1/ru.svg);
1166
- }
1167
- .monsterinsights-flag-icon-rw {
1168
- background-image: url(../flags/4x3/rw.svg);
1169
- }
1170
- .monsterinsights-flag-icon-rw.monsterinsights-flag-icon-squared {
1171
- background-image: url(../flags/1x1/rw.svg);
1172
- }
1173
- .monsterinsights-flag-icon-sa {
1174
- background-image: url(../flags/4x3/sa.svg);
1175
- }
1176
- .monsterinsights-flag-icon-sa.monsterinsights-flag-icon-squared {
1177
- background-image: url(../flags/1x1/sa.svg);
1178
- }
1179
- .monsterinsights-flag-icon-sb {
1180
- background-image: url(../flags/4x3/sb.svg);
1181
- }
1182
- .monsterinsights-flag-icon-sb.monsterinsights-flag-icon-squared {
1183
- background-image: url(../flags/1x1/sb.svg);
1184
- }
1185
- .monsterinsights-flag-icon-sc {
1186
- background-image: url(../flags/4x3/sc.svg);
1187
- }
1188
- .monsterinsights-flag-icon-sc.monsterinsights-flag-icon-squared {
1189
- background-image: url(../flags/1x1/sc.svg);
1190
- }
1191
- .monsterinsights-flag-icon-sd {
1192
- background-image: url(../flags/4x3/sd.svg);
1193
- }
1194
- .monsterinsights-flag-icon-sd.monsterinsights-flag-icon-squared {
1195
- background-image: url(../flags/1x1/sd.svg);
1196
- }
1197
- .monsterinsights-flag-icon-se {
1198
- background-image: url(../flags/4x3/se.svg);
1199
- }
1200
- .monsterinsights-flag-icon-se.monsterinsights-flag-icon-squared {
1201
- background-image: url(../flags/1x1/se.svg);
1202
- }
1203
- .monsterinsights-flag-icon-sg {
1204
- background-image: url(../flags/4x3/sg.svg);
1205
- }
1206
- .monsterinsights-flag-icon-sg.monsterinsights-flag-icon-squared {
1207
- background-image: url(../flags/1x1/sg.svg);
1208
- }
1209
- .monsterinsights-flag-icon-sh {
1210
- background-image: url(../flags/4x3/sh.svg);
1211
- }
1212
- .monsterinsights-flag-icon-sh.monsterinsights-flag-icon-squared {
1213
- background-image: url(../flags/1x1/sh.svg);
1214
- }
1215
- .monsterinsights-flag-icon-si {
1216
- background-image: url(../flags/4x3/si.svg);
1217
- }
1218
- .monsterinsights-flag-icon-si.monsterinsights-flag-icon-squared {
1219
- background-image: url(../flags/1x1/si.svg);
1220
- }
1221
- .monsterinsights-flag-icon-sj {
1222
- background-image: url(../flags/4x3/sj.svg);
1223
- }
1224
- .monsterinsights-flag-icon-sj.monsterinsights-flag-icon-squared {
1225
- background-image: url(../flags/1x1/sj.svg);
1226
- }
1227
- .monsterinsights-flag-icon-sk {
1228
- background-image: url(../flags/4x3/sk.svg);
1229
- }
1230
- .monsterinsights-flag-icon-sk.monsterinsights-flag-icon-squared {
1231
- background-image: url(../flags/1x1/sk.svg);
1232
- }
1233
- .monsterinsights-flag-icon-sl {
1234
- background-image: url(../flags/4x3/sl.svg);
1235
- }
1236
- .monsterinsights-flag-icon-sl.monsterinsights-flag-icon-squared {
1237
- background-image: url(../flags/1x1/sl.svg);
1238
- }
1239
- .monsterinsights-flag-icon-sm {
1240
- background-image: url(../flags/4x3/sm.svg);
1241
- }
1242
- .monsterinsights-flag-icon-sm.monsterinsights-flag-icon-squared {
1243
- background-image: url(../flags/1x1/sm.svg);
1244
- }
1245
- .monsterinsights-flag-icon-sn {
1246
- background-image: url(../flags/4x3/sn.svg);
1247
- }
1248
- .monsterinsights-flag-icon-sn.monsterinsights-flag-icon-squared {
1249
- background-image: url(../flags/1x1/sn.svg);
1250
- }
1251
- .monsterinsights-flag-icon-so {
1252
- background-image: url(../flags/4x3/so.svg);
1253
- }
1254
- .monsterinsights-flag-icon-so.monsterinsights-flag-icon-squared {
1255
- background-image: url(../flags/1x1/so.svg);
1256
- }
1257
- .monsterinsights-flag-icon-sr {
1258
- background-image: url(../flags/4x3/sr.svg);
1259
- }
1260
- .monsterinsights-flag-icon-sr.monsterinsights-flag-icon-squared {
1261
- background-image: url(../flags/1x1/sr.svg);
1262
- }
1263
- .monsterinsights-flag-icon-ss {
1264
- background-image: url(../flags/4x3/ss.svg);
1265
- }
1266
- .monsterinsights-flag-icon-ss.monsterinsights-flag-icon-squared {
1267
- background-image: url(../flags/1x1/ss.svg);
1268
- }
1269
- .monsterinsights-flag-icon-st {
1270
- background-image: url(../flags/4x3/st.svg);
1271
- }
1272
- .monsterinsights-flag-icon-st.monsterinsights-flag-icon-squared {
1273
- background-image: url(../flags/1x1/st.svg);
1274
- }
1275
- .monsterinsights-flag-icon-sv {
1276
- background-image: url(../flags/4x3/sv.svg);
1277
- }
1278
- .monsterinsights-flag-icon-sv.monsterinsights-flag-icon-squared {
1279
- background-image: url(../flags/1x1/sv.svg);
1280
- }
1281
- .monsterinsights-flag-icon-sx {
1282
- background-image: url(../flags/4x3/sx.svg);
1283
- }
1284
- .monsterinsights-flag-icon-sx.monsterinsights-flag-icon-squared {
1285
- background-image: url(../flags/1x1/sx.svg);
1286
- }
1287
- .monsterinsights-flag-icon-sy {
1288
- background-image: url(../flags/4x3/sy.svg);
1289
- }
1290
- .monsterinsights-flag-icon-sy.monsterinsights-flag-icon-squared {
1291
- background-image: url(../flags/1x1/sy.svg);
1292
- }
1293
- .monsterinsights-flag-icon-sz {
1294
- background-image: url(../flags/4x3/sz.svg);
1295
- }
1296
- .monsterinsights-flag-icon-sz.monsterinsights-flag-icon-squared {
1297
- background-image: url(../flags/1x1/sz.svg);
1298
- }
1299
- .monsterinsights-flag-icon-tc {
1300
- background-image: url(../flags/4x3/tc.svg);
1301
- }
1302
- .monsterinsights-flag-icon-tc.monsterinsights-flag-icon-squared {
1303
- background-image: url(../flags/1x1/tc.svg);
1304
- }
1305
- .monsterinsights-flag-icon-td {
1306
- background-image: url(../flags/4x3/td.svg);
1307
- }
1308
- .monsterinsights-flag-icon-td.monsterinsights-flag-icon-squared {
1309
- background-image: url(../flags/1x1/td.svg);
1310
- }
1311
- .monsterinsights-flag-icon-tf {
1312
- background-image: url(../flags/4x3/tf.svg);
1313
- }
1314
- .monsterinsights-flag-icon-tf.monsterinsights-flag-icon-squared {
1315
- background-image: url(../flags/1x1/tf.svg);
1316
- }
1317
- .monsterinsights-flag-icon-tg {
1318
- background-image: url(../flags/4x3/tg.svg);
1319
- }
1320
- .monsterinsights-flag-icon-tg.monsterinsights-flag-icon-squared {
1321
- background-image: url(../flags/1x1/tg.svg);
1322
- }
1323
- .monsterinsights-flag-icon-th {
1324
- background-image: url(../flags/4x3/th.svg);
1325
- }
1326
- .monsterinsights-flag-icon-th.monsterinsights-flag-icon-squared {
1327
- background-image: url(../flags/1x1/th.svg);
1328
- }
1329
- .monsterinsights-flag-icon-tj {
1330
- background-image: url(../flags/4x3/tj.svg);
1331
- }
1332
- .monsterinsights-flag-icon-tj.monsterinsights-flag-icon-squared {
1333
- background-image: url(../flags/1x1/tj.svg);
1334
- }
1335
- .monsterinsights-flag-icon-tk {
1336
- background-image: url(../flags/4x3/tk.svg);
1337
- }
1338
- .monsterinsights-flag-icon-tk.monsterinsights-flag-icon-squared {
1339
- background-image: url(../flags/1x1/tk.svg);
1340
- }
1341
- .monsterinsights-flag-icon-tl {
1342
- background-image: url(../flags/4x3/tl.svg);
1343
- }
1344
- .monsterinsights-flag-icon-tl.monsterinsights-flag-icon-squared {
1345
- background-image: url(../flags/1x1/tl.svg);
1346
- }
1347
- .monsterinsights-flag-icon-tm {
1348
- background-image: url(../flags/4x3/tm.svg);
1349
- }
1350
- .monsterinsights-flag-icon-tm.monsterinsights-flag-icon-squared {
1351
- background-image: url(../flags/1x1/tm.svg);
1352
- }
1353
- .monsterinsights-flag-icon-tn {
1354
- background-image: url(../flags/4x3/tn.svg);
1355
- }
1356
- .monsterinsights-flag-icon-tn.monsterinsights-flag-icon-squared {
1357
- background-image: url(../flags/1x1/tn.svg);
1358
- }
1359
- .monsterinsights-flag-icon-to {
1360
- background-image: url(../flags/4x3/to.svg);
1361
- }
1362
- .monsterinsights-flag-icon-to.monsterinsights-flag-icon-squared {
1363
- background-image: url(../flags/1x1/to.svg);
1364
- }
1365
- .monsterinsights-flag-icon-tr {
1366
- background-image: url(../flags/4x3/tr.svg);
1367
- }
1368
- .monsterinsights-flag-icon-tr.monsterinsights-flag-icon-squared {
1369
- background-image: url(../flags/1x1/tr.svg);
1370
- }
1371
- .monsterinsights-flag-icon-tt {
1372
- background-image: url(../flags/4x3/tt.svg);
1373
- }
1374
- .monsterinsights-flag-icon-tt.monsterinsights-flag-icon-squared {
1375
- background-image: url(../flags/1x1/tt.svg);
1376
- }
1377
- .monsterinsights-flag-icon-tv {
1378
- background-image: url(../flags/4x3/tv.svg);
1379
- }
1380
- .monsterinsights-flag-icon-tv.monsterinsights-flag-icon-squared {
1381
- background-image: url(../flags/1x1/tv.svg);
1382
- }
1383
- .monsterinsights-flag-icon-tw {
1384
- background-image: url(../flags/4x3/tw.svg);
1385
- }
1386
- .monsterinsights-flag-icon-tw.monsterinsights-flag-icon-squared {
1387
- background-image: url(../flags/1x1/tw.svg);
1388
- }
1389
- .monsterinsights-flag-icon-tz {
1390
- background-image: url(../flags/4x3/tz.svg);
1391
- }
1392
- .monsterinsights-flag-icon-tz.monsterinsights-flag-icon-squared {
1393
- background-image: url(../flags/1x1/tz.svg);
1394
- }
1395
- .monsterinsights-flag-icon-ua {
1396
- background-image: url(../flags/4x3/ua.svg);
1397
- }
1398
- .monsterinsights-flag-icon-ua.monsterinsights-flag-icon-squared {
1399
- background-image: url(../flags/1x1/ua.svg);
1400
- }
1401
- .monsterinsights-flag-icon-ug {
1402
- background-image: url(../flags/4x3/ug.svg);
1403
- }
1404
- .monsterinsights-flag-icon-ug.monsterinsights-flag-icon-squared {
1405
- background-image: url(../flags/1x1/ug.svg);
1406
- }
1407
- .monsterinsights-flag-icon-um {
1408
- background-image: url(../flags/4x3/um.svg);
1409
- }
1410
- .monsterinsights-flag-icon-um.monsterinsights-flag-icon-squared {
1411
- background-image: url(../flags/1x1/um.svg);
1412
- }
1413
- .monsterinsights-flag-icon-us {
1414
- background-image: url(../flags/4x3/us.svg);
1415
- }
1416
- .monsterinsights-flag-icon-us.monsterinsights-flag-icon-squared {
1417
- background-image: url(../flags/1x1/us.svg);
1418
- }
1419
- .monsterinsights-flag-icon-uy {
1420
- background-image: url(../flags/4x3/uy.svg);
1421
- }
1422
- .monsterinsights-flag-icon-uy.monsterinsights-flag-icon-squared {
1423
- background-image: url(../flags/1x1/uy.svg);
1424
- }
1425
- .monsterinsights-flag-icon-uz {
1426
- background-image: url(../flags/4x3/uz.svg);
1427
- }
1428
- .monsterinsights-flag-icon-uz.monsterinsights-flag-icon-squared {
1429
- background-image: url(../flags/1x1/uz.svg);
1430
- }
1431
- .monsterinsights-flag-icon-va {
1432
- background-image: url(../flags/4x3/va.svg);
1433
- }
1434
- .monsterinsights-flag-icon-va.monsterinsights-flag-icon-squared {
1435
- background-image: url(../flags/1x1/va.svg);
1436
- }
1437
- .monsterinsights-flag-icon-vc {
1438
- background-image: url(../flags/4x3/vc.svg);
1439
- }
1440
- .monsterinsights-flag-icon-vc.monsterinsights-flag-icon-squared {
1441
- background-image: url(../flags/1x1/vc.svg);
1442
- }
1443
- .monsterinsights-flag-icon-ve {
1444
- background-image: url(../flags/4x3/ve.svg);
1445
- }
1446
- .monsterinsights-flag-icon-ve.monsterinsights-flag-icon-squared {
1447
- background-image: url(../flags/1x1/ve.svg);
1448
- }
1449
- .monsterinsights-flag-icon-vg {
1450
- background-image: url(../flags/4x3/vg.svg);
1451
- }
1452
- .monsterinsights-flag-icon-vg.monsterinsights-flag-icon-squared {
1453
- background-image: url(../flags/1x1/vg.svg);
1454
- }
1455
- .monsterinsights-flag-icon-vi {
1456
- background-image: url(../flags/4x3/vi.svg);
1457
- }
1458
- .monsterinsights-flag-icon-vi.monsterinsights-flag-icon-squared {
1459
- background-image: url(../flags/1x1/vi.svg);
1460
- }
1461
- .monsterinsights-flag-icon-vn {
1462
- background-image: url(../flags/4x3/vn.svg);
1463
- }
1464
- .monsterinsights-flag-icon-vn.monsterinsights-flag-icon-squared {
1465
- background-image: url(../flags/1x1/vn.svg);
1466
- }
1467
- .monsterinsights-flag-icon-vu {
1468
- background-image: url(../flags/4x3/vu.svg);
1469
- }
1470
- .monsterinsights-flag-icon-vu.monsterinsights-flag-icon-squared {
1471
- background-image: url(../flags/1x1/vu.svg);
1472
- }
1473
- .monsterinsights-flag-icon-wf {
1474
- background-image: url(../flags/4x3/wf.svg);
1475
- }
1476
- .monsterinsights-flag-icon-wf.monsterinsights-flag-icon-squared {
1477
- background-image: url(../flags/1x1/wf.svg);
1478
- }
1479
- .monsterinsights-flag-icon-ws {
1480
- background-image: url(../flags/4x3/ws.svg);
1481
- }
1482
- .monsterinsights-flag-icon-ws.monsterinsights-flag-icon-squared {
1483
- background-image: url(../flags/1x1/ws.svg);
1484
- }
1485
- .monsterinsights-flag-icon-ye {
1486
- background-image: url(../flags/4x3/ye.svg);
1487
- }
1488
- .monsterinsights-flag-icon-ye.monsterinsights-flag-icon-squared {
1489
- background-image: url(../flags/1x1/ye.svg);
1490
- }
1491
- .monsterinsights-flag-icon-yt {
1492
- background-image: url(../flags/4x3/yt.svg);
1493
- }
1494
- .monsterinsights-flag-icon-yt.monsterinsights-flag-icon-squared {
1495
- background-image: url(../flags/1x1/yt.svg);
1496
- }
1497
- .monsterinsights-flag-icon-za {
1498
- background-image: url(../flags/4x3/za.svg);
1499
- }
1500
- .monsterinsights-flag-icon-za.monsterinsights-flag-icon-squared {
1501
- background-image: url(../flags/1x1/za.svg);
1502
- }
1503
- .monsterinsights-flag-icon-zm {
1504
- background-image: url(../flags/4x3/zm.svg);
1505
- }
1506
- .monsterinsights-flag-icon-zm.monsterinsights-flag-icon-squared {
1507
- background-image: url(../flags/1x1/zm.svg);
1508
- }
1509
- .monsterinsights-flag-icon-zw {
1510
- background-image: url(../flags/4x3/zw.svg);
1511
- }
1512
- .monsterinsights-flag-icon-zw.monsterinsights-flag-icon-squared {
1513
- background-image: url(../flags/1x1/zw.svg);
1514
- }
1515
- .monsterinsights-flag-icon-es-ct {
1516
- background-image: url(../flags/4x3/es-ct.svg);
1517
- }
1518
- .monsterinsights-flag-icon-es-ct.monsterinsights-flag-icon-squared {
1519
- background-image: url(../flags/1x1/es-ct.svg);
1520
- }
1521
- .monsterinsights-flag-icon-eu {
1522
- background-image: url(../flags/4x3/eu.svg);
1523
- }
1524
- .monsterinsights-flag-icon-eu.monsterinsights-flag-icon-squared {
1525
- background-image: url(../flags/1x1/eu.svg);
1526
- }
1527
- .monsterinsights-flag-icon-gb-eng {
1528
- background-image: url(../flags/4x3/gb-eng.svg);
1529
- }
1530
- .monsterinsights-flag-icon-gb-eng.monsterinsights-flag-icon-squared {
1531
- background-image: url(../flags/1x1/gb-eng.svg);
1532
- }
1533
- .monsterinsights-flag-icon-gb-nir {
1534
- background-image: url(../flags/4x3/gb-nir.svg);
1535
- }
1536
- .monsterinsights-flag-icon-gb-nir.monsterinsights-flag-icon-squared {
1537
- background-image: url(../flags/1x1/gb-nir.svg);
1538
- }
1539
- .monsterinsights-flag-icon-gb-sct {
1540
- background-image: url(../flags/4x3/gb-sct.svg);
1541
- }
1542
- .monsterinsights-flag-icon-gb-sct.monsterinsights-flag-icon-squared {
1543
- background-image: url(../flags/1x1/gb-sct.svg);
1544
- }
1545
- .monsterinsights-flag-icon-gb-wls {
1546
- background-image: url(../flags/4x3/gb-wls.svg);
1547
- }
1548
- .monsterinsights-flag-icon-gb-wls.monsterinsights-flag-icon-squared {
1549
- background-image: url(../flags/1x1/gb-wls.svg);
1550
- }
1551
- .monsterinsights-flag-icon-un {
1552
- background-image: url(../flags/4x3/un.svg);
1553
- }
1554
- .monsterinsights-flag-icon-un.monsterinsights-flag-icon-squared {
1555
- background-image: url(../flags/1x1/un.svg);
1556
- }
1557
-
1558
- .monsterinsights-flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.monsterinsights-flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.monsterinsights-flag-icon:before{content:"\00a0"}.monsterinsights-flag-icon.monsterinsights-flag-icon-squared{width:1em}.monsterinsights-flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.monsterinsights-flag-icon-ad.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.monsterinsights-flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.monsterinsights-flag-icon-ae.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.monsterinsights-flag-icon-af{background-image:url(../flags/4x3/af.svg)}.monsterinsights-flag-icon-af.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.monsterinsights-flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.monsterinsights-flag-icon-ag.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.monsterinsights-flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.monsterinsights-flag-icon-ai.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.monsterinsights-flag-icon-al{background-image:url(../flags/4x3/al.svg)}.monsterinsights-flag-icon-al.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.monsterinsights-flag-icon-am{background-image:url(../flags/4x3/am.svg)}.monsterinsights-flag-icon-am.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.monsterinsights-flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.monsterinsights-flag-icon-ao.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.monsterinsights-flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.monsterinsights-flag-icon-aq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.monsterinsights-flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.monsterinsights-flag-icon-ar.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.monsterinsights-flag-icon-as{background-image:url(../flags/4x3/as.svg)}.monsterinsights-flag-icon-as.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.monsterinsights-flag-icon-at{background-image:url(../flags/4x3/at.svg)}.monsterinsights-flag-icon-at.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.monsterinsights-flag-icon-au{background-image:url(../flags/4x3/au.svg)}.monsterinsights-flag-icon-au.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.monsterinsights-flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.monsterinsights-flag-icon-aw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.monsterinsights-flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.monsterinsights-flag-icon-ax.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.monsterinsights-flag-icon-az{background-image:url(../flags/4x3/az.svg)}.monsterinsights-flag-icon-az.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.monsterinsights-flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.monsterinsights-flag-icon-ba.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.monsterinsights-flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.monsterinsights-flag-icon-bb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.monsterinsights-flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.monsterinsights-flag-icon-bd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.monsterinsights-flag-icon-be{background-image:url(../flags/4x3/be.svg)}.monsterinsights-flag-icon-be.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.monsterinsights-flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.monsterinsights-flag-icon-bf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.monsterinsights-flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.monsterinsights-flag-icon-bg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.monsterinsights-flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.monsterinsights-flag-icon-bh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.monsterinsights-flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.monsterinsights-flag-icon-bi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.monsterinsights-flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.monsterinsights-flag-icon-bj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.monsterinsights-flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.monsterinsights-flag-icon-bl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.monsterinsights-flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.monsterinsights-flag-icon-bm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.monsterinsights-flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.monsterinsights-flag-icon-bn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.monsterinsights-flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.monsterinsights-flag-icon-bo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.monsterinsights-flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.monsterinsights-flag-icon-bq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.monsterinsights-flag-icon-br{background-image:url(../flags/4x3/br.svg)}.monsterinsights-flag-icon-br.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.monsterinsights-flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.monsterinsights-flag-icon-bs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.monsterinsights-flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.monsterinsights-flag-icon-bt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.monsterinsights-flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.monsterinsights-flag-icon-bv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.monsterinsights-flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.monsterinsights-flag-icon-bw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.monsterinsights-flag-icon-by{background-image:url(../flags/4x3/by.svg)}.monsterinsights-flag-icon-by.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.monsterinsights-flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.monsterinsights-flag-icon-bz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.monsterinsights-flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.monsterinsights-flag-icon-ca.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.monsterinsights-flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.monsterinsights-flag-icon-cc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.monsterinsights-flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.monsterinsights-flag-icon-cd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.monsterinsights-flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.monsterinsights-flag-icon-cf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.monsterinsights-flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.monsterinsights-flag-icon-cg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.monsterinsights-flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.monsterinsights-flag-icon-ch.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.monsterinsights-flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.monsterinsights-flag-icon-ci.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.monsterinsights-flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.monsterinsights-flag-icon-ck.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.monsterinsights-flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.monsterinsights-flag-icon-cl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.monsterinsights-flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.monsterinsights-flag-icon-cm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.monsterinsights-flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.monsterinsights-flag-icon-cn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.monsterinsights-flag-icon-co{background-image:url(../flags/4x3/co.svg)}.monsterinsights-flag-icon-co.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.monsterinsights-flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.monsterinsights-flag-icon-cr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.monsterinsights-flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.monsterinsights-flag-icon-cu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.monsterinsights-flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.monsterinsights-flag-icon-cv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.monsterinsights-flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.monsterinsights-flag-icon-cw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.monsterinsights-flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.monsterinsights-flag-icon-cx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.monsterinsights-flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.monsterinsights-flag-icon-cy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.monsterinsights-flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.monsterinsights-flag-icon-cz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.monsterinsights-flag-icon-de{background-image:url(../flags/4x3/de.svg)}.monsterinsights-flag-icon-de.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.monsterinsights-flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.monsterinsights-flag-icon-dj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.monsterinsights-flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.monsterinsights-flag-icon-dk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.monsterinsights-flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.monsterinsights-flag-icon-dm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.monsterinsights-flag-icon-do{background-image:url(../flags/4x3/do.svg)}.monsterinsights-flag-icon-do.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.monsterinsights-flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.monsterinsights-flag-icon-dz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.monsterinsights-flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.monsterinsights-flag-icon-ec.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.monsterinsights-flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.monsterinsights-flag-icon-ee.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.monsterinsights-flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.monsterinsights-flag-icon-eg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.monsterinsights-flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.monsterinsights-flag-icon-eh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.monsterinsights-flag-icon-er{background-image:url(../flags/4x3/er.svg)}.monsterinsights-flag-icon-er.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.monsterinsights-flag-icon-es{background-image:url(../flags/4x3/es.svg)}.monsterinsights-flag-icon-es.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.monsterinsights-flag-icon-et{background-image:url(../flags/4x3/et.svg)}.monsterinsights-flag-icon-et.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.monsterinsights-flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.monsterinsights-flag-icon-fi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.monsterinsights-flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.monsterinsights-flag-icon-fj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.monsterinsights-flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.monsterinsights-flag-icon-fk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.monsterinsights-flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.monsterinsights-flag-icon-fm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.monsterinsights-flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.monsterinsights-flag-icon-fo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.monsterinsights-flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.monsterinsights-flag-icon-fr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.monsterinsights-flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.monsterinsights-flag-icon-ga.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.monsterinsights-flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.monsterinsights-flag-icon-gb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.monsterinsights-flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.monsterinsights-flag-icon-gd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.monsterinsights-flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.monsterinsights-flag-icon-ge.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.monsterinsights-flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.monsterinsights-flag-icon-gf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.monsterinsights-flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.monsterinsights-flag-icon-gg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.monsterinsights-flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.monsterinsights-flag-icon-gh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.monsterinsights-flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.monsterinsights-flag-icon-gi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.monsterinsights-flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.monsterinsights-flag-icon-gl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.monsterinsights-flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.monsterinsights-flag-icon-gm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.monsterinsights-flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.monsterinsights-flag-icon-gn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.monsterinsights-flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.monsterinsights-flag-icon-gp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.monsterinsights-flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.monsterinsights-flag-icon-gq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.monsterinsights-flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.monsterinsights-flag-icon-gr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.monsterinsights-flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.monsterinsights-flag-icon-gs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.monsterinsights-flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.monsterinsights-flag-icon-gt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.monsterinsights-flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.monsterinsights-flag-icon-gu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.monsterinsights-flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.monsterinsights-flag-icon-gw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.monsterinsights-flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.monsterinsights-flag-icon-gy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.monsterinsights-flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.monsterinsights-flag-icon-hk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.monsterinsights-flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.monsterinsights-flag-icon-hm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.monsterinsights-flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.monsterinsights-flag-icon-hn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.monsterinsights-flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.monsterinsights-flag-icon-hr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.monsterinsights-flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.monsterinsights-flag-icon-ht.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.monsterinsights-flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.monsterinsights-flag-icon-hu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.monsterinsights-flag-icon-id{background-image:url(../flags/4x3/id.svg)}.monsterinsights-flag-icon-id.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.monsterinsights-flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.monsterinsights-flag-icon-ie.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.monsterinsights-flag-icon-il{background-image:url(../flags/4x3/il.svg)}.monsterinsights-flag-icon-il.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.monsterinsights-flag-icon-im{background-image:url(../flags/4x3/im.svg)}.monsterinsights-flag-icon-im.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.monsterinsights-flag-icon-in{background-image:url(../flags/4x3/in.svg)}.monsterinsights-flag-icon-in.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.monsterinsights-flag-icon-io{background-image:url(../flags/4x3/io.svg)}.monsterinsights-flag-icon-io.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.monsterinsights-flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.monsterinsights-flag-icon-iq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.monsterinsights-flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.monsterinsights-flag-icon-ir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.monsterinsights-flag-icon-is{background-image:url(../flags/4x3/is.svg)}.monsterinsights-flag-icon-is.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.monsterinsights-flag-icon-it{background-image:url(../flags/4x3/it.svg)}.monsterinsights-flag-icon-it.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.monsterinsights-flag-icon-je{background-image:url(../flags/4x3/je.svg)}.monsterinsights-flag-icon-je.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.monsterinsights-flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.monsterinsights-flag-icon-jm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.monsterinsights-flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.monsterinsights-flag-icon-jo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.monsterinsights-flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.monsterinsights-flag-icon-jp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.monsterinsights-flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.monsterinsights-flag-icon-ke.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.monsterinsights-flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.monsterinsights-flag-icon-kg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.monsterinsights-flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.monsterinsights-flag-icon-kh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.monsterinsights-flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.monsterinsights-flag-icon-ki.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.monsterinsights-flag-icon-km{background-image:url(../flags/4x3/km.svg)}.monsterinsights-flag-icon-km.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.monsterinsights-flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.monsterinsights-flag-icon-kn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.monsterinsights-flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.monsterinsights-flag-icon-kp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.monsterinsights-flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.monsterinsights-flag-icon-kr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.monsterinsights-flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.monsterinsights-flag-icon-kw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.monsterinsights-flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.monsterinsights-flag-icon-ky.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.monsterinsights-flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.monsterinsights-flag-icon-kz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.monsterinsights-flag-icon-la{background-image:url(../flags/4x3/la.svg)}.monsterinsights-flag-icon-la.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.monsterinsights-flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.monsterinsights-flag-icon-lb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.monsterinsights-flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.monsterinsights-flag-icon-lc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.monsterinsights-flag-icon-li{background-image:url(../flags/4x3/li.svg)}.monsterinsights-flag-icon-li.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.monsterinsights-flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.monsterinsights-flag-icon-lk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.monsterinsights-flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.monsterinsights-flag-icon-lr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.monsterinsights-flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.monsterinsights-flag-icon-ls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.monsterinsights-flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.monsterinsights-flag-icon-lt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.monsterinsights-flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.monsterinsights-flag-icon-lu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.monsterinsights-flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.monsterinsights-flag-icon-lv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.monsterinsights-flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.monsterinsights-flag-icon-ly.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.monsterinsights-flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.monsterinsights-flag-icon-ma.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.monsterinsights-flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.monsterinsights-flag-icon-mc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.monsterinsights-flag-icon-md{background-image:url(../flags/4x3/md.svg)}.monsterinsights-flag-icon-md.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.monsterinsights-flag-icon-me{background-image:url(../flags/4x3/me.svg)}.monsterinsights-flag-icon-me.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.monsterinsights-flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.monsterinsights-flag-icon-mf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.monsterinsights-flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.monsterinsights-flag-icon-mg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.monsterinsights-flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.monsterinsights-flag-icon-mh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.monsterinsights-flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.monsterinsights-flag-icon-mk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.monsterinsights-flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.monsterinsights-flag-icon-ml.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.monsterinsights-flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.monsterinsights-flag-icon-mm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.monsterinsights-flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.monsterinsights-flag-icon-mn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.monsterinsights-flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.monsterinsights-flag-icon-mo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.monsterinsights-flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.monsterinsights-flag-icon-mp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.monsterinsights-flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.monsterinsights-flag-icon-mq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.monsterinsights-flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.monsterinsights-flag-icon-mr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.monsterinsights-flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.monsterinsights-flag-icon-ms.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.monsterinsights-flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.monsterinsights-flag-icon-mt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.monsterinsights-flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.monsterinsights-flag-icon-mu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.monsterinsights-flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.monsterinsights-flag-icon-mv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.monsterinsights-flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.monsterinsights-flag-icon-mw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.monsterinsights-flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.monsterinsights-flag-icon-mx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.monsterinsights-flag-icon-my{background-image:url(../flags/4x3/my.svg)}.monsterinsights-flag-icon-my.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.monsterinsights-flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.monsterinsights-flag-icon-mz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.monsterinsights-flag-icon-na{background-image:url(../flags/4x3/na.svg)}.monsterinsights-flag-icon-na.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.monsterinsights-flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.monsterinsights-flag-icon-nc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.monsterinsights-flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.monsterinsights-flag-icon-ne.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.monsterinsights-flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.monsterinsights-flag-icon-nf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.monsterinsights-flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.monsterinsights-flag-icon-ng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.monsterinsights-flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.monsterinsights-flag-icon-ni.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.monsterinsights-flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.monsterinsights-flag-icon-nl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.monsterinsights-flag-icon-no{background-image:url(../flags/4x3/no.svg)}.monsterinsights-flag-icon-no.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.monsterinsights-flag-icon-np{background-image:url(../flags/4x3/np.svg)}.monsterinsights-flag-icon-np.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.monsterinsights-flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.monsterinsights-flag-icon-nr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.monsterinsights-flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.monsterinsights-flag-icon-nu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.monsterinsights-flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.monsterinsights-flag-icon-nz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.monsterinsights-flag-icon-om{background-image:url(../flags/4x3/om.svg)}.monsterinsights-flag-icon-om.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.monsterinsights-flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.monsterinsights-flag-icon-pa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.monsterinsights-flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.monsterinsights-flag-icon-pe.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.monsterinsights-flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.monsterinsights-flag-icon-pf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.monsterinsights-flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.monsterinsights-flag-icon-pg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.monsterinsights-flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.monsterinsights-flag-icon-ph.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.monsterinsights-flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.monsterinsights-flag-icon-pk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.monsterinsights-flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.monsterinsights-flag-icon-pl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.monsterinsights-flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.monsterinsights-flag-icon-pm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.monsterinsights-flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.monsterinsights-flag-icon-pn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.monsterinsights-flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.monsterinsights-flag-icon-pr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.monsterinsights-flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.monsterinsights-flag-icon-ps.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.monsterinsights-flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.monsterinsights-flag-icon-pt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.monsterinsights-flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.monsterinsights-flag-icon-pw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.monsterinsights-flag-icon-py{background-image:url(../flags/4x3/py.svg)}.monsterinsights-flag-icon-py.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.monsterinsights-flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.monsterinsights-flag-icon-qa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.monsterinsights-flag-icon-re{background-image:url(../flags/4x3/re.svg)}.monsterinsights-flag-icon-re.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.monsterinsights-flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.monsterinsights-flag-icon-ro.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.monsterinsights-flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.monsterinsights-flag-icon-rs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.monsterinsights-flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.monsterinsights-flag-icon-ru.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.monsterinsights-flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.monsterinsights-flag-icon-rw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.monsterinsights-flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.monsterinsights-flag-icon-sa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.monsterinsights-flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.monsterinsights-flag-icon-sb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.monsterinsights-flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.monsterinsights-flag-icon-sc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.monsterinsights-flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.monsterinsights-flag-icon-sd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.monsterinsights-flag-icon-se{background-image:url(../flags/4x3/se.svg)}.monsterinsights-flag-icon-se.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.monsterinsights-flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.monsterinsights-flag-icon-sg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.monsterinsights-flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.monsterinsights-flag-icon-sh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.monsterinsights-flag-icon-si{background-image:url(../flags/4x3/si.svg)}.monsterinsights-flag-icon-si.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.monsterinsights-flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.monsterinsights-flag-icon-sj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.monsterinsights-flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.monsterinsights-flag-icon-sk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.monsterinsights-flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.monsterinsights-flag-icon-sl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.monsterinsights-flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.monsterinsights-flag-icon-sm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.monsterinsights-flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.monsterinsights-flag-icon-sn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.monsterinsights-flag-icon-so{background-image:url(../flags/4x3/so.svg)}.monsterinsights-flag-icon-so.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.monsterinsights-flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.monsterinsights-flag-icon-sr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.monsterinsights-flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.monsterinsights-flag-icon-ss.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.monsterinsights-flag-icon-st{background-image:url(../flags/4x3/st.svg)}.monsterinsights-flag-icon-st.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.monsterinsights-flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.monsterinsights-flag-icon-sv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.monsterinsights-flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.monsterinsights-flag-icon-sx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.monsterinsights-flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.monsterinsights-flag-icon-sy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.monsterinsights-flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.monsterinsights-flag-icon-sz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.monsterinsights-flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.monsterinsights-flag-icon-tc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.monsterinsights-flag-icon-td{background-image:url(../flags/4x3/td.svg)}.monsterinsights-flag-icon-td.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.monsterinsights-flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.monsterinsights-flag-icon-tf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.monsterinsights-flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.monsterinsights-flag-icon-tg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.monsterinsights-flag-icon-th{background-image:url(../flags/4x3/th.svg)}.monsterinsights-flag-icon-th.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.monsterinsights-flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.monsterinsights-flag-icon-tj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.monsterinsights-flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.monsterinsights-flag-icon-tk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.monsterinsights-flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.monsterinsights-flag-icon-tl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.monsterinsights-flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.monsterinsights-flag-icon-tm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.monsterinsights-flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.monsterinsights-flag-icon-tn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.monsterinsights-flag-icon-to{background-image:url(../flags/4x3/to.svg)}.monsterinsights-flag-icon-to.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.monsterinsights-flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.monsterinsights-flag-icon-tr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.monsterinsights-flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.monsterinsights-flag-icon-tt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.monsterinsights-flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.monsterinsights-flag-icon-tv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.monsterinsights-flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.monsterinsights-flag-icon-tw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.monsterinsights-flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.monsterinsights-flag-icon-tz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.monsterinsights-flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.monsterinsights-flag-icon-ua.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.monsterinsights-flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.monsterinsights-flag-icon-ug.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.monsterinsights-flag-icon-um{background-image:url(../flags/4x3/um.svg)}.monsterinsights-flag-icon-um.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.monsterinsights-flag-icon-us{background-image:url(../flags/4x3/us.svg)}.monsterinsights-flag-icon-us.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.monsterinsights-flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.monsterinsights-flag-icon-uy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.monsterinsights-flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.monsterinsights-flag-icon-uz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.monsterinsights-flag-icon-va{background-image:url(../flags/4x3/va.svg)}.monsterinsights-flag-icon-va.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.monsterinsights-flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.monsterinsights-flag-icon-vc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.monsterinsights-flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.monsterinsights-flag-icon-ve.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.monsterinsights-flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.monsterinsights-flag-icon-vg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.monsterinsights-flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.monsterinsights-flag-icon-vi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.monsterinsights-flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.monsterinsights-flag-icon-vn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.monsterinsights-flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.monsterinsights-flag-icon-vu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.monsterinsights-flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.monsterinsights-flag-icon-wf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.monsterinsights-flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.monsterinsights-flag-icon-ws.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.monsterinsights-flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.monsterinsights-flag-icon-ye.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.monsterinsights-flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.monsterinsights-flag-icon-yt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.monsterinsights-flag-icon-za{background-image:url(../flags/4x3/za.svg)}.monsterinsights-flag-icon-za.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.monsterinsights-flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.monsterinsights-flag-icon-zm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.monsterinsights-flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.monsterinsights-flag-icon-zw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.monsterinsights-flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.monsterinsights-flag-icon-es-ct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.monsterinsights-flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.monsterinsights-flag-icon-eu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.monsterinsights-flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.monsterinsights-flag-icon-gb-eng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.monsterinsights-flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.monsterinsights-flag-icon-gb-nir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.monsterinsights-flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.monsterinsights-flag-icon-gb-sct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.monsterinsights-flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.monsterinsights-flag-icon-gb-wls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.monsterinsights-flag-icon-un{background-image:url(../flags/4x3/un.svg)}.monsterinsights-flag-icon-un.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/un.svg)}
1559
- .flatpickr-calendar {
1560
- background: transparent;
1561
- opacity: 0;
1562
- display: none;
1563
- text-align: center;
1564
- visibility: hidden;
1565
- padding: 0;
1566
- -webkit-animation: none;
1567
- animation: none;
1568
- direction: ltr;
1569
- border: 0;
1570
- font-size: 14px;
1571
- line-height: 24px;
1572
- border-radius: 5px;
1573
- position: absolute;
1574
- width: 307.875px;
1575
- -webkit-box-sizing: border-box;
1576
- box-sizing: border-box;
1577
- -ms-touch-action: manipulation;
1578
- touch-action: manipulation;
1579
- background: #fff;
1580
- -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
1581
- box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
1582
- }
1583
- .flatpickr-calendar.open,
1584
- .flatpickr-calendar.inline {
1585
- opacity: 1;
1586
- max-height: 640px;
1587
- visibility: visible;
1588
- }
1589
- .flatpickr-calendar.open {
1590
- display: inline-block;
1591
- z-index: 99999;
1592
- }
1593
- .flatpickr-calendar.animate.open {
1594
- -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
1595
- animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
1596
- }
1597
- .flatpickr-calendar.inline {
1598
- display: block;
1599
- position: relative;
1600
- top: 2px;
1601
- }
1602
- .flatpickr-calendar.static {
1603
- position: absolute;
1604
- top: calc(100% + 2px);
1605
- }
1606
- .flatpickr-calendar.static.open {
1607
- z-index: 999;
1608
- display: block;
1609
- }
1610
- .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
1611
- -webkit-box-shadow: none !important;
1612
- box-shadow: none !important;
1613
- }
1614
- .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
1615
- -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
1616
- box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
1617
- }
1618
- .flatpickr-calendar .hasWeeks .dayContainer,
1619
- .flatpickr-calendar .hasTime .dayContainer {
1620
- border-bottom: 0;
1621
- border-bottom-right-radius: 0;
1622
- border-bottom-left-radius: 0;
1623
- }
1624
- .flatpickr-calendar .hasWeeks .dayContainer {
1625
- border-left: 0;
1626
- }
1627
- .flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
1628
- height: 40px;
1629
- border-top: 1px solid #e6e6e6;
1630
- }
1631
- .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
1632
- height: auto;
1633
- }
1634
- .flatpickr-calendar:before,
1635
- .flatpickr-calendar:after {
1636
- position: absolute;
1637
- display: block;
1638
- pointer-events: none;
1639
- border: solid transparent;
1640
- content: '';
1641
- height: 0;
1642
- width: 0;
1643
- left: 22px;
1644
- }
1645
- .flatpickr-calendar.rightMost:before,
1646
- .flatpickr-calendar.rightMost:after {
1647
- left: auto;
1648
- right: 22px;
1649
- }
1650
- .flatpickr-calendar:before {
1651
- border-width: 5px;
1652
- margin: 0 -5px;
1653
- }
1654
- .flatpickr-calendar:after {
1655
- border-width: 4px;
1656
- margin: 0 -4px;
1657
- }
1658
- .flatpickr-calendar.arrowTop:before,
1659
- .flatpickr-calendar.arrowTop:after {
1660
- bottom: 100%;
1661
- }
1662
- .flatpickr-calendar.arrowTop:before {
1663
- border-bottom-color: #e6e6e6;
1664
- }
1665
- .flatpickr-calendar.arrowTop:after {
1666
- border-bottom-color: #fff;
1667
- }
1668
- .flatpickr-calendar.arrowBottom:before,
1669
- .flatpickr-calendar.arrowBottom:after {
1670
- top: 100%;
1671
- }
1672
- .flatpickr-calendar.arrowBottom:before {
1673
- border-top-color: #e6e6e6;
1674
- }
1675
- .flatpickr-calendar.arrowBottom:after {
1676
- border-top-color: #fff;
1677
- }
1678
- .flatpickr-calendar:focus {
1679
- outline: 0;
1680
- }
1681
- .flatpickr-wrapper {
1682
- position: relative;
1683
- display: inline-block;
1684
- }
1685
- .flatpickr-months {
1686
- display: -webkit-box;
1687
- display: -webkit-flex;
1688
- display: -ms-flexbox;
1689
- display: flex;
1690
- }
1691
- .flatpickr-months .flatpickr-month {
1692
- background: transparent;
1693
- color: rgba(0,0,0,0.9);
1694
- fill: rgba(0,0,0,0.9);
1695
- height: 28px;
1696
- line-height: 1;
1697
- text-align: center;
1698
- position: relative;
1699
- -webkit-user-select: none;
1700
- -moz-user-select: none;
1701
- -ms-user-select: none;
1702
- user-select: none;
1703
- overflow: hidden;
1704
- -webkit-box-flex: 1;
1705
- -webkit-flex: 1;
1706
- -ms-flex: 1;
1707
- flex: 1;
1708
- }
1709
- .flatpickr-months .flatpickr-prev-month,
1710
- .flatpickr-months .flatpickr-next-month {
1711
- text-decoration: none;
1712
- cursor: pointer;
1713
- position: absolute;
1714
- top: 0px;
1715
- line-height: 16px;
1716
- height: 28px;
1717
- padding: 10px;
1718
- z-index: 3;
1719
- color: rgba(0,0,0,0.9);
1720
- fill: rgba(0,0,0,0.9);
1721
- }
1722
- .flatpickr-months .flatpickr-prev-month.disabled,
1723
- .flatpickr-months .flatpickr-next-month.disabled {
1724
- display: none;
1725
- }
1726
- .flatpickr-months .flatpickr-prev-month i,
1727
- .flatpickr-months .flatpickr-next-month i {
1728
- position: relative;
1729
- }
1730
- .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
1731
- .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
1732
- /*
1733
- /*rtl:begin:ignore*/
1734
- /*
1735
- */
1736
- left: 0;
1737
- /*
1738
- /*rtl:end:ignore*/
1739
- /*
1740
- */
1741
- }
1742
- /*
1743
- /*rtl:begin:ignore*/
1744
- /*
1745
- /*rtl:end:ignore*/
1746
- .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
1747
- .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
1748
- /*
1749
- /*rtl:begin:ignore*/
1750
- /*
1751
- */
1752
- right: 0;
1753
- /*
1754
- /*rtl:end:ignore*/
1755
- /*
1756
- */
1757
- }
1758
- /*
1759
- /*rtl:begin:ignore*/
1760
- /*
1761
- /*rtl:end:ignore*/
1762
- .flatpickr-months .flatpickr-prev-month:hover,
1763
- .flatpickr-months .flatpickr-next-month:hover {
1764
- color: #959ea9;
1765
- }
1766
- .flatpickr-months .flatpickr-prev-month:hover svg,
1767
- .flatpickr-months .flatpickr-next-month:hover svg {
1768
- fill: #f64747;
1769
- }
1770
- .flatpickr-months .flatpickr-prev-month svg,
1771
- .flatpickr-months .flatpickr-next-month svg {
1772
- width: 14px;
1773
- height: 14px;
1774
- }
1775
- .flatpickr-months .flatpickr-prev-month svg path,
1776
- .flatpickr-months .flatpickr-next-month svg path {
1777
- -webkit-transition: fill 0.1s;
1778
- transition: fill 0.1s;
1779
- fill: inherit;
1780
- }
1781
- .numInputWrapper {
1782
- position: relative;
1783
- height: auto;
1784
- }
1785
- .numInputWrapper input,
1786
- .numInputWrapper span {
1787
- display: inline-block;
1788
- }
1789
- .numInputWrapper input {
1790
- width: 100%;
1791
- }
1792
- .numInputWrapper input::-ms-clear {
1793
- display: none;
1794
- }
1795
- .numInputWrapper span {
1796
- position: absolute;
1797
- right: 0;
1798
- width: 14px;
1799
- padding: 0 4px 0 2px;
1800
- height: 50%;
1801
- line-height: 50%;
1802
- opacity: 0;
1803
- cursor: pointer;
1804
- border: 1px solid rgba(57,57,57,0.15);
1805
- -webkit-box-sizing: border-box;
1806
- box-sizing: border-box;
1807
- }
1808
- .numInputWrapper span:hover {
1809
- background: rgba(0,0,0,0.1);
1810
- }
1811
- .numInputWrapper span:active {
1812
- background: rgba(0,0,0,0.2);
1813
- }
1814
- .numInputWrapper span:after {
1815
- display: block;
1816
- content: "";
1817
- position: absolute;
1818
- }
1819
- .numInputWrapper span.arrowUp {
1820
- top: 0;
1821
- border-bottom: 0;
1822
- }
1823
- .numInputWrapper span.arrowUp:after {
1824
- border-left: 4px solid transparent;
1825
- border-right: 4px solid transparent;
1826
- border-bottom: 4px solid rgba(57,57,57,0.6);
1827
- top: 26%;
1828
- }
1829
- .numInputWrapper span.arrowDown {
1830
- top: 50%;
1831
- }
1832
- .numInputWrapper span.arrowDown:after {
1833
- border-left: 4px solid transparent;
1834
- border-right: 4px solid transparent;
1835
- border-top: 4px solid rgba(57,57,57,0.6);
1836
- top: 40%;
1837
- }
1838
- .numInputWrapper span svg {
1839
- width: inherit;
1840
- height: auto;
1841
- }
1842
- .numInputWrapper span svg path {
1843
- fill: rgba(0,0,0,0.5);
1844
- }
1845
- .numInputWrapper:hover {
1846
- background: rgba(0,0,0,0.05);
1847
- }
1848
- .numInputWrapper:hover span {
1849
- opacity: 1;
1850
- }
1851
- .flatpickr-current-month {
1852
- font-size: 135%;
1853
- line-height: inherit;
1854
- font-weight: 300;
1855
- color: inherit;
1856
- position: absolute;
1857
- width: 75%;
1858
- left: 12.5%;
1859
- padding: 6.16px 0 0 0;
1860
- line-height: 1;
1861
- height: 28px;
1862
- display: inline-block;
1863
- text-align: center;
1864
- -webkit-transform: translate3d(0px, 0px, 0px);
1865
- transform: translate3d(0px, 0px, 0px);
1866
- }
1867
- .flatpickr-current-month span.cur-month {
1868
- font-family: inherit;
1869
- font-weight: 700;
1870
- color: inherit;
1871
- display: inline-block;
1872
- margin-left: 0.5ch;
1873
- padding: 0;
1874
- }
1875
- .flatpickr-current-month span.cur-month:hover {
1876
- background: rgba(0,0,0,0.05);
1877
- }
1878
- .flatpickr-current-month .numInputWrapper {
1879
- width: 6ch;
1880
- width: 7ch\0;
1881
- display: inline-block;
1882
- }
1883
- .flatpickr-current-month .numInputWrapper span.arrowUp:after {
1884
- border-bottom-color: rgba(0,0,0,0.9);
1885
- }
1886
- .flatpickr-current-month .numInputWrapper span.arrowDown:after {
1887
- border-top-color: rgba(0,0,0,0.9);
1888
- }
1889
- .flatpickr-current-month input.cur-year {
1890
- background: transparent;
1891
- -webkit-box-sizing: border-box;
1892
- box-sizing: border-box;
1893
- color: inherit;
1894
- cursor: text;
1895
- padding: 0 0 0 0.5ch;
1896
- margin: 0;
1897
- display: inline-block;
1898
- font-size: inherit;
1899
- font-family: inherit;
1900
- font-weight: 300;
1901
- line-height: inherit;
1902
- height: auto;
1903
- border: 0;
1904
- border-radius: 0;
1905
- vertical-align: initial;
1906
- }
1907
- .flatpickr-current-month input.cur-year:focus {
1908
- outline: 0;
1909
- }
1910
- .flatpickr-current-month input.cur-year[disabled],
1911
- .flatpickr-current-month input.cur-year[disabled]:hover {
1912
- font-size: 100%;
1913
- color: rgba(0,0,0,0.5);
1914
- background: transparent;
1915
- pointer-events: none;
1916
- }
1917
- .flatpickr-weekdays {
1918
- background: transparent;
1919
- text-align: center;
1920
- overflow: hidden;
1921
- width: 100%;
1922
- display: -webkit-box;
1923
- display: -webkit-flex;
1924
- display: -ms-flexbox;
1925
- display: flex;
1926
- -webkit-box-align: center;
1927
- -webkit-align-items: center;
1928
- -ms-flex-align: center;
1929
- align-items: center;
1930
- height: 28px;
1931
- }
1932
- .flatpickr-weekdays .flatpickr-weekdaycontainer {
1933
- display: -webkit-box;
1934
- display: -webkit-flex;
1935
- display: -ms-flexbox;
1936
- display: flex;
1937
- -webkit-box-flex: 1;
1938
- -webkit-flex: 1;
1939
- -ms-flex: 1;
1940
- flex: 1;
1941
- }
1942
- span.flatpickr-weekday {
1943
- cursor: default;
1944
- font-size: 90%;
1945
- background: transparent;
1946
- color: rgba(0,0,0,0.54);
1947
- line-height: 1;
1948
- margin: 0;
1949
- text-align: center;
1950
- display: block;
1951
- -webkit-box-flex: 1;
1952
- -webkit-flex: 1;
1953
- -ms-flex: 1;
1954
- flex: 1;
1955
- font-weight: bolder;
1956
- }
1957
- .dayContainer,
1958
- .flatpickr-weeks {
1959
- padding: 1px 0 0 0;
1960
- }
1961
- .flatpickr-days {
1962
- position: relative;
1963
- overflow: hidden;
1964
- display: -webkit-box;
1965
- display: -webkit-flex;
1966
- display: -ms-flexbox;
1967
- display: flex;
1968
- -webkit-box-align: start;
1969
- -webkit-align-items: flex-start;
1970
- -ms-flex-align: start;
1971
- align-items: flex-start;
1972
- width: 307.875px;
1973
- }
1974
- .flatpickr-days:focus {
1975
- outline: 0;
1976
- }
1977
- .dayContainer {
1978
- padding: 0;
1979
- outline: 0;
1980
- text-align: left;
1981
- width: 307.875px;
1982
- min-width: 307.875px;
1983
- max-width: 307.875px;
1984
- -webkit-box-sizing: border-box;
1985
- box-sizing: border-box;
1986
- display: inline-block;
1987
- display: -ms-flexbox;
1988
- display: -webkit-box;
1989
- display: -webkit-flex;
1990
- display: flex;
1991
- -webkit-flex-wrap: wrap;
1992
- flex-wrap: wrap;
1993
- -ms-flex-wrap: wrap;
1994
- -ms-flex-pack: justify;
1995
- -webkit-justify-content: space-around;
1996
- justify-content: space-around;
1997
- -webkit-transform: translate3d(0px, 0px, 0px);
1998
- transform: translate3d(0px, 0px, 0px);
1999
- opacity: 1;
2000
- }
2001
- .dayContainer + .dayContainer {
2002
- -webkit-box-shadow: -1px 0 0 #e6e6e6;
2003
- box-shadow: -1px 0 0 #e6e6e6;
2004
- }
2005
- .flatpickr-day {
2006
- background: none;
2007
- border: 1px solid transparent;
2008
- border-radius: 150px;
2009
- -webkit-box-sizing: border-box;
2010
- box-sizing: border-box;
2011
- color: #393939;
2012
- cursor: pointer;
2013
- font-weight: 400;
2014
- width: 14.2857143%;
2015
- -webkit-flex-basis: 14.2857143%;
2016
- -ms-flex-preferred-size: 14.2857143%;
2017
- flex-basis: 14.2857143%;
2018
- max-width: 39px;
2019
- height: 39px;
2020
- line-height: 39px;
2021
- margin: 0;
2022
- display: inline-block;
2023
- position: relative;
2024
- -webkit-box-pack: center;
2025
- -webkit-justify-content: center;
2026
- -ms-flex-pack: center;
2027
- justify-content: center;
2028
- text-align: center;
2029
- }
2030
- .flatpickr-day.inRange,
2031
- .flatpickr-day.prevMonthDay.inRange,
2032
- .flatpickr-day.nextMonthDay.inRange,
2033
- .flatpickr-day.today.inRange,
2034
- .flatpickr-day.prevMonthDay.today.inRange,
2035
- .flatpickr-day.nextMonthDay.today.inRange,
2036
- .flatpickr-day:hover,
2037
- .flatpickr-day.prevMonthDay:hover,
2038
- .flatpickr-day.nextMonthDay:hover,
2039
- .flatpickr-day:focus,
2040
- .flatpickr-day.prevMonthDay:focus,
2041
- .flatpickr-day.nextMonthDay:focus {
2042
- cursor: pointer;
2043
- outline: 0;
2044
- background: #e6e6e6;
2045
- border-color: #e6e6e6;
2046
- }
2047
- .flatpickr-day.today {
2048
- border-color: #959ea9;
2049
- }
2050
- .flatpickr-day.today:hover,
2051
- .flatpickr-day.today:focus {
2052
- border-color: #959ea9;
2053
- background: #959ea9;
2054
- color: #fff;
2055
- }
2056
- .flatpickr-day.selected,
2057
- .flatpickr-day.startRange,
2058
- .flatpickr-day.endRange,
2059
- .flatpickr-day.selected.inRange,
2060
- .flatpickr-day.startRange.inRange,
2061
- .flatpickr-day.endRange.inRange,
2062
- .flatpickr-day.selected:focus,
2063
- .flatpickr-day.startRange:focus,
2064
- .flatpickr-day.endRange:focus,
2065
- .flatpickr-day.selected:hover,
2066
- .flatpickr-day.startRange:hover,
2067
- .flatpickr-day.endRange:hover,
2068
- .flatpickr-day.selected.prevMonthDay,
2069
- .flatpickr-day.startRange.prevMonthDay,
2070
- .flatpickr-day.endRange.prevMonthDay,
2071
- .flatpickr-day.selected.nextMonthDay,
2072
- .flatpickr-day.startRange.nextMonthDay,
2073
- .flatpickr-day.endRange.nextMonthDay {
2074
- background: #569ff7;
2075
- -webkit-box-shadow: none;
2076
- box-shadow: none;
2077
- color: #fff;
2078
- border-color: #569ff7;
2079
- }
2080
- .flatpickr-day.selected.startRange,
2081
- .flatpickr-day.startRange.startRange,
2082
- .flatpickr-day.endRange.startRange {
2083
- border-radius: 50px 0 0 50px;
2084
- }
2085
- .flatpickr-day.selected.endRange,
2086
- .flatpickr-day.startRange.endRange,
2087
- .flatpickr-day.endRange.endRange {
2088
- border-radius: 0 50px 50px 0;
2089
- }
2090
- .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
2091
- .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
2092
- .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
2093
- -webkit-box-shadow: -10px 0 0 #569ff7;
2094
- box-shadow: -10px 0 0 #569ff7;
2095
- }
2096
- .flatpickr-day.selected.startRange.endRange,
2097
- .flatpickr-day.startRange.startRange.endRange,
2098
- .flatpickr-day.endRange.startRange.endRange {
2099
- border-radius: 50px;
2100
- }
2101
- .flatpickr-day.inRange {
2102
- border-radius: 0;
2103
- -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
2104
- box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
2105
- }
2106
- .flatpickr-day.disabled,
2107
- .flatpickr-day.disabled:hover,
2108
- .flatpickr-day.prevMonthDay,
2109
- .flatpickr-day.nextMonthDay,
2110
- .flatpickr-day.notAllowed,
2111
- .flatpickr-day.notAllowed.prevMonthDay,
2112
- .flatpickr-day.notAllowed.nextMonthDay {
2113
- color: rgba(57,57,57,0.3);
2114
- background: transparent;
2115
- border-color: transparent;
2116
- cursor: default;
2117
- }
2118
- .flatpickr-day.disabled,
2119
- .flatpickr-day.disabled:hover {
2120
- cursor: not-allowed;
2121
- color: rgba(57,57,57,0.1);
2122
- }
2123
- .flatpickr-day.week.selected {
2124
- border-radius: 0;
2125
- -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
2126
- box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
2127
- }
2128
- .flatpickr-day.hidden {
2129
- visibility: hidden;
2130
- }
2131
- .rangeMode .flatpickr-day {
2132
- margin-top: 1px;
2133
- }
2134
- .flatpickr-weekwrapper {
2135
- display: inline-block;
2136
- float: left;
2137
- }
2138
- .flatpickr-weekwrapper .flatpickr-weeks {
2139
- padding: 0 12px;
2140
- -webkit-box-shadow: 1px 0 0 #e6e6e6;
2141
- box-shadow: 1px 0 0 #e6e6e6;
2142
- }
2143
- .flatpickr-weekwrapper .flatpickr-weekday {
2144
- float: none;
2145
- width: 100%;
2146
- line-height: 28px;
2147
- }
2148
- .flatpickr-weekwrapper span.flatpickr-day,
2149
- .flatpickr-weekwrapper span.flatpickr-day:hover {
2150
- display: block;
2151
- width: 100%;
2152
- max-width: none;
2153
- color: rgba(57,57,57,0.3);
2154
- background: transparent;
2155
- cursor: default;
2156
- border: none;
2157
- }
2158
- .flatpickr-innerContainer {
2159
- display: block;
2160
- display: -webkit-box;
2161
- display: -webkit-flex;
2162
- display: -ms-flexbox;
2163
- display: flex;
2164
- -webkit-box-sizing: border-box;
2165
- box-sizing: border-box;
2166
- overflow: hidden;
2167
- }
2168
- .flatpickr-rContainer {
2169
- display: inline-block;
2170
- padding: 0;
2171
- -webkit-box-sizing: border-box;
2172
- box-sizing: border-box;
2173
- }
2174
- .flatpickr-time {
2175
- text-align: center;
2176
- outline: 0;
2177
- display: block;
2178
- height: 0;
2179
- line-height: 40px;
2180
- max-height: 40px;
2181
- -webkit-box-sizing: border-box;
2182
- box-sizing: border-box;
2183
- overflow: hidden;
2184
- display: -webkit-box;
2185
- display: -webkit-flex;
2186
- display: -ms-flexbox;
2187
- display: flex;
2188
- }
2189
- .flatpickr-time:after {
2190
- content: "";
2191
- display: table;
2192
- clear: both;
2193
- }
2194
- .flatpickr-time .numInputWrapper {
2195
- -webkit-box-flex: 1;
2196
- -webkit-flex: 1;
2197
- -ms-flex: 1;
2198
- flex: 1;
2199
- width: 40%;
2200
- height: 40px;
2201
- float: left;
2202
- }
2203
- .flatpickr-time .numInputWrapper span.arrowUp:after {
2204
- border-bottom-color: #393939;
2205
- }
2206
- .flatpickr-time .numInputWrapper span.arrowDown:after {
2207
- border-top-color: #393939;
2208
- }
2209
- .flatpickr-time.hasSeconds .numInputWrapper {
2210
- width: 26%;
2211
- }
2212
- .flatpickr-time.time24hr .numInputWrapper {
2213
- width: 49%;
2214
- }
2215
- .flatpickr-time input {
2216
- background: transparent;
2217
- -webkit-box-shadow: none;
2218
- box-shadow: none;
2219
- border: 0;
2220
- border-radius: 0;
2221
- text-align: center;
2222
- margin: 0;
2223
- padding: 0;
2224
- height: inherit;
2225
- line-height: inherit;
2226
- color: #393939;
2227
- font-size: 14px;
2228
- position: relative;
2229
- -webkit-box-sizing: border-box;
2230
- box-sizing: border-box;
2231
- }
2232
- .flatpickr-time input.flatpickr-hour {
2233
- font-weight: bold;
2234
- }
2235
- .flatpickr-time input.flatpickr-minute,
2236
- .flatpickr-time input.flatpickr-second {
2237
- font-weight: 400;
2238
- }
2239
- .flatpickr-time input:focus {
2240
- outline: 0;
2241
- border: 0;
2242
- }
2243
- .flatpickr-time .flatpickr-time-separator,
2244
- .flatpickr-time .flatpickr-am-pm {
2245
- height: inherit;
2246
- display: inline-block;
2247
- float: left;
2248
- line-height: inherit;
2249
- color: #393939;
2250
- font-weight: bold;
2251
- width: 2%;
2252
- -webkit-user-select: none;
2253
- -moz-user-select: none;
2254
- -ms-user-select: none;
2255
- user-select: none;
2256
- -webkit-align-self: center;
2257
- -ms-flex-item-align: center;
2258
- align-self: center;
2259
- }
2260
- .flatpickr-time .flatpickr-am-pm {
2261
- outline: 0;
2262
- width: 18%;
2263
- cursor: pointer;
2264
- text-align: center;
2265
- font-weight: 400;
2266
- }
2267
- .flatpickr-time input:hover,
2268
- .flatpickr-time .flatpickr-am-pm:hover,
2269
- .flatpickr-time input:focus,
2270
- .flatpickr-time .flatpickr-am-pm:focus {
2271
- background: #f3f3f3;
2272
- }
2273
- .flatpickr-input[readonly] {
2274
- cursor: pointer;
2275
- }
2276
- @-webkit-keyframes fpFadeInDown {
2277
- from {
2278
- opacity: 0;
2279
- -webkit-transform: translate3d(0, -20px, 0);
2280
- transform: translate3d(0, -20px, 0);
2281
- }
2282
- to {
2283
- opacity: 1;
2284
- -webkit-transform: translate3d(0, 0, 0);
2285
- transform: translate3d(0, 0, 0);
2286
- }
2287
- }
2288
- @keyframes fpFadeInDown {
2289
- from {
2290
- opacity: 0;
2291
- -webkit-transform: translate3d(0, -20px, 0);
2292
- transform: translate3d(0, -20px, 0);
2293
- }
2294
- to {
2295
- opacity: 1;
2296
- -webkit-transform: translate3d(0, 0, 0);
2297
- transform: translate3d(0, 0, 0);
2298
- }
2299
- }
2300
-
2301
- /* This is the core CSS of Tooltipster */
2302
-
2303
- /* GENERAL STRUCTURE RULES (do not edit this section) */
2304
-
2305
- .tooltipster-base {
2306
- /* this ensures that a constrained height set by functionPosition,
2307
- if greater that the natural height of the tooltip, will be enforced
2308
- in browsers that support display:flex */
2309
- display: flex;
2310
- pointer-events: none;
2311
- /* this may be overriden in JS for fixed position origins */
2312
- position: absolute;
2313
- }
2314
-
2315
- .tooltipster-box {
2316
- /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
2317
- and flex-basis auto for IE11- (at least) */
2318
- flex: 1 1 auto;
2319
- }
2320
-
2321
- .tooltipster-content {
2322
- /* prevents an overflow if the user adds padding to the div */
2323
- box-sizing: border-box;
2324
- /* these make sure we'll be able to detect any overflow */
2325
- max-height: 100%;
2326
- max-width: 100%;
2327
- overflow: auto;
2328
- }
2329
-
2330
- .tooltipster-ruler {
2331
- /* these let us test the size of the tooltip without overflowing the window */
2332
- bottom: 0;
2333
- left: 0;
2334
- overflow: hidden;
2335
- position: fixed;
2336
- right: 0;
2337
- top: 0;
2338
- visibility: hidden;
2339
- }
2340
-
2341
- /* ANIMATIONS */
2342
-
2343
- /* Open/close animations */
2344
-
2345
- /* fade */
2346
-
2347
- .tooltipster-fade {
2348
- opacity: 0;
2349
- -webkit-transition-property: opacity;
2350
- -moz-transition-property: opacity;
2351
- -o-transition-property: opacity;
2352
- -ms-transition-property: opacity;
2353
- transition-property: opacity;
2354
- }
2355
- .tooltipster-fade.tooltipster-show {
2356
- opacity: 1;
2357
- }
2358
-
2359
- /* grow */
2360
-
2361
- .tooltipster-grow {
2362
- -webkit-transform: scale(0,0);
2363
- -moz-transform: scale(0,0);
2364
- -o-transform: scale(0,0);
2365
- -ms-transform: scale(0,0);
2366
- transform: scale(0,0);
2367
- -webkit-transition-property: -webkit-transform;
2368
- -moz-transition-property: -moz-transform;
2369
- -o-transition-property: -o-transform;
2370
- -ms-transition-property: -ms-transform;
2371
- transition-property: transform;
2372
- -webkit-backface-visibility: hidden;
2373
- }
2374
- .tooltipster-grow.tooltipster-show {
2375
- -webkit-transform: scale(1,1);
2376
- -moz-transform: scale(1,1);
2377
- -o-transform: scale(1,1);
2378
- -ms-transform: scale(1,1);
2379
- transform: scale(1,1);
2380
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2381
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2382
- -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2383
- -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2384
- -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2385
- transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2386
- }
2387
-
2388
- /* swing */
2389
-
2390
- .tooltipster-swing {
2391
- opacity: 0;
2392
- -webkit-transform: rotateZ(4deg);
2393
- -moz-transform: rotateZ(4deg);
2394
- -o-transform: rotateZ(4deg);
2395
- -ms-transform: rotateZ(4deg);
2396
- transform: rotateZ(4deg);
2397
- -webkit-transition-property: -webkit-transform, opacity;
2398
- -moz-transition-property: -moz-transform;
2399
- -o-transition-property: -o-transform;
2400
- -ms-transition-property: -ms-transform;
2401
- transition-property: transform;
2402
- }
2403
- .tooltipster-swing.tooltipster-show {
2404
- opacity: 1;
2405
- -webkit-transform: rotateZ(0deg);
2406
- -moz-transform: rotateZ(0deg);
2407
- -o-transform: rotateZ(0deg);
2408
- -ms-transform: rotateZ(0deg);
2409
- transform: rotateZ(0deg);
2410
- -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
2411
- -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
2412
- -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
2413
- -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
2414
- -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
2415
- transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
2416
- }
2417
-
2418
- /* fall */
2419
-
2420
- .tooltipster-fall {
2421
- -webkit-transition-property: top;
2422
- -moz-transition-property: top;
2423
- -o-transition-property: top;
2424
- -ms-transition-property: top;
2425
- transition-property: top;
2426
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2427
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2428
- -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2429
- -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2430
- -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2431
- transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2432
- }
2433
- .tooltipster-fall.tooltipster-initial {
2434
- top: 0 !important;
2435
- }
2436
- .tooltipster-fall.tooltipster-show {
2437
- }
2438
- .tooltipster-fall.tooltipster-dying {
2439
- -webkit-transition-property: all;
2440
- -moz-transition-property: all;
2441
- -o-transition-property: all;
2442
- -ms-transition-property: all;
2443
- transition-property: all;
2444
- top: 0 !important;
2445
- opacity: 0;
2446
- }
2447
-
2448
- /* slide */
2449
-
2450
- .tooltipster-slide {
2451
- -webkit-transition-property: left;
2452
- -moz-transition-property: left;
2453
- -o-transition-property: left;
2454
- -ms-transition-property: left;
2455
- transition-property: left;
2456
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2457
- -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2458
- -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2459
- -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2460
- -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2461
- transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
2462
- }
2463
- .tooltipster-slide.tooltipster-initial {
2464
- left: -40px !important;
2465
- }
2466
- .tooltipster-slide.tooltipster-show {
2467
- }
2468
- .tooltipster-slide.tooltipster-dying {
2469
- -webkit-transition-property: all;
2470
- -moz-transition-property: all;
2471
- -o-transition-property: all;
2472
- -ms-transition-property: all;
2473
- transition-property: all;
2474
- left: 0 !important;
2475
- opacity: 0;
2476
- }
2477
-
2478
- /* Update animations */
2479
-
2480
- /* We use animations rather than transitions here because
2481
- transition durations may be specified in the style tag due to
2482
- animationDuration, and we try to avoid collisions and the use
2483
- of !important */
2484
-
2485
- /* fade */
2486
-
2487
- @keyframes tooltipster-fading {
2488
- 0% {
2489
- opacity: 0;
2490
- }
2491
- 100% {
2492
- opacity: 1;
2493
- }
2494
- }
2495
-
2496
- .tooltipster-update-fade {
2497
- animation: tooltipster-fading 400ms;
2498
- }
2499
-
2500
- /* rotate */
2501
-
2502
- @keyframes tooltipster-rotating {
2503
- 25% {
2504
- transform: rotate(-2deg);
2505
- }
2506
- 75% {
2507
- transform: rotate(2deg);
2508
- }
2509
- 100% {
2510
- transform: rotate(0);
2511
- }
2512
- }
2513
-
2514
- .tooltipster-update-rotate {
2515
- animation: tooltipster-rotating 600ms;
2516
- }
2517
-
2518
- /* scale */
2519
-
2520
- @keyframes tooltipster-scaling {
2521
- 50% {
2522
- transform: scale(1.1);
2523
- }
2524
- 100% {
2525
- transform: scale(1);
2526
- }
2527
- }
2528
-
2529
- .tooltipster-update-scale {
2530
- animation: tooltipster-scaling 600ms;
2531
- }
2532
-
2533
- /**
2534
- * DEFAULT STYLE OF THE SIDETIP PLUGIN
2535
- *
2536
- * All styles are "namespaced" with .tooltipster-sidetip to prevent
2537
- * conflicts between plugins.
2538
- */
2539
-
2540
- /* .tooltipster-box */
2541
-
2542
- .tooltipster-sidetip .tooltipster-box {
2543
- background: #565656;
2544
- border: 2px solid black;
2545
- border-radius: 4px;
2546
- }
2547
-
2548
- .tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
2549
- margin-top: 8px;
2550
- }
2551
-
2552
- .tooltipster-sidetip.tooltipster-left .tooltipster-box {
2553
- margin-right: 8px;
2554
- }
2555
-
2556
- .tooltipster-sidetip.tooltipster-right .tooltipster-box {
2557
- margin-left: 8px;
2558
- }
2559
-
2560
- .tooltipster-sidetip.tooltipster-top .tooltipster-box {
2561
- margin-bottom: 8px;
2562
- }
2563
-
2564
- /* .tooltipster-content */
2565
-
2566
- .tooltipster-sidetip .tooltipster-content {
2567
- color: white;
2568
- line-height: 18px;
2569
- padding: 6px 14px;
2570
- }
2571
-
2572
- /* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
2573
- corresponds to the arrow we want to display */
2574
-
2575
- .tooltipster-sidetip .tooltipster-arrow {
2576
- overflow: hidden;
2577
- position: absolute;
2578
- }
2579
-
2580
- .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
2581
- height: 10px;
2582
- /* half the width, for centering */
2583
- margin-left: -10px;
2584
- top: 0;
2585
- width: 20px;
2586
- }
2587
-
2588
- .tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
2589
- height: 20px;
2590
- margin-top: -10px;
2591
- right: 0;
2592
- /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
2593
- been positioned yet */
2594
- top: 0;
2595
- width: 10px;
2596
- }
2597
-
2598
- .tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
2599
- height: 20px;
2600
- margin-top: -10px;
2601
- left: 0;
2602
- /* same as .tooltipster-left .tooltipster-arrow */
2603
- top: 0;
2604
- width: 10px;
2605
- }
2606
-
2607
- .tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
2608
- bottom: 0;
2609
- height: 10px;
2610
- margin-left: -10px;
2611
- width: 20px;
2612
- }
2613
-
2614
- /* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
2615
-
2616
- .tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
2617
- height: 0;
2618
- position: absolute;
2619
- width: 0;
2620
- }
2621
-
2622
- /* .tooltipster-arrow-background */
2623
-
2624
- .tooltipster-sidetip .tooltipster-arrow-background {
2625
- border: 10px solid transparent;
2626
- }
2627
-
2628
- .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
2629
- border-bottom-color: #565656;
2630
- left: 0;
2631
- top: 3px;
2632
- }
2633
-
2634
- .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
2635
- border-left-color: #565656;
2636
- left: -3px;
2637
- top: 0;
2638
- }
2639
-
2640
- .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
2641
- border-right-color: #565656;
2642
- left: 3px;
2643
- top: 0;
2644
- }
2645
-
2646
- .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
2647
- border-top-color: #565656;
2648
- left: 0;
2649
- top: -3px;
2650
- }
2651
-
2652
- /* .tooltipster-arrow-border */
2653
-
2654
- .tooltipster-sidetip .tooltipster-arrow-border {
2655
- border: 10px solid transparent;
2656
- left: 0;
2657
- top: 0;
2658
- }
2659
-
2660
- .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
2661
- border-bottom-color: black;
2662
- }
2663
-
2664
- .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
2665
- border-left-color: black;
2666
- }
2667
-
2668
- .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
2669
- border-right-color: black;
2670
- }
2671
-
2672
- .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
2673
- border-top-color: black;
2674
- }
2675
-
2676
- /* tooltipster-arrow-uncropped */
2677
-
2678
- .tooltipster-sidetip .tooltipster-arrow-uncropped {
2679
- position: relative;
2680
- }
2681
-
2682
- .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
2683
- top: -10px;
2684
- }
2685
-
2686
- .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
2687
- left: -10px;
2688
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/vendors.min.css DELETED
@@ -1 +0,0 @@
1
- .monsterinsights-flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.monsterinsights-flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.monsterinsights-flag-icon:before{content:"\00a0"}.monsterinsights-flag-icon.monsterinsights-flag-icon-squared{width:1em}.monsterinsights-flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.monsterinsights-flag-icon-ad.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.monsterinsights-flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.monsterinsights-flag-icon-ae.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.monsterinsights-flag-icon-af{background-image:url(../flags/4x3/af.svg)}.monsterinsights-flag-icon-af.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.monsterinsights-flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.monsterinsights-flag-icon-ag.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.monsterinsights-flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.monsterinsights-flag-icon-ai.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.monsterinsights-flag-icon-al{background-image:url(../flags/4x3/al.svg)}.monsterinsights-flag-icon-al.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.monsterinsights-flag-icon-am{background-image:url(../flags/4x3/am.svg)}.monsterinsights-flag-icon-am.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.monsterinsights-flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.monsterinsights-flag-icon-ao.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.monsterinsights-flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.monsterinsights-flag-icon-aq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.monsterinsights-flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.monsterinsights-flag-icon-ar.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.monsterinsights-flag-icon-as{background-image:url(../flags/4x3/as.svg)}.monsterinsights-flag-icon-as.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.monsterinsights-flag-icon-at{background-image:url(../flags/4x3/at.svg)}.monsterinsights-flag-icon-at.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.monsterinsights-flag-icon-au{background-image:url(../flags/4x3/au.svg)}.monsterinsights-flag-icon-au.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.monsterinsights-flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.monsterinsights-flag-icon-aw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.monsterinsights-flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.monsterinsights-flag-icon-ax.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.monsterinsights-flag-icon-az{background-image:url(../flags/4x3/az.svg)}.monsterinsights-flag-icon-az.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.monsterinsights-flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.monsterinsights-flag-icon-ba.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.monsterinsights-flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.monsterinsights-flag-icon-bb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.monsterinsights-flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.monsterinsights-flag-icon-bd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.monsterinsights-flag-icon-be{background-image:url(../flags/4x3/be.svg)}.monsterinsights-flag-icon-be.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.monsterinsights-flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.monsterinsights-flag-icon-bf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.monsterinsights-flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.monsterinsights-flag-icon-bg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.monsterinsights-flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.monsterinsights-flag-icon-bh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.monsterinsights-flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.monsterinsights-flag-icon-bi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.monsterinsights-flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.monsterinsights-flag-icon-bj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.monsterinsights-flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.monsterinsights-flag-icon-bl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.monsterinsights-flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.monsterinsights-flag-icon-bm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.monsterinsights-flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.monsterinsights-flag-icon-bn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.monsterinsights-flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.monsterinsights-flag-icon-bo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.monsterinsights-flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.monsterinsights-flag-icon-bq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.monsterinsights-flag-icon-br{background-image:url(../flags/4x3/br.svg)}.monsterinsights-flag-icon-br.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.monsterinsights-flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.monsterinsights-flag-icon-bs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.monsterinsights-flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.monsterinsights-flag-icon-bt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.monsterinsights-flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.monsterinsights-flag-icon-bv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.monsterinsights-flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.monsterinsights-flag-icon-bw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.monsterinsights-flag-icon-by{background-image:url(../flags/4x3/by.svg)}.monsterinsights-flag-icon-by.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.monsterinsights-flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.monsterinsights-flag-icon-bz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.monsterinsights-flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.monsterinsights-flag-icon-ca.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.monsterinsights-flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.monsterinsights-flag-icon-cc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.monsterinsights-flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.monsterinsights-flag-icon-cd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.monsterinsights-flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.monsterinsights-flag-icon-cf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.monsterinsights-flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.monsterinsights-flag-icon-cg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.monsterinsights-flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.monsterinsights-flag-icon-ch.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.monsterinsights-flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.monsterinsights-flag-icon-ci.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.monsterinsights-flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.monsterinsights-flag-icon-ck.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.monsterinsights-flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.monsterinsights-flag-icon-cl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.monsterinsights-flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.monsterinsights-flag-icon-cm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.monsterinsights-flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.monsterinsights-flag-icon-cn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.monsterinsights-flag-icon-co{background-image:url(../flags/4x3/co.svg)}.monsterinsights-flag-icon-co.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.monsterinsights-flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.monsterinsights-flag-icon-cr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.monsterinsights-flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.monsterinsights-flag-icon-cu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.monsterinsights-flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.monsterinsights-flag-icon-cv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.monsterinsights-flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.monsterinsights-flag-icon-cw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.monsterinsights-flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.monsterinsights-flag-icon-cx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.monsterinsights-flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.monsterinsights-flag-icon-cy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.monsterinsights-flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.monsterinsights-flag-icon-cz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.monsterinsights-flag-icon-de{background-image:url(../flags/4x3/de.svg)}.monsterinsights-flag-icon-de.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.monsterinsights-flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.monsterinsights-flag-icon-dj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.monsterinsights-flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.monsterinsights-flag-icon-dk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.monsterinsights-flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.monsterinsights-flag-icon-dm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.monsterinsights-flag-icon-do{background-image:url(../flags/4x3/do.svg)}.monsterinsights-flag-icon-do.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.monsterinsights-flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.monsterinsights-flag-icon-dz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.monsterinsights-flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.monsterinsights-flag-icon-ec.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.monsterinsights-flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.monsterinsights-flag-icon-ee.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.monsterinsights-flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.monsterinsights-flag-icon-eg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.monsterinsights-flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.monsterinsights-flag-icon-eh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.monsterinsights-flag-icon-er{background-image:url(../flags/4x3/er.svg)}.monsterinsights-flag-icon-er.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.monsterinsights-flag-icon-es{background-image:url(../flags/4x3/es.svg)}.monsterinsights-flag-icon-es.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.monsterinsights-flag-icon-et{background-image:url(../flags/4x3/et.svg)}.monsterinsights-flag-icon-et.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.monsterinsights-flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.monsterinsights-flag-icon-fi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.monsterinsights-flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.monsterinsights-flag-icon-fj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.monsterinsights-flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.monsterinsights-flag-icon-fk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.monsterinsights-flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.monsterinsights-flag-icon-fm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.monsterinsights-flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.monsterinsights-flag-icon-fo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.monsterinsights-flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.monsterinsights-flag-icon-fr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.monsterinsights-flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.monsterinsights-flag-icon-ga.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.monsterinsights-flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.monsterinsights-flag-icon-gb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.monsterinsights-flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.monsterinsights-flag-icon-gd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.monsterinsights-flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.monsterinsights-flag-icon-ge.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.monsterinsights-flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.monsterinsights-flag-icon-gf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.monsterinsights-flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.monsterinsights-flag-icon-gg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.monsterinsights-flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.monsterinsights-flag-icon-gh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.monsterinsights-flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.monsterinsights-flag-icon-gi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.monsterinsights-flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.monsterinsights-flag-icon-gl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.monsterinsights-flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.monsterinsights-flag-icon-gm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.monsterinsights-flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.monsterinsights-flag-icon-gn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.monsterinsights-flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.monsterinsights-flag-icon-gp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.monsterinsights-flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.monsterinsights-flag-icon-gq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.monsterinsights-flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.monsterinsights-flag-icon-gr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.monsterinsights-flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.monsterinsights-flag-icon-gs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.monsterinsights-flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.monsterinsights-flag-icon-gt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.monsterinsights-flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.monsterinsights-flag-icon-gu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.monsterinsights-flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.monsterinsights-flag-icon-gw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.monsterinsights-flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.monsterinsights-flag-icon-gy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.monsterinsights-flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.monsterinsights-flag-icon-hk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.monsterinsights-flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.monsterinsights-flag-icon-hm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.monsterinsights-flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.monsterinsights-flag-icon-hn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.monsterinsights-flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.monsterinsights-flag-icon-hr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.monsterinsights-flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.monsterinsights-flag-icon-ht.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.monsterinsights-flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.monsterinsights-flag-icon-hu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.monsterinsights-flag-icon-id{background-image:url(../flags/4x3/id.svg)}.monsterinsights-flag-icon-id.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.monsterinsights-flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.monsterinsights-flag-icon-ie.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.monsterinsights-flag-icon-il{background-image:url(../flags/4x3/il.svg)}.monsterinsights-flag-icon-il.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.monsterinsights-flag-icon-im{background-image:url(../flags/4x3/im.svg)}.monsterinsights-flag-icon-im.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.monsterinsights-flag-icon-in{background-image:url(../flags/4x3/in.svg)}.monsterinsights-flag-icon-in.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.monsterinsights-flag-icon-io{background-image:url(../flags/4x3/io.svg)}.monsterinsights-flag-icon-io.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.monsterinsights-flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.monsterinsights-flag-icon-iq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.monsterinsights-flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.monsterinsights-flag-icon-ir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.monsterinsights-flag-icon-is{background-image:url(../flags/4x3/is.svg)}.monsterinsights-flag-icon-is.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.monsterinsights-flag-icon-it{background-image:url(../flags/4x3/it.svg)}.monsterinsights-flag-icon-it.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.monsterinsights-flag-icon-je{background-image:url(../flags/4x3/je.svg)}.monsterinsights-flag-icon-je.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.monsterinsights-flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.monsterinsights-flag-icon-jm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.monsterinsights-flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.monsterinsights-flag-icon-jo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.monsterinsights-flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.monsterinsights-flag-icon-jp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.monsterinsights-flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.monsterinsights-flag-icon-ke.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.monsterinsights-flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.monsterinsights-flag-icon-kg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.monsterinsights-flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.monsterinsights-flag-icon-kh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.monsterinsights-flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.monsterinsights-flag-icon-ki.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.monsterinsights-flag-icon-km{background-image:url(../flags/4x3/km.svg)}.monsterinsights-flag-icon-km.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.monsterinsights-flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.monsterinsights-flag-icon-kn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.monsterinsights-flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.monsterinsights-flag-icon-kp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.monsterinsights-flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.monsterinsights-flag-icon-kr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.monsterinsights-flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.monsterinsights-flag-icon-kw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.monsterinsights-flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.monsterinsights-flag-icon-ky.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.monsterinsights-flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.monsterinsights-flag-icon-kz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.monsterinsights-flag-icon-la{background-image:url(../flags/4x3/la.svg)}.monsterinsights-flag-icon-la.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.monsterinsights-flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.monsterinsights-flag-icon-lb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.monsterinsights-flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.monsterinsights-flag-icon-lc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.monsterinsights-flag-icon-li{background-image:url(../flags/4x3/li.svg)}.monsterinsights-flag-icon-li.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.monsterinsights-flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.monsterinsights-flag-icon-lk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.monsterinsights-flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.monsterinsights-flag-icon-lr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.monsterinsights-flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.monsterinsights-flag-icon-ls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.monsterinsights-flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.monsterinsights-flag-icon-lt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.monsterinsights-flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.monsterinsights-flag-icon-lu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.monsterinsights-flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.monsterinsights-flag-icon-lv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.monsterinsights-flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.monsterinsights-flag-icon-ly.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.monsterinsights-flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.monsterinsights-flag-icon-ma.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.monsterinsights-flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.monsterinsights-flag-icon-mc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.monsterinsights-flag-icon-md{background-image:url(../flags/4x3/md.svg)}.monsterinsights-flag-icon-md.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.monsterinsights-flag-icon-me{background-image:url(../flags/4x3/me.svg)}.monsterinsights-flag-icon-me.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.monsterinsights-flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.monsterinsights-flag-icon-mf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.monsterinsights-flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.monsterinsights-flag-icon-mg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.monsterinsights-flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.monsterinsights-flag-icon-mh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.monsterinsights-flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.monsterinsights-flag-icon-mk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.monsterinsights-flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.monsterinsights-flag-icon-ml.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.monsterinsights-flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.monsterinsights-flag-icon-mm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.monsterinsights-flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.monsterinsights-flag-icon-mn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.monsterinsights-flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.monsterinsights-flag-icon-mo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.monsterinsights-flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.monsterinsights-flag-icon-mp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.monsterinsights-flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.monsterinsights-flag-icon-mq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.monsterinsights-flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.monsterinsights-flag-icon-mr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.monsterinsights-flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.monsterinsights-flag-icon-ms.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.monsterinsights-flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.monsterinsights-flag-icon-mt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.monsterinsights-flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.monsterinsights-flag-icon-mu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.monsterinsights-flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.monsterinsights-flag-icon-mv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.monsterinsights-flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.monsterinsights-flag-icon-mw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.monsterinsights-flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.monsterinsights-flag-icon-mx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.monsterinsights-flag-icon-my{background-image:url(../flags/4x3/my.svg)}.monsterinsights-flag-icon-my.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.monsterinsights-flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.monsterinsights-flag-icon-mz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.monsterinsights-flag-icon-na{background-image:url(../flags/4x3/na.svg)}.monsterinsights-flag-icon-na.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.monsterinsights-flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.monsterinsights-flag-icon-nc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.monsterinsights-flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.monsterinsights-flag-icon-ne.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.monsterinsights-flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.monsterinsights-flag-icon-nf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.monsterinsights-flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.monsterinsights-flag-icon-ng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.monsterinsights-flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.monsterinsights-flag-icon-ni.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.monsterinsights-flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.monsterinsights-flag-icon-nl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.monsterinsights-flag-icon-no{background-image:url(../flags/4x3/no.svg)}.monsterinsights-flag-icon-no.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.monsterinsights-flag-icon-np{background-image:url(../flags/4x3/np.svg)}.monsterinsights-flag-icon-np.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.monsterinsights-flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.monsterinsights-flag-icon-nr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.monsterinsights-flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.monsterinsights-flag-icon-nu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.monsterinsights-flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.monsterinsights-flag-icon-nz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.monsterinsights-flag-icon-om{background-image:url(../flags/4x3/om.svg)}.monsterinsights-flag-icon-om.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.monsterinsights-flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.monsterinsights-flag-icon-pa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.monsterinsights-flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.monsterinsights-flag-icon-pe.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.monsterinsights-flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.monsterinsights-flag-icon-pf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.monsterinsights-flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.monsterinsights-flag-icon-pg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.monsterinsights-flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.monsterinsights-flag-icon-ph.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.monsterinsights-flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.monsterinsights-flag-icon-pk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.monsterinsights-flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.monsterinsights-flag-icon-pl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.monsterinsights-flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.monsterinsights-flag-icon-pm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.monsterinsights-flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.monsterinsights-flag-icon-pn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.monsterinsights-flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.monsterinsights-flag-icon-pr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.monsterinsights-flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.monsterinsights-flag-icon-ps.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.monsterinsights-flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.monsterinsights-flag-icon-pt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.monsterinsights-flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.monsterinsights-flag-icon-pw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.monsterinsights-flag-icon-py{background-image:url(../flags/4x3/py.svg)}.monsterinsights-flag-icon-py.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.monsterinsights-flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.monsterinsights-flag-icon-qa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.monsterinsights-flag-icon-re{background-image:url(../flags/4x3/re.svg)}.monsterinsights-flag-icon-re.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.monsterinsights-flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.monsterinsights-flag-icon-ro.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.monsterinsights-flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.monsterinsights-flag-icon-rs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.monsterinsights-flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.monsterinsights-flag-icon-ru.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.monsterinsights-flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.monsterinsights-flag-icon-rw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.monsterinsights-flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.monsterinsights-flag-icon-sa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.monsterinsights-flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.monsterinsights-flag-icon-sb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.monsterinsights-flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.monsterinsights-flag-icon-sc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.monsterinsights-flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.monsterinsights-flag-icon-sd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.monsterinsights-flag-icon-se{background-image:url(../flags/4x3/se.svg)}.monsterinsights-flag-icon-se.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.monsterinsights-flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.monsterinsights-flag-icon-sg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.monsterinsights-flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.monsterinsights-flag-icon-sh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.monsterinsights-flag-icon-si{background-image:url(../flags/4x3/si.svg)}.monsterinsights-flag-icon-si.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.monsterinsights-flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.monsterinsights-flag-icon-sj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.monsterinsights-flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.monsterinsights-flag-icon-sk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.monsterinsights-flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.monsterinsights-flag-icon-sl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.monsterinsights-flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.monsterinsights-flag-icon-sm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.monsterinsights-flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.monsterinsights-flag-icon-sn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.monsterinsights-flag-icon-so{background-image:url(../flags/4x3/so.svg)}.monsterinsights-flag-icon-so.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.monsterinsights-flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.monsterinsights-flag-icon-sr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.monsterinsights-flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.monsterinsights-flag-icon-ss.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.monsterinsights-flag-icon-st{background-image:url(../flags/4x3/st.svg)}.monsterinsights-flag-icon-st.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.monsterinsights-flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.monsterinsights-flag-icon-sv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.monsterinsights-flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.monsterinsights-flag-icon-sx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.monsterinsights-flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.monsterinsights-flag-icon-sy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.monsterinsights-flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.monsterinsights-flag-icon-sz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.monsterinsights-flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.monsterinsights-flag-icon-tc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.monsterinsights-flag-icon-td{background-image:url(../flags/4x3/td.svg)}.monsterinsights-flag-icon-td.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.monsterinsights-flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.monsterinsights-flag-icon-tf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.monsterinsights-flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.monsterinsights-flag-icon-tg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.monsterinsights-flag-icon-th{background-image:url(../flags/4x3/th.svg)}.monsterinsights-flag-icon-th.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.monsterinsights-flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.monsterinsights-flag-icon-tj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.monsterinsights-flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.monsterinsights-flag-icon-tk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.monsterinsights-flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.monsterinsights-flag-icon-tl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.monsterinsights-flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.monsterinsights-flag-icon-tm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.monsterinsights-flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.monsterinsights-flag-icon-tn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.monsterinsights-flag-icon-to{background-image:url(../flags/4x3/to.svg)}.monsterinsights-flag-icon-to.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.monsterinsights-flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.monsterinsights-flag-icon-tr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.monsterinsights-flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.monsterinsights-flag-icon-tt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.monsterinsights-flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.monsterinsights-flag-icon-tv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.monsterinsights-flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.monsterinsights-flag-icon-tw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.monsterinsights-flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.monsterinsights-flag-icon-tz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.monsterinsights-flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.monsterinsights-flag-icon-ua.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.monsterinsights-flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.monsterinsights-flag-icon-ug.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.monsterinsights-flag-icon-um{background-image:url(../flags/4x3/um.svg)}.monsterinsights-flag-icon-um.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.monsterinsights-flag-icon-us{background-image:url(../flags/4x3/us.svg)}.monsterinsights-flag-icon-us.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.monsterinsights-flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.monsterinsights-flag-icon-uy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.monsterinsights-flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.monsterinsights-flag-icon-uz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.monsterinsights-flag-icon-va{background-image:url(../flags/4x3/va.svg)}.monsterinsights-flag-icon-va.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.monsterinsights-flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.monsterinsights-flag-icon-vc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.monsterinsights-flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.monsterinsights-flag-icon-ve.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.monsterinsights-flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.monsterinsights-flag-icon-vg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.monsterinsights-flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.monsterinsights-flag-icon-vi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.monsterinsights-flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.monsterinsights-flag-icon-vn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.monsterinsights-flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.monsterinsights-flag-icon-vu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.monsterinsights-flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.monsterinsights-flag-icon-wf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.monsterinsights-flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.monsterinsights-flag-icon-ws.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.monsterinsights-flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.monsterinsights-flag-icon-ye.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.monsterinsights-flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.monsterinsights-flag-icon-yt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.monsterinsights-flag-icon-za{background-image:url(../flags/4x3/za.svg)}.monsterinsights-flag-icon-za.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.monsterinsights-flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.monsterinsights-flag-icon-zm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.monsterinsights-flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.monsterinsights-flag-icon-zw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.monsterinsights-flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.monsterinsights-flag-icon-es-ct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.monsterinsights-flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.monsterinsights-flag-icon-eu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.monsterinsights-flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.monsterinsights-flag-icon-gb-eng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.monsterinsights-flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.monsterinsights-flag-icon-gb-nir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.monsterinsights-flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.monsterinsights-flag-icon-gb-sct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.monsterinsights-flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.monsterinsights-flag-icon-gb-wls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.monsterinsights-flag-icon-un{background-image:url(../flags/4x3/un.svg)}.monsterinsights-flag-icon-un.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/un.svg)}.monsterinsights-flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.monsterinsights-flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.monsterinsights-flag-icon:before{content:"\00a0"}.monsterinsights-flag-icon.monsterinsights-flag-icon-squared{width:1em}.monsterinsights-flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.monsterinsights-flag-icon-ad.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.monsterinsights-flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.monsterinsights-flag-icon-ae.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.monsterinsights-flag-icon-af{background-image:url(../flags/4x3/af.svg)}.monsterinsights-flag-icon-af.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.monsterinsights-flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.monsterinsights-flag-icon-ag.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.monsterinsights-flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.monsterinsights-flag-icon-ai.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.monsterinsights-flag-icon-al{background-image:url(../flags/4x3/al.svg)}.monsterinsights-flag-icon-al.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.monsterinsights-flag-icon-am{background-image:url(../flags/4x3/am.svg)}.monsterinsights-flag-icon-am.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.monsterinsights-flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.monsterinsights-flag-icon-ao.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.monsterinsights-flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.monsterinsights-flag-icon-aq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.monsterinsights-flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.monsterinsights-flag-icon-ar.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.monsterinsights-flag-icon-as{background-image:url(../flags/4x3/as.svg)}.monsterinsights-flag-icon-as.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.monsterinsights-flag-icon-at{background-image:url(../flags/4x3/at.svg)}.monsterinsights-flag-icon-at.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.monsterinsights-flag-icon-au{background-image:url(../flags/4x3/au.svg)}.monsterinsights-flag-icon-au.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.monsterinsights-flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.monsterinsights-flag-icon-aw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.monsterinsights-flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.monsterinsights-flag-icon-ax.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.monsterinsights-flag-icon-az{background-image:url(../flags/4x3/az.svg)}.monsterinsights-flag-icon-az.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.monsterinsights-flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.monsterinsights-flag-icon-ba.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.monsterinsights-flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.monsterinsights-flag-icon-bb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.monsterinsights-flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.monsterinsights-flag-icon-bd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.monsterinsights-flag-icon-be{background-image:url(../flags/4x3/be.svg)}.monsterinsights-flag-icon-be.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.monsterinsights-flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.monsterinsights-flag-icon-bf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.monsterinsights-flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.monsterinsights-flag-icon-bg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.monsterinsights-flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.monsterinsights-flag-icon-bh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.monsterinsights-flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.monsterinsights-flag-icon-bi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.monsterinsights-flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.monsterinsights-flag-icon-bj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.monsterinsights-flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.monsterinsights-flag-icon-bl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.monsterinsights-flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.monsterinsights-flag-icon-bm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.monsterinsights-flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.monsterinsights-flag-icon-bn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.monsterinsights-flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.monsterinsights-flag-icon-bo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.monsterinsights-flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.monsterinsights-flag-icon-bq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.monsterinsights-flag-icon-br{background-image:url(../flags/4x3/br.svg)}.monsterinsights-flag-icon-br.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.monsterinsights-flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.monsterinsights-flag-icon-bs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.monsterinsights-flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.monsterinsights-flag-icon-bt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.monsterinsights-flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.monsterinsights-flag-icon-bv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.monsterinsights-flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.monsterinsights-flag-icon-bw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.monsterinsights-flag-icon-by{background-image:url(../flags/4x3/by.svg)}.monsterinsights-flag-icon-by.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.monsterinsights-flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.monsterinsights-flag-icon-bz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.monsterinsights-flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.monsterinsights-flag-icon-ca.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.monsterinsights-flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.monsterinsights-flag-icon-cc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.monsterinsights-flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.monsterinsights-flag-icon-cd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.monsterinsights-flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.monsterinsights-flag-icon-cf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.monsterinsights-flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.monsterinsights-flag-icon-cg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.monsterinsights-flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.monsterinsights-flag-icon-ch.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.monsterinsights-flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.monsterinsights-flag-icon-ci.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.monsterinsights-flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.monsterinsights-flag-icon-ck.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.monsterinsights-flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.monsterinsights-flag-icon-cl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.monsterinsights-flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.monsterinsights-flag-icon-cm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.monsterinsights-flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.monsterinsights-flag-icon-cn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.monsterinsights-flag-icon-co{background-image:url(../flags/4x3/co.svg)}.monsterinsights-flag-icon-co.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.monsterinsights-flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.monsterinsights-flag-icon-cr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.monsterinsights-flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.monsterinsights-flag-icon-cu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.monsterinsights-flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.monsterinsights-flag-icon-cv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.monsterinsights-flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.monsterinsights-flag-icon-cw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.monsterinsights-flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.monsterinsights-flag-icon-cx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.monsterinsights-flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.monsterinsights-flag-icon-cy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.monsterinsights-flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.monsterinsights-flag-icon-cz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.monsterinsights-flag-icon-de{background-image:url(../flags/4x3/de.svg)}.monsterinsights-flag-icon-de.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.monsterinsights-flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.monsterinsights-flag-icon-dj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.monsterinsights-flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.monsterinsights-flag-icon-dk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.monsterinsights-flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.monsterinsights-flag-icon-dm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.monsterinsights-flag-icon-do{background-image:url(../flags/4x3/do.svg)}.monsterinsights-flag-icon-do.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.monsterinsights-flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.monsterinsights-flag-icon-dz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.monsterinsights-flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.monsterinsights-flag-icon-ec.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.monsterinsights-flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.monsterinsights-flag-icon-ee.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.monsterinsights-flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.monsterinsights-flag-icon-eg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.monsterinsights-flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.monsterinsights-flag-icon-eh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.monsterinsights-flag-icon-er{background-image:url(../flags/4x3/er.svg)}.monsterinsights-flag-icon-er.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.monsterinsights-flag-icon-es{background-image:url(../flags/4x3/es.svg)}.monsterinsights-flag-icon-es.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.monsterinsights-flag-icon-et{background-image:url(../flags/4x3/et.svg)}.monsterinsights-flag-icon-et.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.monsterinsights-flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.monsterinsights-flag-icon-fi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.monsterinsights-flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.monsterinsights-flag-icon-fj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.monsterinsights-flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.monsterinsights-flag-icon-fk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.monsterinsights-flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.monsterinsights-flag-icon-fm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.monsterinsights-flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.monsterinsights-flag-icon-fo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.monsterinsights-flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.monsterinsights-flag-icon-fr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.monsterinsights-flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.monsterinsights-flag-icon-ga.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.monsterinsights-flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.monsterinsights-flag-icon-gb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.monsterinsights-flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.monsterinsights-flag-icon-gd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.monsterinsights-flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.monsterinsights-flag-icon-ge.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.monsterinsights-flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.monsterinsights-flag-icon-gf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.monsterinsights-flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.monsterinsights-flag-icon-gg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.monsterinsights-flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.monsterinsights-flag-icon-gh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.monsterinsights-flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.monsterinsights-flag-icon-gi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.monsterinsights-flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.monsterinsights-flag-icon-gl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.monsterinsights-flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.monsterinsights-flag-icon-gm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.monsterinsights-flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.monsterinsights-flag-icon-gn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.monsterinsights-flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.monsterinsights-flag-icon-gp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.monsterinsights-flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.monsterinsights-flag-icon-gq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.monsterinsights-flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.monsterinsights-flag-icon-gr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.monsterinsights-flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.monsterinsights-flag-icon-gs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.monsterinsights-flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.monsterinsights-flag-icon-gt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.monsterinsights-flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.monsterinsights-flag-icon-gu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.monsterinsights-flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.monsterinsights-flag-icon-gw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.monsterinsights-flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.monsterinsights-flag-icon-gy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.monsterinsights-flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.monsterinsights-flag-icon-hk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.monsterinsights-flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.monsterinsights-flag-icon-hm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.monsterinsights-flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.monsterinsights-flag-icon-hn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.monsterinsights-flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.monsterinsights-flag-icon-hr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.monsterinsights-flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.monsterinsights-flag-icon-ht.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.monsterinsights-flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.monsterinsights-flag-icon-hu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.monsterinsights-flag-icon-id{background-image:url(../flags/4x3/id.svg)}.monsterinsights-flag-icon-id.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.monsterinsights-flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.monsterinsights-flag-icon-ie.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.monsterinsights-flag-icon-il{background-image:url(../flags/4x3/il.svg)}.monsterinsights-flag-icon-il.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.monsterinsights-flag-icon-im{background-image:url(../flags/4x3/im.svg)}.monsterinsights-flag-icon-im.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.monsterinsights-flag-icon-in{background-image:url(../flags/4x3/in.svg)}.monsterinsights-flag-icon-in.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.monsterinsights-flag-icon-io{background-image:url(../flags/4x3/io.svg)}.monsterinsights-flag-icon-io.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.monsterinsights-flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.monsterinsights-flag-icon-iq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.monsterinsights-flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.monsterinsights-flag-icon-ir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.monsterinsights-flag-icon-is{background-image:url(../flags/4x3/is.svg)}.monsterinsights-flag-icon-is.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.monsterinsights-flag-icon-it{background-image:url(../flags/4x3/it.svg)}.monsterinsights-flag-icon-it.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.monsterinsights-flag-icon-je{background-image:url(../flags/4x3/je.svg)}.monsterinsights-flag-icon-je.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.monsterinsights-flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.monsterinsights-flag-icon-jm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.monsterinsights-flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.monsterinsights-flag-icon-jo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.monsterinsights-flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.monsterinsights-flag-icon-jp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.monsterinsights-flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.monsterinsights-flag-icon-ke.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.monsterinsights-flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.monsterinsights-flag-icon-kg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.monsterinsights-flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.monsterinsights-flag-icon-kh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.monsterinsights-flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.monsterinsights-flag-icon-ki.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.monsterinsights-flag-icon-km{background-image:url(../flags/4x3/km.svg)}.monsterinsights-flag-icon-km.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.monsterinsights-flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.monsterinsights-flag-icon-kn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.monsterinsights-flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.monsterinsights-flag-icon-kp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.monsterinsights-flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.monsterinsights-flag-icon-kr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.monsterinsights-flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.monsterinsights-flag-icon-kw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.monsterinsights-flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.monsterinsights-flag-icon-ky.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.monsterinsights-flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.monsterinsights-flag-icon-kz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.monsterinsights-flag-icon-la{background-image:url(../flags/4x3/la.svg)}.monsterinsights-flag-icon-la.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.monsterinsights-flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.monsterinsights-flag-icon-lb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.monsterinsights-flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.monsterinsights-flag-icon-lc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.monsterinsights-flag-icon-li{background-image:url(../flags/4x3/li.svg)}.monsterinsights-flag-icon-li.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.monsterinsights-flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.monsterinsights-flag-icon-lk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.monsterinsights-flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.monsterinsights-flag-icon-lr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.monsterinsights-flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.monsterinsights-flag-icon-ls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.monsterinsights-flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.monsterinsights-flag-icon-lt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.monsterinsights-flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.monsterinsights-flag-icon-lu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.monsterinsights-flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.monsterinsights-flag-icon-lv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.monsterinsights-flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.monsterinsights-flag-icon-ly.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.monsterinsights-flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.monsterinsights-flag-icon-ma.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.monsterinsights-flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.monsterinsights-flag-icon-mc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.monsterinsights-flag-icon-md{background-image:url(../flags/4x3/md.svg)}.monsterinsights-flag-icon-md.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.monsterinsights-flag-icon-me{background-image:url(../flags/4x3/me.svg)}.monsterinsights-flag-icon-me.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.monsterinsights-flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.monsterinsights-flag-icon-mf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.monsterinsights-flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.monsterinsights-flag-icon-mg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.monsterinsights-flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.monsterinsights-flag-icon-mh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.monsterinsights-flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.monsterinsights-flag-icon-mk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.monsterinsights-flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.monsterinsights-flag-icon-ml.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.monsterinsights-flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.monsterinsights-flag-icon-mm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.monsterinsights-flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.monsterinsights-flag-icon-mn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.monsterinsights-flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.monsterinsights-flag-icon-mo.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.monsterinsights-flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.monsterinsights-flag-icon-mp.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.monsterinsights-flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.monsterinsights-flag-icon-mq.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.monsterinsights-flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.monsterinsights-flag-icon-mr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.monsterinsights-flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.monsterinsights-flag-icon-ms.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.monsterinsights-flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.monsterinsights-flag-icon-mt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.monsterinsights-flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.monsterinsights-flag-icon-mu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.monsterinsights-flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.monsterinsights-flag-icon-mv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.monsterinsights-flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.monsterinsights-flag-icon-mw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.monsterinsights-flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.monsterinsights-flag-icon-mx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.monsterinsights-flag-icon-my{background-image:url(../flags/4x3/my.svg)}.monsterinsights-flag-icon-my.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.monsterinsights-flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.monsterinsights-flag-icon-mz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.monsterinsights-flag-icon-na{background-image:url(../flags/4x3/na.svg)}.monsterinsights-flag-icon-na.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.monsterinsights-flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.monsterinsights-flag-icon-nc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.monsterinsights-flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.monsterinsights-flag-icon-ne.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.monsterinsights-flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.monsterinsights-flag-icon-nf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.monsterinsights-flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.monsterinsights-flag-icon-ng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.monsterinsights-flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.monsterinsights-flag-icon-ni.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.monsterinsights-flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.monsterinsights-flag-icon-nl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.monsterinsights-flag-icon-no{background-image:url(../flags/4x3/no.svg)}.monsterinsights-flag-icon-no.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.monsterinsights-flag-icon-np{background-image:url(../flags/4x3/np.svg)}.monsterinsights-flag-icon-np.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.monsterinsights-flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.monsterinsights-flag-icon-nr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.monsterinsights-flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.monsterinsights-flag-icon-nu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.monsterinsights-flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.monsterinsights-flag-icon-nz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.monsterinsights-flag-icon-om{background-image:url(../flags/4x3/om.svg)}.monsterinsights-flag-icon-om.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.monsterinsights-flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.monsterinsights-flag-icon-pa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.monsterinsights-flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.monsterinsights-flag-icon-pe.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.monsterinsights-flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.monsterinsights-flag-icon-pf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.monsterinsights-flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.monsterinsights-flag-icon-pg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.monsterinsights-flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.monsterinsights-flag-icon-ph.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.monsterinsights-flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.monsterinsights-flag-icon-pk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.monsterinsights-flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.monsterinsights-flag-icon-pl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.monsterinsights-flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.monsterinsights-flag-icon-pm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.monsterinsights-flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.monsterinsights-flag-icon-pn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.monsterinsights-flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.monsterinsights-flag-icon-pr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.monsterinsights-flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.monsterinsights-flag-icon-ps.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.monsterinsights-flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.monsterinsights-flag-icon-pt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.monsterinsights-flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.monsterinsights-flag-icon-pw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.monsterinsights-flag-icon-py{background-image:url(../flags/4x3/py.svg)}.monsterinsights-flag-icon-py.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.monsterinsights-flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.monsterinsights-flag-icon-qa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.monsterinsights-flag-icon-re{background-image:url(../flags/4x3/re.svg)}.monsterinsights-flag-icon-re.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.monsterinsights-flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.monsterinsights-flag-icon-ro.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.monsterinsights-flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.monsterinsights-flag-icon-rs.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.monsterinsights-flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.monsterinsights-flag-icon-ru.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.monsterinsights-flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.monsterinsights-flag-icon-rw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.monsterinsights-flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.monsterinsights-flag-icon-sa.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.monsterinsights-flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.monsterinsights-flag-icon-sb.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.monsterinsights-flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.monsterinsights-flag-icon-sc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.monsterinsights-flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.monsterinsights-flag-icon-sd.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.monsterinsights-flag-icon-se{background-image:url(../flags/4x3/se.svg)}.monsterinsights-flag-icon-se.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.monsterinsights-flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.monsterinsights-flag-icon-sg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.monsterinsights-flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.monsterinsights-flag-icon-sh.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.monsterinsights-flag-icon-si{background-image:url(../flags/4x3/si.svg)}.monsterinsights-flag-icon-si.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.monsterinsights-flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.monsterinsights-flag-icon-sj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.monsterinsights-flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.monsterinsights-flag-icon-sk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.monsterinsights-flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.monsterinsights-flag-icon-sl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.monsterinsights-flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.monsterinsights-flag-icon-sm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.monsterinsights-flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.monsterinsights-flag-icon-sn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.monsterinsights-flag-icon-so{background-image:url(../flags/4x3/so.svg)}.monsterinsights-flag-icon-so.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.monsterinsights-flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.monsterinsights-flag-icon-sr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.monsterinsights-flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.monsterinsights-flag-icon-ss.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.monsterinsights-flag-icon-st{background-image:url(../flags/4x3/st.svg)}.monsterinsights-flag-icon-st.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.monsterinsights-flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.monsterinsights-flag-icon-sv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.monsterinsights-flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.monsterinsights-flag-icon-sx.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.monsterinsights-flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.monsterinsights-flag-icon-sy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.monsterinsights-flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.monsterinsights-flag-icon-sz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.monsterinsights-flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.monsterinsights-flag-icon-tc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.monsterinsights-flag-icon-td{background-image:url(../flags/4x3/td.svg)}.monsterinsights-flag-icon-td.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.monsterinsights-flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.monsterinsights-flag-icon-tf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.monsterinsights-flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.monsterinsights-flag-icon-tg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.monsterinsights-flag-icon-th{background-image:url(../flags/4x3/th.svg)}.monsterinsights-flag-icon-th.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.monsterinsights-flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.monsterinsights-flag-icon-tj.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.monsterinsights-flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.monsterinsights-flag-icon-tk.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.monsterinsights-flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.monsterinsights-flag-icon-tl.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.monsterinsights-flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.monsterinsights-flag-icon-tm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.monsterinsights-flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.monsterinsights-flag-icon-tn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.monsterinsights-flag-icon-to{background-image:url(../flags/4x3/to.svg)}.monsterinsights-flag-icon-to.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.monsterinsights-flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.monsterinsights-flag-icon-tr.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.monsterinsights-flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.monsterinsights-flag-icon-tt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.monsterinsights-flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.monsterinsights-flag-icon-tv.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.monsterinsights-flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.monsterinsights-flag-icon-tw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.monsterinsights-flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.monsterinsights-flag-icon-tz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.monsterinsights-flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.monsterinsights-flag-icon-ua.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.monsterinsights-flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.monsterinsights-flag-icon-ug.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.monsterinsights-flag-icon-um{background-image:url(../flags/4x3/um.svg)}.monsterinsights-flag-icon-um.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.monsterinsights-flag-icon-us{background-image:url(../flags/4x3/us.svg)}.monsterinsights-flag-icon-us.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.monsterinsights-flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.monsterinsights-flag-icon-uy.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.monsterinsights-flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.monsterinsights-flag-icon-uz.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.monsterinsights-flag-icon-va{background-image:url(../flags/4x3/va.svg)}.monsterinsights-flag-icon-va.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.monsterinsights-flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.monsterinsights-flag-icon-vc.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.monsterinsights-flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.monsterinsights-flag-icon-ve.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.monsterinsights-flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.monsterinsights-flag-icon-vg.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.monsterinsights-flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.monsterinsights-flag-icon-vi.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.monsterinsights-flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.monsterinsights-flag-icon-vn.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.monsterinsights-flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.monsterinsights-flag-icon-vu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.monsterinsights-flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.monsterinsights-flag-icon-wf.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.monsterinsights-flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.monsterinsights-flag-icon-ws.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.monsterinsights-flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.monsterinsights-flag-icon-ye.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.monsterinsights-flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.monsterinsights-flag-icon-yt.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.monsterinsights-flag-icon-za{background-image:url(../flags/4x3/za.svg)}.monsterinsights-flag-icon-za.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.monsterinsights-flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.monsterinsights-flag-icon-zm.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.monsterinsights-flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.monsterinsights-flag-icon-zw.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.monsterinsights-flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.monsterinsights-flag-icon-es-ct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.monsterinsights-flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.monsterinsights-flag-icon-eu.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.monsterinsights-flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.monsterinsights-flag-icon-gb-eng.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.monsterinsights-flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.monsterinsights-flag-icon-gb-nir.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.monsterinsights-flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.monsterinsights-flag-icon-gb-sct.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.monsterinsights-flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.monsterinsights-flag-icon-gb-wls.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.monsterinsights-flag-icon-un{background-image:url(../flags/4x3/un.svg)}.monsterinsights-flag-icon-un.monsterinsights-flag-icon-squared{background-image:url(../flags/1x1/un.svg)}.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08)}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);animation:fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:28px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0px;line-height:16px;height:28px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9)}.flatpickr-months .flatpickr-prev-month.disabled,.flatpickr-months .flatpickr-next-month.disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{left:0}.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{right:0}.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill 0.1s;transition:fill 0.1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:6.16px 0 0 0;line-height:1;height:28px;display:inline-block;text-align:center;-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px)}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:0.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 0.5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0px, 0px, 0px);transform:translate3d(0px, 0px, 0px);opacity:1}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6}.flatpickr-day.disabled,.flatpickr-day.disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.disabled,.flatpickr-day.disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7, 5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7, 5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{display:inline-block;float:left}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;display:inline-block;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#f3f3f3}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0, -20px, 0);transform:translate3d(0, -20px, 0);}to{opacity:1;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0, -20px, 0);transform:translate3d(0, -20px, 0);}to{opacity:1;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}}.tooltipster-base{display:flex;pointer-events:none;position:absolute}.tooltipster-box{flex:1 1 auto}.tooltipster-content{box-sizing:border-box;max-height:100%;max-width:100%;overflow:auto}.tooltipster-ruler{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;visibility:hidden}.tooltipster-fade{opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;-ms-transition-property:opacity;transition-property:opacity}.tooltipster-fade.tooltipster-show{opacity:1}.tooltipster-grow{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);-ms-transform:scale(0,0);transform:scale(0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-backface-visibility:hidden}.tooltipster-grow.tooltipster-show{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);-ms-transform:scale(1,1);transform:scale(1,1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-moz-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-ms-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-o-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15)}.tooltipster-swing{opacity:0;-webkit-transform:rotateZ(4deg);-moz-transform:rotateZ(4deg);-o-transform:rotateZ(4deg);-ms-transform:rotateZ(4deg);transform:rotateZ(4deg);-webkit-transition-property:-webkit-transform, opacity;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform}.tooltipster-swing.tooltipster-show{opacity:1;-webkit-transform:rotateZ(0deg);-moz-transform:rotateZ(0deg);-o-transform:rotateZ(0deg);-ms-transform:rotateZ(0deg);transform:rotateZ(0deg);-webkit-transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 1);-webkit-transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 2.4);-moz-transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 2.4);-ms-transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 2.4);-o-transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 2.4);transition-timing-function:cubic-bezier(0.230, 0.635, 0.495, 2.4)}.tooltipster-fall{-webkit-transition-property:top;-moz-transition-property:top;-o-transition-property:top;-ms-transition-property:top;transition-property:top;-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-moz-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-ms-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-o-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15)}.tooltipster-fall.tooltipster-initial{top:0 !important}.tooltipster-fall.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;top:0 !important;opacity:0}.tooltipster-slide{-webkit-transition-property:left;-moz-transition-property:left;-o-transition-property:left;-ms-transition-property:left;transition-property:left;-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1);-webkit-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-moz-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-ms-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);-o-transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15);transition-timing-function:cubic-bezier(0.175, 0.885, 0.320, 1.15)}.tooltipster-slide.tooltipster-initial{left:-40px !important}.tooltipster-slide.tooltipster-dying{-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;-ms-transition-property:all;transition-property:all;left:0 !important;opacity:0}@keyframes tooltipster-fading{0%{opacity:0;}100%{opacity:1;}}.tooltipster-update-fade{animation:tooltipster-fading 400ms}@keyframes tooltipster-rotating{25%{transform:rotate(-2deg);}75%{transform:rotate(2deg);}100%{transform:rotate(0);}}.tooltipster-update-rotate{animation:tooltipster-rotating 600ms}@keyframes tooltipster-scaling{50%{transform:scale(1.1);}100%{transform:scale(1);}}.tooltipster-update-scale{animation:tooltipster-scaling 600ms}.tooltipster-sidetip .tooltipster-box{background:#565656;border:2px solid black;border-radius:4px}.tooltipster-sidetip.tooltipster-bottom .tooltipster-box{margin-top:8px}.tooltipster-sidetip.tooltipster-left .tooltipster-box{margin-right:8px}.tooltipster-sidetip.tooltipster-right .tooltipster-box{margin-left:8px}.tooltipster-sidetip.tooltipster-top .tooltipster-box{margin-bottom:8px}.tooltipster-sidetip .tooltipster-content{color:white;line-height:18px;padding:6px 14px}.tooltipster-sidetip .tooltipster-arrow{overflow:hidden;position:absolute}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow{height:10px;margin-left:-10px;top:0;width:20px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow{height:20px;margin-top:-10px;right:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow{height:20px;margin-top:-10px;left:0;top:0;width:10px}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow{bottom:0;height:10px;margin-left:-10px;width:20px}.tooltipster-sidetip .tooltipster-arrow-background,.tooltipster-sidetip .tooltipster-arrow-border{height:0;position:absolute;width:0}.tooltipster-sidetip .tooltipster-arrow-background{border:10px solid transparent}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#565656;left:0;top:3px}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#565656;left:-3px;top:0}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{border-right-color:#565656;left:3px;top:0}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#565656;left:0;top:-3px}.tooltipster-sidetip .tooltipster-arrow-border{border:10px solid transparent;left:0;top:0}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:black}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border{border-left-color:black}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border{border-right-color:black}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{border-top-color:black}.tooltipster-sidetip .tooltipster-arrow-uncropped{position:relative}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped{top:-10px}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped{left:-10px}
 
assets/flags/4x3/ad.svg DELETED
@@ -1,150 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icon-css-ad" viewBox="0 0 640 480">
2
- <path fill="#d0103a" d="M0 0h640v480H0z"/>
3
- <path fill="#fedf00" d="M0 0h435.2v480H0z"/>
4
- <path fill="#0018a8" d="M0 0h204.8v480H0z"/>
5
- <path fill="#c7b37f" d="M300.4 136.6c7.7 0 10.9 6.6 18.6 6.6 4.7 0 7.5-1.5 11.7-3.9 2.9-1.6 4.7-2.5 8-2.5 3.4 0 5.5 1 7.3 4 1 1.6 1.8 4.9 1.3 6.7a40 40 0 0 1-2.7 8.3c-.7 1.6-1.3 2.5-1.3 4.2 0 4.1 5.6 5.5 9.4 5.6.8 0 7.7 0 12-4.2-2.3-.1-4.9-2-4.9-4.3 0-2.6 1.8-4.3 4.3-5.1.5-.1 1.3.3 1.7 0 .7-.3.4-1 1-1.4 1.2-1 2-1.6 3.6-1.6 1 0 1.6.1 2.5.7.4.4.6.8 1 .8 1.2 0 1.8-.8 3-.8a5 5 0 0 1 2.3.6c.6.3.6 1.5 1.4 1.5.4 0 2.4-.9 3.5-.9 2.2 0 3.4.8 4.8 2.5.4.5.6 1.4 1 1.4a6.2 6.2 0 0 1 4.8 3c.3.4.7 1.4 1.1 1.5.6.3 1 .2 1.7.7a6 6 0 0 1 2.8 4.8c0 .7-.3 1.6-.5 2.2-1.8 6.5-6.3 8.6-10.8 14.3-2 2.4-3.5 4.3-3.5 7.4 0 .7 1 2.1 1.3 2.7-.2-1.4.5-3.2 2-3.3a4 4 0 0 1 4 3.6 4.5 4.5 0 0 1-.3 1.8 9.6 9.6 0 0 1 4-1.4h1.9c3.3 0 7 1.9 9.3 3.8a21 21 0 0 1 7.3 16.8c-.8 5.2-.3 14.8-13.8 18.6 2.5 1 4.2 3 4.2 5.2a4.5 4.5 0 0 1-4.4 4.7 4.4 4.4 0 0 1-3.5-1.4c-2.8 2.8-3.3 5.7-3.3 9.7 0 2.4.4 3.8 1.4 6 1 2.2 1.8 3.5 3.7 5.1 1-1.5 2.1-2.6 4-2.6 1.7 0 3.2.6 3.9 2.2.2.5 0 .9.3 1.4.3.6.8.7 1.1 1.3.5 1 0 1.8.5 2.7.3.7.9.8 1.2 1.4.4 1 .5 1.6.5 2.7 0 3-2.7 5.2-5.7 5.2-1 0-1.4-.4-2.3-.3 1.7 1.7 3 2.5 4.3 4.5a17.7 17.7 0 0 1 3 10.3 22 22 0 0 1-2.8 11.2 20 20 0 0 1-7 8.5 35 35 0 0 1-16 6.4 74.4 74.4 0 0 1-11 1.4l-14.1.8c-7.2.4-12.2 1.5-17.3 6.6 2.4 1.7 4 3.5 4 6.4 0 3-1.8 5.3-4.7 6.2-.7.2-1.2 0-1.9.4s-.7 1.3-1.4 1.7a6.2 6.2 0 0 1-3.8 1 8 8 0 0 1-6.4-2.5c-2.2 1.8-3 3.4-5.5 4.9-.8.4-1.2 1-2.1 1-1.5 0-2.2-1-3.4-1.8a23 23 0 0 1-4.4-4c-2.3 1.3-3.6 2.4-6.3 2.4a7 7 0 0 1-4-1c-.6-.5-.8-1.2-1.5-1.6-.7-.5-1.3-.3-2.1-.7-3-1.3-5-3.5-5-6.8 0-2.9 1.8-4.7 4.4-6-5-5-10-5.8-17-6.2l-14-.8c-4.4-.3-6.8-.7-11-1.4-3.3-.5-5.2-.7-8.2-2.1-10.2-4.8-16.8-11.3-18-22.5-.2-1-.2-1.5-.2-2.5 0-5.8 2.3-9.4 6.4-13.5-1-.3-1.7 0-2.8-.3-2.5-1-4.4-2.7-4.4-5.5 0-1 0-1.7.5-2.6.4-.6 1-.7 1.2-1.4.2-1 0-1.6.4-2.5.3-.5.8-.6 1-1.2 1-1.9 2-3.4 4.1-3.4 1.8 0 3 1 3.8 2.5 1.8-.8 2.2-2.1 3.2-3.7a15.5 15.5 0 0 0 1.4-13.3c-.4-1.5-.6-2.5-1.8-3.7-1 1-2 1.4-3.4 1.4-2.9 0-5-2.5-5-5.3a4.8 4.8 0 0 1 3-4.6c-1.6-1.4-3-1.5-4.7-2.6-2.6-1.6-3.5-3.4-5.2-6-1.2-1.6-1.5-2.8-2-4.7a19 19 0 0 1-1-7.8c.6-5 1.5-8 4.6-11.9 1.8-2.3 3-3.7 5.8-4.9 2.3-1 3.7-1.7 6.2-1.7l2 .1a6.9 6.9 0 0 1 2.8.8c.4.2 1.1.9 1.1.4s-.3-.8-.3-1.3c0-2 1.5-4 3.6-4 1.5 0 2.1 1.4 2.9 2.7.4-.8.7-1.4.7-2.3 0-3.4-1.9-5.2-4-7.9-4.7-5.8-10.5-8.5-10.5-16 0-2.2 1-3.7 3-4.9.5-.3 1.3 0 1.8-.3s.4-1 .7-1.4c.5-.7 1-1 1.6-1.6 1-1 2-.6 3.1-1.5.6-.4.8-1 1.2-1.4 1.3-1.6 2.5-2.4 4.6-2.4 1 0 1.6 0 2.5.4l1 .5c.3-.2.8-.8 1.5-1.1a4 4 0 0 1 2.2-.6c1.1 0 1.8.6 3 .6.3 0 .4-.4.8-.6 1-.7 1.5-1 2.7-1 1.2 0 1.8.3 2.8 1 1 .5 1 1.3 2 1.8.5.3 1 .2 1.5.4 2.6.9 4.5 2.6 4.5 5.3 0 1.5-.3 2.5-1.4 3.5-.9.7-1.7.6-2.8 1a16 16 0 0 0 11.3 3.5c4.2 0 9.3-1.7 9.3-5.9 0-2-1-3-1.8-4.8a18.8 18.8 0 0 1-2.1-8.5c0-2.8.3-4.5 1.9-6.7 1.6-2.3 3.6-2.9 6.5-2.9z"/>
6
- <g fill="none" stroke="#703d29">
7
- <path stroke-linejoin="round" stroke-width=".7" d="M272.4 159a3.6 3.6 0 0 0 2.4 2.4c.8.3 2.7.2 3.8-1.4 1-1.2 1-2.8.6-4a4.7 4.7 0 0 0-1.7-2.2l-5.1 5.2z"/>
8
- <path stroke-linecap="round" stroke-width=".7" d="M401 236.1c-1.2-2.9-4.3-1.6-4.4 0-.5 3.7 2.7 4.8 5 4.2a4 4 0 0 0 2.5-2c.6-1 .8-2.4.4-3.7a4.9 4.9 0 0 0-.8-1.6 5 5 0 0 0-1.3-1.2c-.9-.6-1.9-.6-3.4-.6-5.5 0-10.4 6.5-12 13.4-.6 2.2-1.3 7.3-.3 12a22.4 22.4 0 0 0 5.9 11.3 25.7 25.7 0 0 0 9.9 5.8 7.9 7.9 0 0 0 4 .1c3.2-.7 4.7-3.8 3-7-1.3-2.5-5.3-4-7.2-.6-.1.3-.4.9-.4 1.5 0 .9.4 2 1 2.4 1.5.9 3.8.6 3.7-2"/>
9
- <path stroke-width=".8" d="M383.8 274a11.3 11.3 0 0 1 6.6-3.7c3-.4 5.6.5 8.2 2a18.5 18.5 0 0 1 10.8 17c0 3.6-1 7.5-2 9.4-.8 1.7-3 9-15.3 14-7.1 3-18 3.6-25.7 4-10.4.3-20 .7-25.5 7.6"/>
10
- <g stroke-width=".7">
11
- <path d="M386.4 285.7c-.3-1 0-2.1.8-3.3 1.2-1.6 3.7-2.1 6-1a7.4 7.4 0 0 1 2.5 2.2l1.1 1.6c.7 1.1 1 2 1 2.5 2.5 7-1.4 14.5-6.5 17.6-4 2.4-8.7 3.4-14.4 4-2.5.4-4 .3-6.5.5h-9.6a70.1 70.1 0 0 0-7.2 0c-2.9.3-5 .4-7.6.8-1.6.2-3.4.5-5.4 1-.6 0-1.2.2-1.8.4l-1.2.3c-3.6 1.1-7 2.4-9.8 4.2-.8.5-1.8 1-2.5 1.7l-1.3 1.2c-2 2-3.9 4-4.4 6.7v1.6c0 1.8 1.4 4.3 5.4 5m5.5-170c.8 1.4 1.3 2.3.8 3.9-.6 1.7-1.8 2.8-3.6 2.8-4 0-6.3-4.8-4.5-7.8 3.2-5.3 9.3-2.3 15 .3-.3-1.3-.8-1.8-.7-3.5.1-4.2 3.2-6 4.5-10 .7-2.3 1-4.3-.7-6-1.5-1.3-3.2-1.3-5.1-.6-3.8 1.5-8.5 5.9-16.6 6-8.2-.1-12.8-4.5-16.7-6-2-.7-3.6-.7-5.1.7-1.7 1.6-1.4 3.6-.7 6 1.3 3.8 4.4 5.7 4.5 10 0 1.6-.4 2-.7 3.4 5.7-2.6 12-5.9 15-.3 1.7 3.2-.5 7.7-4.5 7.7-1.8 0-3-1-3.6-2.7-.4-1.5 0-2.8.8-4"/>
12
- <path stroke-linecap="round" d="M314.6 159.9a5.3 5.3 0 0 1 2.4 5c-.2 2.5-.8 3.1-2.8 4.5m2.4-3.8c-.1 1.5-.7 2.5-2.3 3.1"/>
13
- </g>
14
- <path fill="#c7b37f" stroke="none" d="M276.7 153.3l.7.5.8.8.5 1 .2.8v1.9l-.2.8-.5.6-.6.6-.9.5-1 .2-1 .2-1-.5-.9-.6-.5-.8-.4-1v-.4l4.8-4.6z"/>
15
- <path stroke-linecap="round" stroke-width=".7" d="M275.2 157.2c-.3-1.7-2.2-2-3-1-1.1 1.5-.3 4 2 4.7a4 4 0 0 0 3.9-1.4c1-1.3.9-2.8.5-4a4.5 4.5 0 0 0-1.7-2.2c-2.7-2-7.1-1.6-8.6 2-1.8 4.4 2.2 7.8 6 10.3 4.6 3.2 10 3.8 14 3.8 9.2-.1 16.2-4.5 20.7-7 1-.6 2.1-.5 2.7.2a2 2 0 0 1-.3 2.7"/>
16
- <path stroke-width=".7" d="M248 281.2l-2 .7-2 1.6-1 1.3-1.1 2-.5 1.5-.4 1.8-.2 1.4m19-10.1l-.1 1.8-.3 1.2-1 2.2-1.3 1.8-1.5 1.2-1.1.5-1.6.4"/>
17
- <path stroke-width=".8" d="M319.7 329.1c-.3 1.7-1.9 3.6-5.3 4.2l-.6.2"/>
18
- <path stroke-width=".9" d="M404.2 276.2a18.3 18.3 0 0 1 5.6 13.5c0 3.6-1 7.5-2 9.4-.8 1.7-3 9-15.3 14a85 85 0 0 1-25.6 4c-10.3.3-19.8.7-25.4 7.3"/>
19
- <path stroke-width=".6" d="M387.5 282.9c.8-1 3.5-2.4 5.8-1.1a6.2 6.2 0 0 1 2.3 2"/>
20
- <path stroke-width=".9" d="M401.6 273.8l1.4.5a7 7 0 0 0 4 0c2.8-.8 4.6-3.4 3.2-6.9a6 6 0 0 0-1.8-2.1"/>
21
- <path stroke-linecap="round" stroke-width=".7" d="M240.3 199.8c-2 1.1-3.3 1.4-4.8 3.1a28.1 28.1 0 0 0-2.6 6.8m46-51.7c0 1.8-1.2 2.8-3 3.2"/>
22
- <path stroke-width=".6" d="M397.1 192a19 19 0 0 1 18.6 19.8c0 16-9.9 18.5-13.8 19.6"/>
23
- <path stroke-width=".7" d="M398.4 192c8.1-.3 16.5 5.7 16.9 20.7.3 11.7-8 17-12 18"/>
24
- <path stroke-width=".6" d="M393.8 248.4l.1-1.6.6-2.5.7-2 .9-1.6 1-1.3m7.8-3.4v1.5l-.5 1-.7 1.1-.8.6-1.2.5h-1.1l-.8-.1m-14.3-52.8l.3-1.7.8-1.6 1-1.5 1.6-2.2 1.4-1.4 2-2.2 2-1.9 1.1-1.3 1.5-1.9 1.4-2 .8-1.7.5-2.2.1-2.7-.2-.8m-12.3 128.2l1.6-.4 1.2-.6.7-.7.5-.8.3-1.2v-.9m-158.2-12.1h2.7l1.6-.6m5-36.5l-.2 1.4-.4.6-.4.6-.7.5-.7.3-1 .1h-.6m9.9-15.5l-.3 2.1-.5 1-.8 1.2-1.2.9-1.2.6-2.3.5m15.3-39.7l-.5 1.3-.5 1-.8 1-1 1-1.2.5-1.1.3-.6-.1m.3-6.2v1"/>
25
- <g stroke-width=".6">
26
- <path stroke-linecap="round" d="M254.3 224a6.9 6.9 0 0 1-2.1 1.4m150.5 44.8l.5.2c1.4.8 4.2-.2 3.4-2.4"/>
27
- <path d="M397.8 239.6c1 1.3 2.9 1.7 4.4 1.3a4 4 0 0 0 2.5-2c.6-1 .8-2.4.4-3.7a4.9 4.9 0 0 0-.9-1.6 6.8 6.8 0 0 0-1.3-1.5l-.4-.2m6.4 34a4 4 0 0 0 .1-.7 4 4 0 0 0-1.3-3l-.8-.8m.4.5c0-1.8-1.5-3.2-3.4-3.5m-4.2 2.8l-1.3-1a15.7 15.7 0 0 1-4.3-10.7c0-4.2 1.6-8.4 3.6-10M341.2 324l1.8-1.6 1.2-1 2.3-1.4 2.2-1 1.6-.5 3-.6 3.6-.6m-29.5 19.4a17 17 0 0 1-7.6 6.1 17.7 17.7 0 0 1-7.6-6.1"/>
28
- <path stroke-linecap="round" d="M314.4 332.6a10 10 0 0 1-2.2 4.2"/>
29
- <path d="M314.7 330.5l-.4 2.2M312 337l-1 1-1.7.9-2 .6m-5.6-177.8c.3-.8.5-1.4.5-2.6-.1-4.2-3.2-6.1-4.5-10-.7-2.3-1-4.3.7-6 1.4-1.4 3.2-1.4 5-.6 4 1.5 8.6 5.8 16.7 6-8.1-.2-12.8-4.5-16.6-6-2-.8-3.8-1-5.3.5-1.7 1.6-1.2 3.8-.5 6.1 1.3 3.9 4.2 5.8 4.3 10 0 1.2-.3 1.8-.5 2.6M320 148c8-.4 14.9-5.8 17.1-6.3 2-.4 3-.2 4.5 1.1-1.4-1.3-3-1.2-5-.5-3.8 1.5-8.4 5.8-16.6 6m79.6 112.9a15.5 15.5 0 0 1-6.2-12.4c0-4.1 1.7-8.4 3.6-10m-70 97.6c-1.3 2-4.3 5-7.6 6.2a17.7 17.7 0 0 1-7.6-6.2"/>
30
- <path stroke-linecap="round" d="M306.7 163.7l2.3-1.3c1-.6 2.3-.5 2.9.2.6.7.7 2-.2 2.8"/>
31
- <path d="M294.7 169.3c5.5-1.2 10-3.6 13.4-5.5M340.3 328c.5.3.8 1 .8 1 .1.2.3.5.3.8.3 1.5-.7 2.4-2 2.6-1.7.2-3-.8-3.5-2M294.4 169c5.5-1.1 10-3.6 13.4-5.5m97.6 106.9c-1 .4-1.6.3-3-.2l-1.8-1a20.7 20.7 0 0 1-8.4-9 18.8 18.8 0 0 1-1.7-4.6 12 12 0 0 1-.5-3.3 25.6 25.6 0 0 1 4.7-15.3c1.1-1.6 2.1-2.5 4.2-2.6m-143.7-39.3a7.1 7.1 0 0 1 2.7 5.7c0 3.1-2.6 8.2-9 10a8.3 8.3 0 0 1-6.3-.8"/>
32
- <path d="M256.3 205.6c1.1.8 1.6 1.7 1.6 3.3 0 1-.7 2.4-1.9 3.7a12.4 12.4 0 0 1-8.8 4c-2 0-4-.4-6-1.7a9 9 0 0 1-3.8-5.4"/>
33
- <path d="M256.2 212.3c1.3 1.2 1.7 2.7 1.7 4.6 0 2.7-1.1 4.8-3.7 7-.6.6-1.2 1-2 1.5m129.5-22.1v3.5m-.3-4.4v5m.3-15.8v6.6m-.3-8v8.9m-1.9 82a18.7 18.7 0 0 1-4.2 5.6 19.6 19.6 0 0 1-5.8 4.1 24.6 24.6 0 0 1-6.6 2.2 33 33 0 0 1-6.8.9c-2.5 0-3.9 0-6.4-.2-2.6-.2-4-.6-6.7-.8-2.2-.2-3.4-.4-5.6-.3a28.3 28.3 0 0 0-11 1.8c-2.6 1-5.7 3-6.3 3.8a22 22 0 0 0-6.4-3.8 22 22 0 0 0-5.1-1.4c-2.3-.4-3.5-.4-5.8-.4-2.2 0-3.4.1-5.6.3-2.6.3-4 .6-6.7.8-2.5.2-3.9.3-6.4.2a33 33 0 0 1-13.4-3 19.5 19.5 0 0 1-6.4-4.8m42.1 53.4l1.8-.2m30.3-2.4l1.8-.1 1.7-.7 1.2-.8 1.7-2 .3-.6.3-1.7v-.8m47-136.7c.7-2.6-.2-5.4-2.8-5.3m-132 46.5a8.2 8.2 0 0 1-3.5 4.7m3.6-46.7a6.5 6.5 0 0 1-3.6 4c-1.9.8-4 0-5.2-.8"/>
34
- <path stroke-linecap="round" d="M243.8 202.4c1.5.8 3.1-.4 2.8-2.4a2.9 2.9 0 0 0-2.5-2.2"/>
35
- <path d="M250.2 286.6c.3.3.4.7.8.8.7.2 1.2.4 1.9-.5.8-1.1.3-2.8-.5-3.9a5 5 0 0 0-5.8-1c-.8.5-1.7 1-2.6 2.2l-1.1 1.6c-.7 1.1-1 2-1.1 2.4-2 5.9.4 12 4.1 15.7"/>
36
- <path stroke-linecap="round" d="M340.2 327.8l.7.8.2.9c.3 1.5-.7 2.4-2 2.6-1.6.2-2.8-.8-3.3-2"/>
37
- <path d="M389.4 154.8a7.4 7.4 0 0 1 6.3 7c0 4.4-1.5 6-3.8 9.2-2.5 3.4-10.7 9.6-10.7 16.7 0 4.3 1.2 7 4.3 8.4 2 1 4.3 0 5.4-1 2.6-2.4 1.5-6.5-1.2-7-3.2-.6-3.9 4.6-.7 4.3m17.9 69a3.7 3.7 0 0 0-3.6-3 3.7 3.7 0 0 0-3.7 3.7c0 1 .4 2 1 2.6"/>
38
- <path d="M383.9 195.1a7.1 7.1 0 0 0-2.7 5.7c0 3.1 2.6 8.2 9 10 2.4.7 4.8.6 6.2-.3m-156-10.3a9.4 9.4 0 0 0-4.8 3.5 16.9 16.9 0 0 0-2.2 12.7 15.8 15.8 0 0 0 2.3 5.6 8 8 0 0 0 1 1.2l1.2 1m64 92c4.9 2.1 8.4 3.7 11.4 8.5a10 10 0 0 1 1.2 4.9c0 2.7-1 5.7-3.3 7.6a8.3 8.3 0 0 1-6.7 2c-1.9-.2-3.7-1.6-4-2.6M254 224.1c2.7 2.2 3.9 4.2 3.9 7.5a8.4 8.4 0 0 1-4 7.5"/>
39
- <path stroke-linecap="round" d="M251.5 236.4c4 5.1 6.3 8.1 6.4 14.1.1 5.7-1.7 9.6-5 13.7"/>
40
- <path d="M329.8 169.3a4.1 4.1 0 0 0 1.5-2.2c.5-1.5.5-2.8-.2-4 1 1.4 1 2.5.7 4-.1 1-.8 1.5-1.6 2.3m51.5 86.1v16.2l-.1 2.5a34.4 34.4 0 0 1-.3 1.7"/>
41
- <path d="M381.4 254v19.9l-.5 2.6m.5-43v14.6m.3-13.4v11.8m0-26.8v8.8m-.3-9.9v11m.3-19v3.5m-.3-4.2v5m-1.8 65.2l-.4.7a18.7 18.7 0 0 1-4.1 5.7 19.6 19.6 0 0 1-5.9 4 24.6 24.6 0 0 1-6.5 2.2c-2.7.6-4.2.8-6.9.9-2.5 0-3.9 0-6.3-.2-2.7-.2-4.1-.5-6.8-.8-2.2-.2-3.4-.3-5.6-.3-2.2 0-3.5 0-5.7.4a22 22 0 0 0-5.2 1.4c-2.7 1.1-5.7 3-6.4 3.8-.6-.8-3.7-2.7-6.3-3.8a22 22 0 0 0-5.2-1.4c-2.2-.4-3.5-.4-5.8-.4-2.2 0-3.4.1-5.6.3-2.6.3-4 .6-6.7.8-2.5.2-3.9.3-6.3.2a33 33 0 0 1-13.5-3 19.5 19.5 0 0 1-5.8-4.1 22 22 0 0 1-2.5-2.8m-2-3.2a10.1 10.1 0 0 1-2.3 7.7c-.8.9-2.6 2.6-5 2.6-3.7 0-4.8-2.5-5-3.2"/>
42
- <path d="M255.6 278.9c.7.7 1.3 1.5 1.9 2.5 1 1.8.6 4.8-.1 6.2a4.4 4.4 0 0 1-.3.4m-20.3 18c2.3 2.4 5.7 5 10.9 7.1 7.1 3 18.1 3.6 25.7 4 10 .3 19.3.7 25 7m17.3-4a12 12 0 0 1 4 5.5m-7.3 11.5a8.2 8.2 0 0 1-.7.7 8.3 8.3 0 0 1-6.6 2c-2-.2-3.8-1.6-4.3-2.6m-5.4-2.9l.3.4a7.6 7.6 0 0 0 5.1 2.4m27 0a18 18 0 0 1-7.7 6.1 17.7 17.7 0 0 1-7.6-6.1l-.3-.5m15.6.4l.7.7a8.3 8.3 0 0 0 6.7 2 5.5 5.5 0 0 0 4-2.5l.5-.7"/>
43
- <path d="M339 336.6l-.7 1.2-1.1 1-1.7.7h-1.6"/>
44
- <path d="M343 325.3a7.7 7.7 0 0 1 2.4 2.9c.3.7.4 1.5.5 2.3a5.8 5.8 0 0 1-1.5 4.2 7.5 7.5 0 0 1-5.4 2.4 5.5 5.5 0 0 1-.4 0m.2-.2a6.8 6.8 0 0 1-5.2-2.2m63.7-67.9a23.8 23.8 0 0 1-4.8-6.4 18.8 18.8 0 0 1-1.7-4.5 12 12 0 0 1-.5-3.3 26 26 0 0 1 4.6-15.3c.7-.8 1.4-1.8 2.1-2.2m-1.3-75.9c2.5.2 4.8 3 4.8 5.7 0 3.8-1.3 5.5-4.4 9.3-2.6 3.2-10.6 9-10.3 14.5 0 1 .5 2 1.1 2.8m-3.2 3.5a7 7 0 0 0 2 1.4 5 5 0 0 0 4.3-.3M369 153a6 6 0 0 1 2.2 2.6c1.8 4.5-2.2 7.9-6 10.4a21.3 21.3 0 0 1-8.3 3.3"/>
45
- <path d="M364.6 161.6a4.2 4.2 0 0 1-3.1-1.5 3.4 3.4 0 0 1-.7-1m-15 4.9a4.6 4.6 0 0 1-1.2-1c-1-1-1.5-2.3-.8-4.4.6-1.9 3.7-7.2 3.8-10.9.2-5.6-2-9-5.3-10.2"/>
46
- <path stroke-linecap="round" d="M347.3 146.5l-.1 2-.6 2.2-1 3-1 1.9-.8 1.9-.4 1.3-.2 1 .1.9m38 126.3l.6.8c.7 1 3.2 3 5.5 3 3.7 0 4.6-2.6 4.7-3.2.5-2.9-.5-3.6-2-4.5 0 0-.8-.4-1.9-.2"/>
47
- <path d="M237 274.4a6.9 6.9 0 0 1-3.7 0c-2.9-.9-5.2-3.6-4-7m13.4-31.8c.3.3.4.7.4 1 .4 3.8-2.8 4.8-5 4.2a5.6 5.6 0 0 1-3-2.3 4.7 4.7 0 0 1-.7-2.3m22-23.6c.6.5 1 1 1.3 1.7m-1.1-8.5c.5.4.9.9 1.1 1.3"/>
48
- <path stroke-linecap="round" d="M257.9 210.5a8.5 8.5 0 0 1-1.6 2.4 12.4 12.4 0 0 1-8.8 4c-2 0-4-.4-6-1.7a9.5 9.5 0 0 1-4-5.6"/>
49
- <path d="M255.4 195.3a7.8 7.8 0 0 1 2.4 3.4"/>
50
- <path stroke-linecap="round" d="M257.8 203.2c-.9 3-3.5 6.6-8.6 7.9-2.4.6-5.6-.2-6.6-1"/>
51
- <path d="M240 202.6c.3 2.6 2 4.6 5.4 4.6 4.7.1 7.6-6.7 3.4-11.5"/>
52
- <path stroke-linecap="round" d="M229.4 225.5c.7.9 1.5 1.7 2.4 2.4a16.8 16.8 0 0 0 6 3.3m5.2.5c4.2-.5 6.6-3.7 6-7.3-.3-2.8-2.8-5-4.6-5.1"/>
53
- <path d="M249.8 188.1c1.9 0 3 1.6 2.9 3"/>
54
- <path stroke-linecap="round" d="M249.4 163a11.5 11.5 0 0 0 5 5.9m144.2 31c1.7 2.3.6 7-4 7a5.2 5.2 0 0 1-4.5-2.5"/>
55
- <path d="M381.7 169.1V185"/>
56
- <path stroke-linecap="round" d="M243.8 202.3c1.4 1 3.3-.7 2.5-2.6-.5-1.2-2.2-2.6-4.7-.9-2.8 1.9-2 7.8 3.2 7.9 4.7 0 7.6-6.8 3.4-11.6-4-4.6-11.3-3.6-16 .2A21.4 21.4 0 0 0 225 207a22.5 22.5 0 0 0 0 9.2 20.9 20.9 0 0 0 3 7.5l1.3 1.7c.8.8 1 1.2 2 2a15 15 0 0 0 10.4 3.7c4.6-.2 7.3-3.4 6.8-7.3-.4-3.8-4.2-5.7-6.7-3.9-1.7 1.2-2.3 4.9.7 5.8 1.6.5 3.1-1.7 2-3M374 150.9c2.7-1.4 4.8-1.2 6.3 1a9.9 9.9 0 0 1 1.6 7.2 9.2 9.2 0 0 1-3.5 5.8"/>
57
- <path stroke-linecap="round" d="M380.5 152c3.1-2 6.5-1.1 8.3 1.6 1.3 2 1.7 3.6 1.6 6.1a11.2 11.2 0 0 1-5.7 9.2"/>
58
- <path d="M395 159.2c2.6.2 4.6 2.5 4.6 5.1 0 3.8-1 5.5-4 9.3-2.7 3.3-10.6 9-10.4 14.6 0 2.1 1.8 4 3.3 4.2"/>
59
- <path stroke-linecap="round" d="M395.4 202.3c-1.5 1-3.3-.6-2.5-2.4.5-1.2 2.2-2.8 4.7-1.1 2.7 1.9 2 7.8-3.3 7.9-4.7 0-8-6.6-3.4-11.6 4-4.6 11.7-3.7 16.5.1 2 1.6 6.1 6 7 12 1 7 .9 15.6-6.4 21-3 2.1-7 3.1-10.6 3-4.6-.2-7.3-3.5-6.8-7.4.5-3.8 4-5.4 6.7-3.9 2.8 1.5 2.3 5.4-.7 5.8-1.7.2-3.1-1.7-2-3"/>
60
- <path d="M392.9 199.9c.8-3.5 3.7-3.8 6.2-3.8 6.5.1 11.1 8 11.2 15.5 0 9.5-4 15.2-11 15.5-1.9 0-5-.8-5-3"/>
61
- <path stroke-linecap="square" d="M397 198.3c6.9 1.6 9.3 7.8 9.3 13.8 0 4.9-.5 11.6-10 13.9"/>
62
- <path d="M408.4 265.3a3.9 3.9 0 1 0-6.3 2.4"/>
63
- <path stroke-linecap="round" d="M394.4 259.4c1.4 2 3 4.1 6.3 6m-1.3 10.5c-3.2-2.2-9.5-5-15-2.2a7.6 7.6 0 0 0-4.4 4.4 10 10 0 0 0 1.8 9.5c.9 1 2.7 2.6 5 2.7 3.8 0 4.7-2.6 4.8-3.2.4-2.8-1.2-3.9-2-4.1-.7-.3-2.8-.2-3.2 1.3-.2.5-.2 1.3.2 2"/>
64
- <path stroke-linecap="round" d="M340.5 328.4c1 2.2-.2 3.2-1.6 3.4-2.2.3-3.3-1.4-3.4-3a4.4 4.4 0 0 1 4.3-4.7c2.3 0 4.1 1.5 5 3.5.3.7.5 1.5.5 2.4a5.8 5.8 0 0 1-1.4 4.1 7.5 7.5 0 0 1-5.4 2.5c-4.2.1-7.5-3.8-7.5-7.8 0-7.7 11.4-12 16-13a84 84 0 0 1 17.9-2.4c3.5-.1 6.2 0 10.1-.5 3.5-.3 5.4-.5 9-1.3a27.2 27.2 0 0 0 12.6-6.4c2.9-2.7 4.5-4.5 5.9-8.2a17 17 0 0 0-1.3-13.9 14.3 14.3 0 0 0-10.3-6.8c-3.7-.5-7 1.1-9 4.8-1 1.8-.6 4.8.1 6.2a6 6 0 0 0 4.8 3c3.8 0 4.7-2.6 4.8-3.2.4-2.8-1.2-3.9-2-4.2-.7-.2-2.8-.1-3.2 1.4-.2.5-.2 1.3.2 2"/>
65
- <path stroke-linecap="round" d="M337.2 316.2c-4.8 2.1-8.4 3.7-11.4 8.5a9.9 9.9 0 0 0-1.2 4.9c0 2.7 1.1 5.7 3.3 7.6a8.3 8.3 0 0 0 6.7 2c2-.2 3.7-1.6 4-2.6"/>
66
- <path d="M385.1 224.1c-2.3.8-3.9 4.2-3.9 7.5a8.4 8.4 0 0 0 4 7.5"/>
67
- <path stroke-linecap="round" d="M387.6 236.4c-4 5.1-6.3 8.1-6.4 14.1 0 5.7 1.7 9.6 5.1 13.7"/>
68
- <path d="M365.9 152l.3-.5c1.7-2.4 4.7-3.1 6.9-1.5 2.6 2 3.3 5.4 2.6 9-.5 2.2-2 4.1-4 5.5"/>
69
- <path stroke-linecap="round" d="M265.1 150.8c-2.6-1.2-4.7-1-6.3 1a8.7 8.7 0 0 0-1.6 7.2c.6 2.7 1.4 3.8 3.5 5.8"/>
70
- <path d="M258.6 152a5.8 5.8 0 0 0-8.3 1.6 9.1 9.1 0 0 0-1.6 6.1c.2 4.2 2.8 7.6 5.8 9.2"/>
71
- <path d="M249.7 154.8a6.8 6.8 0 0 0-6 6.6c0 4.5 1 6.3 3.5 9.6 2.5 3.4 10.7 9.6 10.7 16.7 0 4.3-1.2 7-4.3 8.4-2 1-4.3 0-5.4-1-2.6-2.4-1.5-6.5 1.2-7 3.3-.6 3.9 4.6.7 4.3"/>
72
- <path d="M244 159.2c-2.5.2-5 2.3-5 5 0 3.8 1.5 5.6 4.6 9.4 2.6 3.3 10.1 9 9.9 14.5 0 2-1.5 4.6-2.9 4.3"/>
73
- <path stroke-linecap="round" d="M238 236.1c1.3-2.9 4.4-1.6 4.6 0 .4 3.7-2.8 4.8-5.1 4.2a4 4 0 0 1-2.5-2 4.8 4.8 0 0 1-.4-3.7 4.9 4.9 0 0 1 .9-1.6 5 5 0 0 1 1.2-1.2c1-.6 1.9-.6 3.4-.6 5.5 0 10.4 6.5 12 13.4.6 2.2 1.3 7.3.3 12a22.4 22.4 0 0 1-5.8 11.3 25.8 25.8 0 0 1-10 5.8 7 7 0 0 1-3.9.1c-2.8-.9-4.6-3.5-3.2-7 1.2-2.6 5.4-4 7.3-.6.2.3.4.9.4 1.5 0 .9-.4 2-1 2.4-1.4.9-3.7.6-3.6-2"/>
74
- <path d="M233.8 270.4c1 .4 1.6.3 2.9-.2l1.8-1c2.6-1.5 5.6-3.8 8.4-9.1a18.8 18.8 0 0 0 1.7-4.5c.3-1 .5-2.2.6-3.3a25.6 25.6 0 0 0-4.8-15.3c-1.1-1.6-2-2.5-4.2-2.6m-9.5 31a3.9 3.9 0 1 1 6.3 2.3"/>
75
- <path d="M232.2 261.4a3.7 3.7 0 0 1 3.7-3 3.7 3.7 0 0 1 3.6 3.7 3.8 3.8 0 0 1-1 2.6"/>
76
- <path d="M239.4 261.3a15.5 15.5 0 0 0 6.2-12.4c0-4.1-1.6-8.4-3.6-10"/>
77
- <path stroke-linecap="round" d="M244.7 259.4a16.5 16.5 0 0 1-6.3 6"/>
78
- <path d="M254.6 273.7c-1-2.2-2.8-3.2-5.8-3.5-3-.3-5.5.5-8.2 1.9a18.6 18.6 0 0 0-10.8 17 25 25 0 0 0 2 9.5c.9 1.6 3 9 15.3 14a86.1 86.1 0 0 0 25.7 3.9c10.4.4 20 .8 25.6 7.6"/>
79
- <path stroke-linecap="round" d="M239.7 275.9c3.3-2.2 9.5-5 15.1-2.2a8 8 0 0 1 4.3 4.4 10 10 0 0 1-1.8 9.5c-.9 1-2.7 2.6-5 2.7-3.8 0-4.7-2.6-4.8-3.2-.4-2.8 1.2-3.9 2-4.2.7-.2 2.8-.1 3.2 1.4.2.5.2 1.3-.2 2"/>
80
- <path d="M252.7 285.7c.3-1 .2-2.2-.8-3.3a5.1 5.1 0 0 0-6-1c-.7.5-1.6 1-2.4 2.2-.4.4-1 1.1-1.2 1.6-.7 1.1-1 2-1 2.5-2.5 7 1.5 14.4 6.5 17.6 4.4 2.8 8.8 3.6 14.4 4 2.5.3 4 .3 6.5.5h9.6a70.1 70.1 0 0 1 7.2 0c3 .3 5.1.4 7.6.8 1.6.2 3.5.5 5.4 1 .6 0 1.2.2 1.8.4l1.2.3c3.6 1.1 7 2.4 9.8 4.2.8.5 1.8 1 2.5 1.7l1.3 1.2c2 2 4 4 4.4 6.7v1.6c0 1.8-1.4 4.3-5.3 5"/>
81
- <path d="M298.6 328.4c-1 2.2.2 3.2 1.6 3.4 2.2.3 3.3-1.4 3.5-3a4.4 4.4 0 0 0-4.4-4.7 5.5 5.5 0 0 0-5 3.5 6.9 6.9 0 0 0-.5 2.4 5.8 5.8 0 0 0 1.4 4.1 7.5 7.5 0 0 0 5.4 2.5c4.2.1 7.5-3.8 7.5-7.8 0-7.7-11.4-12-16-13a84 84 0 0 0-17.9-2.4c-3.5-.1-6.2 0-10.1-.5-3.5-.3-5.4-.5-9-1.3a27.2 27.2 0 0 1-12.5-6.4 17 17 0 0 1-4.7-22 14.3 14.3 0 0 1 10.3-6.9c3.8-.5 7 1.1 9 4.8 1 1.8.6 4.8-.1 6.2a6 6 0 0 1-4.8 3c-3.8 0-4.7-2.6-4.8-3.2-.4-2.8 1.2-3.9 2-4.2.7-.2 2.8-.1 3.2 1.4.2.5.2 1.3-.2 2"/>
82
- <path stroke-linecap="round" d="M273.3 152l-.4-.5c-1.7-2.4-4.7-3.1-6.9-1.5-2.6 2-3.3 5.4-2.5 9a9 9 0 0 0 4 5.5"/>
83
- <path d="M366.8 159.6c-4 4.4-8.1 5.8-14.1 6-2 0-5.5-.6-7.6-2.1-1.3-1-2.8-2.6-1.9-5.5.6-1.9 3.7-7.2 3.8-10.9.3-5.6-1.9-8.7-5.3-9.9-6.2-2.2-13 4-17 5.4-2.1.7-3.2.8-5.1.8-2 0-3-.1-5.2-.8-4-1.4-10.7-7.6-17-5.4-3.4 1.2-5.5 4.3-5.3 10 .1 3.6 3.2 9 3.8 10.8 1 2.9-.5 4.5-1.9 5.5-2 1.5-5.7 2.1-7.5 2-6-.1-10.1-1.5-14.1-5.9"/>
84
- <path stroke-linecap="round" d="M297.3 314.4c.8.3.2-.2 5.3 2a22 22 0 0 1 11.3 8.9 10.5 10.5 0 0 1 .9 7.3"/>
85
- <path d="M297.7 336a8 8 0 0 0 3.2.9c4.2.1 7.5-3.8 7.5-7.8 0-2.8-1.5-5.2-3.6-7"/>
86
- <path stroke-linecap="round" d="M298.6 328.4c-1 2.3.4 3.5 1.8 3.7 2.2.2 3.4-1.4 3.6-3a4.5 4.5 0 0 0-2.2-4.2"/>
87
- <path d="M390.1 154.8c3.2 0 6 3.6 6 7.2 0 4.3-2.2 6.9-3.9 8.8-1.3 1.6-2.7 3-4.4 4.7"/>
88
- <path stroke-linecap="round" d="M386.3 151.4a9 9 0 0 1 2.8 2.4c1.3 2 1.7 3.7 1.6 6.2-.2 4.2-3.2 7.1-6 9m-4.7-17.6l.6.7c1.9 2.2 2 5.4 1.6 7.2a8.2 8.2 0 0 1-3.8 5.4m-5-14.4c2.6 2 3.4 5.4 2.5 9-.6 2.5-2.2 4-4.2 5.2m11.1 41.1c.3 1 .9 1.3 1.5 2a13.5 13.5 0 0 0 6.2 3.5c2.4.7 4.6.2 6.3-.9m-163 54c1.2 0 2.5.9 3.3 2.3.1.2.4.8.4 1.5 0 .9-.4 1.8-1 2.2-1.5 1-4 .5-4-2"/>
89
- <path d="M241.5 231.3c5 1 9.7 6.9 11.2 13.3.6 2.3 1.3 7.3.3 12a22.4 22.4 0 0 1-6 11.4 16.5 16.5 0 0 1-2.1 1.9l-1 .7m-8-12.1c2 0 3.8 1.9 3.8 4a3.8 3.8 0 0 1-1 2.6"/>
90
- <path d="M234.6 260.7c2.1 0 4.1 2 4.1 4.2a3.9 3.9 0 0 1-1.4 3"/>
91
- <path stroke-linecap="round" d="M254 239.5a18 18 0 0 1 3.8 7.7m0 8.5a17.3 17.3 0 0 1-1.5 4 17.8 17.8 0 0 1-3.6 4.7"/>
92
- <path d="M254.3 224.3c1.8 1.5 3 3 3.5 4.8"/>
93
- <path stroke-linecap="round" d="M257.9 219.5a10 10 0 0 1-3.4 4.6m-9.2-17.2l2.2-.6 1.3-1 .8-1.1.7-1.8.3-1.5"/>
94
- <path d="M241 199.3c-.7.2-1.6.4-2.5.8a9 9 0 0 0-3.5 3 17 17 0 0 0-2.2 12.7 15.8 15.8 0 0 0 2.3 5.6l1 1.4c1.4 1.3 2.6 2 4.6 1.7"/>
95
- <path stroke-linecap="round" d="M253 189.8c-.3 1.3-1 2.9-3 2.7"/>
96
- <path d="M245.7 198.5c-2-1.9-6-2.4-10.1.2L234 200a8.8 8.8 0 0 0-1.4 1.6 17.5 17.5 0 0 0-2.4 5c-.7 3-.7 5.6-.6 6.3 0 1 .2 1.9.3 2.7.6 2.8 1.4 4.8 2.3 6.2.9 1.5 3 5 7.7 5.4 1.8.1 4.8-.7 5-3"/>
97
- <path stroke-linecap="round" d="M363.8 157c.3-1.6 2.3-1.9 3-1 1.2 1.6.4 4.2-2 4.9a4 4 0 0 1-3.8-1.4c-1-1.3-.9-2.8-.5-4 .2-.8.9-1.5 1.7-2.2 2.7-2 7.1-1.6 8.6 2 1.8 4.4-2.2 7.8-6 10.3-4.6 3.2-10 3.8-14 3.7-9.2 0-16.1-4.4-20.7-7-1-.5-2.1-.4-2.7.3a2 2 0 0 0 .3 2.7"/>
98
- <path stroke-linecap="round" d="M365.6 155.5c1 0 1.2.4 1.5.8 1.2 1.5.3 4.1-2 4.9m17.8 51.5c-3.5 3.8-.2 10.3 2.4 11.8.9.7 1.3.3 2 .7"/>
99
- <path d="M383.1 205.4c-1.1.8-1.5 1.7-1.6 3.3a5.3 5.3 0 0 0 1.4 4 14 14 0 0 0 9.3 3.7c2 0 4-.4 6-1.7a9 9 0 0 0 3.8-5.4m-20.8 61.8l-.2 2.5a18.9 18.9 0 0 1-2 7 18.7 18.7 0 0 1-4.2 5.6 19.6 19.6 0 0 1-5.9 4 24.6 24.6 0 0 1-6.5 2.3 43.8 43.8 0 0 1-13.2.6c-2.7-.2-4.1-.5-6.8-.8-2.2-.1-3.4-.3-5.6-.3a28.3 28.3 0 0 0-10.9 1.9c-2.7 1-5.7 3-6.4 3.8-.6-.9-3.7-2.8-6.3-3.8a22 22 0 0 0-5.2-1.5c-2.2-.4-3.5-.4-5.8-.4-2.2 0-3.4.2-5.6.4-2.6.2-4 .6-6.7.7-2.5.2-3.9.3-6.3.2a33 33 0 0 1-7-.8 24.6 24.6 0 0 1-6.5-2.2 19.6 19.6 0 0 1-5.8-4.1 18.7 18.7 0 0 1-4.2-5.7 19 19 0 0 1-2-6.9c-.2-1-.2-2.5-.2-2.5V169.3h123.2v101.8z"/>
100
- </g>
101
- <g fill="#c7b37f" stroke="#c7b37f">
102
- <path stroke-width=".3" d="M248 285.6a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0zM232.5 268c0-1.3.8-2.3 1.8-2.3s1.7 1 1.7 2.3c0 1.2-.8 2.2-1.7 2.2-1 0-1.8-1-1.8-2.2z"/>
103
- <path stroke="none" d="M241.3 223.6c0-1 .8-1.8 1.7-1.8 1 0 1.7.8 1.7 1.8s-.7 1.8-1.7 1.8-1.7-.8-1.7-1.8zM272 158c0-1 .5-2 1.4-2 .9-.1 1.7.6 1.8 1.6 0 1-.5 2-1.4 2-.9.1-1.6-.6-1.8-1.6z"/>
104
- </g>
105
- <g stroke="#c7b37f" stroke-linecap="round" stroke-width=".6">
106
- <path d="M239.3 234c-.4.1-.6.2-.8.5-.3.3-.4.4-.6.9l-.2 1.2m4.7 26.7l1-1 .6-1 .5-1 .7-1.3m-1.3 14l-1.5.7-1.1.6a17.4 17.4 0 0 0-1.3.8l-1.2 1m15-37.9l-.8-.8-1-.8-.9-.8"/>
107
- <path stroke-linecap="butt" d="M254.2 225l-1.2.5a5.1 5.1 0 0 1-1.5.3"/>
108
- <path d="M237.4 208.4c.2.6.2 1 .5 1.5.2.7.5 1.1.9 1.7a8.3 8.3 0 0 0 2.6 2.7l1.5.8m-1-5.8l1.3.6a7.4 7.4 0 0 0 3 .6l1.8-.1m7.2-40.7l-2-1.2c-.9-.5-1.3-.9-2-1.5a9.3 9.3 0 0 1-1.1-1.3l-.8-1.3m7.5-4.6l.6 1.7a7.8 7.8 0 0 0 1.4 2c1 1 1.7 1.3 2.8 2.2m1.4-6c.3.7.3 1 .7 1.6.2.5.4.8.8 1.2l1.3 1.3c.7.6 1.2.7 2 1.1"/>
109
- </g>
110
- <path fill="#703d29" stroke-width=".2" d="M333.3 151.6c0-1.7-1.7-1.8-2.4-1.8-1.8 0-2.3 1.1-4.6 2.3a11.9 11.9 0 0 1-6.7 2 12 12 0 0 1-6.7-2c-2.3-1.2-2.7-2.3-4.6-2.3a2.3 2.3 0 0 0-2.2 2.4v.9l.3.2c0-.8.1-1.2.5-1.7a2.2 2.2 0 0 1 1.6-.8c1.8 0 2.5 1.2 4.8 2.4 3 1.6 4.2 1.9 6.7 2a12 12 0 0 0 6.8-2c2.3-1.2 3-2.5 4.8-2.5.6 0 1 .4 1.3 1v.9l.2.1c0-.3.2-.4.2-1z"/>
111
- </g>
112
- <g fill="#703d29">
113
- <path d="M264.4 294c.5-.5.9-.3 1-.6 0-.2 0-.2-.3-.3l-.9-.2-.8-.4c-.1 0-.4-.2-.5 0-.1.4 1 .4.6 1.4a3.7 3.7 0 0 1-.8 1.2l-2.6 3-.2.1v-4.3l.1-1.8c.2-.4.8 0 .9-.4 0-.1 0-.2-.3-.3-.2 0-.5 0-1.1-.3l-1-.5c-.2 0-.5-.2-.6 0l.1.3c.4.2.5.4.5 1v7.4c0 .5.1.6.2.7.1 0 .2 0 .4-.3l5.3-5.7z"/>
114
- <path d="M267.5 295.2c.3-1.1 1-.4 1-.8.1-.2 0-.2-.2-.3l-1.3-.4c-.4 0-.8-.3-1.2-.4 0 0-.3-.1-.4 0-.1.5 1.1.5.8 1.5l-1.7 5.5c-.3 1-1 .6-1.1 1v.1l1.2.4 1.6.5h.3c.2-.4-1.2-.3-.7-1.7l1.7-5.4zm3.7 1c.2-.6.5-.5.9-.4 1 .3 1.4 1.3 1 2.5-.2.6-.4 1.2-2 .8-.3-.1-.7-.2-.6-.5l.7-2.3zm-2.8 5c-.5 1.4-1.2.8-1.3 1.2 0 .2.2.2.3.3l1.6.4.8.3h.4c.1-.5-1-.3-.7-1.5l.6-2c.1-.4.1-.5.6-.3.6.1.7.3.8.8l.3 2c.2.9.3 1.7 1 2 .5 0 1.2 0 1.4-.4l-.2-.2h-.3s-.3 0-.3-.3l-.7-3.6c0-.2.4-.2.8-.3a2 2 0 0 0 1-1.3c.1-.5.4-2.2-1.8-2.9l-2.1-.5-1.2-.4h-.3c-.1.5 1.1.4.7 1.7l-1.5 5zm8.4 2.5c-.4 1.4-1.4.5-1.5 1 0 .2.1.3.3.3l1.5.3 1.4.4c.3 0 .5.2.6-.1 0-.3-1.3-.3-1-1.8l1.3-5.2c0-.6.2-.6.6-.5l1 .2c1.1.3.5 1.5 1 1.6.2 0 .2-.4.2-.6l.1-1v-.4l-3.3-.7-3.2-.8c-.1 0-.2 0-.2.2l-.5 1.5c-.1.1-.2.4 0 .4.5.1.5-1.5 1.7-1.2l.9.2c.4.1.5.2.4.8l-1.3 5.4zm12.7-3.3c.4-.6.8-.5.9-.7 0-.2-.2-.2-.4-.3h-.9l-.9-.3c-.1 0-.4-.1-.4.1-.1.4 1 .2.8 1.3 0 .2-.1.6-.6 1.3l-2 3.3-.3.2v-.2l-.7-4a5.4 5.4 0 0 1-.1-1.8c0-.5.7-.2.7-.5 0-.2 0-.2-.4-.3l-1.1-.1c-.4 0-.7-.2-1-.3-.2 0-.5-.1-.6.1l.1.2c.5.2.6.4.7.9l1.3 7.3c.1.5.2.7.3.7.1 0 .2 0 .4-.3l4.2-6.6zm.6 6.8c0 .3 0 .3.2.5.6.2 1 .6 1.7.7 1.4.2 2.6-.7 2.8-2.2.3-1.5-.3-2.1-1.4-2.9-1.3-.9-1.8-1.1-1.7-2 .1-.7.7-1 1.4-1 1.8.3 1.6 2.6 1.8 2.6.3 0 .3-.1.3-.4l.2-1.6v-.4h-.6c-.4 0-.7-.5-1.6-.7-1.2-.2-2.3.7-2.5 2-.2 1.2.4 1.8 1.2 2.4 1.6 1.1 2.2 1.4 2 2.4-.1 1-.9 1.4-1.7 1.3-1.2-.2-1.6-1.4-1.8-2.6 0-.2 0-.3-.2-.3s-.2.3-.2.5v1.7zm15.8-4.5c.3-.7.8-.6.8-.9 0-.2-.1-.1-.4-.2h-.9l-.9-.1c-.1 0-.4 0-.4.2 0 .4 1 0 1 1.1 0 .2-.1.6-.5 1.4l-1.8 3.5-.1.3-.1-.3-1.1-4a5.4 5.4 0 0 1-.3-1.6c0-.5.7-.3.7-.6 0-.2 0-.2-.4-.2h-1.2l-1-.2c-.2 0-.5-.1-.6.1l.2.2c.4.2.6.3.7.8l2.1 7.1.4.7c.1 0 .2 0 .3-.4l3.5-7z"/>
115
- <path d="M307.6 308.5c0 1.2-1 1-1 1.5 0 .2.1.1.3.1h2.2l.4-.1c0-.6-1.4.2-1.4-2v-4.2l.1-.1.2.1 5.1 6.3.3.1.2-.3v-6.7c0-1.3 1-1 1-1.3 0 0 0-.2-.3-.2h-2.3c-.2 0-.2.1-.2.2 0 .4 1.3.2 1.3 1.3v4l-.1.4-.4-.3-4.2-5.3c-.2-.3-.1-.3-.4-.3h-1.8l-.2.1c0 .6 1.2-.2 1.2 2.1v4.6zM318 303c0-1.1.8-.7.8-1.1 0-.1 0-.2-.4-.2h-2.6s-.3 0-.3.2c0 .4 1.1 0 1.1 1.2v5.7c0 1.1-.8.8-.8 1.2 0 0 0 .2.2.2h2.8c.2 0 .3 0 .3-.2 0-.4-1.2.2-1.2-1.3l.1-5.7zm4.5 5.5c0 1.5-1.2 1-1.2 1.4 0 .2.2.2.4.2h3c.3 0 .5 0 .5-.3s-1.4 0-1.4-1.4V303c0-.6 0-.6.5-.6h1c1.2-.1.8 1.2 1.3 1.2.2 0 .1-.4.1-.6l-.1-1c0-.2 0-.4-.2-.4l-3.3.1h-3.3l-.2.3-.1 1.6.1.4c.5 0 .2-1.6 1.4-1.6h.9c.4 0 .5 0 .6.6v5.6zm6.3-2.2h-.4l.1-.5.7-2.2v-.2l.2.1 1 2.1.2.4c0 .2-.2.2-.4.2h-1.4zm1.8.5c.3 0 .3 0 .8 1l.2.8c0 .7-.7.6-.7 1 0 .1.2.1.4 0h1.2l1.3-.1c.3 0 .4 0 .4-.2 0-.4-.6 0-1-.7l-3.4-7-.3-.4c-.2 0-.2.2-.3.4L327 309c-.2.7-.8.7-.7 1h2.3c.2-.1.5 0 .5-.3s-1.2 0-1.3-.9l.2-1c.2-.8.4-.8.6-.8l2.1-.2zm8.3-5c-.1-.8 0-.8 1.2-1 2-.2 1.4 1.3 2 1.2.2 0 0-.4 0-.6l-.1-1.1c0-.1-.1-.2-.3-.2-1 0-1.7.2-2.4.3l-2.8.4c-.2 0-.3 0-.3.2.1.5 1.3 0 1.4 1l.7 5.5c.2 1.5-.7 1-.6 1.5 0 0 0 .1.2 0l1.4-.1 1.2-.1c.3 0 .5 0 .5-.3s-1.2.1-1.4-1.2l-.2-1.7c-.1-.7-.1-.9.3-1h.8c1.1-.2 1 1.1 1.3 1 .3 0 .2-.4.1-.5l-.3-2.1c0-.3-.2-.3-.2-.3-.3 0-.1 1.1-1 1.2l-.7.1c-.5.1-.5 0-.6-.5l-.2-1.7zm4 2.8c.4 2.3 2.1 3.7 4.2 3.3 3.4-.7 3.5-3.6 3.2-5.3-.5-2.5-2.3-3.7-4.4-3.3-2.5.5-3.5 2.7-3 5.3zm1.1-1c-.3-1.6 0-3.4 1.7-3.7 1.4-.3 3 .8 3.4 3.4.3 2 0 3.6-1.8 4-1.9.4-3-2-3.3-3.6zm8.3-4.1c-.1-.7.2-.8.6-.9 1-.2 1.8.5 2.1 1.6.2.7.3 1.4-1.3 1.8-.3 0-.7.1-.8-.2l-.5-2.3zm0 5.7c.4 1.4-.5 1.3-.5 1.6.1.3.3.2.4.1.6 0 1-.3 1.6-.4l1-.2c.2 0 .2-.1.2-.2 0-.4-1 .3-1.3-1l-.5-2c0-.4-.2-.4.4-.5.5-.2.7-.1 1.1.3l1.3 1.6c.5.6 1 1.3 1.8 1.1.5-.1 1-.5 1-.9l-.2-.1-.3.1s-.3.1-.4 0l-2.4-2.9.5-.6c.2-.4.4-.9.2-1.6-.1-.5-.7-2.1-3-1.6l-2.1.6-1.2.2c-.2 0-.3.1-.2.2 0 .5 1.1-.2 1.4 1l1.2 5.2zm8.7-2c.3 1.4-1 1.2-.9 1.6 0 .3.3.2.5.2l1.4-.5 1.5-.3c.3 0 .5 0 .4-.4 0-.3-1.3.4-1.7-1l-1.3-5.3c-.2-.5 0-.6.3-.7l1-.2c1.1-.4 1.1 1 1.5.9.3 0 0-.5 0-.7l-.4-1s0-.3-.2-.2l-3.2.9-3.2.7v.3l.1 1.6c0 .2 0 .4.3.4.5-.1-.3-1.6 1-1.9l.8-.2c.4-.1.6 0 .7.5l1.4 5.3zm5.5-7.3c-.3-1 .6-.9.4-1.3h-.3l-1.4.4-1.2.3s-.3 0-.3.2c.1.4 1.2-.2 1.5.8l1.6 5.6c.2 1-.6 1-.5 1.3 0 .1 0 .2.2.1l1.1-.3 1.6-.4c.3 0 .3-.1.3-.3-.1-.3-1.1.5-1.5-.9l-1.5-5.5zm2.3 2.7c.7 2.3 2.6 3.4 4.7 2.7 3.2-1.1 3-4.1 2.4-5.7-.8-2.4-2.8-3.3-4.8-2.7-2.4.9-3.2 3.2-2.3 5.7zm1-1c-.6-1.7-.6-3.5 1.1-4 1.3-.5 3 .4 3.9 2.9.6 1.8.5 3.6-1.2 4.2-1.8.6-3.2-1.5-3.8-3.2zm7.6-5.5c-.2-.7 0-.8.4-1 1-.3 2 .3 2.4 1.4.2.6.4 1.3-1.1 1.9-.3 0-.7.2-.8 0l-.9-2.3zm.8 5.6c.6 1.4-.4 1.4-.2 1.7 0 .3.2.1.4.1l1.5-.7.9-.2c.2-.1.2-.2.2-.3-.2-.4-1 .4-1.4-.8l-.8-1.9c-.2-.4-.2-.5.3-.7.5-.2.7-.1 1.1.3l1.6 1.4c.5.5 1.1 1.1 2 .8.3-.2.9-.7.7-1l-.2-.1-.2.2h-.5l-2.8-2.5.4-.7a2 2 0 0 0 0-1.6c-.1-.6-1-2-3.1-1.2l-2 .9-1.2.4-.2.2c.2.4 1.1-.4 1.6.8l2 5z"/>
116
- </g>
117
- <g fill="#fedf00" transform="matrix(.64 0 0 .64 0 16)">
118
- <path fill="#d52b1e" d="M412.7 249.3h82.1v82h-82.1z"/>
119
- <path id="a" fill="#fff" d="M451.2 313.8s0 3-.8 5.3c-1 2.7-1 2.7-1.9 4a13.2 13.2 0 0 1-3.8 4c-2 1.2-4 1.8-6 1.6-5.4-.4-8-6.4-9.2-11.2-1.3-5.1-5-8-7.5-6-1.4 1-1.4 2.8-.3 4.6a9 9 0 0 0 4.1 2.8l-2.9 3.7s-6.3-.8-7.5-7.4c-.5-2.5.7-7.1 4.9-8.5 5.3-1.8 8.6 2 10.3 5.2 2.2 4.4 3.2 12.4 9.4 11.2 3.4-.7 5-5.6 5-7.9l2.4-2.6 3.7 1.2h.1z"/>
120
- <use width="100%" height="100%" transform="matrix(-1 0 0 1 907.5 0)" xlink:href="#a"/>
121
- <path d="M461.1 279l10.8-11.7s1.6-1.3 1.6-3.4l-2.2.4-.5-1.2-.1-1.1 3-.7V260l.3-1.3-3.2.2.3-1.4.5-1 1.9-.4h1.9c1.8-3.4 9.2-6.4 14.4-1 3.8 4 3 11.2-2 13.2a6.3 6.3 0 0 1-6.8-1.1l2-4c2.7 1.7 5-.3 4.8-2.4-.2-2.7-2-4.3-4.3-4.5-2.3-.2-4 1-5 3-.6 1.3-.3 2.2-.5 3.6-.2 1.5 0 2.3-.5 3.8a8.8 8.8 0 0 1-2.4 3.6l-11 12-43 46.4-3.2-3 43.2-46.7z"/>
122
- <path fill="#fff" d="M429.5 283s2.7 13.4 11.9 33.5c4.7-1.7 7.4-2.8 12.4-2.8 4.9 0 7.6 1 12.3 2.8A171 171 0 0 0 478 283l-24.2-31-24.4 31z"/>
123
- <path d="M456.1 262.4l16.8 21.7s-2.2 10.5-9 26.3c-2.7-.6-5-1.1-7.8-1.3v-46.7zm-4.7 0l-16.8 21.7s2.2 10.5 9 26.3c2.7-.6 5-1.1 7.8-1.3v-46.7z"/>
124
- </g>
125
- <g fill="#d52b1e">
126
- <path fill="#fedf00" d="M322.3 175.5h52.6V228h-52.6z"/>
127
- <path d="M329.7 175.5h7.8V228h-7.8zm15 0h7.8V228h-7.8zm15 0h7.9V228h-7.9z"/>
128
- </g>
129
- <g fill="#d52b1e" stroke="#d52b1e" stroke-width=".5">
130
- <path fill="#fedf00" stroke="none" d="M264.3 273.5c.1 1 .5 2.6 1.4 4.3 1 1.5.6 1.4 2.7 3.8a15.3 15.3 0 0 0 4 2.9 32.7 32.7 0 0 0 15 2.6c2.7-.1 4.8-.4 6.6-.7a71 71 0 0 1 11-.6c1.5 0 3 .3 4.7.6 3.5.7 7 2 7 2v-54.7h-52.6V271l.2 2.4z"/>
131
- <path stroke-width=".3" d="M270.4 283.1l2.5 1.5 3.4 1.2v-52.2h-5.9zm29.2 2.4v-51.9h-5.8v52.8l5.8-.7zm11.7-51.9h-5.8v52.1c1.9.2 3.8.6 5.8 1v-53zm-23.4 0V287s-3.8.2-5.8 0v-53.4z"/>
132
- </g>
133
- <g transform="matrix(.64 0 0 .64 0 16)">
134
- <path fill="#fedf00" d="M585.5 402.4a20.8 20.8 0 0 1-2.2 6.6c-1.5 2.3-1 2.3-4.3 6a26.3 26.3 0 0 1-13 7 51.8 51.8 0 0 1-16.6 1.6c-4.3-.2-7.5-.7-10.3-1-3.8-.6-6.7-.9-11-1a62.9 62.9 0 0 0-6.2 0 83.3 83.3 0 0 0-18.3 4.2V340h82.2v58.5l-.3 3.8z"/>
135
- <g id="b">
136
- <path fill="#d52b1e" d="M524.6 347l-.6.2-.8.8c-.4.4-.7.5-1.2.8l-.6.5c-.3.3 0 .6-.3 1-.1.4-.3.6-.6 1-.4.4-.7.5-1 1l-1.2 1-.3.1h-.6c-.4.2-.5.6-.8.8l.3.6.8 1.4c.2.3.2.7.5.8.5.2.9.2 1.3.1.8.2 1.3.2 2 .5l1.5.8c.5.3.8.4 1.3.5h1.8v.3l2 1a1.7 1.7 0 0 0-.1.4c-.1.3-.2.7-.1.8.6 1.9 1.2 3 1.5 3.2.6.2.8.9 1.1 1.5l-.3.3c-.6.6-1.2 1-1.7 1.8-.7 1.2-1.2 1.2-.3 2.8l1.5 2.4c.4.7.6 1.2.8 2 .2.7.3 1.2.3 2l1 .3.7-.6.6-1.2v-1c-.2-.1-.3-.4-.2-.7 0-.4.5-.3.7-.6.3-.5-.4-.8-.7-1.1-.6-.7-1.4-.9-1.6-1.9 0-.2 0-.4.4-.7l2-1.8c.2.1.6.2 1 .1l1.3.4c.6.2.9 0 1.2 0h.4l.1.6c.1 1-.1 3 .2 3.5l.3.6.2.6v2l-.2 1.7c0 .4-.2.7-.5 1-.2.4-.6.4-1 .7v1l1.1.5 1.3.3.7-.3.1-.6.5-.5c.4-.2.8 0 .9-.1.2-.3 0-.4 0-.8 0-.6-.2-1-.3-1.6a11.8 11.8 0 0 1-.1-2.8c0-.6 0-1 .2-1.5.1-1 .4-1.4.6-2.2.3-1 .3-1.6.4-2.5a24.4 24.4 0 0 0 10.1-.6c.8.7 1.7 1.2 2.7 1.6v1c0 .3 0 .4.2.7l.3.3c.3 0 .5 0 .7-.2.2-.2.2-.4.2-.7v-.7h1.8v1.1c.1.3.3.4.5.4a.7.7 0 0 0 .6 0c.3-.2.2-.6.3-1v-.7l1-.4a5.1 5.1 0 0 1 0 .9l-.3.9c-.2.6-.5.8-.8 1.4-.4.6-.5 1-1 1.5l-.6.7-.6.9-.9 1c-.7.6-1.2.2-2 .9l-.3 1 1.4.6 1.3.2.4-.2c0-.3 0-.6.3-.8.2-.3.4-.3.7-.4.4 0 .8 0 1-.2.4-.3.4-1 .7-1.5a12.7 12.7 0 0 1 3-3.9l1.7-1.4c.2-.4.5-.5.5-1l-.2-.6-.2-1c1.5.7 1 .7 1.2 1.4.3.6 0 1 .1 1.7.1.8.5 1.1.5 1.9.1.9-.1 1.4-.3 2.3-.1.8-.1 1.3-.5 2a3.8 3.8 0 0 1-1.1 1.5l-.6.5-.1 1 1.1.4 1.6.4.4-.3c.2-.7 0-1.7.4-1.7.4-.1.7 0 .8-.3v-.7l.7-4.5.4-1.9.4-1.7c.7-2-.2-2.3-1-3.6-.5-.7-.7-1-.7-1.5V362a42.7 42.7 0 0 1 0-2.8l.4-.2c1.2-.7 1.7-.9 2.4-2.5a3.4 3.4 0 0 0 .3-1.5v-1l-.4-1a3.2 3.2 0 0 0-.6-.8c-.7-1-1.7-1.1-2.7-1.5-1.5-.5-2.5-.4-4-.5-1.8-.2-2.7-.2-4.4 0-2 0-3.1.4-5.1.7l-4.9.4c-2.3 0-4.4-.5-5.8-.4-2.4.2-2.5.8-6.2 1.1a67 67 0 0 1-3.8.2l-2.2-.7c.9-.3 1.1-.5 1.5-1 .3-.4.2-.7.6-1.1l.7-1a2.2 2.2 0 0 0-.9-.4h-1a3 3 0 0 0-1.2.3l-.8.6-2.2-1.2a8.8 8.8 0 0 0-3-.9zm2 11.8z"/>
137
- <g fill="none" stroke="#fedf00" stroke-linecap="round">
138
- <path d="M568.8 359.5l-.8.3c-.9.4-1.6.4-2.6.5-2.6.2-4.3-1.1-7-.9-1.4.1-2 1.2-3.5 1.6a9.3 9.3 0 0 1-1.7.2l.5-1s-1.2.3-2 .3a7.5 7.5 0 0 1-1.6-.2l1-1-1.3-.2a4 4 0 0 1-1-.7 20.5 20.5 0 0 0 1.7-.3c1.5-.4 2-1.2 3.9-1.4 1.1 0 3 0 7.6.8 3 .5 4.4.2 5.5-.3.8-.3 1-1 1.1-1.8.1-.8-.4-1.4-.8-1.8-.1 0-.5-.3-1.1-.4"/>
139
- <path fill="#fcd900" stroke-linecap="butt" stroke-width=".5" d="M524.8 350.6c-.5 0-.9 0-1.3.3-.5.3-.6.7-1 1.1.5.1.8.4 1.2.3.4 0 .5-.2.8-.5.3-.4.4-.7.4-1.2h-.1z"/>
140
- <path d="M536 363.8a13.6 13.6 0 0 0 1 2.3c.2.8 0 1.2.2 2v1.6m6.8-7l-.3 1.3-1 3.5v.7m-11-4c.9.2.6 3.3 1.9 4"/>
141
- <path stroke-linecap="butt" d="M560.1 369.8l.4-.3a8.2 8.2 0 0 0 2.7-1.8"/>
142
- <path d="M552.4 368c3.5-.9 5.9-2.6 7.6-2.9m-4-1.5h.8c1.5-.3 1.7.6 2.7 1.2 1.9 1 2.1 2.3 4.3 3.4l.4.1.8.4"/>
143
- <path fill="#fcd900" stroke-linecap="butt" stroke-width=".5" d="M517.7 354.5h.7l.8-.2c.3 0 .5 0 .7.2.2 0 .2.1.3.3 0 .2.2.3.1.5 0 .2-.3.4-.6.4-.2 0-.4 0-.5-.3a.5.5 0 0 1 0-.4 1 1 0 0 1-.9 0 1 1 0 0 1-.6-.5z"/>
144
- </g>
145
- <path fill="#0065bd" d="M525.1 364.2l-2-.9c.4-.2.7-.2 1-.5.3-.4.3-.8.5-1.3s.2-1 .7-1.4c.3-.2.8-.2 1.1-.1.4 0 .8.4.9.7 0 .6-.2 1-.3 1.5 0 .6-.3.9-.2 1.4 0 .4.2.6.4 1l-2-.4zm-1 1a.6.6 0 1 1 .7.5.6.6 0 0 1-.7-.6zm-1.7-16.6h-.2c-.4-.4-.4-.8-.6-1.2a4 4 0 0 1-.3-1.2v-2c0-.3 0-.6-.2-.9 0-.2-.4-.3-.3-.4 0-.1.3 0 .4 0 .4 0 .6.1 1 .4.3.3.5.6.6 1l.4 1.5.3.8.5.6-.7.8-.9.6zm3.6 10.6l2.2 1a9.2 9.2 0 0 0 3.5-3.8c.9-1.8 1-2.7 1.4-4.4l-1.8-.5h-.4c-.5 1.8-.7 2.7-1.6 4.2-.8 1.3-1.7 2.3-2.6 3l-.7.5zm5 18.2l.8-1.3 1.4-1.1h.4a8.7 8.7 0 0 1-.5 2.8l-.4 1-.5.5c-.5-.8-1.3-1.3-1.3-2zm33 1.8l1.4.6 1.5.9v.5l-1.5.2a8.4 8.4 0 0 1-1.3 0h-1l-.6-.4c.5-.7.8-1.6 1.4-1.8zm-9.8-2l1.4.5 1.5 1c0 .1.1.3 0 .4a9 9 0 0 1-2.7.3l-1-.1-.7-.3c.6-.7.9-1.7 1.5-1.8zm-17.4 2.1l1.5.5 1.5 1v.5a9 9 0 0 1-2.8.2h-1l-.6-.4c.5-.7.8-1.6 1.4-1.8zm-9-29.8c-.6-.3-1-1-.6-1.6.1-.2.4-.2.6-.4.2-.3.1-.5 0-.8l-.1-1-.2-1c0-.6 0-1 .4-1.6.2-.3.7-.6.8-.6.2.1 0 .5 0 .8 0 .5.1.7.3 1.2l.7 1.3c.2.6.4.8.4 1.4 0 .5 0 .7-.2 1.2a2 2 0 0 1-.6.8 2 2 0 0 1-.8.4 1.1 1.1 0 0 1-.6 0z"/>
146
- </g>
147
- <use width="100%" height="100%" y="36.6" xlink:href="#b"/>
148
- </g>
149
- <path fill="none" stroke="#703d29" stroke-width=".5" d="M264.1 175.5h52.6V228h-52.6zm58.2 0h52.6V228h-52.6zm-58 98c.1 1 .5 2.6 1.4 4.3 1 1.5.6 1.4 2.7 3.8a15.3 15.3 0 0 0 4 2.9 32.7 32.7 0 0 0 15 2.6c2.7-.1 4.8-.4 6.6-.7a71 71 0 0 1 11-.6c1.5 0 3 .3 4.7.6 3.5.7 7 2 7 2v-54.7h-52.6V271l.2 2.4zm110.4 0a13 13 0 0 1-1.4 4.3c-1 1.5-.6 1.4-2.7 3.8a15.4 15.4 0 0 1-4 2.9c-1.3.7-2.3 1-4.4 1.6a32.6 32.6 0 0 1-10.6 1c-2.7-.1-4.8-.5-6.5-.7a71 71 0 0 0-7.2-.6 40.5 40.5 0 0 0-3.9 0c-1.5 0-3 .3-4.7.6-3.5.7-7 2-7 2v-54.8H375v37.5l-.2 2.4z"/>
150
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/ae.svg DELETED
@@ -1,6 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-ae" viewBox="0 0 640 480">
2
- <path fill="#00732f" d="M0 0h640v160H0z"/>
3
- <path fill="#fff" d="M0 160h640v160H0z"/>
4
- <path d="M0 320h640v160H0z"/>
5
- <path fill="red" d="M0 0h220v480H0z"/>
6
- </svg>
 
 
 
 
 
 
assets/flags/4x3/af.svg DELETED
@@ -1,81 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icon-css-af" viewBox="0 0 640 480">
2
- <g fill-rule="evenodd" stroke-width="1pt">
3
- <path d="M0 0h640v480H0z"/>
4
- <path fill="#090" d="M426.7 0H640v480H426.7z"/>
5
- <path fill="#bf0000" d="M213.3 0h213.4v480H213.3z"/>
6
- </g>
7
- <g fill="#fff" fill-rule="evenodd" stroke="#bd6b00" stroke-width=".5" transform="translate(1 27.3) scale(1.06346)">
8
- <path d="M319.5 225.8h8.3c0 3.2 2 6.6 4.5 8.5h-16c2.5-2.2 3.2-5 3.2-8.5z"/>
9
- <path stroke="none" d="M266.7 178.5l4.6 5 57 .2 4.6-5-14.6-.3-7-5h-23l-6.6 5.1h-15z"/>
10
- <path d="M290 172.7h19.7c2.6-1.4 3.5-5.9 3.5-8.4 0-7.4-5.3-11-10.5-11.2-.8 0-1.7-.6-1.9-1.3-.5-1.6-.4-2.7-1-2.6-.4 0-.3 1-.7 2.4-.3.8-1.1 1.5-2 1.6-6.4.3-10.6 5-10.5 11.1.1 4 .6 6.4 3.4 8.4z"/>
11
- <path stroke="none" d="M257.7 242.8H342l-7.5-6.1h-69.4l-7.5 6.1z"/>
12
- <path d="M296.4 219.7l1.5 4.6h3.5l-2.8-4.6h-2.2zm-2 4.6l1 4.6h4l-1.5-4.6h-3.5zm7 0l2.8 4.6h5.9l-4.6-4.6h-4.1zm-34.5 10.4c3.1-2.9 5.1-5.3 5.1-8.8h7.6c0 2 .7 3.1 1.8 3h7.7v-4.5h-5.6v-24.7c-.2-8.8 10.6-13.8 15-13.8h-26.3v-.8h55.3v.8H301c7.9 0 15.5 7.5 15.6 13.8v7h-1l-.1-6.9c0-6.9-8.7-13.3-15.7-13.1-6 .1-15.4 5.9-15.3 13v2.2l14.3.1-.1 2.5 2.2 1.4 4.5 1.4v3.8l3.2.9v3.7l3.8 1.7v3.8l2.5 1.5-.1 3.9 3.3 2.3h-7.8l4.9 5.5h-7.3l-3.6-5.5h-4.7l2.1 5.4h-5l-1.3-5.4h-6.2v5.8H267zm22.2-15v4.6h5.3l-1-4.6H289z"/>
13
- <path fill="none" d="M289.4 211.7h3.3v7.6h-3.3z"/>
14
- <path fill="none" d="M284.7 219.8h3.2v-5.6c0-2.4 2.2-4.9 3.2-5 1.2 0 2.9 2.3 3 4.8v5.8h3.4v-14.4h-12.8v14.4zm25.6 3.3h4v3.2h-4zm-2.4-5.3h4v3.1h-4zm-3.9-5.4h4v3.1h-4zm-3.3-4.5h4v3.1h-4z"/>
15
- <path fill="none" d="M298 219.8l4.2.2 7.3 6.4v-3.8l-2.5-1.8v-3l-3.6-2v-3.3l-3.5-1.2V207l-1.7-1.5-.1 14.4z"/>
16
- <path d="M315.4 210.3h1v7.1h-1z"/>
17
- <g id="a">
18
- <path d="M257.3 186.5c-1.2-2-2.7 2.8-7.8 6.3-2.3 1.6-4 5.9-4 8.7 0 2 .2 3.9 0 5.8-.1 1.1-1.4 3.8-.5 4.5 2.2 1.6 5.1 5.4 6.4 6.7 1.2 1 2.2-5.3 3-8 1-3 .6-6.7 3.2-9.4 1.8-2 6.4-3.8 6-4.6l-6.3-10z"/>
19
- <path fill="#bf0000" d="M257 201.9a10 10 0 0 0-1.6-2.6 6.1 6.1 0 0 0-2.4-1.8 5.3 5.3 0 0 1-2.4-1.5 3.6 3.6 0 0 1-.8-1.5 5.9 5.9 0 0 1 0-2l-.3.3c-2.3 1.6-4 5.9-4 8.7a28.5 28.5 0 0 0 0 2.3c.2.5.3 1 .6 1.3l1.1.8 2.7.7a7.1 7.1 0 0 1 2.6 2 10.5 10.5 0 0 1 1.8 2.6l.2-.8c.8-2.7.7-5.9 2.6-8.5z"/>
20
- <path fill="none" d="M249.8 192.4c-.5 3.3 1.4 4.5 3.2 5.1 1.8.7 3.3 2.6 4 4.4m-11.7 1.5c.8 3 2.8 2.6 4.6 3.2 1.8.7 3.7 3 4.5 4.8"/>
21
- <path d="M255.6 184.5l1-.6 17.7 29.9-1 .6-17.7-30z"/>
22
- <path d="M257.5 183.3a2 2 0 1 1-4 0 2 2 0 1 1 4 0zm15.2-24h7.2v1.6h-7.2zm0 3.1h7.2v13.8h-7.2zm-.4-5h8c.2-2.7-2.5-5.6-4-5.6-1.6.1-4.1 3-4 5.6z"/>
23
- <path fill="#bd6b00" stroke="none" d="M292.6 155.8c-1.5.6-2.7 2.3-3.4 4.3-.7 2-1 4.3-.6 6.1 0 .7.3 1.1.5 1.5.2.3.4.5.6.5.3 0 .6 0 .7-.3l.2-.8c-.1-2-.1-3.8.3-5.4a7.7 7.7 0 0 1 3-4.4c.3-.2.4-.5.5-.7a1 1 0 0 0-.3-.7c-.4-.3-1-.4-1.5-.1zm.2.4c.4-.2.8 0 1 .1l.1.2c0 .1 0 .2-.3.4a8.2 8.2 0 0 0-3.1 4.6 16.7 16.7 0 0 0-.3 5.6 1 1 0 0 1-.2.6s0 .1-.2 0c0 0-.2 0-.4-.3a3.9 3.9 0 0 1-.4-1.2c-.3-1.8 0-4 .7-6 .7-1.8 1.8-3.4 3-4z"/>
24
- <path fill="#bd6b00" stroke="none" d="M295.2 157.7c-1.5.7-2.5 2.3-3 4.2a13.6 13.6 0 0 0-.3 5.9c.2 1.3 1 2 1.6 2 .3.1.6 0 .8-.3.2-.3.3-.6.2-1-.4-1.6-.5-3.4-.3-5.1.3-1.7 1-3.2 2.2-4.1.3-.3.5-.5.5-.8a.8.8 0 0 0-.2-.6c-.4-.3-1-.4-1.5-.2zm.2.5c.4-.2.8-.1 1 0l.1.3-.3.4a6.5 6.5 0 0 0-2.4 4.4c-.3 1.8-.1 3.7.2 5.2.1.4 0 .6 0 .8l-.5.1c-.3 0-1-.5-1.2-1.7-.3-1.7-.2-3.9.3-5.7.5-1.8 1.5-3.3 2.8-3.8z"/>
25
- <path d="M272.3 187.4h8v11h-8zm.5 17.4h7.7v2.4h-7.7zm-.2 4.1h8v8.7h-8zm-.6 10.5h8.7v4.9H272zm1.1-16.6h7l1.4-2.4h-9.6l1.2 2.4zm9.4-8.6l.1-6h4.8a17.4 17.4 0 0 0-4.9 6z"/>
26
- <path fill="none" d="M273.6 196.7c0 1.3 1.5.8 1.5.1v-5.6c0-1 2.4-.8 2.4-.1v6c0 1 1.7.9 1.6 0v-7c0-2.2-5.5-2.1-5.5-.1v6.7zm0 13.3h5.7v7h-5.7z"/>
27
- <path d="M277.2 213h2v1h-2zm-3.5 0h2v1h-2zm2-3h1.5v3h-1.5zm0 4h1.5v3.1h-1.5zM244 139c.4 5.5-1.4 8.6-4.3 8.1-.8-3 1-5.1 4.3-8.1zm-6.5 12.3c-2.6-1.3-.7-11.5.3-15.8.7 5.5 2 13.3-.3 15.8z"/>
28
- <path d="M238.4 151.8c4.4 1.5 8-3.2 9.1-8.7-3.6 5-9.5 5-9 8.7zm-3.3 5.1c-3.4-.9-1.4-11.7-.7-16 .7 4.5 3.1 14.5.7 16zm1.2-.3c.2-3.7 3.9-2.7 6.5-4.7-.5 2-2 5.2-6.5 4.7zm-4.2 5c-3.4-1-1.4-12.6-1.6-17.4 1 4.2 4.2 16.3 1.6 17.4zm1.6-.5c2.8.9 6.5-1 6.8-4.3-2.5 1.7-6.3.4-6.8 4.3z"/>
29
- <path d="M229.5 166.7c-3.2.3-1.8-9.6-1.8-18.8 1.2 8.6 4.5 16.5 1.8 18.8z"/>
30
- <path d="M230.7 166.3c2.2 1 6.1-.7 7.2-4.4-4 1.7-6.6 0-7.2 4.4zm25.6-22.2c-.6 4.9-2.6 7.7-5.5 7.2-.8-3 1.6-5 5.5-7.2zm-7.8 12.4c4.9.7 6.6-3 10-7.9-4.7 3.4-10.2 4-10 8z"/>
31
- <path d="M247 156c-2.6-3.2 0-7.3 2-10.7-.4 5.1 1.3 8-2 10.7zm-1 5.3c-.4-3.2 5-3.9 7.4-5.6-.9 1.8-2 6.7-7.5 5.6z"/>
32
- <path d="M244.8 161.3c-3.7-.4-2.2-6.7.5-10.1-1.1 4.8 2 8.1-.5 10.1z"/>
33
- <path d="M242 166.6c-4.2-2-1.5-7.2 0-10.3-.6 4.1 2.8 7.2 0 10.2z"/>
34
- <path d="M242.8 166c2.2 3 6.5-.8 7.4-5.2-3.7 3.1-6.5 2.6-7.4 5.3zm-9.6 20.3c-.4-4.3 2.8-12 .5-16.2-.3-.6.7-2.1 1.4-1.2 1 1.5 2 5.7 2.5 4.1.4-1.7.5-4.6 2-5.2 1-.3 2.3-.6 1.9 1-.4 1.4-1.2 3.4-.3 3.5.5 0 2-2 3.3-3 1-.8 2.6.6 1 1.8-4.8 4-9.5 5.9-12.3 15.2zm-8.7 64.5c-.6 0-1.3-.3-.6.6 5.7 7 7.3 9 15.6 8 8.3-1.1 10.3-3.4 16.2-6.7a14.6 14.6 0 0 1 11.2-1c1.6.5 2.6.5 1.4-.7-1.2-1.1-2.5-2.7-4-3.8a17.5 17.5 0 0 0-12.7-2.7c-6 1-11.1 4.9-17.2 6.4a25 25 0 0 1-9.9 0zm47.8 12.5c1 .2 1.7 2.2 2.3.9.8-2.3.2-4-.8-3.9-1.2.3-3.1 3-1.5 3z"/>
35
- <path stroke="none" d="M220.6 183c-1.2-1.4-.9-1.8 1-1.9 1.4 0 4.2 1 5.3.1 1-.7.5-3.7 1-5 .2-.9.7-2 2-.2 3.6 5.8 8 12.8 10 19.6 1 3.8 0 9.8-3.4 13.8 0-3.4-1.2-5.7-2.7-8.6-2-3.7-9.1-14-13.2-17.9z"/>
36
- <path d="M235.5 213.4c4 0 4.7-5.3 4.7-6.8-2 .4-5.4 3.7-4.7 6.8zm34.5 51.9c2.8.6 2.7-6.2-.2-9.1 1.3 4.4-2 8.4.1 9zm-1.2-.1c.2 3.2-8-.4-10-3 4.8 2.1 9.8.4 10 3zm-3.5-4.6c.3 3.1-7 .3-9.3-2.1 4.9 1.6 9-.5 9.3 2zm1.3.4c2.9.7 2.4-6.4-.4-8.8 1.4 4.7-1.8 8.1.4 8.8zm-3-4.3c2.9.7 1.2-5.4-.9-7.8.4 4.4-1 7.5 1 7.8zm-1.5 0c.3 3.2-5.4.8-7.6-2.3 4.8 1.5 7.3-.3 7.6 2.3zm-1.5-2.5c1.8-1.3-.1-4.8-3.7-4.6.4 2.1 1.6 5.9 3.7 4.6zm14 14.7c.1 3.2-8 1.6-10.6-1.8 5.2 1 10.3-.8 10.5 1.8zm-32.4-5.8c.3 3.2-8.6-.4-10.8-3.4 4.7 1.6 10.5.8 10.8 3.4zm5.4 1.3c1.9-1.3-1.9-4.7-5-5.5.4 2.1 3 6.8 5 5.6zm.6 2.3c.2 2.9-9.5 1.3-12-1.4 8.3 1.5 11.7-1.1 12 1.4z"/>
37
- <path d="M252.8 268.6c1 2.7-8.3 2-11.6.5 5.3 0 10.8-2.4 11.6-.5z"/>
38
- <path d="M257.1 270.6c1 2.4-7.6 2.4-11.8 1 5.6 0 10.8-3.4 11.8-1zm6.3 1.3c1.6 2.9-7.6 3.1-10.5 1.7 5.2-.7 9.2-4 10.5-1.7zm-10.7-4.9c-2.9 1.8-2.7-3.6-5-7.3 3.6 3.3 7 5.6 5 7.3z"/>
39
- <path d="M257.9 269c-2.4 2.1-4.4-5.3-6.6-9.5 3.6 4 8.8 7.7 6.6 9.4zm6.8 2c-2 2.4-8-7-10.2-12 3.3 3.9 11.8 10 10.2 12zm-5.8 7.2c-1 3.6-16.2-3.4-18-7.1 8.8 4.6 18.2 3.6 18 7zm-48.7-73.8c-.4-.5-1.4 0-1.2 1.1.3 1.5 2.5 9.2 6.3 11.8 2.7 2 17 5.1 23.4 6.5 3.6.7 6.5 2.5 8.9 5.3a94.4 94.4 0 0 0-3-9.8c-1.2-3-4.4-6.2-7.8-6.3-6.1-.3-14.1-.8-20-3.3a16 16 0 0 1-6.7-5.3z"/>
40
- <path d="M245.5 234.9c2 1.4 4.1-3.7 1.7-8.6-.1 4.7-3.8 6.3-1.7 8.6z"/>
41
- <path d="M247.4 239.6c2.7.8 3.5-4 1.8-7.8.3 4.1-4.3 6.6-1.8 7.8z"/>
42
- <path d="M249.5 243.4c2.6 1.3 3.5-3.6 1.7-7.1.2 4.5-3.7 5.9-1.7 7z"/>
43
- <path d="M248.4 243.7c-1 3-7-2.7-8-5.8 3.7 3.7 8.7 3.2 8 5.7z"/>
44
- <path d="M245.7 239c-1.2 3-8.7-5-10.4-8.7 3.7 3.7 11.2 6.5 10.4 8.6z"/>
45
- <path d="M244.2 234.3c-1.2 3.5-9.3-5.8-11.7-9.1 4 3.6 12.6 6.6 11.7 9.1zm-.3-3.4c3-.6-.1-3-3.7-6.9-.1 4.1.5 7 3.7 6.9z"/>
46
- <path d="M239 228.5c1.3-1.3-1.1-1.9-4.1-5.3-.5 2.3 2.8 6.5 4.2 5.3zm14 15.2c1.6 1 2.6-2.3.7-5.2-.5 3.2-2.1 4-.7 5.2zm-34.2-20.3c-3.3 2-8.6-6-10-9.3 2.9 3.8 10.6 7.2 10 9.3z"/>
47
- <path d="M221.7 228c-1.9 2-7.7-3.5-9.7-6.3 3 2.7 10.5 3 9.7 6.3z"/>
48
- <path d="M224.8 232.2c-.6 2.8-9-3.5-11-6.5 3.6 3.5 11.6 3.2 11 6.5z"/>
49
- <path d="M223.5 235.3c-1.3 2.5-8.2-3.8-9.9-7 4.3 3.6 11 4.5 10 7zM220 223c2.1-2.3 1.2-3.4-.4-7-.8 3.7-2.1 5.2.4 7zm2.9 4.3c4 .2 0-4.6-1-8.7.4 4.6-1 8.3 1 8.7z"/>
50
- <path d="M225.4 231.1c2.7-.6 2-4.5-.2-9.2.5 5.1-2.3 8 .2 9.2zm-1 7.7c-1 3-8.8-4-10-6.8 4 3.4 10.7 4.5 10 6.8z"/>
51
- <path d="M229.1 243.6c-1.1 3-9.3-3.2-11.8-6.6 4.9 4 12.4 3.6 11.8 6.6z"/>
52
- <path d="M233.9 248.5c-1.3 4.3-9.9-2.6-12.4-6 5.4 4.2 13 3 12.4 6zm-8-11c2.3 1.1 3.2-5.4 1.9-10.1 0 5-4.7 8.8-2 10z"/>
53
- <path d="M229.8 242.7c2.8.8 2-6.3-.5-11-.3 4.7-2.3 9 .5 11zm5 4.9c3 .1 1-6.1-1.6-9.6.4 4.5-1 9 1.6 9.6zm-5.5 2.6c-1 1.6-3.2-1.3-7-3.5 3.4 1 7.4 2 7 3.5zm-1.8-52.7c3-2.2.7-6.2 0-10-1 3.6-3.4 8.4 0 10zm0 5.3c-4.5-.5-3.8-6.1-4-9.7 1.4 4.9 5 5.7 4 9.8zm.6-.7c3.7-.2 3.5-4.4 3.7-8.6-1.9 3.9-4 4.5-3.7 8.6z"/>
54
- <path d="M228 207.3c-3 .3-4.4-2.6-5-7 2.7 4.1 5.1 2.8 5 7zm1-.3c3.7.5 3-3.8 3-7-1.2 3-4.2 4-3 7z"/>
55
- <path d="M223.2 205.2c.3 2.8 2.1 7.6 5 6.5 1.1-3.4-2.6-4.1-5-6.5z"/>
56
- <path d="M229 212c-1.2-2.4 3-3.7 3.8-6.9.5 4.6.1 7.6-3.8 7zm-11.9-29.2c2.3-2.4.3-6.4-.4-10.2-1 3.6-2.5 8.4.4 10.2zm0 4.6c-4 .5-5-7.7-5.5-11.3 1.4 4.9 6 7 5.5 11.4zm.8 0c2.8-1.5 2.2-4.7 3-7-1.8 2.9-3.6 3.3-3 7z"/>
57
- <path d="M217 192.8c-4.1.3-6.6-8.8-6.8-12.4 1.3 4.9 7.4 7.5 6.9 12.4zm.9-.2c4-.9 3.5-3.5 2.9-7.6-1.3 4.2-3.5 3.3-2.9 7.6z"/>
58
- <path d="M217 198c-4.6.8-4.3-6.6-8-11.9 3.2 4 9 9 8 11.9zm1-.3c3.6.2 4-5.1 3.8-7.3-.9 2.2-5 4.2-3.7 7.4z"/>
59
- <path d="M209.8 192.3c1.7 5.7 4.2 11.4 7.2 11 1.5-3.3-2.9-3.7-7.2-11z"/>
60
- <path d="M218.1 202.4c-1.2-2.5 3-3.7 3.8-6.9.5 4.6.1 7.6-3.8 6.9zm-7.1-3.6c2.5 5.1 3.6 11 7 10.1 1.3-4-3.8-4.8-7-10.1z"/>
61
- <path d="M218.7 208c-1.5-2.8 2.7-3.7 3.8-7.4.5 4.8 0 8.3-3.8 7.3zm7.2-34.5c2.4.6 5-2.1 4.1-6.2-2.8.6-4 3.2-4.1 6.2zm-7.9-2.1c.2 1.2 1.7 1.3 1.2-.4a5.3 5.3 0 0 1 0-3.4 7.5 7.5 0 0 0 0-4.6c-.4-1-1.8-.4-1.2.4.6.9.7 2.8.2 3.7-.6 1.3-.4 3-.2 4.3zm22.9 16c-1 1.3-2.9.4-1.4-1.5 1.2-1.5 3-2.8 3-4.4.2-2 1.3-5 2.4-6.1 1.1-1.1 2.4.4 1.2 1.2-1.3.8-2.2 4.4-2.1 5.8-.1 2-2 3.5-3.1 5zm-3-2.3c-1 1.4-2.4.5-1.6-1.7.7-1.5.8-3.5 1.6-4.6 1.2-1.7 3-3.1 4.1-4.2 1.2-1 2 0 1 1a27 27 0 0 0-3.3 4c-1.4 2.2-.8 4-1.8 5.5zm-15.7-7.2c-.1 2 1.5 2.4 1.4-.4 0-3-2.2-5.8-1-10.3.8-2.2.8-6.3.4-8.4-.4-2.2-2-.8-1.3.9.6 2-.1 5.6-.6 7.5-1.5 5.4 1.2 8 1 10.7zm4.3-11c-.2 1.9-1.8 2-1.3-.5.4-2 .4-3.6 0-5.3-.6-2.1-.4-5.7 0-7.2.5-1.6 2-.7 1.4.5a9.9 9.9 0 0 0-.3 5.9c.6 2 .5 4.8.2 6.7zM210.9 204c.8.9 2 .3 1-1-1-1-.7-1.2-1.3-2.4-.6-1.4-.5-2.1-1.2-3-.7-1-1.6 0-1 .7.8 1 .6 1.6 1 2.5 1 1.5.7 2.3 1.5 3.2zm20.4 24.6a8.6 8.6 0 0 1 4.4 6.7 16 16 0 0 0 2 7.1c-2-.5-3-3.7-3.3-6.8-.3-3.2-2-4.5-3-7zm5.1 5.9c1.7 3.1 4 4.3 4.2 6.6.2 2.7.4 2.8 1.1 5.4-2-.5-2.5-.7-3-4.7-.3-2.8-2.6-4.7-2.3-7.3z"/>
62
- <path stroke="none" d="M289 263.3c1 1.8 2 4.5 4 4 0-1.3-2.1-2.3-4-4zm3 .6c3.7 1.6 7 1.2 7.5 3.6-3.6.4-5-1-7.6-3.6zm-16.1-12.7a14 14 0 0 1 5 7.7 29 29 0 0 0 3.6 7.8 13 13 0 0 1-5.3-7.4c-.7-3-1.6-5.3-3.3-8zm3.1 0c2.8 2.2 5.4 4.8 6.2 7.9.8 2.9 1.3 5.1 3.2 8-3-1.9-4.1-4.7-5-7.8-.7-3-2.5-5.2-4.4-8zm9.2 7.3a1.1 1.1 0 0 1 .7-1.2 33.4 33.4 0 0 1 2.6-.8c1-.3 1.6.4 1.6.9v2c0 .7-.2.8-.7.9-.7.1-1.7.2-2.4.7-.6.4-1.2.1-1.5-.5l-.3-2zm10.6 0c0-.6-.2-1.1-.6-1.2a5.4 5.4 0 0 0-2.4-.4c-1 0-1.1.2-1.1.6v2.1c0 .8 0 .8.4 1 .7 0 1.8 0 2.5.6.5.3 1 0 1.1-.6l.1-2.1z"/>
63
- </g>
64
- <use width="100%" height="100%" x="-600" transform="scale(-1 1)" xlink:href="#a"/>
65
- <g stroke="none">
66
- <path d="M328.5 286.6c0 1.2.2 2.2 1 3.1a19 19 0 0 0-13.8 1.1c-1.8.8-4-1-1.9-2.7 3-2.3 9.7-1 14.7-1.5zm-57.5 0a7 7 0 0 1-.4 3c4.4-1.7 9.1-.2 13.6 1.6 3 1.3 3.3-1 2.8-1.7a6.5 6.5 0 0 0-5-2.9h-11zm3.8-21.7c-1.3-.5-2.7 0-4 1.4-4.3 4.2-9.4 8.3-13.5 11.6-1.5 1.3-3 3.7 3.4 6 .3.2 5 2 8 2 1.3 0 1.3 1.8 1 2.3-.5 1-.1 1.4-1.1 2.3-1.1 1 0 2.1 1 1.3 3.6-3.2 9.6-1.1 15.3.7 1.4.4 3.8.3 3.8-1.6 0-2 1.5-3.4 2.4-3.5 2.4.4 14 .5 17.5.1 2-.3 2.2 2.9 3.3 4 .8.9 3.7 1.1 5.8.2 4-1.8 10-1.8 12.5 0 1 .7 1.9 0 1.3-.7-.8-1-.7-1.6-1.1-2.4-1-2-.2-2.4.8-2.5 11-1.5 14.6-5.2 11.2-8.3-4.4-3.8-9.2-7.7-13.4-12.2-1.2-1.2-2-1.7-4.3-.7a66.5 66.5 0 0 1-25.3 5.9 76 76 0 0 1-24.6-5.8z"/>
67
- <path fill="#bd6b00" d="M326.6 265.5l-1.6.4c-9 3.2-17.2 5.4-25.7 5.4-8.3 0-17-2.4-24.9-5.6a2.3 2.3 0 0 0-1.5 0c-.5.1-1 .4-1.3.7a115.5 115.5 0 0 1-11.8 10.3c-.7.5-.6 1.8.5 2.2 8.3 3 16.4 8.5 39.6 8.3 23.5-.2 31.8-5.6 39.2-8.1.5-.2 1-.5 1.3-1a1 1 0 0 0 .1-.8 2 2 0 0 0-.6-.8c-4.3-3.5-8.8-6.3-11.8-10.4-.3-.5-.9-.6-1.5-.5zm0 .5c.5 0 1 0 1.1.3 3 4.3 7.7 7 11.9 10.5l.4.7a.5.5 0 0 1 0 .4c-.1.3-.6.6-1 .7-7.6 2.6-15.7 8-39 8.2-23.2.2-31.2-5.3-39.5-8.3-.8-.4-.7-1.2-.4-1.4 4.2-3.2 8.2-6.8 11.8-10.4a2.5 2.5 0 0 1 1.1-.6h1.2a68 68 0 0 0 25 5.6c8.7 0 17-2.2 26-5.3a6.7 6.7 0 0 1 1.5-.4z"/>
68
- <path d="M269.7 114.6c0-1.4 2-1.5 1.8.4-.3 2.3 4.5 8.3 4.9 12 .3 2.5-1.5 4.6-3.2 6a6.6 6.6 0 0 1-6.8.5c-.9-.8-1.7-3.3-1-4.3.2-.3 1.3 3.7 3.7 3.7 3.3 0 6-2.5 6-4.7.2-3.8-5.3-9.8-5.4-13.6zm9.5 9.4c.6-.4 1.4 1.3.8 1.7-.5.3-1.5-1.3-.8-1.8zm1.5-3.5c-.3.2-.8 0-.7-.2a12 12 0 0 1 3.6-3.3c.4-.2 1 .4.8.7a11 11 0 0 1-3.7 2.8zm12.6-10c.3-.6 2.1-1.3 2.6-1.7.4-.5.6.4.4.7-.3.7-1.9 1.7-2.6 1.8-.3 0-.6-.4-.4-.7zm4.3.3a8.3 8.3 0 0 1 2.5-3.4c.5-.3 1.3 0 1.1.4a9 9 0 0 1-2.9 3.3c-.3.3-.8 0-.7-.3zm-3.7 2.7c-.3.2-.1.7.1.8.6.2 1.5.2 2 0 .6-.4.3-2.9-.5-1.6-.6.8-1 .6-1.6.8zm-7.3 5.6c-1.3-1 .4-2.4 1.7-1.4 2.7 2-4 9.8-7.6 13.4-.7.7-1.3-1-.4-1.9a33.7 33.7 0 0 0 6.7-7.6c.4-.5.7-1.6-.4-2.5zm15.3-6.6c.1-1-1.6 0-1.6-1.3 0-.7 1.9-1.2 2.7-.4 1.3 1.4.3 3.7-2 3.9-1.8 0-5 2.7-4.5 3.2.5.7 5.4 1.1 8.3.7 1.8-.3 1.4 1.3-.4 1.5-1.8.2-3.2 0-4.8.6-2 .5-2.8 3-3.9 4-.2.2-.8-.8-.6-1.2.8-1.2 2-3 3.4-3.6.8-.3-2.4-.4-3.4-.7-.8-.2-.6-1.3-.3-1.9.4-.8 3.4-3.9 4.7-3.8 1.1 0 2.3-.3 2.4-1zm5 .2c.6-.5 1-1.3 1.5-1.8.3-.3.9 0 .8.8-.1.7-1 1.2-1.5 1.7-.5.3-1-.4-.7-.7zm6.5-2.3c.9 0 1 1.6.2 1.8-.6.2-1-1.7-.2-1.8zm-2.1 5c0 1.5.7 1.4 2 1.3 1.3 0 2.4 0 2.4-1.2 0-1.3-.7-2.5-1-1.6-.1.8-.3 2.2-.8 1.6-.4-.5-.2-.6-1 .2-.5.5-.5-.2-.8-.6-.2-.3-.8.2-.8.4zm-9.2 7.2c-.3 1.9 0 4.5.9 4.5 1.2 0 3.6-4 4.8-6.2.7-1.2 1.8-1.4 1.3-.1-.7 1.9-.6 6 0 7.2.4.6 3-.6 3.4-1.5.8-1.7.1-4.8.4-6.7.1-1.2 1.3-1.5 1.2-.3a75.6 75.6 0 0 0-.1 7.5c0 1 2.9 2.4 3.3-.6.2-1.8 1.2-3.7 0-5.7-.8-1.3 1.1-1.2 2.1.6.7 1.2-.6 3.2-.5 4.7 0 2.4-1.8 3.8-3.1 3.8-1.2 0-2-1.5-3-1.5s-2.2 1.7-3 1.6c-3.6-.2-1.7-5.3-2.8-5.4-1.2 0-2.5 5-4 4.9-1.4-.2-3-4.2-2.3-5.8.5-1.6 1.5-2 1.4-1zm16.9-8c-1.7-1 0-3.7.9-2.8 1.6 2 3.2 6.5 4.4 6.9.7.2.6-3.4 1.1-5 .4-1.3 1.8-.9 1.6.7-.1.5-2 6.4-1.8 6.6a47.1 47.1 0 0 1 3.3 7.8c.3 1.2-1.1.4-1.3.2-.9-1.4-2.4-6.5-2.4-6.2l-1.7 7.7c-.2 1-1.7.8-1.3-1 .3-1.4 2.3-8.3 2.2-8.6a17.2 17.2 0 0 0-5-6.3z"/>
69
- <path d="M322 131.2c-.4 0-1.2 1 1.2 1.5 3.1.6 6.6-.5 7.6-3.6 1.3-3.7 2-7.2 2.7-8.5.8-1.5 1.8-1.4 1-3.6-.5-1.7-1.5-1.2-1.7-.3-.5 2.3-2.6 10-3.3 11.3-1.2 2.6-3.7 3.6-7.5 3.2z"/>
70
- <path d="M328.4 119c-.4-.7-1.2 0-1 .7a1.2 1.2 0 0 0 1.2 1c.7 0 2.2.1 2.2-1 0-.8-.7-1.5-1.1-.6-.5.8-1 .7-1.3 0zm.7-3c-.2.2 0 1.1.3 1a7 7 0 0 0 3.3-.8c.2-.2.1-.7-.2-.7-1 0-2.6 0-3.4.5zm8.8 2.3c.8-1.2 2.8-1.3 2 .4a614.3 614.3 0 0 1-6.3 12.3c-.8 1.4-1.4.7-.8-.4.7-1.4 4.9-12 5.1-12.3z"/>
71
- <path d="M330.2 133c-.2-.8-1.5-2-1.3.2.2 3.8 5.5 2.6 7 1.3s.3 4.3 2.2 4.9c1 .3 3-1.1 4-2.4 2.7-3.5 4.5-8.6 7-12 1-1.4-.5-2.4-1-1.3-2.4 3.8-5.2 11.6-8.3 13.6-2.5 1.6-1.7-2-1.8-3.2-.1-.8-1.1-2-2.4-.9a5.5 5.5 0 0 1-3.7 1.2c-.7 0-1.4 0-1.7-1.4z"/>
72
- <path d="M339.6 126c0-.3-1.1-.4-1 .7 0 .8 1 1 1.1 1 1.5-1.2-.3-.6-.1-1.8zm-2.3 4.4c-.3 0-.6 1 .2 1.1l3.9-.2c.4 0 .6-.9-.4-.8-1.2 0-2.7-.3-3.7 0zm-62-16.6c.5 0 1.6 1.4 1.5 1.9 0 .2-1.2 0-1.5-.3-.3-.3-.2-1.6 0-1.6zm-5.3 10.4c-1 .6.2 1.7 1 1.2 2.8-1.9 7-3.8 8-7.5.3-1.2 1.4-3.1 2.5-3.5 1-.5 2.6 1.9 3.6 0 .6-1 2.7.7 3.2-.4.6-1.3.3-2 .3-3.4 0-.8-.7-1-1.2.3-.2.6 0 1.2-.1 1.6-.2.2-.6.4-1 .2-.2-.2 0-.7-.6-1-.2 0-.6-.1-.8.2-.7 1.3-1 2.5-2.1 1-.9-1-1.4-3.1-2-.3-.2 1-1.7 2.4-2.6 2.4-1.1 0-.8-3-3.2-2.5-1.3.3-1.2 2.7-1 3.5.3 1.3 4 .4 3.7 1.2-.6 2.7-4.4 5.4-7.7 7zm-22.7 13.2c-.1.5.5 1.7 1.1 1.8.6 0 1-1.3.8-1.8-.2-.3-1.8-.3-1.9 0zm3.3 4.9c-.4-.4-1.6.7-.6 1.5.5.5 2.5 1.1 3 .2.8-1.2-.7-5.5 0-6 .5-.5 2.8 2.8 4 3 2.7.4 2-4.6 5-4.2 1.9.2 2.1-2.2 1.8-3.8-.2-1.5-2.6-3.6-3.7-4.6-1.4-1.2-2.1 1-1.2 1.6 1.2 1 3.3 2.9 3.6 4.1.1.6-1.4 1.8-2 1.5-1.4-.8-2.6-4-3.8-4.7-.4-.2-1.4.3-1 1.3.6 1.1 3 2.7 3.1 3.9.1 1-1 3.2-1.8 3.2-.9 0-3-2.7-3.7-4-.4-.5-1.5-.5-1.7.4a22 22 0 0 0 .5 5.5c.2 1.6-.9 1.7-1.5 1.1zm-4-8.6c-.4.4.8 1.2 1 1 .4-.4 2.1-2.3 1.8-3-.3-.6-2.6-2-3-1.3-.7 1.1 2.2 1.7 1.7 2a7 7 0 0 0-1.5 1.3zm4.1-8.4s.8 2.5 1.4 1.4c.4-.7-1.4-1.4-1.4-1.4zm1.2 4c-.2 0-1 .7-.5 1 .8.4 2.9.8 2.4-.7-.3-.9 3.2 0 2.3-2.4a3.7 3.7 0 0 0-1.7-1.7c-.4 0-1.5.5-.8.9.5.2 2 1.1 1.5 1.7-.7.6-1.1-.3-1.9-.1-.4 0-.1 1.2-.4 1.5 0 .2-.7-.4-.9-.3zm5.5-9.5a3.5 3.5 0 0 0-1.2 2c0 .2.3.6.5.5a3.2 3.2 0 0 0 1.2-1.9c0-.3-.2-.8-.5-.6zm2.8-.3c-.8-1 1-2.6 1.7-.5.5 1.3 5.5 7.9 6.5 10.1.8 1.5 0 2.1-.9 1-2.5-3.2-4.6-7.2-7.3-10.6zm5.2.1c.9-1 2.7-3 2.2-4-.4-1-1.5-1-1.7-.7-1 1.3.8 1 .5 1.4-.5 1-1 1.6-1.3 2.6-.1.3.1.9.3.7zm77.8 3.2c-.7-.5.6-3 1.5-2 2.3 2.7 3.4 11.6 4.1 18.3 0 0-1 .9-1 .7 0-3.5-1.5-14.4-4.6-17zm-53.1-8.6c-.8-1.8 1.1-2.4 1.4-1.2 1.3 5.8 4.5 10.2 7 14.1.7 1.2 0 2-1.7.8-1.2-.8-2.5-3.9-3-4-1.2-.2-3.8 5-9.1 3.5-1.4-.4-1.3-4.5-1.4-6.3 0-.9 1-1 1 0 0 1.7 0 5.2 2.1 5.4 1.8 0 5.6-2.4 6.4-4.4.8-2-1.9-5.9-2.7-8z"/>
73
- <path d="M344.6 138.4c.4-1.2 6.1-10.8 6.9-12.9.4-1 2 1.8.4 3.3-1.4 1.2-5.5 8-6.3 10.4-.4 1-1.4.5-1-.8z"/>
74
- <path d="M354.3 129.3c1-4 3.6.6 1.3 2.8-3.4 3.4-4.5 9.9-10 10.9-1.4.3-4-.7-4.8-1.3-.3-.2.2-1.6 1.1-.9 1.3 1 4.1 1.3 5.6.1a25.4 25.4 0 0 0 6.8-11.6zm-57 12.7c-.3.3-1 .3-1.1.7-.3 1.4 0 2.2-.3 3.6s-1.3 1.4-1.2.3c0-1.4 1.3-3.5.4-3.6-.6-.1-1-.9-.4-1.3 1.1-.7 1.7-.6 2.4-.4.3.1.4.5.2.7z"/>
75
- <path d="M296.5 140c-1.4 1.4-2.8 1.9-4.1 3.5-.6.6-.5 1.5-.9 2.4-.3.9-1.4 1-1.7.9-.5-.4-.4-2-1-1.2-.6.9-.9 2-1.7 2-.7 0-2-1.5-1.3-1.5 2.3-.3 2.2-2 3-2.2 1-.1 1 1.5 1.7 1.2.4-.2.7-2.1 1.2-2.6 1.5-1.6 2.7-2.4 4.3-3.6.7-.6 1.3.5.5 1.2zm5.3 5c-1.2.2-1 1.7-.6 1.8.5.3 1.4.4 1.7-1.3.2-.7.3 3.5 1.8 1.9 1-1 3.1.2 4-1 .7-.9 1-1.5.4-2.7-.2-.3-1-.2-1 .7 0 .8-.5 1.7-1.3 1.6-.4-.1.2-1.9-.2-2.4a.5.5 0 0 0-.7 0c-.3.4.3 2.2-.6 2.4-1.2.2-.6-1.2-1-1.4-1.7-.8-1.8.2-2.5.3zm9-3c.9-.2.6-.2 2-1.3.5-.4.6.8.5 1.3 0 .7-1 .2-1.3.9-.4.9-.2 3-.4 3.8 0 .4-.8.4-.8 0-.2-1 .1-2 0-3.3 0-.4-.5-1.1 0-1.3zm-5-2.5c-.2.9-.2 1.6-.2 2.3 0 .5 1 .2 1 .1 0-.8.2-2 0-2.3-.2-.1-.7-.3-.8-.1z"/>
76
- <path d="M299.5 130.2l-1.4 5.6-2-3.8v3.9l-4.4-5.2 1.5 5.6-4-3.4 2.2 3.8-7-4.5 4.4 5.2-5.6-2.8 4 3.4-9-3.4 8.7 4.3a29 29 0 0 1 12.6-2.6c4.9 0 9.3 1 12.5 2.6l8.8-4.3-9 3.4 4-3.4-5.5 2.8 4.3-5.2-7 4.5 2.2-3.8-4 3.3 1.5-5.5-4.3 5.2V132l-2 3.8-1.5-5.6z"/>
77
- </g>
78
- </g>
79
- <path fill="#fff" d="M311.3 295l-.3 2.6h-.4l-.1-1.8a9.3 9.3 0 0 0-.5-1.6 7.3 7.3 0 0 0-.5-1.3l-1-1.4.8-2.2a6.6 6.6 0 0 1 1.5 2.4 9.4 9.4 0 0 1 .5 3.2m7-4.2c0 .7-.2 1.2-.5 1.5-.2.3-.6.6-1.3.7l.4 1.5a6.7 6.7 0 0 1 0 2 22.5 22.5 0 0 1-.1 1.3h-.4a8.2 8.2 0 0 0-.1-1.3 5.5 5.5 0 0 0-.2-1l-.4-1a10.5 10.5 0 0 0-.7-1.4l-1-1.7.6-2 1 1c.3.2.6.3 1 .3.8 0 1.2-.4 1.2-1.3h.4v1.4m6.4 4.8l-.5 2.1c-.4 0-.6-.3-.8-.7l-.4-1.3a12.4 12.4 0 0 1-.1-1.7 4 4 0 0 1-1 .2 2 2 0 0 1-1.3-.4 1.3 1.3 0 0 1-.5-1c0-.9.3-1.7.7-2.3.5-.7 1-1 1.5-1.1.5 0 .8.1 1 .4a2 2 0 0 1 .3.9v2c0 .9.1 1.5.3 1.9 0 .3.3.6.8 1m-2-3.5c0-.6-.3-.8-.8-.8a1 1 0 0 0-.6.1c-.2.1-.2.2-.2.3 0 .3.3.5 1 .5l.6-.1m8.7 3l-.3 2.6c-.5-.4-1-1-1.4-2a25.4 25.4 0 0 1-1.3-4.1 52.8 52.8 0 0 1-1.8 5.5 2.9 2.9 0 0 1-.8.7v-2.5c.6-.7.9-1.1 1-1.5a7.6 7.6 0 0 0 .8-1.7l.5-2.7h.4l.9 2.7c.2.6.5 1.2.9 1.6l1 1.4"/>
80
- <path fill="#bf0000" d="M350.8 319.4c.4.4.6.8.7 1.2l.4 1.6-.8.1a7.8 7.8 0 0 0-1-1.5 18.8 18.8 0 0 0-1.1-1.2 46 46 0 0 0-1.7-1.5 34.4 34.4 0 0 0-2-1.7c-.4-.2-.6-.4-.6-.5a1.9 1.9 0 0 1-.3-.8 11.2 11.2 0 0 1-.2-1.6l2.7 2.2a44.3 44.3 0 0 1 2.5 2.2l1.4 1.5m-9.5-5.8l-.2 2H338l.3-2h3m8.4 8.9l-7.6 2.3-1.3-2 6.5-2-.7-.8a2.8 2.8 0 0 0-.9-.6 1.4 1.4 0 0 1-.4 1 2 2 0 0 1-1 .6 3.4 3.4 0 0 1-1.8 0 2 2 0 0 1-1.3-.7 4 4 0 0 1-.7-2.2c0-1 .3-1.6.9-1.8.7-.2 1.8 0 3 .7a8.1 8.1 0 0 1 3 2.4l2.3 3.1m-5.8-4a3.8 3.8 0 0 0-.8-.3 1.1 1.1 0 0 0-.6 0 .7.7 0 0 0-.5.3.5.5 0 0 0 0 .6l.5.2h.6l.4-.3.4-.5m-8-1.6l-.5 2-3.2-.3.5-2 3.1.3m7.5 7.7l-1.7.4a5.3 5.3 0 0 1-1.7 0 3.6 3.6 0 0 1-1.5-.4c-.3.5-.8 1-1.5 1.2a7.4 7.4 0 0 1-1.6.6l-1.2.3-1-2 1.1-.3a9.1 9.1 0 0 0 1.3-.4l.9-.5-1-.5h-.7a.4.4 0 0 0-.2 0 .6.6 0 0 0-.2.3h-.5c-.5-.8-.6-1.5-.3-2s.9-.8 2-1a6.8 6.8 0 0 1 2.6-.2c.8.1 1.3.4 1.5.9.2.2.2.5.2.7l-.4 1.2h.5a2 2 0 0 0 .6 0l1.7-.3 1 2m-8 1.8l-1.6.3a3 3 0 0 1-2.2-.4 5.5 5.5 0 0 1-1.7-2.6l-.8-2.2a2 2 0 0 0-.8-1 4.6 4.6 0 0 0-.9-.5l.6-2.1c.6.3 1 .6 1.4 1l1 1.7.5 1.5 1.1 2.2c.3.3.7.4 1 .3l1.7-.2.7 2m-7-7.5l-1 1.9-3-.7 1-1.9 3 .7m1.8 8.4l-7.5.7-.4-2 6.2-.7a2.3 2.3 0 0 0-.6-.8 8.3 8.3 0 0 0-1-.6l.5-2c.7.4 1.2.9 1.6 1.3.3.5.6 1.2.8 2.1l.4 2m-6 1a17 17 0 0 1-2.2-.2 10.5 10.5 0 0 1-1.7-.5 5.6 5.6 0 0 1-1.3.4 9.9 9.9 0 0 1-1.7 0h-2a2.5 2.5 0 0 1-1.2-.3c-.3-.2-.5-.5-.8-1a4.1 4.1 0 0 1-1.5 1l-1.7.1h-1.7l.2-2.1h1.7c.8 0 1.5 0 2.1-.4a2 2 0 0 0 1.3-1.8l.7.1a30.2 30.2 0 0 0-.1 1.3c0 .3 0 .5.3.7.3.2.6.3 1 .3h1.5c1 0 1.6 0 2-.2.6-.2.9-.5 1-1.1l.1-.4s.3 0 .5-.2l.5-.2v.4a8.9 8.9 0 0 1 0 .3l-.3 1.1a12.4 12.4 0 0 0 2 .5c.1-.2 0-.4-.1-.7l-.3-.6a.5.5 0 0 1 .1-.3l.3-.2 1-.9.5 1v1l-.2 2.9m-11.3-8.7l-2 1.3-1.3-.9-1.4 1-1.9-1 1.8-1.3 1.5.8 1.5-1 1.8 1m-3 8.2l-7.3-1.2.8-2 6.2 1c0-.4 0-.7-.2-1a5.2 5.2 0 0 0-.5-.8l1.6-1.7c.4.6.6 1 .7 1.6 0 .5-.2 1.2-.5 2.1l-.8 2m-6.1-1l-1.6-.3c-.9-.2-1.4-.6-1.5-1.2-.2-.6.1-1.5.8-2.8l1.2-2c.3-.5.4-.9.3-1.2a2.2 2.2 0 0 0-.3-.7l2.2-1.6c.3.5.3 1 .3 1.4 0 .5-.3 1.1-.7 1.8l-.8 1.4a5.8 5.8 0 0 0-.9 2.2c0 .4.2.6.5.7l1.6.4-1.1 2m-3.8-8l-2.5 1.1-1.8-1.7 2.6-1 1.7 1.7m-1 6.6a6.8 6.8 0 0 1-1.6 1.4 4.2 4.2 0 0 1-1.7.6l-2.4-.1a14.8 14.8 0 0 1-2.8-.7 7.7 7.7 0 0 1-3.4-2c-.6-.8-.6-1.5 0-2.2a7 7 0 0 1 2-1.6c.8-.5 2-1 3.8-1.6l.4.5-2.8 1.2c-.5.3-1 .6-1.3 1-.4.4-.3 1 .2 1.6a10.5 10.5 0 0 0 6.3 2.2c1.2 0 2-.3 2.3-.7.3-.3.4-.6.5-1l.2-1.6 2.5-1.5a8 8 0 0 1-.1 1.5 4.4 4.4 0 0 1-1 1.6l-1.2 1.4"/>
81
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/ag.svg DELETED
@@ -1,14 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-ag" viewBox="0 0 640 480">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".7" d="M-79.7 0H603v512H-79.7z"/>
5
- </clipPath>
6
- </defs>
7
- <g fill-rule="evenodd" clip-path="url(#a)" transform="translate(74.7) scale(.9375)">
8
- <path fill="#fff" d="M-120 0h763.3v511.5H-120z"/>
9
- <path d="M-118.3.6h760.9v216.1h-761z"/>
10
- <path fill="#0061ff" d="M21.3 203.2h505V317h-505z"/>
11
- <path fill="#e20000" d="M642.8 1.8V512H262L642.8 1.7zm-761.5 0V512H262L-118.7 1.7z"/>
12
- <path fill="#ffd600" d="M440.4 203.3L364 184l64.9-49-79.7 11.4 41-69.5-70.7 41L332.3 37l-47.9 63.8-19.3-74-21.7 76.3-47.8-65 13.7 83.2L138.5 78l41 69.5-77.4-12.5 63.8 47.8L86 203.3h354.3z"/>
13
- </g>
14
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/ai.svg DELETED
@@ -1,767 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-ai" viewBox="0 0 640 480">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
- </clipPath>
6
- </defs>
7
- <g clip-path="url(#a)">
8
- <path fill="#fff" fill-rule="evenodd" d="M.4.4h402.7v240H.4z"/>
9
- <path fill="#c00" d="M.4.4v18l96.1 59.3 36.1 1.3L.5.4z"/>
10
- <path fill="#006" d="M41.6.4l116.5 73V.5H41.6z"/>
11
- <path fill="#c00" d="M173.6.4v93.3H.4V147h173.2v93.2H227V147h173.2V93.7H226.9V.4h-53.3z"/>
12
- <path fill="#006" d="M242.4.4v68.8L356.4 1l-114-.5z"/>
13
- <path fill="#c00" d="M246 76.8l32-.3L402.7.9l-33 .7L246 76.7z"/>
14
- <path fill="#006" d="M401.3 21l-95 56.7 93.8.4v84.4h-80l79.2 51.5 1.2 26.2-42.3-.6-115.8-68.2v68.8h-84.3v-68.8L49.5 240l-49 .2V480h799.2V.4L402.2 0M.4 27L0 77l84.2 1L.4 27.1zm0 135.5v51l80-50.5-80-.5z"/>
15
- <path fill="#c00" d="M308.2 164.6l-33.3-.3 125.6 75-.8-17.1-91.5-57.6zm-276.6 76l117.8-74.2-31 .3-118 73.8"/>
16
- <path fill="#49497d" d="M525.4 247.8l2 2-2-2z"/>
17
- <path fill="#0e0e6e" d="M527.4 247.8l2 2-2-2z"/>
18
- <path fill="#262678" d="M521.3 249.8l2 2-2-2z"/>
19
- <path fill="#808067" d="M523.4 249.8l2 2-2-2z"/>
20
- <path fill="#58587b" d="M529.4 249.8l2 2-2-2z"/>
21
- <path fill="#0e0e6e" d="M454.3 251.9l2 2-2-2z"/>
22
- <path fill="#1b1b74" d="M517.3 251.9l2 2-2-2z"/>
23
- <path fill="#6e6c70" d="M519.3 251.9l2 2-2-2z"/>
24
- <path fill="#cc3" d="M457.9 255.5c0 52.5-6 111.6 33 152.7 8 8.4 23.4 27.7 36.5 27 13.7-.8 31.4-21.1 39.2-31 34-44.8 28.7-98.2 29.8-150.2-15.3 6.9-23 9.2-36.4 9.1-10 1-25.3-5.6-34.5-10-6 4-14.7 8.8-30.4 9.3-18 .8-23.8-2.3-37.2-6.9z"/>
25
- <path fill="#99994e" d="M531.5 251.9l2 2-2-2z"/>
26
- <path fill="#49497d" d="M533.5 251.9l2 2-2-2z"/>
27
- <path fill="#0e0e6e" d="M596.4 251.9l2 2-2-2z"/>
28
- <path fill="#a4a43d" d="M456.4 253.9l2 2-2-2z"/>
29
- <path fill="#6e6c70" d="M458.4 253.9l2 2-2-2z"/>
30
- <path fill="#3a3a7c" d="M460.4 253.9l2 2-2-2z"/>
31
- <path fill="#1b1b74" d="M513.2 253.9l2 2-2-2z"/>
32
- <path fill="#6e6c70" d="M515.2 253.9l2 2-2-2z"/>
33
- <path fill="#a4a43d" d="M517.3 253.9l2 2-2-2z"/>
34
- <path fill="#d0d045" d="M525.4 253.9l2 2-2-2z"/>
35
- <path fill="#a4a43d" d="M533.5 253.9l2 2-2-2z"/>
36
- <path fill="#8d8d5b" d="M535.5 253.9l2 2-2-2z"/>
37
- <path fill="#3a3a7c" d="M537.6 253.9l2 2-2-2z"/>
38
- <path fill="#262678" d="M590.3 253.9l2 2-2-2z"/>
39
- <path fill="#53527c" d="M592.4 253.9l2 2-2-2z"/>
40
- <path fill="#8d8d5b" d="M594.4 253.9l2 2-2-2z"/>
41
- <path fill="#737370" d="M464.5 256l2 2-2-2z"/>
42
- <path fill="#53527c" d="M466.5 256l2 2-2-2z"/>
43
- <path fill="#1b1b74" d="M468.5 256l2 2-2-2z"/>
44
- <path fill="#262678" d="M509.1 256l2 2-2-2z"/>
45
- <path fill="#6e6c70" d="M511.2 256l2 2-2-2z"/>
46
- <path fill="#a4a43d" d="M513.2 256l2 2-2-2z"/>
47
- <path fill="#e5e59d" d="M523.4 256l2 2-2-2z"/>
48
- <path fill="#fff" d="M462 261.2c-1 27.6-.2 58.6 4.1 88.1 4.8 15.4 4.1 23.9 11.2 33.1l99-.8c6-9.7 10.5-24.4 11-30.3 5.6-29.7 5.7-62.6 5.9-92a62 62 0 0 1-35.7 7.4 69 69 0 0 1-30.5-9.2c-9.5 5.6-12.8 8.2-28.4 8.9-12.2.6-22 1.6-36.6-5.2z"/>
49
- <path fill="#f2f1d7" d="M527.4 256l2 2-2-2z"/>
50
- <path fill="#d9d868" d="M529.4 256l2 2-2-2z"/>
51
- <path fill="#a4a43d" d="M537.6 256l2 2-2-2z"/>
52
- <path fill="#99994e" d="M539.6 256l2 2-2-2z"/>
53
- <path fill="#49497d" d="M541.6 256l2 2-2-2z"/>
54
- <path fill="#0e0e6e" d="M543.6 256l2 2-2-2z"/>
55
- <path fill="#3a3a7c" d="M584.3 256l2 2-2-2z"/>
56
- <path fill="#667" d="M586.3 256l2 2-2-2z"/>
57
- <path fill="#99994e" d="M588.3 256l2 2-2-2z"/>
58
- <path fill="#a4a43d" d="M590.3 256l2 2-2-2m-121.8 2l2 2-2-2z"/>
59
- <path fill="#99994e" d="M470.6 258l2 2-2-2z"/>
60
- <path fill="#6e6c70" d="M472.6 258l2 2-2-2z"/>
61
- <path fill="#49497d" d="M474.6 258l2 2-2-2z"/>
62
- <path fill="#1b1b74" d="M476.6 258l2 2-2-2m26.4 0l2 2-2-2z"/>
63
- <path fill="#53527c" d="M505 258l2.1 2-2-2z"/>
64
- <path fill="#8d8d5b" d="M507.1 258l2 2-2-2z"/>
65
- <path fill="#a4a43d" d="M509.1 258l2 2-2-2z"/>
66
- <path fill="#e5e59d" d="M519.3 258l2 2-2-2z"/>
67
- <path fill="#fbfaf2" d="M521.3 258l2 2-2-2z"/>
68
- <path fill="#f2f1d2" d="M531.5 258l2 2-2-2z"/>
69
- <path fill="#d9d868" d="M533.5 258l2 2-2-2z"/>
70
- <path fill="#a4a43d" d="M543.6 258l2 2-2-2z"/>
71
- <path fill="#6e6c70" d="M545.7 258l2 2-2-2z"/>
72
- <path fill="#3a3a7c" d="M547.7 258l2 2-2-2z"/>
73
- <path fill="#0e0e6e" d="M574.1 258l2 2-2-2z"/>
74
- <path fill="#32327b" d="M576.1 258l2 2-2-2z"/>
75
- <path fill="#58587b" d="M578.2 258l2 2-2-2z"/>
76
- <path fill="#808067" d="M580.2 258l2 2-2-2z"/>
77
- <path fill="#a4a43d" d="M583.6 258.6l1.3.7-1.3-.7z"/>
78
- <path fill="#dddc7a" d="M460.4 260l2 2-2-2z"/>
79
- <path fill="#d0d045" d="M462.4 260l2 2-2-2z"/>
80
- <path fill="#a4a43d" d="M478 260.6l1.4.7-1.4-.7z"/>
81
- <path fill="#808067" d="M480.7 260l2 2-2-2z"/>
82
- <path fill="#667" d="M482.7 260l2 2-2-2z"/>
83
- <path fill="#58587b" d="M484.8 260l2 2-2-2z"/>
84
- <path fill="#49497d" d="M486.8 260l2 2-2-2z"/>
85
- <path fill="#737370" d="M499 260l2 2-2-2z"/>
86
- <path fill="#99994e" d="M501 260l2 2-2-2z"/>
87
- <path fill="#a4a43d" d="M503 260l2 2-2-2z"/>
88
- <path fill="#e5e59d" d="M515.2 260l2 2-2-2z"/>
89
- <path fill="#fbfaf2" d="M517.3 260l2 2-2-2z"/>
90
- <path fill="#f2f1d2" d="M535.5 260l2 2-2-2z"/>
91
- <path fill="#d9d868" d="M537.6 260l2 2-2-2z"/>
92
- <path fill="#a4a43d" d="M549 260.6l1.4.7-1.3-.7z"/>
93
- <path fill="#808067" d="M551.8 260l2 2-2-2z"/>
94
- <path fill="#667" d="M553.8 260l2 2-2-2z"/>
95
- <path fill="#58587b" d="M555.8 260l2 2-2-2z"/>
96
- <path fill="#3a3a7c" d="M557.9 260l2 2-2-2z"/>
97
- <path fill="#58587b" d="M567.3 260.6l1.4.7-1.4-.7z"/>
98
- <path fill="#737370" d="M570 260l2 2-2-2z"/>
99
- <path fill="#99994e" d="M572 260l2.1 2-2-2z"/>
100
- <path fill="#a4a43d" d="M574.1 260l2 2-2-2z"/>
101
- <path fill="#dddc7a" d="M590.3 260l2 2-2-2z"/>
102
- <path fill="#d0d045" d="M592.4 260l2 2-2-2z"/>
103
- <path fill="#f2f1d7" d="M464.5 262l2 2-2-2z"/>
104
- <path fill="#e0dea1" d="M466.5 262l2 2-2-2z"/>
105
- <path fill="#dddc7a" d="M468.5 262l2 2-2-2z"/>
106
- <path fill="#d9d868" d="M509.1 262l2 2-2-2z"/>
107
- <path fill="#e5e3af" d="M511.2 262l2 2-2-2z"/>
108
- <path fill="#f6f6e4" d="M539.6 262l2 2-2-2z"/>
109
- <path fill="#e1e18c" d="M541.6 262l2 2-2-2z"/>
110
- <path fill="#d4d456" d="M582.2 262l2 2-2-2z"/>
111
- <path fill="#e1e18c" d="M584.3 262l2 2-2-2z"/>
112
- <path fill="#eeedc1" d="M586.3 262l2 2-2-2z"/>
113
- <path fill="#f2f1d2" d="M472.6 264l2 2-2-2z"/>
114
- <path fill="#e0dea1" d="M474.6 264l2 2-2-2z"/>
115
- <path fill="#dddc7a" d="M476.6 264l2 2-2-2z"/>
116
- <path fill="#d0d045" d="M478.7 264l2 2-2-2z"/>
117
- <path fill="#dddc7a" d="M503 264l2 2-2-2z"/>
118
- <path fill="#e5e3af" d="M505 264l2.1 2-2-2z"/>
119
- <path fill="#f6f6e4" d="M507.1 264l2 2-2-2z"/>
120
- <path fill="#eeedc1" d="M545.7 264l2 2-2-2z"/>
121
- <path fill="#e1e18c" d="M547.7 264l2 2-2-2z"/>
122
- <path fill="#d4d456" d="M549.7 264l2 2-2-2z"/>
123
- <path fill="#d9d868" d="M574.1 264l2 2-2-2z"/>
124
- <path fill="#e1e18c" d="M576.1 264l2 2-2-2z"/>
125
- <path fill="#eeedc1" d="M578.2 264l2 2-2-2z"/>
126
- <path fill="#f6f6e4" d="M580.2 264l2 2-2-2z"/>
127
- <path fill="#f2f1d7" d="M482.7 266l2 2.1-2-2z"/>
128
- <path fill="#f2f1d2" d="M484.8 266l2 2.1-2-2z"/>
129
- <path fill="#eeedc1" d="M486.8 266l2 2.1-2-2z"/>
130
- <path fill="#f2f1d2" d="M496.3 266.7l1.3.7-1.3-.7z"/>
131
- <path fill="#fbfaf2" d="M499 266l2 2.1-2-2z"/>
132
- <path fill="#fef8f1" d="M509.1 266l4 4.1v-4h-4z"/>
133
- <path fill="#f2f1d7" d="M553.8 266l2 2.1-2-2z"/>
134
- <path fill="#f2f1d2" d="M555.8 266l2 2.1-2-2z"/>
135
- <path fill="#e5e3af" d="M557.9 266l2 2.1-2-2z"/>
136
- <path fill="#e5e59d" d="M561.3 266.7l1.3.7-1.4-.7z"/>
137
- <path fill="#e0dea1" d="M564 266l2 2.1-2-2z"/>
138
- <path fill="#f2f1d2" d="M567.3 266.7l1.4.7-1.4-.7z"/>
139
- <path fill="#fbfaf2" d="M570 266l2 2.1-2-2z"/>
140
- <path fill="#fef8f1" d="M505 268.1l2.1 2-2-2z"/>
141
- <path fill="#fbbe66" d="M507.1 268.1l2 2-2-2z"/>
142
- <path fill="#fbc477" d="M505 270.1l2.1 2-2-2z"/>
143
- <path fill="#fcb144" d="M509.1 270.1l2 2-2-2z"/>
144
- <path fill="#fe9f11" d="M505 272.2l2.1 2-2-2z"/>
145
- <path fill="#fea522" d="M509.1 272.2l2 2-2-2z"/>
146
- <path fill="#fae3c9" d="M503 274.2l2 2-2-2m8.2 0l2 2-2-2z"/>
147
- <path fill="#fbead6" d="M521.3 274.2l2 2-2-2z"/>
148
- <path fill="#f9d6aa" d="M523.4 274.2l2 2-2-2z"/>
149
- <path fill="#fae3c9" d="M531.5 274.2l2 2-2-2z"/>
150
- <path fill="#fef8f1" d="M533.5 274.2l2 2-2-2z"/>
151
- <path fill="#f9d099" d="M503 276.2l2 2-2-2z"/>
152
- <path fill="#fdab33" d="M511.2 276.2l2 2-2-2z"/>
153
- <path fill="#fcf1e4" d="M515.2 276.2l2 2-2-2z"/>
154
- <path fill="#fbc477" d="M517.3 276.2l2 2-2-2z"/>
155
- <path fill="#fea522" d="M519.3 276.2l2 2-2-2z"/>
156
- <path fill="#fcb755" d="M535.5 276.2l2 2-2-2z"/>
157
- <path fill="#f9d6aa" d="M537.6 276.2l2 2-2-2z"/>
158
- <path fill="#faca88" d="M503 278.3l2 2-2-2z"/>
159
- <path fill="#fea522" d="M513.2 278.3l2 2-2-2m26.4 0l2 2-2-2z"/>
160
- <path fill="#f8dcbb" d="M541.6 278.3l2 2-2-2z"/>
161
- <path fill="#f6f6e4" d="M460.4 280.3l2 2-2-2z"/>
162
- <path fill="#fbc477" d="M503 280.3l2 2-2-2z"/>
163
- <path fill="#fbbe66" d="M543.6 280.3l2 2-2-2z"/>
164
- <path fill="#f8dcbb" d="M545.7 280.3l2 2-2-2z"/>
165
- <path fill="#faca88" d="M503 282.3l2 2-2-2z"/>
166
- <path fill="#fcb755" d="M549.7 282.3l2 2-2-2z"/>
167
- <path fill="#f8dcbb" d="M551.8 282.3l2 2-2-2z"/>
168
- <path fill="#fef8f1" d="M501 284.4l2 2-2-2z"/>
169
- <path fill="#fe9f11" d="M503 284.4l2 2-2-2z"/>
170
- <path fill="#fdab33" d="M559.9 284.4l2 2-2-2z"/>
171
- <path fill="#fcb144" d="M562 284.4l2 2-2-2z"/>
172
- <path fill="#fbc477" d="M564 284.4l2 2-2-2z"/>
173
- <path fill="#f9d6aa" d="M566 284.4l4 4-4-4z"/>
174
- <path fill="#fef8f1" d="M568 284.4l2 2-2-2z"/>
175
- <path fill="#fcb144" d="M501 286.4l2 2-2-2z"/>
176
- <path fill="#fdab33" d="M529.4 286.4l2 2-2-2z"/>
177
- <path fill="#fbc477" d="M531.5 286.4l2 2-2-2zm8 0l2.1 2-2-2z"/>
178
- <path fill="#fea522" d="M541.6 286.4l2 2-2-2z"/>
179
- <path fill="#fae3c9" d="M499 288.4l2 2-2-2z"/>
180
- <path fill="#fcb144" d="M525.4 288.4l2 2-2-2z"/>
181
- <path fill="#fae3c9" d="M527.4 288.4l2 2-2-2z"/>
182
- <path fill="#f8dcbb" d="M543.6 288.4l2 2-2-2z"/>
183
- <path fill="#fdab33" d="M545.7 288.4l2 2-2-2z"/>
184
- <path fill="#fe9f11" d="M557.9 288.4l2 2-2-2z"/>
185
- <path fill="#fcb755" d="M559.9 288.4l2 2-2-2z"/>
186
- <path fill="#f9d099" d="M562 288.4l2 2-2-2z"/>
187
- <path fill="#fbead6" d="M564 288.4l2 2-2-2z"/>
188
- <path fill="#fcb144" d="M499 290.4l2 2-2-2z"/>
189
- <path fill="#fbbe66" d="M523.4 290.4l2 2-2-2z"/>
190
- <path fill="#f9d099" d="M547.7 290.4l2 2-2-2z"/>
191
- <path fill="#fbead6" d="M555.8 290.4l2 2-2-2z"/>
192
- <path fill="#fcf1e4" d="M497 292.5l2 2-2-2z"/>
193
- <path fill="#fbbe66" d="M521.3 292.5l2 2-2-2z"/>
194
- <path fill="#f9d099" d="M549.7 292.5l2 2-2-2z"/>
195
- <path fill="#fae3c9" d="M555.8 292.5l2 2-2-2z"/>
196
- <path fill="#fbc477" d="M497 294.5l2 2-2-2z"/>
197
- <path fill="#fcb144" d="M519.3 294.5l2 2-2-2m32.5 0l2 2-2-2z"/>
198
- <path fill="#fbbe66" d="M555.8 294.5l2 2-2-2z"/>
199
- <path fill="#f6f6e4" d="M460.4 296.5l2 2-2-2z"/>
200
- <path fill="#fea522" d="M497 296.5l2 2-2-2z"/>
201
- <path fill="#fbead6" d="M519.3 296.5l2 2-2-2z"/>
202
- <path fill="#fcf1e4" d="M551.8 296.5l2 2-2-2z"/>
203
- <path fill="#fef8f1" d="M557.9 296.5l2 2-2-2z"/>
204
- <path fill="#fcf1e4" d="M495 298.6l2 2-2-2z"/>
205
- <path fill="#fbbe66" d="M517.3 298.6l2 2-2-2z"/>
206
- <path fill="#faca88" d="M553.8 298.6l2 2-2-2z"/>
207
- <path fill="#f9d099" d="M557.9 298.6l2 2-2-2z"/>
208
- <path fill="#f9d6aa" d="M495 300.6l2 2-2-2z"/>
209
- <path fill="#fcf1e4" d="M517.3 300.6l2 2-2-2z"/>
210
- <path fill="#fae3c9" d="M527.4 300.6l2 2-2-2z"/>
211
- <path fill="#fea522" d="M529.4 300.6l2 2-2-2z"/>
212
- <path fill="#fcb144" d="M531.5 300.6l2 2-2-2z"/>
213
- <path fill="#f9d6aa" d="M533.5 300.6l2 2-2-2z"/>
214
- <path fill="#fef8f1" d="M553.8 300.6l2 2-2-2z"/>
215
- <path fill="#fea522" d="M555.8 300.6l2 2-2-2z"/>
216
- <path fill="#fdab33" d="M557.9 300.6l2 2-2-2z"/>
217
- <path fill="#faca88" d="M495 302.6l-2.1 6.1 2-6z"/>
218
- <path fill="#fea522" d="M515.2 302.6l2 2-2-2z"/>
219
- <path fill="#fef8f1" d="M517.3 302.6l2 2-2-2z"/>
220
- <path fill="#f9d099" d="M527.4 302.6l2 2-2-2z"/>
221
- <path fill="#fdab33" d="M535.5 302.6l2 2-2-2z"/>
222
- <path fill="#fae3c9" d="M537.6 302.6l2 2-2-2z"/>
223
- <path fill="#f8dcbb" d="M555.8 302.6l2 2-2-2z"/>
224
- <path fill="#f90" d="M557.9 302.6l2 2-2-2z"/>
225
- <path fill="#fbead6" d="M560.6 304l.6 1.3-.6-1.3z"/>
226
- <path fill="#fea522" d="M519.3 304.6l2 2-2-2z"/>
227
- <path fill="#fbbe66" d="M521.3 304.6l2 2-2-2z"/>
228
- <path fill="#faca88" d="M523.4 304.6l2 2-2-2z"/>
229
- <path fill="#fcb144" d="M525.4 304.6l2 2-2-2z"/>
230
- <path fill="#fae3c9" d="M527.4 304.6l2 2-2-2z"/>
231
- <path fill="#fe9f11" d="M529.4 304.6l2 2-2-2z"/>
232
- <path fill="#fdab33" d="M539.6 304.6l2 2-2-2z"/>
233
- <path fill="#fbc477" d="M541.6 304.6l2 2-2-2z"/>
234
- <path fill="#faca88" d="M543.6 304.6l2 2-2-2z"/>
235
- <path fill="#f9d6aa" d="M545.7 304.6l2 2-2-2z"/>
236
- <path fill="#fae3c9" d="M549 305.3l1.4.7-1.3-.7z"/>
237
- <path fill="#fef8f1" d="M551.8 304.6l2 2-2-2z"/>
238
- <path fill="#fbc477" d="M557.9 304.6l2 2-2-2z"/>
239
- <path fill="#fef8f1" d="M470.6 306.7l2 2-2-2z"/>
240
- <path fill="#fcf1e4" d="M472.6 306.7l2 2-2-2z"/>
241
- <path fill="#fcb755" d="M525.4 306.7l2 2-2-2z"/>
242
- <path fill="#fbead6" d="M529.4 306.7l2 2-2-2z"/>
243
- <path fill="#fea522" d="M531.5 306.7l2 2-2-2z"/>
244
- <path fill="#fe9f11" d="M547.7 306.7l2 2-2-2z"/>
245
- <path fill="#fcb144" d="M549.7 306.7l-2 4 2-4z"/>
246
- <path fill="#fe9f11" d="M553.8 306.7l2 2-2-2z"/>
247
- <path fill="#fbbe66" d="M555.8 306.7l2 2-2-2z"/>
248
- <path fill="#fcf1e4" d="M557.9 306.7l2 2-2-2z"/>
249
- <path fill="#fae3c9" d="M470.6 308.7l2 2-2-2z"/>
250
- <path fill="#fe9f11" d="M472.6 308.7l4 4-4-4z"/>
251
- <path fill="#fbead6" d="M474.6 308.7l2 2-2-2zm18.3 0l2 2-2-2z"/>
252
- <path fill="#fae3c9" d="M495 308.7l2 2-2-2z"/>
253
- <path fill="#fe9f11" d="M513.2 308.7l2 2-2-2z"/>
254
- <path fill="#fbc477" d="M515.2 308.7l2 2-2-2z"/>
255
- <path fill="#fea522" d="M517.3 308.7l2 2-2-2z"/>
256
- <path fill="#fbc477" d="M523.4 308.7l2 2-2-2z"/>
257
- <path fill="#fef8f1" d="M525.4 308.7l2 2-2-2z"/>
258
- <path fill="#fbc477" d="M533.5 308.7l2 2-2-2z"/>
259
- <path fill="#fff" d="M549.7 308.7l2 2-2-2z"/>
260
- <path fill="#fdab33" d="M551.8 308.7l2 2-2-2z"/>
261
- <path fill="#fbc477" d="M559.9 308.7l2 2-2-2z"/>
262
- <path fill="#fef8f1" d="M470.6 310.7l2 2-2-2z"/>
263
- <path fill="#fbead6" d="M476.6 310.7l2 2-2-2z"/>
264
- <path fill="#f9d6aa" d="M486.8 310.7l2 2-2-2z"/>
265
- <path fill="#fe9f11" d="M497 310.7l2 2-2-2z"/>
266
- <path fill="#f9d6aa" d="M500.3 311.4l1.4.7-1.4-.7z"/>
267
- <path fill="#f8dcbb" d="M513.2 310.7l2 2-2-2z"/>
268
- <path fill="#fcf1e4" d="M519.3 310.7l2 2-2-2z"/>
269
- <path fill="#f9d6aa" d="M535.5 310.7l2 2-2-2z"/>
270
- <path fill="#fdab33" d="M549.7 310.7l2 2-2-2z"/>
271
- <path fill="#fcb755" d="M562 310.7l2 2-2-2z"/>
272
- <path fill="#fef8f1" d="M564 310.7l2 2-2-2z"/>
273
- <path fill="#53527c" d="M454.3 312.8l2 2-2-2z"/>
274
- <path fill="#fcb755" d="M472.6 312.8l2 2-2-2z"/>
275
- <path fill="#fea522" d="M476.6 312.8l2 2-2-2z"/>
276
- <path fill="#fbead6" d="M484.8 312.8l2 2-2-2z"/>
277
- <path fill="#fe9f11" d="M488.8 312.8l2 2-2-2z"/>
278
- <path fill="#fcf1e4" d="M490.9 312.8l2 2-2-2z"/>
279
- <path fill="#fbbe66" d="M497 312.8l2 2-2-2z"/>
280
- <path fill="#fbc477" d="M499 312.8l2 2-2-2z"/>
281
- <path fill="#fbbe66" d="M501 312.8l2 2-2-2z"/>
282
- <path fill="#fea522" d="M511.2 312.8l2 2-2-2z"/>
283
- <path fill="#f9d6aa" d="M537.6 312.8l2 2-2-2z"/>
284
- <path fill="#fcb144" d="M564 312.8l2 2-2-2z"/>
285
- <path fill="#8d8d5b" d="M596.4 312.8l2 2-2-2z"/>
286
- <path fill="#e5e3af" d="M460.4 314.8l2 2-2-2z"/>
287
- <path fill="#f8dcbb" d="M472.6 314.8l2 2-2-2z"/>
288
- <path fill="#fdab33" d="M478.7 314.8l2 2-2-2z"/>
289
- <path fill="#fe9f11" d="M484.8 314.8l2 2-2-2z"/>
290
- <path fill="#faca88" d="M488.8 314.8l2 2-2-2z"/>
291
- <path fill="#fcf1e4" d="M497 314.8l2 2-2-2z"/>
292
- <path fill="#f9d099" d="M511.2 314.8l2 2-2-2m28.4 0l2 2-2-2z"/>
293
- <path fill="#fbbe66" d="M566 314.8l2 2-2-2z"/>
294
- <path fill="#fea522" d="M474.6 316.8l2 2-2-2z"/>
295
- <path fill="#fdab33" d="M480.7 316.8l2 2-2-2z"/>
296
- <path fill="#fea522" d="M482.7 316.8l2 2-2-2z"/>
297
- <path fill="#fe9f11" d="M486.8 316.8l2 2-2-2z"/>
298
- <path fill="#fef8f1" d="M488.8 316.8l2 2-2-2z"/>
299
- <path fill="#fbbe66" d="M499 316.8l2 2-2-2z"/>
300
- <path fill="#fef8f1" d="M511.2 316.8l2 2-2-2z"/>
301
- <path fill="#fbbe66" d="M541.6 316.8l2 2-2-2z"/>
302
- <path fill="#f9d099" d="M568 316.8l2 2-2-2z"/>
303
- <path fill="#f9d6aa" d="M474.6 318.9l2 2-2-2z"/>
304
- <path fill="#f9d099" d="M486.8 318.9l2 2-2-2z"/>
305
- <path fill="#fcf1e4" d="M499 318.9l2 2-2-2z"/>
306
- <path fill="#fdab33" d="M509.1 318.9l2 2-2-2m34.5 0l2 2-2-2z"/>
307
- <path fill="#fbead6" d="M570 318.9l2 2-2-2z"/>
308
- <path fill="#fea522" d="M476.6 320.9l2 2-2-2z"/>
309
- <path fill="#fe9f11" d="M484.8 320.9l2 2-2-2z"/>
310
- <path fill="#fcb144" d="M501 320.9l2 2-2-2z"/>
311
- <path fill="#faca88" d="M509.1 320.9l2 2-2-2z"/>
312
- <path fill="#f8dcbb" d="M543.6 320.9l2 2-2-2z"/>
313
- <path fill="#fcb144" d="M570 320.9l2 2-2-2z"/>
314
- <path fill="#d3d079" d="M460.4 323l2 2-2-2z"/>
315
- <path fill="#faca88" d="M476.6 323l2 2-2-2zm24.4 0l2 2-2-2z"/>
316
- <path fill="#fae3c9" d="M509.1 323l2 2-2-2m34.5 0l2 2-2-2z"/>
317
- <path fill="#f8dcbb" d="M572 323l2.1 2-2-2z"/>
318
- <path fill="#f2f1d7" d="M590.3 323l2 2-2-2z"/>
319
- <path fill="#58587b" d="M597.1 324.3l.7 1.3-.7-1.3z"/>
320
- <path fill="#d9d868" d="M461 326.3l.8 1.4-.7-1.4z"/>
321
- <path fill="#f8dcbb" d="M476.6 325l2 2-2-2z"/>
322
- <path fill="#f9d6aa" d="M541.6 325l2 2-2-2z"/>
323
- <path fill="#fe9f11" d="M543.6 325l2 2-2-2z"/>
324
- <path fill="#fcb144" d="M572 325l2.1 2-2-2z"/>
325
- <path fill="#f2f1d2" d="M591 326.3l.7 1.4-.7-1.4z"/>
326
- <path fill="#fcf1e4" d="M476.6 327l2 2-2-2z"/>
327
- <path fill="#fef8f1" d="M539.6 327l2 2-2-2z"/>
328
- <path fill="#fe9f11" d="M541.6 327l2 2-2-2z"/>
329
- <path fill="#fdab33" d="M547.7 327l-2 4 2-4z"/>
330
- <path fill="#fcb755" d="M549.7 327l2 2-2-2z"/>
331
- <path fill="#fea522" d="M574.1 327l2 2-2-2z"/>
332
- <path fill="#f9d099" d="M576.1 327l2 2-2-2z"/>
333
- <path fill="#53527c" d="M596.4 327l2 2-2-2z"/>
334
- <path fill="#808067" d="M457 330.4l.7 1.3-.7-1.3z"/>
335
- <path fill="#fea522" d="M478.7 329l2 2-2-2m6 0l2.1 2-2-2z"/>
336
- <path fill="#fe9f11" d="M507.1 329l2 2-2-2z"/>
337
- <path fill="#fae3c9" d="M539.6 329l2 2-2-2z"/>
338
- <path fill="#fef8f1" d="M547.7 329l2 2-2-2z"/>
339
- <path fill="#fcb144" d="M551.8 329l2 2-2-2z"/>
340
- <path fill="#fcb755" d="M578.2 329l2 2-2-2z"/>
341
- <path fill="#fef8f1" d="M580.2 329l4 4-4-4z"/>
342
- <path fill="#e5e59d" d="M591 330.4l.7 1.3-.7-1.3z"/>
343
- <path fill="#32327b" d="M597.1 330.4l.7 1.3-.7-1.3z"/>
344
- <path fill="#fcb755" d="M479.4 332.4l.6 1.4-.6-1.4z"/>
345
- <path fill="#fef8f1" d="M486.8 331l2 2-2-2z"/>
346
- <path fill="#fbbe66" d="M507.1 331l2 2-2-2z"/>
347
- <path fill="#fbead6" d="M539.6 331l2 2-2-2z"/>
348
- <path fill="#fe9f11" d="M543.6 331l2 2-2-2z"/>
349
- <path fill="#fcf1e4" d="M545.7 331l2 2-2-2z"/>
350
- <path fill="#fbead6" d="M551.8 331l2 2-2-2z"/>
351
- <path fill="#fdab33" d="M580.2 331l2 2-2-2z"/>
352
- <path fill="#667" d="M456.4 333l2 2.1-2-2z"/>
353
- <path fill="#f6f6e4" d="M462.4 333l2 2.1-2-2z"/>
354
- <path fill="#f9d6aa" d="M486.8 333l2 2.1-2-2z"/>
355
- <path fill="#fdab33" d="M503 333l2 2.1-2-2z"/>
356
- <path fill="#fe9f11" d="M505 333l2.1 2.1-2-2z"/>
357
- <path fill="#fcf1e4" d="M507.1 333l2 2.1-2-2z"/>
358
- <path fill="#fea522" d="M541.6 333l2 2.1-2-2z"/>
359
- <path fill="#faca88" d="M543.6 333l2 2.1-2-2m10.2 0l2 2-2-2z"/>
360
- <path fill="#fcb144" d="M582.2 333l2 2.1-2-2z"/>
361
- <path fill="#dddc7a" d="M590.3 333l2 2.1-2-2z"/>
362
- <path fill="#58587b" d="M456.4 335.1l2 2-2-2z"/>
363
- <path fill="#f2f1d2" d="M462.4 335.1l2 2-2-2z"/>
364
- <path fill="#fcb144" d="M479.4 336.5l.6 1.3-.6-1.3z"/>
365
- <path fill="#fea522" d="M486.8 335.1l2 2-2-2z"/>
366
- <path fill="#fef8f1" d="M507.1 335.1l2 2-2-2z"/>
367
- <path fill="#fea522" d="M509.1 335.1l2 2-2-2z"/>
368
- <path fill="#fcb144" d="M513.2 335.1l2 2-2-2z"/>
369
- <path fill="#fbead6" d="M515.2 335.1l2 2-2-2z"/>
370
- <path fill="#f8dcbb" d="M541.6 335.1l2 2-2-2z"/>
371
- <path fill="#fcf1e4" d="M543.6 335.1l2 2-2-2z"/>
372
- <path fill="#fef8f1" d="M553.8 335.1l2 2-2-2z"/>
373
- <path fill="#fe9f11" d="M555.8 335.1l2 2-2-2z"/>
374
- <path fill="#fbead6" d="M584.3 335.1l2 2-2-2z"/>
375
- <path fill="#d9d868" d="M590.3 335.1l2 2-2-2z"/>
376
- <path fill="#3a3a7c" d="M456.4 337.1l2 2-2-2z"/>
377
- <path fill="#e5e3af" d="M462.4 337.1l2 2-2-2z"/>
378
- <path fill="#faca88" d="M488.8 337.1l2 2-2-2z"/>
379
- <path fill="#fbead6" d="M509.1 337.1l2 2-2-2z"/>
380
- <path fill="#fe9f11" d="M515.2 337.1l2 2-2-2z"/>
381
- <path fill="#fcf1e4" d="M517.3 337.1l2 2-2-2z"/>
382
- <path fill="#fbead6" d="M539.6 337.1l2 2-2-2z"/>
383
- <path fill="#fae3c9" d="M541.6 337.1l2 2-2-2z"/>
384
- <path fill="#fbead6" d="M543.6 337.1l2 2-2-2z"/>
385
- <path fill="#fbbe66" d="M555.8 337.1l2 2-2-2m16.3 0l2 2-2-2z"/>
386
- <path fill="#fcf1e4" d="M574.1 337.1l2 2-2-2z"/>
387
- <path fill="#fef8f1" d="M576.1 337.1l2 2-2-2z"/>
388
- <path fill="#f8dcbb" d="M578.2 337.1l2 2-2-2z"/>
389
- <path fill="#fcb755" d="M580.2 337.1l2 2-2-2z"/>
390
- <path fill="#fae3c9" d="M584.3 337.1l2 2-2-2z"/>
391
- <path fill="#808067" d="M594.4 337.1l2 2-2-2z"/>
392
- <path fill="#32327b" d="M456.4 339.2l2 2-2-2z"/>
393
- <path fill="#a4a43d" d="M459 340.5l.7 1.4-.6-1.4z"/>
394
- <path fill="#e5e59d" d="M462.4 339.2l2 2-2-2z"/>
395
- <path fill="#fbc477" d="M478.7 339.2l2 2-2-2z"/>
396
- <path fill="#f9d6aa" d="M490.9 339.2l2 2-2-2z"/>
397
- <path fill="#fbbe66" d="M511.2 339.2l2 2-2-2z"/>
398
- <path fill="#f9d099" d="M517.3 339.2l2 2-2-2z"/>
399
- <path fill="#fae3c9" d="M535.5 339.2l2 2-2-2z"/>
400
- <path fill="#fcb144" d="M537.6 339.2l2 2-2-2z"/>
401
- <path fill="#fae3c9" d="M545.7 339.2l2 2-2-2z"/>
402
- <path fill="#f8dcbb" d="M555.8 339.2l2 2-2-2z"/>
403
- <path fill="#f9d099" d="M572 339.2l2.1 2-2-2z"/>
404
- <path fill="#fbc477" d="M582.2 339.2l2 2-2-2z"/>
405
- <path fill="#fbead6" d="M584.3 339.2l2 2-2-2z"/>
406
- <path fill="#737370" d="M594.4 339.2l2 2-2-2z"/>
407
- <path fill="#d9d868" d="M462.4 341.2l2 2-2-2z"/>
408
- <path fill="#f9d099" d="M478.7 341.2l2 2-2-2z"/>
409
- <path fill="#f9d6aa" d="M492.9 341.2l2 2-2-2m18.3 0l2 2-2-2z"/>
410
- <path fill="#fbc477" d="M517.3 341.2l2 2-2-2z"/>
411
- <path fill="#fef8f1" d="M527.4 341.2l2 2-2-2z"/>
412
- <path fill="#f8dcbb" d="M529.4 341.2l2 2-2-2z"/>
413
- <path fill="#fbc477" d="M531.5 341.2l2 2-2-2z"/>
414
- <path fill="#fea522" d="M533.5 341.2l2 2-2-2z"/>
415
- <path fill="#fbead6" d="M545.7 341.2l2 2-2-2z"/>
416
- <path fill="#f2f1d2" d="M588.3 341.2l2 2-2-2z"/>
417
- <path fill="#58587b" d="M594.4 341.2l2 2-2-2z"/>
418
- <path fill="#99994e" d="M458.4 343.2l2 2-2-2z"/>
419
- <path fill="#d0d045" d="M462.4 343.2l2 2-2-2z"/>
420
- <path fill="#fcb144" d="M495 343.2l2 2-2-2z"/>
421
- <path fill="#fae3c9" d="M497 343.2l2 2-2-2z"/>
422
- <path fill="#fef8f1" d="M511.2 343.2l2 2-2-2z"/>
423
- <path fill="#fcb755" d="M519.3 343.2l2 2-2-2z"/>
424
- <path fill="#fbc477" d="M521.3 343.2l2 2-2-2z"/>
425
- <path fill="#fcb144" d="M523.4 343.2l2 2-2-2z"/>
426
- <path fill="#fea522" d="M525.4 343.2l2 2-2-2z"/>
427
- <path fill="#fe9f11" d="M541.6 343.2l2 2-2-2z"/>
428
- <path fill="#f9d6aa" d="M543.6 343.2l2 2-2-2z"/>
429
- <path fill="#fef8f1" d="M572 343.2l2.1 2-2-2z"/>
430
- <path fill="#e0dea1" d="M588.3 343.2l2 2-2-2z"/>
431
- <path fill="#3a3a7c" d="M594.4 343.2l2 2-2-2z"/>
432
- <path fill="#737370" d="M458.4 345.3l2 2-2-2z"/>
433
- <path fill="#fbfaf2" d="M464.5 345.3l2 2-2-2z"/>
434
- <path fill="#fea522" d="M480.7 345.3l2 2-2-2z"/>
435
- <path fill="#fe9f11" d="M499 345.3l2 2-2-2z"/>
436
- <path fill="#fcb144" d="M501 345.3l2 2-2-2z"/>
437
- <path fill="#fbc477" d="M503 345.3l2 2-2-2z"/>
438
- <path fill="#faca88" d="M505 345.3l2.1 2-2-2z"/>
439
- <path fill="#fbc477" d="M507.1 345.3l2 2-2-2z"/>
440
- <path fill="#fcb144" d="M509.1 345.3l2 2-2-2z"/>
441
- <path fill="#fdab33" d="M511.2 345.3l2 2-2-2z"/>
442
- <path fill="#fbc477" d="M539.6 345.3l2 2-2-2z"/>
443
- <path fill="#fef8f1" d="M541.6 345.3l2 2-2-2z"/>
444
- <path fill="#fdab33" d="M570 345.3l2 2-2-2z"/>
445
- <path fill="#e1e18c" d="M588.3 345.3l2 2-2-2z"/>
446
- <path fill="#a4a43d" d="M593 346.6l.7 1.4-.7-1.4z"/>
447
- <path fill="#262678" d="M594.4 345.3l2 2-2-2z"/>
448
- <path fill="#58587b" d="M458.4 347.3l2 2-2-2z"/>
449
- <path fill="#f2f1d2" d="M464.5 347.3l2 2-2-2z"/>
450
- <path fill="#faca88" d="M480.7 347.3l2 2-2-2z"/>
451
- <path fill="#fe9f11" d="M535.5 347.3l2 2-2-2z"/>
452
- <path fill="#fbead6" d="M537.6 347.3l2 2-2-2z"/>
453
- <path fill="#fbc477" d="M555.8 347.3l2 2-2-2z"/>
454
- <path fill="#faca88" d="M570 347.3l2 2-2-2z"/>
455
- <path fill="#d4d456" d="M588.3 347.3l2 2-2-2z"/>
456
- <path fill="#32327b" d="M458.4 349.3l2 2-2-2z"/>
457
- <path fill="#e5e59d" d="M464.5 349.3l2 2-2-2z"/>
458
- <path fill="#fef8f1" d="M480.7 349.3l2 2-2-2z"/>
459
- <path fill="#fe9f11" d="M482.7 349.3l2 2-2-2z"/>
460
- <path fill="#fbead6" d="M535.5 349.3l2 2-2-2z"/>
461
- <path fill="#fea522" d="M555.8 349.3l2 2-2-2z"/>
462
- <path fill="#fcf1e4" d="M570 349.3l2 2-2-2z"/>
463
- <path fill="#808067" d="M592.4 349.3l2 2-2-2z"/>
464
- <path fill="#0e0e6e" d="M458.4 351.3l2 2-2-2z"/>
465
- <path fill="#a4a43d" d="M460.4 351.3l2 2-2-2z"/>
466
- <path fill="#d9d868" d="M464.5 351.3l2 2-2-2z"/>
467
- <path fill="#f8dcbb" d="M482.7 351.3l2 2-2-2z"/>
468
- <path fill="#f9d6aa" d="M553.8 351.3l2 2-2-2z"/>
469
- <path fill="#faca88" d="M568 351.3l2 2-2-2z"/>
470
- <path fill="#f2f1d2" d="M586.3 351.3l2 2-2-2z"/>
471
- <path fill="#58587b" d="M592.4 351.3l2 2-2-2z"/>
472
- <path fill="#8d8d5b" d="M460.4 353.4l2 2-2-2z"/>
473
- <path fill="#f9d6aa" d="M484.8 353.4l2 2-2-2z"/>
474
- <path fill="#fdab33" d="M525.4 353.4l2 2-2-2z"/>
475
- <path fill="#fff" d="M527.4 353.4l2 2-2-2z"/>
476
- <path fill="#fcb144" d="M530.8 354l1.4.7-1.4-.7z"/>
477
- <path fill="#fef8f1" d="M551.8 353.4l-2 4 2-4z"/>
478
- <path fill="#fe9f11" d="M553.8 353.4l2 2-2-2z"/>
479
- <path fill="#fdab33" d="M566 353.4l-2 4 2-4z"/>
480
- <path fill="#e5e59d" d="M586.3 353.4l2 2-2-2z"/>
481
- <path fill="#3a3a7c" d="M592.4 353.4l2 2-2-2z"/>
482
- <path fill="#667" d="M460.4 355.4l2 2-2-2z"/>
483
- <path fill="#f2f1d2" d="M466.5 355.4l2 2-2-2z"/>
484
- <path fill="#f9d6aa" d="M486.8 355.4l2 2-2-2z"/>
485
- <path fill="#fe9f11" d="M525.4 355.4l2 2-2-2z"/>
486
- <path fill="#faca88" d="M527.4 355.4l2 2-2-2z"/>
487
- <path fill="#fea522" d="M529.4 355.4l2 2-2-2z"/>
488
- <path fill="#fcf1e4" d="M531.5 355.4l2 2-2-2z"/>
489
- <path fill="#fdab33" d="M551.8 355.4l2 2-2-2z"/>
490
- <path fill="#fef8f1" d="M566 355.4l2 2-2-2z"/>
491
- <path fill="#d9d868" d="M586.3 355.4l2 2-2-2z"/>
492
- <path fill="#a4a43d" d="M590.3 355.4l2 2-2-2z"/>
493
- <path fill="#0e0e6e" d="M592.4 355.4l2 2-2-2z"/>
494
- <path fill="#3a3a7c" d="M460.4 357.4l2 2-2-2z"/>
495
- <path fill="#e5e59d" d="M466.5 357.4l2 2-2-2z"/>
496
- <path fill="#fae3c9" d="M488.8 357.4l4 4-4-4z"/>
497
- <path fill="#fe9f11" d="M490.9 357.4l2 2-2-2z"/>
498
- <path fill="#f8dcbb" d="M529.4 357.4l2 2-2-2z"/>
499
- <path fill="#fcf1e4" d="M547.7 357.4l2 2-2-2z"/>
500
- <path fill="#fdab33" d="M549.7 357.4l2 2-2-2z"/>
501
- <path fill="#fcb144" d="M562 357.4l2 2-2-2z"/>
502
- <path fill="#fef8f1" d="M564 357.4l2 2-2-2z"/>
503
- <path fill="#fbfaf2" d="M584.3 357.4l2 2-2-2z"/>
504
- <path fill="#8d8d5b" d="M590.3 357.4l2 2-2-2z"/>
505
- <path fill="#0e0e6e" d="M460.4 359.5l2 2-2-2z"/>
506
- <path fill="#a4a43d" d="M462.4 359.5l2 2-2-2z"/>
507
- <path fill="#d4d456" d="M466.5 359.5l2 2-2-2z"/>
508
- <path fill="#f9d6aa" d="M527.4 359.5l2 2-2-2z"/>
509
- <path fill="#f9d099" d="M545.7 359.5l2 2-2-2z"/>
510
- <path fill="#fe9f11" d="M547.7 359.5l2 2-2-2z"/>
511
- <path fill="#faca88" d="M559.9 359.5l2 2-2-2z"/>
512
- <path fill="#eeedc1" d="M584.3 359.5l2 2-2-2z"/>
513
- <path fill="#58587b" d="M590.3 359.5l2 2-2-2z"/>
514
- <path fill="#737370" d="M462.4 361.5l2 2-2-2z"/>
515
- <path fill="#f6f6e4" d="M468.5 361.5l2 2-2-2z"/>
516
- <path fill="#fbbe66" d="M490.9 361.5l2 2-2-2z"/>
517
- <path fill="#fcb144" d="M523.4 361.5l2 2-2-2z"/>
518
- <path fill="#f8dcbb" d="M526 362.9l.7 1.3-.7-1.3z"/>
519
- <path fill="#fbbe66" d="M541.6 361.5l2 2-2-2z"/>
520
- <path fill="#fe9f11" d="M543.6 361.5l2 2-2-2z"/>
521
- <path fill="#fbc477" d="M555.8 361.5l2 2-2-2z"/>
522
- <path fill="#fcf1e4" d="M557.9 361.5l2 2-2-2z"/>
523
- <path fill="#d3d079" d="M584.3 361.5l2 2-2-2z"/>
524
- <path fill="#a4a43d" d="M588.3 361.5l2 2-2-2z"/>
525
- <path fill="#262678" d="M590.3 361.5l2 2-2-2z"/>
526
- <path fill="#49497d" d="M462.4 363.5l2 2-2-2z"/>
527
- <path fill="#e0dea1" d="M468.5 363.5l2 2-2-2z"/>
528
- <path fill="#fae3c9" d="M488.8 363.5l2 2-2-2z"/>
529
- <path fill="#fdab33" d="M517.3 363.5l2 2-2-2z"/>
530
- <path fill="#fbc477" d="M519.3 363.5l2 2-2-2z"/>
531
- <path fill="#fbead6" d="M521.3 363.5l2 2-2-2z"/>
532
- <path fill="#fcb144" d="M527.4 363.5l2 2-2-2z"/>
533
- <path fill="#f9d6aa" d="M553.8 363.5l2 2-2-2z"/>
534
- <path fill="#99994e" d="M588.3 363.5l2 2-2-2z"/>
535
- <path fill="#0e0e6e" d="M462.4 365.6l2 2-2-2z"/>
536
- <path fill="#a4a43d" d="M464.5 365.6l2 2-2-2z"/>
537
- <path fill="#d4d456" d="M468.5 365.6l2 2-2-2z"/>
538
- <path fill="#f9d099" d="M486.8 365.6l2 2-2-2z"/>
539
- <path fill="#fe9f11" d="M488.8 365.6l2 2-2-2m10.2 0l2 2-2-2z"/>
540
- <path fill="#f9d6aa" d="M501 365.6l2 2-2-2z"/>
541
- <path fill="#f9d099" d="M503 365.6l2 2-2-2z"/>
542
- <path fill="#f9d6aa" d="M511.2 365.6l2 2-2-2z"/>
543
- <path fill="#fae3c9" d="M513.2 365.6l2 2-2-2z"/>
544
- <path fill="#fef8f1" d="M515.2 365.6l2 2-2-2z"/>
545
- <path fill="#fbead6" d="M531.5 365.6l2 2-2-2z"/>
546
- <path fill="#fae3c9" d="M533.5 365.6l2 2-2-2z"/>
547
- <path fill="#faca88" d="M535.5 365.6l2 2-2-2z"/>
548
- <path fill="#fbc477" d="M537.6 365.6l2 2-2-2z"/>
549
- <path fill="#fdab33" d="M539.6 365.6l2 2-2-2z"/>
550
- <path fill="#fe9f11" d="M549.7 365.6l2 2-2-2z"/>
551
- <path fill="#f9d6aa" d="M551.8 365.6l2 2-2-2z"/>
552
- <path fill="#e5e3af" d="M582.2 365.6l2 2-2-2z"/>
553
- <path fill="#667" d="M588.3 365.6l2 2-2-2z"/>
554
- <path fill="#737370" d="M464.5 367.6l2 2-2-2z"/>
555
- <path fill="#f2f1d7" d="M470.6 367.6l2 2-2-2z"/>
556
- <path fill="#fea522" d="M484.8 367.6l2 2-2-2z"/>
557
- <path fill="#fe9f11" d="M495 367.6l2 2-2-2z"/>
558
- <path fill="#fbbe66" d="M497 367.6l2 2-2-2z"/>
559
- <path fill="#fcf1e4" d="M499 367.6l2 2-2-2z"/>
560
- <path fill="#fea522" d="M547.7 367.6l2 2-2-2z"/>
561
- <path fill="#fbead6" d="M549.7 367.6l2 2-2-2z"/>
562
- <path fill="#dddc7a" d="M582.2 367.6l2 2-2-2z"/>
563
- <path fill="#a4a43d" d="M586.3 367.6l2 2-2-2z"/>
564
- <path fill="#262678" d="M588.3 367.6l2 2-2-2z"/>
565
- <path fill="#49497d" d="M464.5 369.6l2 2-2-2z"/>
566
- <path fill="#a4a43d" d="M467.2 371l.7 1.3-.7-1.3z"/>
567
- <path fill="#d3d079" d="M470.6 369.6l2 2-2-2z"/>
568
- <path fill="#f9d099" d="M486.8 369.6l2 2-2-2z"/>
569
- <path fill="#fcb144" d="M488.8 369.6l2 2-2-2z"/>
570
- <path fill="#faca88" d="M490.9 369.6l2 2-2-2z"/>
571
- <path fill="#f8dcbb" d="M492.9 369.6l2 2-2-2z"/>
572
- <path fill="#fef8f1" d="M495 369.6l2 2-2-2z"/>
573
- <path fill="#f8dcbb" d="M539.6 369.6l2 2-2-2z"/>
574
- <path fill="#fcf1e4" d="M547.7 369.6l2 2-2-2z"/>
575
- <path fill="#f6f6e4" d="M580.2 369.6l2 2-2-2z"/>
576
- <path fill="#8d8d5b" d="M586.3 369.6l2 2-2-2z"/>
577
- <path fill="#fbfaf2" d="M472.6 371.6l2 2-2-2z"/>
578
- <path fill="#fbbe66" d="M539.6 371.6l2 2-2-2z"/>
579
- <path fill="#faca88" d="M545.7 371.6l2 2-2-2z"/>
580
- <path fill="#e1e18c" d="M580.2 371.6l2 2-2-2z"/>
581
- <path fill="#49497d" d="M586.3 371.6l2 2-2-2z"/>
582
- <path fill="#58587b" d="M466.5 373.7l2 2-2-2z"/>
583
- <path fill="#e5e59d" d="M472.6 373.7l2 2-2-2z"/>
584
- <path fill="#fe9f11" d="M539.6 373.7l2 2-2-2z"/>
585
- <path fill="#fdab33" d="M543.6 373.7l2 2-2-2z"/>
586
- <path fill="#fbfaf2" d="M578.2 373.7l2 2-2-2z"/>
587
- <path fill="#a4a43d" d="M584.3 373.7l2 2-2-2z"/>
588
- <path fill="#0e0e6e" d="M586.3 373.7l2 2-2-2z"/>
589
- <path fill="#1b1b74" d="M466.5 375.7l2 2-2-2z"/>
590
- <path fill="#a4a43d" d="M468.5 375.7l2 2-2-2z"/>
591
- <path fill="#d0d045" d="M472.6 375.7l2 2-2-2z"/>
592
- <path fill="#fbead6" d="M537.6 375.7l2 2-2-2z"/>
593
- <path fill="#fe9f11" d="M541.6 375.7l2 2-2-2z"/>
594
- <path fill="#fbead6" d="M543.6 375.7l2 2-2-2z"/>
595
- <path fill="#e5e59d" d="M578.2 375.7l2 2-2-2z"/>
596
- <path fill="#667" d="M584.3 375.7l2 2-2-2z"/>
597
- <path fill="#6e6c70" d="M468.5 377.7l2 2-2-2z"/>
598
- <path fill="#e5e3af" d="M474.6 377.7l2 2-2-2z"/>
599
- <path fill="#faca88" d="M538.2 379.1l.7 1.4-.7-1.4z"/>
600
- <path fill="#fae3c9" d="M541.6 377.7l2 2-2-2z"/>
601
- <path fill="#fbfaf2" d="M576.1 377.7l2 2-2-2z"/>
602
- <path fill="#a4a43d" d="M582.2 377.7l2 2-2-2z"/>
603
- <path fill="#1b1b74" d="M584.3 377.7l2 2-2-2m-115.8 2l2 2-2-2z"/>
604
- <path fill="#a4a43d" d="M470.6 379.8l2 2-2-2z"/>
605
- <path fill="#d0d045" d="M474.6 379.8l2 2-2-2z"/>
606
- <path fill="#fbfaf2" d="M476.6 379.8l2 2-2-2z"/>
607
- <path fill="#f9d6aa" d="M539.6 379.8l2 2-2-2z"/>
608
- <path fill="#e5e59d" d="M576.1 379.8l2 2-2-2z"/>
609
- <path fill="#6e6c70" d="M582.2 379.8l2 2-2-2m-111.6 2l2 2-2-2z"/>
610
- <path fill="#8cbf84" d="M476.6 381.8l2 2-2-2z"/>
611
- <path fill="#0cf" d="M477.5 381.8c7 14.8 32 49.8 51 49.2 18.6-.7 39.5-34.9 47.6-49.2h-98.6z"/>
612
- <path fill="#a4a43d" d="M580.2 381.8l2 2-2-2z"/>
613
- <path fill="#1b1b74" d="M582.2 381.8l2 2-2-2m-111.6 2l2 2-2-2z"/>
614
- <path fill="#a4a43d" d="M472.6 383.8l2 2-2-2z"/>
615
- <path fill="#adb333" d="M476.6 383.8l2 2-2-2z"/>
616
- <path fill="#1ac5b5" d="M478.7 383.8l2 2-2-2z"/>
617
- <path fill="#68b070" d="M574.1 383.8l2 2-2-2z"/>
618
- <path fill="#667" d="M580.2 383.8l2 2-2-2z"/>
619
- <path fill="#58587b" d="M472.6 385.9l2 2-2-2z"/>
620
- <path fill="#7fb15c" d="M478.7 385.9l2 2-2-2z"/>
621
- <path fill="#27c2aa" d="M572 385.9l2.1 2-2-2z"/>
622
- <path fill="#a4a43d" d="M578.2 385.9l-2 4 2-4z"/>
623
- <path fill="#0e0e6e" d="M580.2 385.9l2 2-2-2m-107.6 2l2 2-2-2z"/>
624
- <path fill="#a4a43d" d="M474.6 387.9l4 4-4-4z"/>
625
- <path fill="#34be9e" d="M480.7 387.9l2 2-2-2z"/>
626
- <path fill="#96b247" d="M572 387.9l2.1 2-2-2z"/>
627
- <path fill="#53527c" d="M578.2 387.9l2 2-2-2z"/>
628
- <path fill="#3a3a7c" d="M474.6 390l2 2-2-2z"/>
629
- <path fill="#a2b23d" d="M480.7 390l2 2-2-2z"/>
630
- <path fill="#0dc9c1" d="M482.7 390l2 2-2-2z"/>
631
- <path fill="#5bb47c" d="M570 390l2 2-2-2z"/>
632
- <path fill="#8d8d5b" d="M576.1 390l2 2-2-2z"/>
633
- <path fill="#737370" d="M476.6 392l2 2-2-2z"/>
634
- <path fill="#74b166" d="M482.7 392l2 2-2-2z"/>
635
- <path fill="#27c2aa" d="M568 392l2 2-2-2z"/>
636
- <path fill="#a4a43d" d="M574.1 392l-2 4 2-4z"/>
637
- <path fill="#262678" d="M576.1 392l2 2-2-2z"/>
638
- <path fill="#0e0e6e" d="M476.6 394l2 2-2-2z"/>
639
- <path fill="#a4a43d" d="M478.7 394l4 4-4-4z"/>
640
- <path fill="#42bb92" d="M484.8 394l2 2-2-2z"/>
641
- <path fill="#0dc9c1" d="M566 394l2 2-2-2z"/>
642
- <path fill="#96b247" d="M568 394l2 2-2-2z"/>
643
- <path fill="#58587b" d="M574.1 394l2 2-2-2z"/>
644
- <path fill="#3a3a7c" d="M478.7 396l2 2-2-2z"/>
645
- <path fill="#adb333" d="M484.8 396l2 2-2-2z"/>
646
- <path fill="#27c2aa" d="M486.8 396l2 2-2-2z"/>
647
- <path fill="#74b166" d="M566 396l2 2-2-2z"/>
648
- <path fill="#8d8d5b" d="M572 396l2.1 2-2-2z"/>
649
- <path fill="#6e6c70" d="M480.7 398l2 2-2-2z"/>
650
- <path fill="#96b247" d="M486.8 398l2 2-2-2z"/>
651
- <path fill="#0dc9c1" d="M488.8 398l2 2-2-2z"/>
652
- <path fill="#42bb92" d="M564 398l2 2-2-2z"/>
653
- <path fill="#a4a43d" d="M570 398l-4 6.1 4-6z"/>
654
- <path fill="#1b1b74" d="M572 398l2.1 2-2-2z"/>
655
- <path fill="#0e0e6e" d="M480.7 400l2 2.1-2-2z"/>
656
- <path fill="#8d8d5b" d="M482.7 400l2 2.1-2-2z"/>
657
- <path fill="#7fb15c" d="M488.8 400l2 2.1-2-2z"/>
658
- <path fill="#34be9e" d="M562 400l2 2.1-2-2z"/>
659
- <path fill="#3a3a7c" d="M570 400l2 2.1-2-2z"/>
660
- <path fill="#1b1b74" d="M482.7 402.1l2 2-2-2z"/>
661
- <path fill="#a4a43d" d="M484.8 402.1l22.3 22.3-22.3-22.3z"/>
662
- <path fill="#74b166" d="M490.9 402.1l2 2-2-2z"/>
663
- <path fill="#27c2aa" d="M559.9 402.1l2 2-2-2z"/>
664
- <path fill="#adb333" d="M562 402.1l2 2-2-2z"/>
665
- <path fill="#667" d="M568 402.1l2 2-2-2z"/>
666
- <path fill="#32327b" d="M484.8 404.1l2 2-2-2z"/>
667
- <path fill="#42bb92" d="M492.9 404.1l2 2-2-2z"/>
668
- <path fill="#0dc9c1" d="M557.9 404.1l-8.2 10.2L558 404z"/>
669
- <path fill="#adb333" d="M559.9 404.1l2 2-2-2z"/>
670
- <path fill="#737370" d="M566 404.1l2 2-2-2z"/>
671
- <path fill="#49497d" d="M486.8 406.2l2 2-2-2z"/>
672
- <path fill="#42bb92" d="M495 406.2l2 2-2-2z"/>
673
- <path fill="#96b247" d="M557.9 406.2l2 2-2-2z"/>
674
- <path fill="#8d8d5b" d="M564 406.2l-2 4 2-4z"/>
675
- <path fill="#0e0e6e" d="M566 406.2l2 2-2-2z"/>
676
- <path fill="#53527c" d="M488.8 408.2l2 2-2-2z"/>
677
- <path fill="#42bb92" d="M497 408.2l2 2-2-2z"/>
678
- <path fill="#96b247" d="M555.8 408.2l2 2-2-2z"/>
679
- <path fill="#0e0e6e" d="M564 408.2l2 2-2-2z"/>
680
- <path fill="#6e6c70" d="M490.9 410.2l2 2-2-2z"/>
681
- <path fill="#42bb92" d="M499 410.2l2 2-2-2z"/>
682
- <path fill="#96b247" d="M553.8 410.2l2 2-2-2z"/>
683
- <path fill="#a4a43d" d="M559.9 410.2l-4 6.1 4-6z"/>
684
- <path fill="#262678" d="M562 410.2l2 2-2-2z"/>
685
- <path fill="#6e6c70" d="M492.9 412.3l2 2-2-2z"/>
686
- <path fill="#42bb92" d="M501 412.3l2 2-2-2z"/>
687
- <path fill="#96b247" d="M551.8 412.3l2 2-2-2z"/>
688
- <path fill="#262678" d="M559.9 412.3l2 2-2-2z"/>
689
- <path fill="#6e6c70" d="M495 414.3l2 2-2-2z"/>
690
- <path fill="#68b070" d="M503 414.3l2 2-2-2z"/>
691
- <path fill="#27c2aa" d="M547.7 414.3l2 2-2-2z"/>
692
- <path fill="#adb333" d="M549.7 414.3l2 2-2-2z"/>
693
- <path fill="#262678" d="M557.9 414.3l2 2-2-2z"/>
694
- <path fill="#667" d="M497 416.3l2 2-2-2z"/>
695
- <path fill="#74b166" d="M505 416.3l2.1 2-2-2z"/>
696
- <path fill="#34be9e" d="M545.7 416.3l2 2-2-2z"/>
697
- <path fill="#adb333" d="M547.7 416.3l2 2-2-2z"/>
698
- <path fill="#8d8d5b" d="M553.8 416.3l-2 4 2-4z"/>
699
- <path fill="#262678" d="M555.8 416.3l2 2-2-2z"/>
700
- <path fill="#49497d" d="M499 418.3l2 2-2-2z"/>
701
- <path fill="#96b247" d="M507.1 418.3l2 2-2-2z"/>
702
- <path fill="#0dc9c1" d="M509.1 418.3l2 2-2-2z"/>
703
- <path fill="#42bb92" d="M543.6 418.3l2 2-2-2z"/>
704
- <path fill="#0e0e6e" d="M553.8 418.3l2 2-2-2z"/>
705
- <path fill="#49497d" d="M501 420.4l2 2-2-2z"/>
706
- <path fill="#a2b23d" d="M509.1 420.4l2 2-2-2z"/>
707
- <path fill="#27c2aa" d="M511.2 420.4l2 2-2-2z"/>
708
- <path fill="#74b166" d="M541.6 420.4l2 2-2-2z"/>
709
- <path fill="#a4a43d" d="M547.7 420.4l-6 8 6-8z"/>
710
- <path fill="#808067" d="M549.7 420.4l2 2-2-2z"/>
711
- <path fill="#0e0e6e" d="M551.8 420.4l2 2-2-2z"/>
712
- <path fill="#262678" d="M503 422.4l2 2-2-2z"/>
713
- <path fill="#adb333" d="M511.2 422.4l2 2-2-2z"/>
714
- <path fill="#42bb92" d="M513.2 422.4l2 2-2-2z"/>
715
- <path fill="#0dc9c1" d="M537.6 422.4l2 2-2-2z"/>
716
- <path fill="#96b247" d="M539.6 422.4l2 2-2-2z"/>
717
- <path fill="#6e6c70" d="M547.7 422.4l2 2-2-2z"/>
718
- <path fill="#1b1b74" d="M505 424.4l2.1 2-2-2z"/>
719
- <path fill="#8d8d5b" d="M507.1 424.4l2 2-2-2z"/>
720
- <path fill="#74b166" d="M515.2 424.4l2 2-2-2z"/>
721
- <path fill="#0dc9c1" d="M517.3 424.4l2 2-2-2z"/>
722
- <path fill="#34be9e" d="M535.5 424.4l2 2-2-2z"/>
723
- <path fill="#adb333" d="M537.6 424.4l2 2-2-2z"/>
724
- <path fill="#49497d" d="M545.7 424.4l2 2-2-2z"/>
725
- <path fill="#0e0e6e" d="M507.1 426.5l2 2-2-2z"/>
726
- <path fill="#6e6c70" d="M509.1 426.5l2 2-2-2z"/>
727
- <path fill="#a4a43d" d="M511.2 426.5l4 4-4-4z"/>
728
- <path fill="#96b247" d="M517.3 426.5l2 2-2-2z"/>
729
- <path fill="#27c2aa" d="M519.3 426.5l2 2-2-2z"/>
730
- <path fill="#68b070" d="M533.5 426.5l2 2-2-2z"/>
731
- <path fill="#32327b" d="M543.6 426.5l2 2-2-2z"/>
732
- <path fill="#49497d" d="M511.2 428.5l2 2-2-2z"/>
733
- <path fill="#5bb47c" d="M521.3 428.5l2 2-2-2z"/>
734
- <path fill="#27c2aa" d="M529.4 428.5l2 2-2-2z"/>
735
- <path fill="#96b247" d="M531.5 428.5l2 2-2-2z"/>
736
- <path fill="#a4a43d" d="M537.6 428.5l-2 4 2-4z"/>
737
- <path fill="#808067" d="M539.6 428.5l2 2-2-2z"/>
738
- <path fill="#0e0e6e" d="M541.6 428.5l2 2-2-2z"/>
739
- <path fill="#262678" d="M513.2 430.5l2 2-2-2z"/>
740
- <path fill="#8d8d5b" d="M515.2 430.5l2 2-2-2z"/>
741
- <path fill="#8bb252" d="M523.4 430.5l2 2-2-2z"/>
742
- <path fill="#1ac5b5" d="M525.4 430.5l2 2-2-2z"/>
743
- <path fill="#5bb47c" d="M527.4 430.5l2 2-2-2z"/>
744
- <path fill="#58587b" d="M537.6 430.5l2 2-2-2z"/>
745
- <path fill="#0e0e6e" d="M515.2 432.6l2 2-2-2z"/>
746
- <path fill="#667" d="M517.3 432.6l2 2-2-2z"/>
747
- <path fill="#a4a43d" d="M519.3 432.6l2 2-2-2z"/>
748
- <path fill="#99994e" d="M533.5 432.6l2 2-2-2z"/>
749
- <path fill="#32327b" d="M535.5 432.6l2 2-2-2m-16.2 2l2 2-2-2z"/>
750
- <path fill="#99994e" d="M521.3 434.6l2 2-2-2z"/>
751
- <path fill="#a4a43d" d="M529.4 434.6l2 2-2-2z"/>
752
- <path fill="#667" d="M531.5 434.6l2 2-2-2z"/>
753
- <path fill="#0e0e6e" d="M533.5 434.6l2 2-2-2m-12.2 2l2 2-2-2z"/>
754
- <path fill="#667" d="M523.4 436.6l2 2-2-2z"/>
755
- <path fill="#a4a43d" d="M525.4 436.6l2 2-2-2z"/>
756
- <path fill="#99994e" d="M527.4 436.6l2 2-2-2z"/>
757
- <path fill="#32327b" d="M529.4 436.6l2 2-2-2z"/>
758
- <path fill="#262678" d="M525.4 438.6l2 2-2-2z"/>
759
- <path fill="#0e0e6e" d="M527.4 438.6l2 2-2-2z"/>
760
- <path fill="#f90" d="M529.4 302.6c3.2 7.4 13.2 15.5 16 19.5-3.5 4-4.2 3.6-3.8 11 6.1-6.4 6.2-7 10.2-6.1 8.6 8.6 1.5 27-5.6 31-7.1 4.3-5.8-.1-16.5 5.2 4.9 4.2 10.6-.6 15.2.7 2.5 3-1.2 8.4.7 13.6 4.1-.4 3.6-8.7 4.6-11.7 3-11 21-18.6 21.9-28.7 3.8-1.7 7.5-.5 12.1 2-2.3-9.4-9.8-9.3-11.9-12.2-4.8-7.4-9.1-15.8-19.4-18-7.9-1.7-7.3.5-12.3-3-3.2-2.4-12.7-7-11.2-3.3z"/>
761
- <path fill="#fff" fill-rule="evenodd" d="M552 311a1.6 1.6 0 1 1-3.3 0 1.6 1.6 0 0 1 3.3 0z"/>
762
- <path fill="#f90" d="M504.3 333.9c5-6.2 7.6-19 9.8-23.2 5.2 1.2 5.1 2 11.5-1.8-8.5-2.4-9.2-2.2-10.2-6.1 3.6-11.7 23.2-14 30.1-9.6 7.1 4.3 2.6 5.2 12.3 12.1 1.4-6.3-5.5-9-6.5-13.7 1.5-3.7 8-3 11.6-7-2.2-3.5-9.3.8-12.4 1.4-11 2.5-26.3-9.8-35.6-6-3.3-2.5-4-6.4-3.9-11.7-7.2 6.5-3.6 13.1-5.3 16.3-4.2 7.7-9.7 15.5-6.8 25.6 2.2 7.8 3.8 6.2 3.2 12.3-.7 3.9-.4 14.5 2.2 11.4z"/>
763
- <path fill="#fff" fill-rule="evenodd" d="M501.2 310c.8-.4 1.8-.1 2.2.7a1.6 1.6 0 1 1-2.2-.7z"/>
764
- <path fill="#f90" d="M545.4 338.2c-8-1-20.1 3.3-25 3.7-1.5-5.1-.8-5.5-7.4-9 2.3 8.6 2.8 9 0 12-11.8 2.9-24-12.7-23.8-20.8 0-8.3 3.2-5 4-16.9-6 2-4.8 9.4-8.3 12.7-3.9.6-6.6-5.3-12-6.3-1.8 3.7 5.5 7.5 7.6 9.9 7.9 8.2 5.2 27.5 13.3 33.5-.4 4.2-3.4 6.8-8 9.4 9.3 2.9 13.1-3.7 16.7-3.9 8.8-.3 18.3.3 25.5-7.4 5.4-5.9 3.3-6.5 8.8-9 3.7-1.4 12.6-7.2 8.6-7.9z"/>
765
- <path fill="#fff" fill-rule="evenodd" d="M526.6 353.3a1.6 1.6 0 1 1 1.7-2.8 1.6 1.6 0 0 1-1.7 2.8z"/>
766
- </g>
767
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/al.svg DELETED
@@ -1,5 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icon-css-al" viewBox="0 0 640 480">
2
- <path fill="#e41e20" d="M0 0h640v480H0z"/>
3
- <path id="a" d="M272 93.3c-4.6 0-12.3 1.5-12.2 5-13-2.1-14.3 3.2-13.5 8 1.2-1.9 2.7-3 3.9-3.1 1.7-.3 3.5.3 5.4 1.4a21.6 21.6 0 0 1 4.8 4.1c-4.6 1.1-8.2.4-11.8-.2a16.5 16.5 0 0 1-5.7-2.4c-1.5-1-2-2-4.3-4.3-2.7-2.8-5.6-2-4.7 2.3 2.1 4 5.6 5.8 10 6.6 2.1.3 5.3 1 8.9 1 3.6 0 7.6-.5 9.8 0-1.3.8-2.8 2.3-5.8 2.8-3 .6-7.5-1.8-10.3-2.4.3 2.3 3.3 4.5 9.1 5.7 9.6 2 17.5 3.6 22.8 6.5a37.3 37.3 0 0 1 10.9 9.2c4.7 5.5 5 9.8 5.2 10.8 1 8.8-2.1 13.8-7.9 15.4-2.8.7-8-.7-9.8-2.9-2-2.2-3.7-6-3.2-12 .5-2.2 3.1-8.3.9-9.5a273.7 273.7 0 0 0-32.3-15.1c-2.5-1-4.5 2.4-5.3 3.8a50.2 50.2 0 0 1-36-23.7c-4.2-7.6-11.3 0-10.1 7.3 1.9 8 8 13.8 15.4 18 7.5 4.1 17 8.2 26.5 8 5.2 1 5.1 7.6-1 8.9-12.1 0-21.8-.2-30.9-9-6.9-6.3-10.7 1.2-8.8 5.4 3.4 13.1 22.1 16.8 41 12.6 7.4-1.2 3 6.6 1 6.7-8 5.7-22.1 11.2-34.6 0-5.7-4.4-9.6-.8-7.4 5.5 5.5 16.5 26.7 13 41.2 5 3.7-2.1 7.1 2.7 2.6 6.4-18.1 12.6-27.1 12.8-35.3 8-10.2-4.1-11 7.2-5 11 6.7 4 23.8 1 36.4-7 5.4-4 5.6 2.3 2.2 4.8-14.9 12.9-20.8 16.3-36.3 14.2-7.7-.6-7.6 8.9-1.6 12.6 8.3 5.1 24.5-3.3 37-13.8 5.3-2.8 6.2 1.8 3.6 7.3a53.9 53.9 0 0 1-21.8 18c-7 2.7-13.6 2.3-18.3.7-5.8-2-6.5 4-3.3 9.4 1.9 3.3 9.8 4.3 18.4 1.3 8.6-3 17.8-10.2 24.1-18.5 5.5-4.9 4.9 1.6 2.3 6.2-12.6 20-24.2 27.4-39.5 26.2-6.7-1.2-8.3 4-4 9 7.6 6.2 17 6 25.4-.2 7.3-7 21.4-22.4 28.8-30.6 5.2-4.1 6.9 0 5.3 8.4-1.4 4.8-4.8 10-14.3 13.6-6.5 3.7-1.6 8.8 3.2 9 2.7 0 8.1-3.2 12.3-7.8 5.4-6.2 5.8-10.3 8.8-19.9 2.8-4.6 7.9-2.4 7.9 2.4-2.5 9.6-4.5 11.3-9.5 15.2-4.7 4.5 3.3 6 6 4.1 7.8-5.2 10.6-12 13.2-18.2 2-4.4 7.4-2.3 4.8 5-6 17.4-16 24.2-33.3 27.8-1.7.3-2.8 1.3-2.2 3.3l7 7c-10.7 3.2-19.4 5-30.2 8l-14.8-9.8c-1.3-3.2-2-8.2-9.8-4.7-5.2-2.4-7.7-1.5-10.6 1 4.2 0 6 1.2 7.7 3.1 2.2 5.7 7.2 6.3 12.3 4.7 3.3 2.7 5 4.9 8.4 7.7l-16.7-.5c-6-6.3-10.6-6-14.8-1-3.3.5-4.6.5-6.8 4.4 3.4-1.4 5.6-1.8 7.1-.3 6.3 3.7 10.4 2.9 13.5 0l17.5 1.1c-2.2 2-5.2 3-7.5 4.8-9-2.6-13.8 1-15.4 8.3a17 17 0 0 0-1.2 9.3c.8-3 2.3-5.5 4.9-7 8 2 11-1.3 11.5-6.1 4-3.2 9.8-3.9 13.7-7.1 4.6 1.4 6.8 2.3 11.4 3.8 1.6 5 5.3 6.9 11.3 5.6 7 .2 5.8 3.2 6.4 5.5 2-3.3 1.9-6.6-2.5-9.6-1.6-4.3-5.2-6.3-9.8-3.8-4.4-1.2-5.5-3-9.9-4.3 11-3.5 18.8-4.3 29.8-7.8l7.7 6.8c1.5.9 2.9 1.1 3.8 0 6.9-10 10-18.7 16.3-25.3 2.5-2.8 5.6-6.4 9-7.3 1.7-.5 3.8-.2 5.2 1.3 1.3 1.4 2.4 4.1 2 8.2-.7 5.7-2.1 7.6-3.7 11-1.7 3.5-3.6 5.6-5.7 8.3-4 5.3-9.4 8.4-12.6 10.5-6.4 4.1-9 2.3-14 2-6.4.7-8 3.8-2.8 8.1 4.8 2.6 9.2 2.9 12.8 2.2 3-.6 6.6-4.5 9.2-6.6 2.8-3.3 7.6.6 4.3 4.5-5.9 7-11.7 11.6-19 11.5-7.7 1-6.2 5.3-1.2 7.4 9.2 3.7 17.4-3.3 21.6-8 3.2-3.5 5.5-3.6 5 1.9-3.3 9.9-7.6 13.7-14.8 14.2-5.8-.6-5.9 4-1.6 7 9.6 6.6 16.6-4.8 19.9-11.6 2.3-6.2 5.9-3.3 6.3 1.8 0 6.9-3 12.4-11.3 19.4 6.3 10.1 13.7 20.4 20 30.5l19.2-214L320 139c-2-1.8-8.8-9.8-10.5-11-.7-.6-1-1-.1-1.4.9-.4 3-.8 4.5-1-4-4.1-7.6-5.4-15.3-7.6 1.9-.8 3.7-.4 9.3-.6a30.2 30.2 0 0 0-13.5-10.2c4.2-3 5-3.2 9.2-6.7a86.3 86.3 0 0 1-19.5-3.8 37.4 37.4 0 0 0-12-3.4zm.8 8.4c3.8 0 6.1 1.3 6.1 2.9 0 1.6-2.3 2.9-6.1 2.9s-6.2-1.5-6.2-3c0-1.6 2.4-2.8 6.2-2.8z"/>
4
- <use width="100%" height="100%" transform="matrix(-1 0 0 1 640 0)" xlink:href="#a"/>
5
- </svg>
 
 
 
 
 
assets/flags/4x3/am.svg DELETED
@@ -1,5 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-am" viewBox="0 0 640 480">
2
- <path fill="red" d="M0 0h640v160H0z"/>
3
- <path fill="#00f" d="M0 160h640v160H0z"/>
4
- <path fill="orange" d="M0 320h640v160H0z"/>
5
- </svg>
 
 
 
 
 
assets/flags/4x3/ao.svg DELETED
@@ -1,13 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-ao" viewBox="0 0 640 480">
2
- <g fill-rule="evenodd" stroke-width="1pt">
3
- <path fill="red" d="M0 0h640v243.6H0z"/>
4
- <path d="M0 236.4h640V480H0z"/>
5
- </g>
6
- <path fill="#ffec00" fill-rule="evenodd" d="M228.7 148.2c165.2 43.3 59 255.6-71.3 167.2l-8.8 13.6c76.7 54.6 152.6 10.6 174-46.4 22.2-58.8-7.6-141.5-92.6-150l-1.3 15.6z"/>
7
- <path fill="#ffec00" fill-rule="evenodd" d="M170 330.8l21.7 10.1-10.2 21.8-21.7-10.2zm149-99.5h24v24h-24zm-11.7-38.9l22.3-8.6 8.7 22.3-22.3 8.7zm-26-29.1l17.1-16.9 16.9 17-17 16.9zm-26.2-39.8l22.4 8.4-8.5 22.4-22.4-8.4zM316 270l22.3 8.9-9 22.2-22.2-8.9zm-69.9 70l22-9.3 9.5 22-22 9.4zm-39.5 2.8h24v24h-24zm41.3-116l-20.3-15-20.3 14.6 8-23-20.3-15h24.5l8.5-22.6 7.8 22.7 24.7-.3-19.6 15.3 7 23.4z"/>
8
- <path fill="#fe0" fill-rule="evenodd" d="M336 346.4c-1.2.4-6.2 12.4-9.7 18.2l3.7 1c13.6 4.8 20.4 9.2 26.2 17.5a7.9 7.9 0 0 0 10.2.7s2.8-1 6.4-5c3-4.5 2.2-8-1.4-11.1-11-8-22.9-14-35.4-21.3z"/>
9
- <path fill-rule="evenodd" d="M365.3 372.8a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.6 0zm-21.4-13.6a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.7 0zm10.9 7a4.3 4.3 0 1 1-8.7 0 4.3 4.3 0 0 1 8.7 0z"/>
10
- <path fill="#fe0" fill-rule="evenodd" d="M324.5 363.7c-42.6-24.3-87.3-50.5-130-74.8-18.7-11.7-19.6-33.4-7-49.9 1.2-2.3 2.8-1.8 3.4-.5 1.5 8 6 16.3 11.4 21.5A5288 5288 0 0 1 334 345.6c-3.4 5.8-6 12.3-9.5 18z"/>
11
- <path fill="#ffec00" fill-rule="evenodd" d="M297.2 305.5l17.8 16-16 17.8-17.8-16z"/>
12
- <path fill="none" stroke="#000" stroke-width="3" d="M331.5 348.8l-125-75.5m109.6 58.1L274 304.1m18.2 42.7L249.3 322"/>
13
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/aq.svg DELETED
@@ -1,6 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-aq" viewBox="0 0 640 480">
2
- <path fill="#3a7dce" fill-rule="evenodd" d="M0 0h640v480H0z"/>
3
- <path fill="#fff" d="M184.8 225.3c-2.9-5.9-2.9-5.9-2.9-11.8-1.4 0-1.7.3-2.5 0-.8-.2-1.2 5.5-3.9 4.4-.4-.6 2-4.7-.6-6.4-.8-.5.2-3.9-.2-5.4 0 0-3.3 1.8-5.7-4.4-1.3-1.6-3 1.5-3 1.5s.8 1.9-.5 2.3c-1.9-1.4-3.2-.6-5.6-2.5-2.3-2 .5-4.1-4-5.7 3-7.4 3-6 10.2-8.9-4.4-3-4.4-3-7.3-7.4-4.3-1.4-5.7-3-10-5.9-5.8-7.3-8.7-22.1-8.7-32.4 3.6-3.5 8.6 11.8 15.9 16.2l10 4.4c5.8 3 7.3 6 11.6 8.9l13 4.4c5.8 4.4 8.7 10.3 13 11.8 4.7 0 5.6-2.7 7.1-3 8.5-.4 12.8-1.5 14.5-4 1.7-2.2 5.8 1.1 17.4-3.3l-1.5-6s3.1-2.5 7.3-1.4c-.2-2.7-.4-9.9 3.7-13.1-2.5-2.7-.9-4.6-.9-4.6s2.3-2.3 2.6-3.5c-1.2-6.5 1-6.6 1.6-8.5s-2-1.2-1.3-3.9c.7-2.6 4.9-3.2 5.5-5.4.5-2.2-1.2-3.3-1.1-3.8.9-2 .1-7 0-8.9 7.7-2 10.3-8.5 13-5.9 1.4-8.8 2.8-11.8 11.5-11.8 1.2-2.7-3.1-5-1.4-5.9 2.9-.3 5-.2 8.5 4.3 1 1.4 1.2-2 2.3-2.4 1-.4 3.7-.4 4-2.2.5-1.8 1-4.1 2.5-7 1.2-2.5 2.2.9 3.2 5.6a157 157 0 0 1 25.7 3.2c4.3 1.1 7.2-1.2 11.3-1.6 3.1 3.1 6 .8 7.6 7.5 2.3 3.6 6 .3 6.9 1.3 4.8 13.6 21.4 4.5 22.7 4.7 2 0 4.7 6 6.3 6 2.8-.5 2-2.4 4.4-1.7-.7 5.2 4.6 11 4.6 14.9 0 0 1.3.6 2.5-.5s2.3-4 3.3-4l6.5 1.2c7.8 2.8 11.8 3.4 14.8 4.8 1.5 2.6 2.8 4 5.7 3.5 2.4 1.6.6 3.8 2 3.9 3-1.5 3.9-3.1 6.8-1.6a17.6 17.6 0 0 1 7.2 7.4c0 1.4-1.5 7.3 0 16.2.7 3 1 5.3 4.1 10.3-.8 5.3 4 14 4 16.2 0 3-2.4 4.5-3.8 7.5 5.8 4.4 0 11.8-2.9 16.2 21.7 4.4 11.6 13.3 28.9 8.8-4.3 10.4-2.8 9.5 1.5 19.9-8.6 5.9-.2 7.7-6 15-.3.5 3.5 6.5 8.8 6.5-1.4 11.8-5.8 7.4-4.3 25-11.4-.2-6.8 13.3-14.4 11.9.4 8.4 4.3 9.2 2.8 17.7-5.7 1.5-5.7 1.5-8.6 5.9l-4.4-1.5c-1.4 7.4-4.3 8.9 0 16.3H439c-.1 2.5 2.5 3.2 3 5.9-.3 1-8.3 5.7-14.5 5.9-1.6 3.6 4.3 7.5 4 9.3-6.8 1.4-9.8 9.9-9.8 9.9s3.5 1.4 2.9 3c-1.9-1.5-2.9-1.6-5.8-1.6-1.4.4-5 0-8.3 5.8-3.7 1.2-5.5.8-8.3 4.6-1.2-3.7-3 0-5.2 1.4s-5.1 4.9-5.5 4.7c0-1 1.3-4.7 1.3-4.7l-7.2 1.5-.9.1c-.5 0-.4-4.3-1.8-4.1-1.3.1-5.2 5.5-6.6 5.6-1.3.2-1.7-1.7-2.9-1.5-1.1.2-3.4 5.6-4.2 5.8-.8.1-4-3.4-6.8-2.9-14.2 5.1-16.4-10-18.7-1.5-3-1.6-2.4-.7-5.4.1-2 .5-2.1-2.6-3.9-2.5-3.4 0-3.2 3.4-5.1 2.4-1.5-7-10.8-5.7-11.7-8.6-.7-3.1 4-3 5.6-5.2 1.1-3-1.3-4.1 3.5-7 6.2-4.3 2.6-6 3.7-9.2 2-4.6 2-5.8.4-9.9 0 0-4.9-13.2-5.8-13.2-3-.9-3 4.9-7.2 6.4-8.6 3-24-7.5-26.6-7.5-2.4 0-13.7 2.8-13.3-3-1.6 5.6-7.8 1.3-8.2 1.3-5.8 0-3.6 4.6-7.5 4.4-1.7-.6-19.5-1.6-19.5-1.6v3l-11.6-6-10-3c-8.7-2.9-4.4-10.3-18.8-5.8v-9H195c3-17.6 0-8.8-1.4-25l-5.8 1.5c-5.7-8 8-6.5-4.3-11.8 0 0 .2-8.8-2.9-6-.6.4 1.5 4.5 1.5 4.5-11.6-1.5-14.5-4.4-14.5-16.2 0 0 9.5 1.3 8.7 0a73 73 0 0 1-2.8-17.6c-.2-2 8.8-6.8 7-11.5 1.2-.4 4.4-.5 4.4-.5"/>
4
- <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1" d="M574.6 284.3a3 3 0 0 0 0 2.8c1-1.3.2-1.9 0-2.8z"/>
5
- <path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" d="M203.3 167.8s-2.4-.3-1.9 1.8c.8-1.7 1.8-1.7 1.9-1.8zm.5-5c-1.3 0-3-.2-2.4 2 .8-1.7 2.4-1.9 2.4-2zm9.1 28.3s2.1-.1 1.6 2c-.8-1.6-1.5-1.9-1.6-2z"/>
6
- </svg>
 
 
 
 
 
 
assets/flags/4x3/ar.svg DELETED
@@ -1,31 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="flag-icon-css-ar" viewBox="0 0 640 480">
2
- <path fill="#74acdf" d="M0 0h640v480H0z"/>
3
- <path fill="#fff" d="M0 160h640v160H0z"/>
4
- <g id="c" transform="translate(-64) scale(.96)">
5
- <path id="a" fill="#f6b40e" stroke="#85340a" stroke-width="1.1" d="M396.8 251.3l28.5 62s.5 1.2 1.3.9c.8-.4.3-1.5.3-1.5l-23.7-64m-.7 24.1c-.4 9.4 5.4 14.6 4.7 23-.8 8.5 3.8 13.2 5 16.5 1 3.3-1.3 5.2-.3 5.7s3-2.1 2.4-6.8c-.7-4.6-4.2-6-3.4-16.3.8-10.3-4.2-12.7-3-22"/>
6
- <use width="100%" height="100%" transform="rotate(22.5 400 250)" xlink:href="#a"/>
7
- <use width="100%" height="100%" transform="rotate(45 400 250)" xlink:href="#a"/>
8
- <use width="100%" height="100%" transform="rotate(67.5 400 250)" xlink:href="#a"/>
9
- <path id="b" fill="#85340a" d="M404.3 274.4c.5 9 5.6 13 4.6 21.3 2.2-6.5-3.1-11.6-2.8-21.2m-7.7-23.8l19.5 42.6-16.3-43.9"/>
10
- <use width="100%" height="100%" transform="rotate(22.5 400 250)" xlink:href="#b"/>
11
- <use width="100%" height="100%" transform="rotate(45 400 250)" xlink:href="#b"/>
12
- <use width="100%" height="100%" transform="rotate(67.5 400 250)" xlink:href="#b"/>
13
- </g>
14
- <use width="100%" height="100%" transform="rotate(90 320 240)" xlink:href="#c"/>
15
- <use width="100%" height="100%" transform="rotate(180 320 240)" xlink:href="#c"/>
16
- <use width="100%" height="100%" transform="rotate(-90 320 240)" xlink:href="#c"/>
17
- <circle cx="320" cy="240" r="26.7" fill="#f6b40e" stroke="#85340a" stroke-width="1.4"/>
18
- <path id="h" fill="#843511" d="M329.1 234.3c-1.8 0-3.6.8-4.6 2.4 2 1.9 6.6 2 9.7-.2a7 7 0 0 0-5.1-2.2zm0 .4c1.7 0 3.4.8 3.6 1.6-2 2.3-5.3 2-7.4.4a4.3 4.3 0 0 1 3.8-2z"/>
19
- <use width="100%" height="100%" transform="matrix(-1 0 0 1 640.2 0)" xlink:href="#d"/>
20
- <use width="100%" height="100%" transform="matrix(-1 0 0 1 640.2 0)" xlink:href="#e"/>
21
- <use width="100%" height="100%" transform="translate(18.1)" xlink:href="#f"/>
22
- <use width="100%" height="100%" transform="matrix(-1 0 0 1 640.2 0)" xlink:href="#g"/>
23
- <path fill="#85340a" d="M316 243.7a1.9 1.9 0 1 0 1.8 2.9 4 4 0 0 0 2.2.6h.2a3.9 3.9 0 0 0 2.3-.6 1.9 1.9 0 1 0 1.8-3c.5.3.8.7.8 1.3 0 .6-.5 1.2-1.2 1.2a1.2 1.2 0 0 1-1.2-1.2 3 3 0 0 1-2.6 1.7 3 3 0 0 1-2.5-1.7 1.2 1.2 0 0 1-1.3 1.2c-.6 0-1.2-.6-1.2-1.2s.3-1 .8-1.2zm2 5.5c-2.1 0-3 1.8-4.8 3 1-.4 1.9-1.2 3.3-2s2.7.2 3.5.2c.8 0 2-1 3.5-.2 1.4.8 2.3 1.6 3.3 2-1.9-1.2-2.7-3-4.8-3a5.5 5.5 0 0 0-2 .6 5.5 5.5 0 0 0-2-.7z"/>
24
- <path fill="#85340a" d="M317.2 251.6c-.8 0-1.8.2-3.4.6 3.7-.8 4.5.5 6.2.5 1.6 0 2.4-1.3 6.1-.5-4-1.2-4.9-.4-6.1-.4-.8 0-1.4-.3-2.8-.2z"/>
25
- <path fill="#85340a" d="M314 252.2h-.8c4.3.5 2.3 3 6.8 3s2.5-2.5 6.8-3c-4.5-.4-3.1 2.3-6.8 2.3-3.5 0-2.4-2.3-6-2.3zm9.7 6.7a3.7 3.7 0 0 0-7.4 0 3.8 3.8 0 0 1 7.4 0z"/>
26
- <path id="e" fill="#85340a" d="M303.4 234.3c4.7-4.1 10.7-4.8 14-1.7a8 8 0 0 1 1.5 3.5c.4 2.3-.3 4.8-2.1 7.4l.8.4a14.6 14.6 0 0 0 1.6-9.4 13.3 13.3 0 0 0-.6-2.3c-4.5-3.7-10.7-4-15.2 2z"/>
27
- <path id="d" fill="#85340a" d="M310.8 233c2.7 0 3.3.7 4.5 1.7 1.2 1 1.9.8 2 1 .3.2 0 .8-.3.6-.5-.2-1.3-.6-2.5-1.6s-2.5-1-3.7-1c-3.7 0-5.7 3-6.2 2.8-.3-.2 2.1-3.5 6.2-3.5z"/>
28
- <use width="100%" height="100%" transform="translate(-18.4)" xlink:href="#h"/>
29
- <circle id="f" cx="310.9" cy="236.3" r="1.9" fill="#85340a"/>
30
- <path id="g" fill="#85340a" d="M305.9 237.5c3.5 2.7 7 2.5 9 1.3 2-1.3 2-1.7 1.6-1.7-.4 0-.8.4-2.4 1.3-1.7.8-4.1.8-8.2-.9z"/>
31
- </svg>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/flags/4x3/as.svg DELETED
@@ -1,33 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" id="flag-icon-css-as" viewBox="0 0 640 480">
2
- <defs>
3
- <clipPath id="a">
4
- <path fill-opacity=".7" d="M0 0h640v480H0z"/>
5
- </clipPath>
6
- </defs>
7
- <g clip-path="url(#a)">
8
- <path fill="#006" d="M-374-16H650v512H-374z"/>
9
- <path fill="#bd1021" fill-rule="evenodd" d="M-374 240L650 496V-16L-374 240z"/>
10
- <path fill="#fff" fill-rule="evenodd" d="M650 11.4v457.2L-264.3 240 650 11.4z"/>
11
- <g stroke="#000">
12
- <path fill="#9c3900" fill-rule="evenodd" stroke-linejoin="round" stroke-width="1.8" d="M478 297.4s-6.4-5.2 1.2-13.7c-4.1-3.4-.3-10.1-.3-10.1s-7-2.6.3-13.4c-5.3-3.5-3-11.3-3-11.3s-17-6.4-.8-12.5c-13.4 5.8-25.9-7.9-25.9-7.9l-19.4.6c-3.3-16.2-29-2.1-10-48.5-4.9-.9-10.4-2.3-16 1.7-5.4 4.1-21.1 12.8-30.4 4.1s6-21.2 6.4-21.5c.3-.3 20.6-10.8 23.5-17.7-.3-5.3-6.7-9.3-.9-20.7 6.7-10.7 47.7-20.9 66.3-24.4a29.5 29.5 0 0 0 13-11.9l2.1 7.6s41.3-12.2 43.3-18 .9 5.2.9 5.2c16.2-1.5 36.9-15.4 39.8-9 13.6-2.6 39.8-14.3 39.8-14.3s9-.3 2.6 9.6c4 6.4-1.2 12-1.5 12-.2 0 1.8 6.3-3.4 9.8 1.7 5.5-3.2 10-3.2 10s2.3 6.6-7 10c.9 5.9-5.2 7-5.2 7s.8 6.1-3.2 8.8c0 4.6-4.7 7-4.7 7s3 1.7-1.2 4.6a1568 1568 0 0 1-46.2 28.5c0-.3 30.8 5.5 32.9 6.6s25.3 16.6 25.3 16.6l-23.6 29s-26.1-2.8-27.3-1.4 5.5 2 7 4.4c1.4 2.3 3.8 7.8 8.4 7.2 4.7-.5-8.7 8.5-17.4 9.3 0 3.2 11 3.5 14 1 2.8-2.7-7 7.5-8.2 9s13-2.1 13-2.1-2.3 9.6-14.7 12.5c4.9 8.1 2.9 13.3 2.6 13.3s-8.2-8-15.7-6.6c2 7.8 8.1 15 9.9 16.2 1.7 1.2-13.7 1-15.7-3.5s-3.8 10.5 1.7 15.2c-6.4.3-11.9-3.5-11.9-3.5s-3.8 8.7-1.2 13c2.6 4.4-9-8.7-9-8.7l-22 9.3-5-8.4z"/>
13
- <path fill="#ffc221" fill-rule="evenodd" stroke-width="1.9" d="M307.3 280.1c.5 0 32.1-.5 46.6-8.8a86.3 86.3 0 0 0 17 19.1l4.7-16.5s11.4.5 12.4 3c-1.5 3.2-2 7.3-2 7.3s7.7.6 8.3 1.6c.5 1-2.1 9.8-2.1 9.8l33.1 7.8s2.6-13 5.2-11.4c2.6 1.6 14 17.6 30 18.6s17-13.4 17-13.4l3.7 2s6.7-14.4 7.8-14.4 2.5 2 11.3 2c2.6 3.1 3.7 10.4 3.7 10.4s-9.9 9.8-6.8 17.6 3.7 5.7 3.7 5.7l71.4 17s3.6 5.7-2.6 8.8c0 .5-72-16.5-72-16.5s-6.7 7.7-11.9 6.2-1.5 3-1.5 3l77.6 6.3s5.7 7.2 1.6 9.3c-5.2.5-83.9-5.2-83.9-5.2s-4.6 9.9-9.8 1.6c-3.6 5.7-7.8-1.6-7.8-1.6s-6.7 5.2-7.7-.5c-5.7 4.2-9.3-2.6-9.3-2.6l-33.2-2-2 3s5.7 1.6-3.1 5.2c-8.8 3.7 52.8 2.1 54.3 2.6 1.6.6-4.1 5.2-4.1 5.2s31.5 2 37.2-4.6c5.7-6.8-2 8.8-2 8.8s24.8-1 24.8-2.1-.5 7.7-17.6 6.7a112 112 0 0 0 23.3 10.9s-13 3-28-.5c2.6 6.7 14 12.9 14 12.9s-8.3 7.2-26.9-10.4c5.2 9.4 1 13 .5 12a48 48 0 0 0-30-18.7c13 8.3 7.3 12 7.3 12s-6.8-12-17.6 0c-4.2-11-20.2-17.2-39.9-18.2-6.2-7.2-9.8-5.2-24.3-9.3-8.3-9.3-20.2-19.7-20.2-19.7s.5-14 14.5-12.4c1.6 4.7 1.6 3.1 1.6 3.1s15.5-5.7 20.1 2c6.8-11.8 16-1.7 17.6 2.4 4.5.7 27 1.3 27 1.3s-2.7-4.7-1-4.1c1.5.5 13.9-4.7 13.4-6.2-.6-1.6-1-6.8 1-6.3 2 .6-17.6-2.5-28.5 5.7-3.6-3.6-1-13.4-1-13.4l-32-6.7-1.6 8.2s-9.4 1.6-8.8-.5l-2.1 7.3s-12.4-3.1-12.4-3.7 3.6-18.6 3.6-18c0 .4-10.4 1-24.8 11.8-4.2-13-36.8-30-36.8-30.5z"/>
14
- <path fill="none" stroke-width="1.9" d="M386 284.8l-6.7 30m12.9-18.7l-2 9.9m35.1-2l-3 9.2m60.4 53.8c-.5 0-16.5 2.1-18.6 1.6-2-.5 25.4 8.3 25.4 11.9m-35.7-9.8s-16-10.4-18.7-9.4c-2.5 1 16-.5 17.6-2m-32-.5s-16.6.5-18.2-1 16 11.3 19.2 10.3m-33.1-16.6c-.5 0-11.4-4.1-16-5.2 4 4.2 7.2 9.9 17.5 12m2.6-13.5c-.5-1-20.7-7.3-20.7-10.4a32.6 32.6 0 0 0 17.6 2.1M499.8 321l-2 9.3"/>
15
- <path fill="#ffc221" fill-rule="evenodd" stroke-width="1.9" d="M347.7 237.7s-21.7 18.6 0 29.5c1-7.3 2.6-8.3 2.6-8.3s18 6.7 29-9.3c-4.7-6.8-13-4.2-13-4.2s-17 0-18.6-7.7z"/>
16
- <path fill="none" stroke-width="1.9" d="M365.8 246l-15 12.9m61.2 76.9s3.5 3.8.4 8.5m72.4-4.7l-5.7.5m-40.9-3.6l10.4 1.6m17.5-28.2s.3 10.5-8.4 10.2c-8.8-.3-5.9.3-5.9.3"/>
17
- <path fill="none" stroke-width="1.9" d="M472.8 308.1s3.5 1.2 2.6 3.8c-.9 2.6.9 10.2-9.3 17.5-10.8 2.3-9.6-9-9.6-9"/>
18
- <path fill="none" stroke-width="1.9" d="M476.6 311.4s6.3-3.8 7.2 2.3c.9 6-5.2 17.4-9.6 19.2-4.3 1.7-9.3-.3-8.7-3.2m18.9-15.7s5.8-4.7 7.6 1.4c1.7 6.1-4.7 19.8-7.3 20m7.8-20s3-1.4 5 .3m-14.3 20.6c-1.1.3-6 .6-7.8-3.2m-18.3-7l-6.1.4m28.4 22.6l-.5-9.6-2.4-3.2-4 4.1s-.6 9.6-2.4 10.5m2.4-10.8l-3.2-6-5 6s-.5 8.7-2.3 9.6m2.3-9.9l-2-5.8s-5.8 3.2-6.4 5.5c-.6 2.4-.9 8.7-2.3 9.3m2.3-10.4s.6-5.3-1.2-5.3c-1.7 0-9.5 7.3-9.8 13.7"/>
19
- <path fill="#fff" fill-rule="evenodd" stroke-linejoin="round" stroke-width="1.9" d="M348.4 237.8s2.9-2.9 3.8-6.4c.8-3.4-1.2-7.2 2.3-10.4s49.4-22.7 53.2-26.5a115 115 0 0 0 11.6-13.6c.9-1.8 3.5 8.7-4.4 13.3 8.5-2.3 14-4.9 17.5-3.7-3.5 4.9-12.8 13-17.2 13 10.2-3.7 19.5-7 22.1-4.9 2.6 2-12.5 12.2-18.6 12.8 10.2-2.6 23.8-6.7 25.6-2.3-5.5 1.7-3.8 3.2-15.1 9.6a28.5 28.5 0 0 1-8.7 1.4c8.7-.9 20.6-4.4 21.8 2-7 2.7-9.6 6.1-15.4 7.6-5.9 1.4-19.2 4-27.4 7.3-8 3.2-20 12.5-20 12.5s-25.9.8-25.9.5c0-.3-5-11.9-5.2-12.2z"/>
20
- <path fill="none" stroke-width="1.9" d="M360.6 235.8s.3-5.8 3-7.8c2.5-2 15.6-7 18.5-11.4 3-4.3-4.3 7.6-3.2 10.8m-13-.3s6.3 2.3 4.9 7.2"/>
21
- <path fill="none" stroke-width="1.6" d="M373.4 230.4a4.8 4.8 0 1 1-9.6 0 4.8 4.8 0 0 1 9.6 0z"/>
22
- <path fill="#fff" fill-rule="evenodd" stroke-width="1.9" d="M570.1 220.1l50.3 9.6s5.5-6.4 2.6-9.9c7.6-1.7 5.5-11.6 5.5-11.6s8.7-3.8 1.5-12.5c5-5-1.2-8.7-1.2-8.7s2-8.7-4.3-9.6c1.7-7-11-9.3-11-9.3s-26.5 7.3-45.1 7.8c6 6.1-2.3 10-2.3 10s4.9 3.4 3.4 6.3c-1.4 3 1 6.1-5.5 8.2 8.4 3.7-.9 10.1-.9 10.1s9.3 6.4 7 9.6z"/>
23
- <path fill="none" stroke-width="1.9" d="M565.2 209.4s44.4 5.2 46.5 5.2 9.8 2.6 11.3 5.2m-55.5-13l61.9 1.4m-61.6-3s58.7-3.4 62.8-9.5m-61-3.2s59-6.4 59.5-5.5m-61.6-1.8s57.2-9 57.8-7.5m-221.1-29.4s18 19.8 16.3 33.2"/>
24
- <path fill="none" stroke-width="1.9" d="M419.3 171s5.8 8.4 8.1 9.3 22.7 2 23.9 10.8c1.1 5.5-4.4 3.7-3.5 7.8 1.4 5.2 15 12 30 4M464 207s12.2 18 30.2-1.4m-9.3 7.8s14.8 7.9 27-12.5m-15.7 14.3s7.3 6 22.4-2m20.9-8.2s22.4 4.6 23.8 6M548 200l15.7.6m-25.3-9.3s26.8-1.7 30.3 3.8M526.8 183s37.5 1.5 39.2 3.5m-30.8 34.9s6.4-1.8 7.3-1M520.7 237s8.4 7.2 19.2 4m-14.5 8.2s9.6 4.3 20.9 1.7m-17.7 5.5s9.6 6.4 16 5.3m-20.4-1.5s6.7 5 7 7.6m-16.3-1.8s2 10.5 9.3 14.3m-14.2-9.6s-3.2 13.6 4.9 22m-13.4-11.3c0 .3-.5 6.4-.2 7m-52-59.9l15.6-.8s5.8-2.4 1.8-6.1m2 3.5c.3 0 14.8 1.1 18.6 5.5 3.8 4.3 8.4 13 11 14.5 2.7 1.5 3.2-.6 3.2-.6m-6.4-2.3s-7.8 13.4-1.7 17.4m-2.6-2.6s-7 9.3-1.5 14m-1.4-1.2s-5.5 9 1.1 15.1m-3.6-39c-.3.4-6.7 4.9-9 3.8m2.3 10.4s2.6 2.7 4.9 2.3m-4.6 11.4l4.2 2.8m-3.6 7.6l3.6 2.2m-69.3-144.7s7.7 4 13.8 0c6.1-4 35.4-19 43-21.4 7.7-2.4 12-16.5 13.5-22.6m-5.8 16.5l42.8-12.5s7-5.8 7.3-16.5m-3 11.6s42.7-4.3 42.7-20.2m-6.7 11s45-12.2 49.2-16.8"/>
25
- <path fill="none" stroke-width="1.9" d="M436.2 151.5s27.2-14 31.5-15.6c4.3-1.5 14-13.8-.6-13.8"/>
26
- <path fill="none" stroke-width="1.9" d="M449.4 157c.3 0 22.3-14.4 29.6-16.2 4-5.5 1.8-11.3-4.9-10.1"/>
27
- <path fill="none" stroke-width="1.9" d="M480.9 137.1c.6-.3 11.9-.6 7.9 8.3-5.8 4.2-30.9 16.8-30.9 16.8m17.1-34.5l47.7-16s4-8.2-1.8-9.4m39.7-14.4c0 .3 6.1 3.7 2.4 9.2-6.7 4-38.4 11.6-38.4 11.6M608.9 83l-45 12.6m41.6-2.5l-39 12m35.7-2.2l-34.6 10.4m28.1-.6c-.9 0-25.6 7.6-25.6 7.6m20.2 0l-16 6.4m12 2.2a321 321 0 0 0-13.8 5.8m9.8 1.2l-12.2 5.8m-8.9 7.3s1.5.6 1.2 2.5m-32 14.3s5.1 1.9.3 6.8c-2.5 3.3-9.5 2.4-13.8 8.5m46.8-83.7s6.4 1.5 1.5 9.8c-12.8 4.9-38.8 12.8-38.8 12.8s-1.2 2.2-4.6 4a758.6 758.6 0 0 1-40.3 12.2m84.3-29.3s7 3 0 8.2c-8 4.6-35.7 13.2-35.7 13.2s-.4 2.4-1.6 3.3c-1.2 1-37.9 13.2-37.9 13.2"/>
28
- <path fill="none" stroke-width="1.9" d="M567.6 115.1s7.4 2.2 1 8.3a289 289 0 0 1-32.1 12.8s-2.5 3-6.5 4.3a919 919 0 0 0-29.3 11.6m68.8-28.7c2.1.9 8 1.8.9 7.3-8.3 3.7-28.4 11.6-28.4 11.6l-1.9 3.4-32 13.7m63.2-27.8s3 3.7-3.7 8c-7.3 4-23.2 10-23.2 10m23.2-9.4s3.4 2.1-.9 5.2c-4.9 2.4-24.1 12.5-24.1 12.5l-12.5 8.3"/>
29
- <path fill="none" stroke-width="1.9" d="M523.6 112c0 .4 5.2 4.6 3.4 9.5 4.6 3.4 3.7 7 3.7 7s6.4 3.7 5.5 9c6.4 1.5 6 5.1 6 5.1l-2 3.4s6.3-.3.8 8c3.4 1.8 1.9 3.9 1.9 3.9m-1.9-3.7c-.9 0-22.3 8-27.8 12.9"/>
30
- <path fill="none" stroke-width="1.9" d="M489.4 144.8s6.4-.3 5.5 6.7c7.4-2.5 5.8 4.6 5.8 4.6s8.6-3.4 7 7.3c5.6-1.2 4.6 4.3 4.6 4.3s5-.3 5 2.4c3.3-3 7-1.5 7-1.5s2.4-3.4 5.8-2.4m-34.9-15c0 .6-28.7 16.5-2