matlab-proxy 0.27.0__py3-none-any.whl → 0.27.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of matlab-proxy might be problematic. Click here for more details.
- matlab_proxy/app.py +40 -27
- matlab_proxy/app_state.py +20 -24
- matlab_proxy/gui/index.html +2 -2
- matlab_proxy/gui/static/css/{index.BSVLACuY.css → index.BLxKpbak.css} +2 -2
- matlab_proxy/gui/static/js/{index.BcDShXfH.js → index.CKi3IRxe.js} +1 -1
- matlab_proxy/settings.py +4 -6
- matlab_proxy/util/__init__.py +25 -44
- matlab_proxy/util/list_servers.py +70 -25
- matlab_proxy/util/mwi/environment_variables.py +10 -0
- matlab_proxy/util/mwi/logger.py +116 -32
- matlab_proxy/util/mwi/token_auth.py +2 -2
- matlab_proxy/util/mwi/validators.py +2 -2
- {matlab_proxy-0.27.0.dist-info → matlab_proxy-0.27.3.dist-info}/METADATA +2 -1
- {matlab_proxy-0.27.0.dist-info → matlab_proxy-0.27.3.dist-info}/RECORD +17 -17
- {matlab_proxy-0.27.0.dist-info → matlab_proxy-0.27.3.dist-info}/WHEEL +0 -0
- {matlab_proxy-0.27.0.dist-info → matlab_proxy-0.27.3.dist-info}/entry_points.txt +0 -0
- {matlab_proxy-0.27.0.dist-info → matlab_proxy-0.27.3.dist-info}/licenses/LICENSE.md +0 -0
matlab_proxy/app.py
CHANGED
|
@@ -432,25 +432,38 @@ async def shutdown_integration_delete(req):
|
|
|
432
432
|
req (HTTPRequest): HTTPRequest Object
|
|
433
433
|
"""
|
|
434
434
|
state = req.app["state"]
|
|
435
|
-
|
|
436
435
|
logger.info(f"Shutting down {state.settings['integration_name']}...")
|
|
437
436
|
|
|
438
|
-
# Send response manually because this has to happen before the application exits
|
|
439
437
|
res = create_status_response(req.app, "../")
|
|
440
|
-
await res.prepare(req)
|
|
441
|
-
await res.write_eof()
|
|
442
438
|
|
|
443
|
-
#
|
|
444
|
-
|
|
445
|
-
|
|
439
|
+
# Schedule the shutdown to happen after the response is sent
|
|
440
|
+
asyncio.create_task(_shutdown_after_response(req.app))
|
|
441
|
+
|
|
442
|
+
return res
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
async def _shutdown_after_response(app):
|
|
446
|
+
# Shutdown the application after a short delay to allow the response to be fully sent
|
|
447
|
+
# back to the client before the server is stopped
|
|
448
|
+
await asyncio.sleep(0.1)
|
|
449
|
+
|
|
450
|
+
# aiohttp shutdown to be invoked before cleanup -
|
|
451
|
+
# https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Application.shutdown
|
|
452
|
+
await app.shutdown()
|
|
453
|
+
await app.cleanup()
|
|
446
454
|
|
|
447
455
|
loop = util.get_event_loop()
|
|
448
|
-
# Run the current batch of coroutines in the event loop and then exit.
|
|
449
|
-
# This completes the loop.run_forever() blocking call and subsequent code
|
|
450
|
-
# in create_and_start_app() resumes execution.
|
|
451
|
-
loop.stop()
|
|
452
456
|
|
|
453
|
-
|
|
457
|
+
# Cancel remaining tasks (except this one: _shutdown_after_response)
|
|
458
|
+
running_tasks = asyncio.all_tasks(loop)
|
|
459
|
+
current_task = asyncio.current_task()
|
|
460
|
+
if current_task:
|
|
461
|
+
running_tasks.discard(current_task)
|
|
462
|
+
|
|
463
|
+
await util.cancel_tasks(running_tasks)
|
|
464
|
+
|
|
465
|
+
# Stop the event loop from this task
|
|
466
|
+
loop.call_soon_threadsafe(loop.stop)
|
|
454
467
|
|
|
455
468
|
|
|
456
469
|
# @token_auth.authenticate_access_decorator
|
|
@@ -873,8 +886,6 @@ def configure_and_start(app):
|
|
|
873
886
|
"""
|
|
874
887
|
loop = util.get_event_loop()
|
|
875
888
|
|
|
876
|
-
web_logger = None if not mwi_env.is_web_logging_enabled() else logger
|
|
877
|
-
|
|
878
889
|
# Setup the session storage,
|
|
879
890
|
# Uniqified per session to prevent multiple proxy servers on the same FQDN from interfering with each other.
|
|
880
891
|
uniqify_session_cookie = secrets.token_hex()
|
|
@@ -888,7 +899,9 @@ def configure_and_start(app):
|
|
|
888
899
|
)
|
|
889
900
|
|
|
890
901
|
# Setup runner
|
|
891
|
-
runner = web.AppRunner(
|
|
902
|
+
runner = web.AppRunner(
|
|
903
|
+
app, access_log=logger if mwi_env.is_web_logging_enabled() else None
|
|
904
|
+
)
|
|
892
905
|
loop.run_until_complete(runner.setup())
|
|
893
906
|
|
|
894
907
|
# Prepare site to start, then set port of the app.
|
|
@@ -961,7 +974,7 @@ def create_app(config_name=matlab_proxy.get_default_config_name()):
|
|
|
961
974
|
app.router.add_route("*", f"{base_url}", root_redirect)
|
|
962
975
|
|
|
963
976
|
app.router.add_route("*", f"{base_url}/{{proxyPath:.*}}", matlab_view)
|
|
964
|
-
app.
|
|
977
|
+
app.on_shutdown.append(cleanup_background_tasks)
|
|
965
978
|
|
|
966
979
|
return app
|
|
967
980
|
|
|
@@ -983,7 +996,7 @@ def configure_no_proxy_in_env():
|
|
|
983
996
|
os.environ["no_proxy"] = ",".join(
|
|
984
997
|
set(existing_no_proxy_env + no_proxy_whitelist)
|
|
985
998
|
)
|
|
986
|
-
logger.
|
|
999
|
+
logger.debug(f"Setting no_proxy to: {os.environ.get('no_proxy')}")
|
|
987
1000
|
|
|
988
1001
|
|
|
989
1002
|
def create_and_start_app(config_name):
|
|
@@ -1011,15 +1024,15 @@ def create_and_start_app(config_name):
|
|
|
1011
1024
|
|
|
1012
1025
|
# After handling the interrupt, proceed with shutting down the server gracefully.
|
|
1013
1026
|
try:
|
|
1027
|
+
# aiohttp shutdown to be invoked before cleanup -
|
|
1028
|
+
# https://docs.aiohttp.org/en/stable/web_reference.html#aiohttp.web.Application.shutdown
|
|
1029
|
+
loop.run_until_complete(app.shutdown())
|
|
1030
|
+
loop.run_until_complete(app.cleanup())
|
|
1031
|
+
|
|
1014
1032
|
running_tasks = asyncio.all_tasks(loop)
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
app.cleanup(),
|
|
1019
|
-
util.cancel_tasks(running_tasks),
|
|
1020
|
-
return_exceptions=False,
|
|
1021
|
-
)
|
|
1022
|
-
)
|
|
1033
|
+
|
|
1034
|
+
# Gracefully cancel all running background tasks
|
|
1035
|
+
loop.run_until_complete(util.cancel_tasks(running_tasks))
|
|
1023
1036
|
|
|
1024
1037
|
except Exception:
|
|
1025
1038
|
pass
|
|
@@ -1040,12 +1053,12 @@ def print_version_and_exit():
|
|
|
1040
1053
|
|
|
1041
1054
|
def main():
|
|
1042
1055
|
"""Starting point of the integration. Creates the web app and runs indefinitely."""
|
|
1043
|
-
if util.
|
|
1056
|
+
if util.parse_main_cli_args()["version"]:
|
|
1044
1057
|
print_version_and_exit()
|
|
1045
1058
|
|
|
1046
1059
|
# The integration needs to be called with --config flag.
|
|
1047
1060
|
# Parse the passed cli arguments.
|
|
1048
|
-
desired_configuration_name = util.
|
|
1061
|
+
desired_configuration_name = util.parse_main_cli_args()["config"]
|
|
1049
1062
|
|
|
1050
1063
|
create_and_start_app(config_name=desired_configuration_name)
|
|
1051
1064
|
|
matlab_proxy/app_state.py
CHANGED
|
@@ -484,7 +484,7 @@ class AppState:
|
|
|
484
484
|
"'busy' status endpoint returned an invalid response, falling back to using 'ping' endpoint to determine MATLAB state"
|
|
485
485
|
)
|
|
486
486
|
warning = f"{mwi_env.get_env_name_shutdown_on_idle_timeout()} environment variable is supported only for MATLAB versions R2021a or later"
|
|
487
|
-
logger.
|
|
487
|
+
logger.warning(warning)
|
|
488
488
|
self.warnings.append(warning)
|
|
489
489
|
|
|
490
490
|
else:
|
|
@@ -875,15 +875,8 @@ class AppState:
|
|
|
875
875
|
user_code_output_file
|
|
876
876
|
)
|
|
877
877
|
logger.info(
|
|
878
|
-
|
|
879
|
-
boundary_filler="*",
|
|
880
|
-
text_arr=[
|
|
881
|
-
f"When MATLAB starts, you can see the output for your startup code at:",
|
|
882
|
-
f"{self.matlab_session_files.get('startup_code_output_file', ' ')}",
|
|
883
|
-
],
|
|
884
|
-
)
|
|
878
|
+
f"The results of executing MWI_MATLAB_STARTUP_SCRIPT are stored at: {user_code_output_file} "
|
|
885
879
|
)
|
|
886
|
-
|
|
887
880
|
return
|
|
888
881
|
|
|
889
882
|
def create_server_info_file(self):
|
|
@@ -909,16 +902,16 @@ class AppState:
|
|
|
909
902
|
|
|
910
903
|
# By default mwi_server_url usually points to 0.0.0.0 as the hostname, but this does not work well
|
|
911
904
|
# on some browsers. Specifically on Safari (MacOS)
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
)
|
|
905
|
+
server_url = (
|
|
906
|
+
self.settings["mwi_server_url"].replace("0.0.0.0", "localhost")
|
|
907
|
+
+ mwi_auth_token_str
|
|
908
|
+
)
|
|
909
|
+
|
|
910
|
+
mwi.logger.log_startup_info(
|
|
911
|
+
title=f"matlab-proxy-app running on {self.settings['app_port']}",
|
|
912
|
+
matlab_url=server_url,
|
|
921
913
|
)
|
|
914
|
+
logger.info(f"MATLAB Root: {self.settings['matlab_path']}")
|
|
922
915
|
|
|
923
916
|
def clean_up_mwi_server_session(self):
|
|
924
917
|
# Clean up mwi_server_session_files
|
|
@@ -965,10 +958,11 @@ class AppState:
|
|
|
965
958
|
matlab_env["MLM_LICENSE_FILE"] = self.licensing["conn_str"]
|
|
966
959
|
|
|
967
960
|
# Env setup related to MATLAB
|
|
968
|
-
|
|
969
|
-
matlab_env["
|
|
970
|
-
matlab_env["
|
|
971
|
-
|
|
961
|
+
## Update the values only if it does not already exist in the environment
|
|
962
|
+
matlab_env["MW_CRASH_MODE"] = matlab_env.get("MW_CRASH_MODE", "native")
|
|
963
|
+
matlab_env["MATLAB_WORKER_CONFIG_ENABLE_LOCAL_PARCLUSTER"] = matlab_env.get(
|
|
964
|
+
"MATLAB_WORKER_CONFIG_ENABLE_LOCAL_PARCLUSTER", "true"
|
|
965
|
+
)
|
|
972
966
|
matlab_env["MW_DOCROOT"] = os.path.join("ui", "webgui", "src")
|
|
973
967
|
matlab_env["MWAPIKEY"] = self.settings["mwapikey"]
|
|
974
968
|
|
|
@@ -1003,7 +997,7 @@ class AppState:
|
|
|
1003
997
|
|
|
1004
998
|
# Set MW_CONNECTOR_CONTEXT_ROOT
|
|
1005
999
|
matlab_env["MW_CONNECTOR_CONTEXT_ROOT"] = self.settings.get("base_url", "/")
|
|
1006
|
-
logger.
|
|
1000
|
+
logger.debug(
|
|
1007
1001
|
f"MW_CONNECTOR_CONTEXT_ROOT is set to: {matlab_env['MW_CONNECTOR_CONTEXT_ROOT']}"
|
|
1008
1002
|
)
|
|
1009
1003
|
|
|
@@ -1315,6 +1309,8 @@ class AppState:
|
|
|
1315
1309
|
# to MATLAB state by other functions/tasks until the lock is released, ensuring consistency. It's released early only in case of exceptions.
|
|
1316
1310
|
await self.matlab_state_updater_lock.acquire()
|
|
1317
1311
|
self.set_matlab_state("starting")
|
|
1312
|
+
logger.info(f"Starting MATLAB...")
|
|
1313
|
+
|
|
1318
1314
|
# Clear MATLAB errors and logging
|
|
1319
1315
|
self.error = None
|
|
1320
1316
|
self.logs["matlab"].clear()
|
|
@@ -1534,7 +1530,7 @@ class AppState:
|
|
|
1534
1530
|
except:
|
|
1535
1531
|
pass
|
|
1536
1532
|
|
|
1537
|
-
logger.
|
|
1533
|
+
logger.debug("Stopped (any running) MATLAB process.")
|
|
1538
1534
|
|
|
1539
1535
|
# Terminating Xvfb
|
|
1540
1536
|
if system.is_posix():
|
matlab_proxy/gui/index.html
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
<meta name="internal_mw_identifier" content="MWI_MATLAB_PROXY_IDENTIFIER" />
|
|
12
12
|
<link rel="manifest" href="./manifest.json" />
|
|
13
13
|
<title>MATLAB</title>
|
|
14
|
-
<script type="module" crossorigin src="./static/js/index.
|
|
15
|
-
<link rel="stylesheet" crossorigin href="./static/css/index.
|
|
14
|
+
<script type="module" crossorigin src="./static/js/index.CKi3IRxe.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="./static/css/index.BLxKpbak.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<div id="root"></div>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
html,#root{height:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}/*!
|
|
2
2
|
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
|
3
3
|
* Copyright 2011-2016 Twitter, Inc.
|
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
@@ -7,4 +7,4 @@
|
|
|
7
7
|
* https://github.com/ashleydw/lightbox
|
|
8
8
|
*
|
|
9
9
|
* License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
|
|
10
|
-
*/.ekko-lightbox-container{position:relative}.ekko-lightbox-container iframe{width:100%!important;height:100%;overflow:hidden}.ekko-lightbox-nav-overlay{height:100%;width:100%;left:0;position:absolute;top:0;z-index:100}.ekko-lightbox-nav-overlay a{height:100%;width:49%;padding-top:45%;color:#fff;display:block;font-size:30px;opacity:0;text-shadow:2px 2px 4px #1a1a1a;transition:opacity .5s;z-index:100}.ekko-lightbox-nav-overlay a:empty{width:49%}.ekko-lightbox a:hover{text-decoration:none;opacity:1}.ekko-lightbox .glyphicon-chevron-left{padding-left:15px;float:left;left:0;text-align:left}.ekko-lightbox .glyphicon-chevron-right{padding-right:15px;float:right;right:0;text-align:right}.ekko-lightbox .modal-body{overflow:hidden}.ekko-lightbox .modal-footer{text-align:left}#responsive_iframe .content_container,#responsive_iframe .content_container_no_conflict{padding:0}.section_downsize{font-size:86%}.section_downsize .h1,.section_downsize h1{font-size:28px}.section_downsize .h2,.section_downsize h2{font-size:25px}.section_downsize .h3,.section_downsize h3{font-size:20px}.section_downsize .h4,.section_downsize h4{font-size:17px}.section_downsize .h5,.section_downsize h5{font-size:16px}.section_downsize .h6,.section_downsize h6{font-size:13px}.section_downsize .panel-body .h1,.section_downsize .panel-body h1{margin-bottom:30px}.section_downsize .panel-body .h2,.section_downsize .panel-body h2{margin-bottom:13px}.section_downsize .panel-body .h3,.section_downsize .panel-body h3{margin-bottom:11px}.section_downsize .panel-body .h4,.section_downsize .panel-body h4{margin-bottom:10px}.section_downsize .panel-body .h5,.section_downsize .panel-body h5,.section_downsize .panel-body .h6,.section_downsize .panel-body h6{margin-bottom:9px}.section_downsize ol>li,.section_downsize ul>li{margin-bottom:6px}.section_downsize .alert h3,.section_downsize blockquote{font-size:15px}.section_downsize .caption,.section_downsize .thumbnail .caption,.section_downsize .video-caption{font-size:13px}.section_downsize pre{font-size:86%}@media only screen and (min-width:768px){.section_upsize{font-size:115%;line-height:1.6}.section_upsize .h1,.section_upsize h1{font-size:42px}.section_upsize .h2,.section_upsize h2{font-size:32px}.section_upsize .h3,.section_upsize h3{font-size:25px}.section_upsize .h4,.section_upsize h4{font-size:21px}.section_upsize .h5,.section_upsize h5{font-size:18px}.section_upsize .h6,.section_upsize h6{font-size:15px}.section_upsize h1+h2{font-size:32px}.section_upsize p{margin-bottom:22px}.section_upsize .table{font-size:16px}.section_upsize .panel-body .h1,.section_upsize .panel-body h1{margin-bottom:30px}.section_upsize .panel-body .h2,.section_upsize .panel-body h2{margin-bottom:13px}.section_upsize .panel-body .h3,.section_upsize .panel-body h3{margin-bottom:11px}.section_upsize .panel-body .h4,.section_upsize .panel-body h4{margin-bottom:10px}.section_upsize .panel-body .h5,.section_upsize .panel-body h5,.section_upsize .panel-body .h6,.section_upsize .panel-body h6{margin-bottom:9px}.section_upsize ol>li,.section_upsize ul>li{margin-bottom:9px}.section_upsize .alert h3{font-size:16px}.section_upsize blockquote{font-size:20px;line-height:1.75;font-weight:400}.section_upsize .caption,.section_upsize .thumbnail .caption,.section_upsize .video-caption{font-size:15px}.section_upsize pre{font-size:14px}}@media only screen and (min-width:768px){h1.hero{font-size:40px}}.remove_gutters{padding-right:0;padding-left:0;margin-right:0;margin-left:0}.add_overlapping_container{width:100%;left:8%;position:absolute;z-index:1}.remove_underline a{text-decoration:none}.section_header h1 a,.section_header p.h1 a{color:#fff;text-decoration:none}.dropdown>.btn>span[class*=icon-]{line-height:1}section.section_downsize .carousel-indicators li.active{margin-bottom:5px}.gf-author,.gf-snippet,.gf-spacer,.gfc-resultsHeader,.blog_post_hide_date .gf-relativePublishedDate{display:none!important}.panel .add_panel_image_left{background-position:left center}.full_banner_container .carousel{margin-top:0;margin-bottom:0}.add_background_color_transparent{background-color:transparent!important}.add_background_color_white{background-color:#fff!important}.add_background_color_gray,tr.add_background_color_gray td{background-color:#f5f5f5!important}.add_background_color_mediumgray,tr.add_background_color_mediumgray td{background-color:#6f6f6f!important}.add_background_color_blue,tr.add_background_color_blue td{background-color:#0076a8!important}.add_background_color_darkblue,tr.add_background_color_darkblue td{background-color:#005487!important}.add_background_color_green,tr.add_background_color_green td{background-color:#008013!important}.add_background_color_yellow,tr.add_background_color_yellow td{background-color:#f2a900!important}.add_background_color_orange,tr.add_background_color_orange td,.add_background_color_darkorange,tr.add_background_color_darkorange td{background-color:#c05708!important}.add_background_color_aqua,tr.add_background_color_aqua td{background-color:#00a9e0!important}.add_background_color_red,tr.add_background_color_red td{background-color:#b7312c!important}.add_background_color_purple,tr.add_background_color_purple td{background-color:#715091!important}.add_background_color_aqua:not(.add_revert_color),.add_background_color_aqua:not(.add_revert_color) *,.add_background_color_blue:not(.add_revert_color),.add_background_color_blue:not(.add_revert_color) *,.add_background_color_darkblue:not(.add_revert_color),.add_background_color_darkblue:not(.add_revert_color) *,.add_background_color_darkorange:not(.add_revert_color),.add_background_color_darkorange:not(.add_revert_color) *,.add_background_color_green:not(.add_revert_color),.add_background_color_green:not(.add_revert_color) *,.add_background_color_mediumgray:not(.add_revert_color),.add_background_color_mediumgray:not(.add_revert_color) *,.add_background_color_orange:not(.add_revert_color),.add_background_color_orange:not(.add_revert_color) *,.add_background_color_purple:not(.add_revert_color),.add_background_color_purple:not(.add_revert_color) *,.add_background_color_red:not(.add_revert_color),.add_background_color_red:not(.add_revert_color) *,.add_background_color_yellow:not(.add_revert_color),.add_background_color_yellow:not(.add_revert_color) *{color:#fff!important}.add_font_color_white,.add_font_color_white *{color:#fff!important}.add_font_color_black,.add_font_color_black *{color:#000!important}.add_font_color_gray,.add_font_color_gray *{color:#e6e6e6!important}.add_font_color_mediumgray,.add_font_color_mediumgray *{color:#6f6f6f!important}.add_font_color_darkgray,.add_font_color_darkgray *{color:#1a1a1a!important}.add_font_color_darkblue,.add_font_color_darkblue *{color:#005487!important}.add_font_color_green,.add_font_color_green *{color:#008013!important}.add_font_color_orange,.add_font_color_orange *,.add_font_color_darkorange,.add_font_color_darkorange *{color:#c05708!important}.add_background_position_right{background-position:right center!important}.add_background_position_center{background-position:center center!important}.add_background_position_left{background-position:left center!important}.add_background_position_top{background-position:center top!important}.add_background_position_bottom{background-position:center bottom!important}[class*=add_gradient_background_]:before,[class*=add_transparent_background_]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0}.add_transparent_background_black_20:before{background-color:#0003!important}.add_transparent_background_black_40:before{background-color:#0006!important}.add_transparent_background_black_60:before{background-color:#0009!important}.add_transparent_background_black_80:before{background-color:#000c!important}.add_transparent_background_white_20:before{background-color:#fff3!important}.add_transparent_background_white_40:before{background-color:#fff6!important}.add_transparent_background_white_60:before{background-color:#fff9!important}.add_transparent_background_white_80:before{background-color:#fffc!important}.add_gradient_background_from_top:before{background:linear-gradient(to bottom,#000000d9,#00000080 40%,#0000,#0000)}.add_gradient_background_from_bottom:before{background:linear-gradient(to bottom,#0000,#0000 40%,#00000080,#000000d9)}.panel[class*=add_gradient_background_],.panel[class*=add_transparent_background_],[class*=panel-][class*=add_gradient_background_],[class*=panel-][class*=add_transparent_background_]{z-index:2}.panel[class*=add_gradient_background_]:before,.panel[class*=add_transparent_background_]:before,[class*=panel-][class*=add_gradient_background_]:before,[class*=panel-][class*=add_transparent_background_]:before{z-index:-1}.panel .panel-footer[style^=background-],.panel .panel-heading[style^=background-]{min-height:41px}.add_border_color_gray{border-color:#e6e6e6!important}.add_border_color_mediumgray{border-color:#6f6f6f!important}.add_border_color_aqua{border-color:#00a9e0!important}.add_border_color_blue{border-color:#0076a8!important}.add_border_color_darkblue{border-color:#005487!important}.add_border_color_green{border-color:#008013!important}.add_border_color_orange{border-color:#c05708!important}.add_border_color_purple{border-color:#715091!important}.panel-body.panel_icon_16{padding-left:32px}.panel-body.panel_icon_24{padding-left:48px}.panel-body.panel_icon_32{padding-left:64px}.panel-body.panel_icon_48{padding-left:96px}.panel-body.panel_icon_56{padding-left:112px}.panel-body[class*=panel_icon_]>span[class*=icon-]:not(.glyphicon):first-child{line-height:1;float:left}.panel-body.panel_icon_16>span[class*=icon-]:not(.glyphicon):first-child{margin-top:3px;margin-left:-24px;font-size:16px}.panel-body.panel_icon_24>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-33px;font-size:24px}.panel-body.panel_icon_32>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-49px;font-size:32px}.panel-body.panel_icon_48>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-81px;font-size:48px}.panel-body.panel_icon_56>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-97px;font-size:56px}.section_downsize .panel-footer[style^=background-]{min-height:38px}.btn[class*=btn_color_]{color:#fff!important}.btn.btn_color_mediumgray,.btn.btn_color_mediumgray:visited{background:#6f6f6f}.btn.btn_color_blue,.btn.btn_color_blue:visited{background:#0076a8}.btn.btn_color_green,.btn.btn_color_green:visited{background:#008013}.btn.btn_color_orange,.btn.btn_color_orange:visited{background:#c05708}[class*=companion_btn]{padding:9px 13px 8px;border-style:solid;border-width:1px;background:transparent!important}.companion_btn.btn_color_mediumgray,.companion_btn.btn_color_mediumgray:visited{border-color:#6f6f6f;color:#6f6f6f!important}.companion_btn.btn_color_blue,.companion_btn.btn_color_blue:visited{border-color:#0076a8;color:#0076a8!important}.companion_btn.btn_color_green,.companion_btn.btn_color_green:visited{border-color:#008013;color:#008013!important}.companion_btn.btn_color_orange,.companion_btn.btn_color_orange:visited{border-color:#c05708;color:#c05708!important}[class*=companion_btn]:hover{opacity:.6}[class*=companion_btn].btn-xs{padding:4px 8px}[class*=companion_btn].btn-sm{padding:7px 11px}[class*=companion_btn].btn-lg{padding:11px 16px}.panel-group.accordion_variant_01 .panel{margin-bottom:10px}.panel-group.accordion_variant_01 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_01 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_01 .panel-heading{padding-left:55px;position:relative}.panel-group.accordion_variant_01 .panel-heading:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-heading:before{content:""!important}.panel-group.accordion_variant_01 .panel-heading.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-body :last-child{margin-bottom:0}.panel-group.accordion_variant_03 .panel-heading{padding:0}.panel-group.accordion_variant_03 .panel-heading .btn{width:100%;border-radius:4px;background:transparent!important;display:block;text-align:left}.panel-group.accordion_variant_03 .panel-heading .btn,.panel-group.accordion_variant_03 .panel-heading .btn *{font: 700 13px/1.333 Arial,Helvetica,sans-serif!important;color:#1a1a1a!important}.panel-group.accordion_variant_03 .panel-heading .btn *{padding:0!important;margin:0!important;border:none!important}.panel-group.accordion_variant_03 .panel{margin-bottom:10px}.panel-group.accordion_variant_03 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_03 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_03 .panel-heading .btn{padding-left:55px;position:relative}.panel-group.accordion_variant_03 .panel-heading .btn:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-heading .btn:before{content:""!important}.panel-group.accordion_variant_03 .panel-heading .btn.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-body :last-child{margin-bottom:0}.add_icon_color_white:before,span.add_icon_color_white{color:#fff}.add_icon_color_gray:before,span.add_icon_color_gray{color:#e6e6e6}.add_icon_color_mediumgray:before,span.add_icon_color_mediumgray{color:#6f6f6f}.add_icon_color_darkblue:before,span.add_icon_color_darkblue{color:#005487}.add_icon_color_green:before,span.add_icon_color_green{color:#008013}.add_icon_color_yellow:before,span.add_icon_color_yellow{color:#f2a900}.add_icon_color_orange:before,span.add_icon_color_orange{color:#c05708}.show_more_toggle{position:relative;overflow:hidden}.show_more_toggle .read_more{position:absolute;bottom:0;left:0;width:100%;padding-top:20px;background:linear-gradient(to bottom,#fff0,#fff 40%)}.show_more_toggle.add_background_gradient_gray .read_more{background:linear-gradient(to bottom,#f5f5f500,#f5f5f5 40%)}.show_more_toggle.add_background_gradient_mediumgray .read_more{background:linear-gradient(to bottom,#6f6f6f00,#6f6f6f 40%)}.show_more_toggle.add_background_gradient_aqua .read_more{background:linear-gradient(to bottom,#00a9e000,#00a9e0 40%)}.show_more_toggle.add_background_gradient_blue .read_more{background:linear-gradient(to bottom,#0076a800,#0076a8 40%)}.show_more_toggle.add_background_gradient_darkblue .read_more{background:linear-gradient(to bottom,#004b8700,#004b87 40%)}.show_more_toggle.add_background_gradient_purple .read_more{background:linear-gradient(to bottom,#521f7700,#521f77 40%)}.show_more_toggle.add_background_gradient_green .read_more{background:linear-gradient(to bottom,#48a23f00,#48a23f 40%)}.show_more_toggle.add_background_gradient_yellow .read_more{background:linear-gradient(to bottom,#f2a90000,#f2a900 40%)}.show_more_toggle.add_background_gradient_orange .read_more{background:linear-gradient(to bottom,#d7882500,#d78825 40%)}.show_more_toggle.add_background_gradient_darkorange .read_more{background:linear-gradient(to bottom,#cb601500,#cb6015 40%)}.show_more_toggle.add_background_gradient_red .read_more{background:linear-gradient(to bottom,#b7312c00,#b7312c 40%)}.show_more_toggle.show_more_toggle_expanded .read_more{padding-top:0}.show_more_toggle .read_more a:focus{text-decoration:none}.show_more_toggle .read_more a:hover{text-decoration:underline}.show_more_toggle_element{position:relative;padding-bottom:40px}.show_more_toggle_element .read_more_actuator{width:100%;height:20px;padding:0;margin-bottom:0;position:absolute;bottom:0;left:0}.show_more_toggle_content{overflow:hidden}.show_more_toggle_content :last-child{margin-bottom:0}.show_more_toggle_mask{overflow:hidden;transition:height .3s ease-out;-webkit-mask-image:linear-gradient(to bottom,black 0%,rgba(0,0,0,0) 95%)}.show_more_toggle_mask.show_more_toggle_expanded,.show_more_toggle_mask.more_toggle_remove_mask{-webkit-mask-image:linear-gradient(to bottom,black 0%,black 100%)}.tab-container.tab-container-vertical{display:block;overflow:hidden;background-color:#fff;width:100%;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}ul.nav-tabs.tabs-vertical{display:block;float:left;position:relative;border-radius:4px 0 0 4px;-moz-border-radius:4px 0px 0px 4px;-webkit-border-radius:4px 0px 0px 4px;border:1px solid #b1b1b1;width:25%;background-color:#f5f5f5;padding:10px}.tab-container .tabs-vertical>li>a{margin-right:0;border-radius:0;display:block;border-bottom:1px solid #e6e6e6;border-top:1px solid #fff;padding-left:5px}.tab-container .tabs-vertical>li:first-of-type>a{border-top-color:transparent}.tab-container .tabs-vertical>li:last-of-type:after{border-top:1px solid #fff;display:block;content:""}.tab-container .tabs-vertical>li,.tab-container .tabs-vertical>li.active{background:transparent;position:relative;margin:0;width:100%}.tab-container .tabs-vertical>li.active>a,.tab-container .tabs-vertical>li.active>a:focus,.tab-container .tabs-vertical>li.active>a:hover{border-right-color:#0076a8;border-bottom-color:#0076a8;border-left:1px solid #0076a8;border-top-color:#0076a8;background:#0076a8;z-index:1000;color:#fff;margin-right:-10px;margin-left:-10px;padding-left:15px;padding-right:20px}.tab-container .tabs-vertical>li.active>a:after,.tab-container .tabs-vertical>li.active>a:focus:after,.tab-container .tabs-vertical>li.active>a:hover:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;border-left:0;border-bottom:13px solid transparent;border-top:13px solid transparent;border-left:10px solid #0076a8}.tab-container .tabs-vertical>li>a:hover{background-color:#f5f5f5;border-left-color:#f5f5f5;border-right-color:#f5f5f5}.tab-container.tab-container-vertical .tab-content{display:block;overflow:hidden;margin:0;position:relative;background-color:#fff;float:left;width:75%;height:100%;border-radius:0 4px 4px 0;-moz-border-radius:0px 4px 4px 0px;-webkit-border-radius:0px 4px 4px 0px;border:1px solid #b1b1b1;border-left:0px;padding:40px}.tab-container .tabs-vertical>li.active .label-description{color:#fff!important}a span[class*=pictogram-][class*=pictogram-]{color:inherit!important}.asset_description{color:#6f6f6f}form .form_captcha_input{width:140px!important;margin-bottom:20px}form .form_captcha_input input{width:150px!important}form .form_captcha_img{margin-bottom:20px}form .form_captcha_refresh{float:none!important;display:inline!important}.lSSlideOuter{overflow:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lightSlider:after,.lightSlider:before{content:" ";display:table}.lightSlider{overflow:hidden;margin:0}.lSSlideWrapper{max-width:100%;overflow:hidden;position:relative}.lSSlideWrapper>.lightSlider:after{clear:both}.lSSlideWrapper .lSSlide{-webkit-transform:translate(0px,0px);-ms-transform:translate(0px,0px);transform:translate(0);-webkit-transition:all 1s;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform,height;transition-property:transform,height;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade{position:relative}.lSSlideWrapper .lSFade>*{position:absolute!important;top:0;left:0;z-index:9;margin-right:0;width:100%}.lSSlideWrapper.usingCss .lSFade>*{opacity:0;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade>.active{z-index:10}.lSSlideWrapper.usingCss .lSFade>.active{opacity:1}.lSSlideOuter .lSPager.lSpg{margin:10px 0 0;padding:0;text-align:center}.lSSlideOuter ul.lSPager.lSpg>li{cursor:pointer;display:inline-block;padding:0 5px}.lSSlideOuter ul.lSPager.lSpg>li a{background-color:#1a1a1a;border-radius:30px;display:inline-block;height:8px;overflow:hidden;text-indent:-999em;width:8px;position:relative;z-index:99;-webkit-transition:all .5s linear 0s;transition:all .5s linear 0s}.lSSlideOuter .lSPager.lSpg>li.active a,.lSSlideOuter ul.lSPager.lSpg>li:hover a{background-color:#0076a8}.lSSlideOuter .media{opacity:.8}.lSSlideOuter .media.active{opacity:1}.lSSlideOuter .lSPager.lSGallery{list-style:none outside none!important;padding-left:0;margin:0;overflow:hidden;transform:translateZ(0);-moz-transform:translate3d(0px,0px,0px);-ms-transform:translate3d(0px,0px,0px);-webkit-transform:translate3d(0px,0px,0px);-o-transform:translate3d(0px,0px,0px);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lSSlideOuter ul.lSPager.lSGallery li{overflow:hidden!important;-webkit-transition:border-radius .12s linear 0s .35s linear 0s!important;transition:border-radius .12s linear 0s .35s linear 0s!important}.lSSlideOuter .lSPager.lSGallery li:hover,.lSSlideOuter ul.lSPager.lSGallery li.active{border-radius:5px}.lSSlideOuter ul.lSPager.lSGallery img{display:block!important;height:auto!important;max-width:100%!important}.lSSlideOuter .lSPager.lSGallery:after,.lSSlideOuter ul.lSPager.lSGallery:before{content:" ";display:table}.lSSlideOuter ul.lSPager.lSGallery:after{clear:both}.lSAction>a{width:24px;display:block;top:50%;height:24px;cursor:pointer;line-height:1;position:absolute;z-index:99}.lSAction>a.lSNext{margin-right:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSNext:before{content:""!important;font-family:mathworks;font-size:24px}.lSAction>a.lSPrev{margin-left:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSPrev:before{content:""!important;font-family:mathworks;font-size:24px}@media (max-width:767px){.lSAction>a{background-color:#0076a8;color:#fff}}.lSAction>a:hover{opacity:1}.lSAction>.lSPrev{background-position:0 0;left:10px;top:calc(50% - 12px)!important}.lSAction>.lSNext{background-position:-32px 0;right:10px;top:calc(50% - 12px)!important}.lSAction>a.disabled{pointer-events:none}.cS-hidden{height:1px;opacity:0;filter:alpha(opacity=0);overflow:hidden}.lSSlideOuter.vertical{position:relative}.lSSlideOuter.vertical.noPager{padding-right:0!important}.lSSlideOuter.vertical .lSGallery{position:absolute!important;right:0;top:0}.lSSlideOuter.vertical .lightSlider>*{width:100%!important;max-width:none!important}.lSSlideOuter.vertical .lSAction>a{left:50%;margin-left:-14px;margin-top:0}.lSSlideOuter.vertical .lSAction>.lSNext{background-position:31px -31px;bottom:10px;top:auto}.lSSlideOuter.vertical .lSAction>.lSPrev{background-position:0 -31px;bottom:auto;top:10px}.lSSlideOuter.lSrtl{direction:rtl}.lSSlideOuter .lightSlider,.lSSlideOuter ul.lSPager{padding-left:0;list-style:none outside none!important}.lSSlideOuter.lSrtl .lightSlider,.lSSlideOuter.lSrtl .lSPager{padding-right:0}.lSSlideOuter .lightSlider>*,.lSSlideOuter .lSGallery li{float:left}.lSSlideOuter.lSrtl .lightSlider>*,.lSSlideOuter.lSrtl .lSGallery li{float:right!important}@-webkit-keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@-webkit-keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@-webkit-keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@-webkit-keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}@keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}.lSSlideOuter .rightEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lSSlideOuter .leftEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.vertical .rightEnd{-webkit-animation:topEnd .3s;animation:topEnd .3s;position:relative}.lSSlideOuter.vertical .leftEnd{-webkit-animation:bottomEnd .3s;animation:bottomEnd .3s;position:relative}.lSSlideOuter.lSrtl .rightEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.lSrtl .leftEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lightSlider.lsGrab>*{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lightSlider.lsGrabbing>*{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.light_slider_container{padding:0 38px;position:relative}.light_slider_container:before{content:"";border-left:2px solid white;position:absolute;z-index:10;top:0;bottom:0;left:-2px}.light_slider_container:after{content:"";border-right:2px solid white;position:absolute;z-index:10;top:0;bottom:0;right:-2px}.light_slider_container ul{height:auto!important}.light_slider_container .lSSlideOuter{margin:0 -40px;padding:0 40px;position:relative}.light_slider_container .lSSlideOuter:before{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;left:0;z-index:2}.light_slider_container .lSSlideOuter:after{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;right:0;z-index:2}.light_slider_container .lSSlideWrapper{overflow:visible}.light_slider_container .lSAction>a.lSPrev{margin-left:-49px;top:calc(50% - 16px)!important}.light_slider_container .lSAction>a.lSNext{margin-right:-49px;top:calc(50% - 16px)!important}.light_slider_container ul>li>:last-child{margin-bottom:0}.borderless_tab_controls{margin-bottom:20px}.borderless_tab_controls>li>a{text-decoration:none!important}.borderless_tab_controls>li.active>a{color:gray;border-bottom:3px solid #00a9e0;padding-bottom:5px}.borderless_tab_controls>li.active>a.has-icon{padding-bottom:12px!important}.band.add_background_color_gray .light_slider_container:after,.band.add_background_color_gray .light_slider_container:before{border-color:#f5f5f5}.band.add_background_color_gray .light_slider_container .lSSlideOuter:after,.band.add_background_color_gray .light_slider_container .lSSlideOuter:before{background:#f5f5f5}#overlay{position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:2;transition:opacity .5s ease-out,visibility .5s ease-out;visibility:visible}label{font-weight:400;font-size:18px;margin-bottom:10px}.has-feedback label~.form-control-feedback{top:35px}.card{position:absolute;border:none;background:none;right:100%}.card.react-draggable-dragging .card-body{box-shadow:0 0 10px #666}.card-body{cursor:move;display:flex;align-items:center;border-radius:8px;padding:0 4px;background:#fff;border:1px solid #bfbfbf;transition:box-shadow .15s linear;box-shadow:0 0 12px #00000026}.card-body .trigger-btn{border:1px solid transparent;background:none;border-radius:2px;outline:none;position:relative;height:20px;margin:2px 4px;padding:0 2px}.card-body .trigger-btn:active,.card-body .trigger-btn:focus{background:#6d6d6d59;box-shadow:inset 0 1px #00000026}.card-body .trigger-btn:hover{background:#6d6d6d33}.drag-handle{width:10px;height:18px;background:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%205%2010'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%236c99d0;}%3c/style%3e%3c/defs%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='9'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='9'%20r='1'/%3e%3c/svg%3e") center no-repeat;background-size:9px}.icon-custom-trigger{width:23px;height:19px;background-repeat:no-repeat}.trigger-tutorial-icon,.alert-success .icon-custom-trigger{background-image:url(../media/trigger-ok.Dzg8OIrk.svg)}.trigger-tutorial .icon{margin-bottom:-4px;display:inline-block}.alert-danger .icon-custom-trigger{background-image:url(../media/trigger-error.QEdsGL-m.svg)}.card-body:focus,.card-body:active,.card-body:hover{opacity:1}:root{--tutorial-width: 340px;--tutorial-arrow-size: 8px}.trigger-tutorial{color:#000;position:absolute;width:var(--tutorial-width);padding:15px;-webkit-user-select:none;user-select:none;margin-top:var(--tutorial-arrow-size);right:-143px}.trigger-tutorial p:last-of-type{margin-bottom:5px}.trigger-tutorial:before{content:"";display:block;width:calc(2 * var(--tutorial-arrow-size));height:calc(2 * var(--tutorial-arrow-size));position:absolute;background:url("data:image/svg+xml,%3csvg%20id='main'%20data-name='main'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cpolygon%20points='16,16%201,31%2031,31'%20style='fill:%20%23fff;%20stroke:%20rgba(0,0,0,0.2);%20stroke-width:%203px'%20/%3e%3cline%20x1='2'%20y1='31'%20x2='30'%20y2='31'%20style='stroke:%20%23fff;%20stroke-width:%203px'%20/%3e%3c/svg%3e") no-repeat;left:calc(var(--tutorial-width) / 2 - var(--tutorial-arrow-size));top:calc(-2 * var(--tutorial-arrow-size))}div#MatlabJsd{height:100%}#MatlabJsd iframe{border:0;height:100%;width:100%}label{padding-left:5px}p#LicensingGathererNote{margin:15px 0 0}#controls{display:flex;justify-content:space-evenly;overflow:auto}#controls .btn{display:flex;align-items:center;width:120px;min-width:100px;padding:10px 5px}#controls .btn.btn_color_blue{border-width:2px}#controls.labels-on-top .btn{flex-direction:column}#controls .btn span[class*=icon-custom-]{--size: 32px;width:var(--size);height:var(--size);background-repeat:no-repeat;margin-right:4px}#controls.labels-on-top .btn span[class*=icon-custom-]{margin:0 -2px 4px 0;display:block}#controls .btn-label{font-size:13px}.icon-custom-restart{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1245.17'%20y1='-78.08'%20x2='-1245.17'%20y2='-92.11'%20gradientTransform='translate(-1222%20-64)%20rotate(180)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.07'%20y1='28.61'%20x2='23.07'%20y2='13.18'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.61,23.16l-2.27,2.4.47.5a6.4,6.4,0,0,0,9.36,0l0,0a7.28,7.28,0,0,0,0-9.93,6.39,6.39,0,0,0-8.86-.51L18,14.18l-1.81,7.15L23,19.42l-1.3-1.37a3.32,3.32,0,0,1,4.3.49,3.73,3.73,0,0,1,0,5.11,3.39,3.39,0,0,1-2.45,1.06,3.3,3.3,0,0,1-2.43-1.06Z'/%3e%3c/svg%3e")}.icon-custom-start{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='24.5'%20y1='13.95'%20x2='24.5'%20y2='27.77'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='24.78'%20y1='28.63'%20x2='24.78'%20y2='13.14'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolygon%20class='cls-3'%20points='18%2013.95%2018%2027.77%2031%2020.36%2018%2013.95'/%3e%3c/svg%3e")}.icon-custom-stop{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='23.29'%20y1='13.73'%20x2='23.29'%20y2='27.97'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.29'%20y1='28.47'%20x2='23.29'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='23.29'%20y1='23.22'%20x2='23.29'%20y2='18.48'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3ccircle%20class='cls-3'%20cx='23.29'%20cy='20.85'%20r='7.12'/%3e%3crect%20class='cls-4'%20x='20.92'%20y='18.48'%20width='4.75'%20height='4.75'/%3e%3c/svg%3e")}.icon-custom-sign-out{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.2'%20y1='14.36'%20x2='21.2'%20y2='27.47'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.32'%20y1='28.61'%20x2='21.32'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolyline%20class='cls-3'%20points='13.73%2018.69%2022.02%2018.74%2022.02%2014.36%2029.16%2020.92%2022.02%2027.47%2022.02%2023.12%2013.27%2023.12%2013.25%2018.2'/%3e%3c/svg%3e")}.icon-custom-shutdown{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-4{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Light_Blue_Gradient_2);stroke:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1761.33'%20y1='-365.39'%20x2='-1774.31'%20y2='-366.68'%20gradientTransform='matrix(0,%20-1.05,%201.04,%200,%20400.64,%20-1829.66)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='242.54'%20y1='1.89'%20x2='228.38'%20y2='0.49'%20gradientTransform='matrix(0,%201.05,%20-1.04,%200,%2020.78,%20-225.56)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_2'%20x1='-11.48'%20y1='-188.04'%20x2='-11.48'%20y2='-185.37'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Light_Blue_Gradient_'/%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='-12.24'%20y1='-184.12'%20x2='-10.72'%20y2='-189.29'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M22.2,17.31,23,18.73a3.64,3.64,0,0,1-.62,4.52,4,4,0,0,1-5.54,0,3.74,3.74,0,0,1-1.23-2.66,5.41,5.41,0,0,1,1.17-3l-.2-.24-2.34-2.62L14,15c-2.43,2.68-2.74,7.89.18,10.73l0,0a7.88,7.88,0,0,0,10.78,0c3.34-3.27,2.44-9-.24-11l-2.57,3.16'/%3e%3crect%20class='cls-4'%20x='18.22'%20y='13.71'%20width='2.57'%20height='5.14'/%3e%3c/svg%3e")}.icon-custom-feedback{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-6{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:%23f1abc2;stroke:url(%23rubber_outline);}.cls-4{fill:%23c1b49a;}.cls-5{fill:url(%23linear-gradient);}.cls-6{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='rubber_outline'%20x1='61.99'%20y1='-2.03'%20x2='66.52'%20y2='-0.76'%20gradientTransform='translate(-37.48%2017.4)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.04'%20stop-color='%23e56691'/%3e%3cstop%20offset='0.99'%20stop-color='%236d0538'/%3e%3c/linearGradient%3e%3clinearGradient%20id='linear-gradient'%20x1='-330.35'%20y1='-327.4'%20x2='-332.91'%20y2='-329.97'%20gradientTransform='matrix(0.7,%20-0.71,%20-0.71,%20-0.7,%2013.67,%20-440.73)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.06'%20stop-color='%2358595b'/%3e%3cstop%20offset='0.98'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='55.23'%20y1='-4.61'%20x2='55.23'%20y2='-1.36'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='54.08'%20y1='0.93'%20x2='56.38'%20y2='-6.9'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3crect%20class='cls-3'%20x='25.4'%20y='14.44'%20width='2.73'%20height='3.12'%20transform='translate(-3.39%2023.93)%20rotate(-45.6)'/%3e%3cpolygon%20class='cls-4'%20points='18.54%2026.59%2015.36%2027.75%2016.43%2024.52%2018.54%2026.59'/%3e%3cpolygon%20class='cls-5'%20points='15.89%2027.25%2016.71%2024.8%2015.97%2024.08%2014.57%2028.47%2018.92%2026.96%2018.18%2026.24%2015.89%2027.25'/%3e%3crect%20class='cls-6'%20x='15.95'%20y='19.22'%20width='12.27'%20height='3.12'%20transform='translate(-8.21%2022.02)%20rotate(-45.6)'/%3e%3c/svg%3e")}.icon-custom-help{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.37'%20y1='13.65'%20x2='21.37'%20y2='28.01'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.34'%20y1='28.51'%20x2='21.34'%20y2='13.15'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.56.43H21.68a.89.89,0,0,1,.94.84V21.49a.89.89,0,0,1-.84.94H1.56a.89.89,0,0,1-.94-.84V1.37A.89.89,0,0,1,1.46.43Z'/%3e%3crect%20class='cls-2'%20x='1.12'%20y='0.93'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.5,24.53c0-.23,0-.4,0-.52a4.89,4.89,0,0,1,.28-1.76,4.19,4.19,0,0,1,.69-1.13,12.72,12.72,0,0,1,1.25-1.2,6,6,0,0,0,1.17-1.27,2.06,2.06,0,0,0,.27-1,2.42,2.42,0,0,0-.79-1.78,2.69,2.69,0,0,0-1.94-.76,2.62,2.62,0,0,0-1.85.69,3.63,3.63,0,0,0-1,2.17l-1.78-.22a4.57,4.57,0,0,1,1.43-3,4.57,4.57,0,0,1,3.14-1,4.7,4.7,0,0,1,3.3,1.13,3.54,3.54,0,0,1,1.24,2.72,3.46,3.46,0,0,1-.44,1.71A8,8,0,0,1,23.8,21.1a8.5,8.5,0,0,0-1.11,1.11,2.47,2.47,0,0,0-.38.82,6.26,6.26,0,0,0-.15,1.5ZM20.39,28V26h2v2Z'/%3e%3c/svg%3e")}#information .alert:not(.error-container,.warnings-container){padding:0;margin-bottom:0;background:#fff}#information .error-msg,.warnings-msg{white-space:pre;font:10pt monospace}#information .error-container.alert,.warnings-container.alert{border-radius:0;margin:5px 20px;padding:10px}#information .error-container.alert p,.warnings-container.alert p{margin:0}#information .error-container.alert .error-text,.warnings-container.alert .warnings-text{margin-left:30px}#information .error-logs-container .error-container.alert,.warnings-container .warnings-container.alert{padding:0}#information .error-msg,.warnings-msg{padding:10px;max-height:200px;overflow:auto}#information .error-logs-container .warnings-container .expand_trigger{padding:10px 5px 5px 40px;font-size:15px}#information .expand_target{transition:max-height .2s ease-out,border-color .2s ease-in;overflow:hidden;max-height:200px}#information .expand_target.collapsed{max-height:0;border-color:#fff}#spinner{--spinner-size: 22px;border:4px solid rgba(0,0,0,.1);border-top:4px solid #09f;border-radius:50%;width:var(--spinner-size);height:var(--spinner-size);margin-right:4px;animation:spin 2s linear infinite;float:left}#icon-small{margin-left:3px;float:none;color:green}#token{width:15ch;margin-right:1rem}#token-form{margin-top:1rem}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.alert table td{padding:4px}.alert table td:first-child{padding-right:20px;padding-left:0;white-space:nowrap}.alert table td:nth-child(2){white-space:normal}@media (min-width: 768px){.modal-dialog{width:700px}}.passive-link{color:#888;text-decoration:underline;cursor:pointer}.flex-item-1{flex-basis:30%;padding:.2rem;align-items:center}.flex-item-2{flex-basis:70%;padding:.2rem;align-items:center}.help p[class*=icon-]{background-repeat:no-repeat;background-size:32px;background-position:left 4px;padding-left:40px;min-height:36px;margin-bottom:10px}#error .alert{padding:0;margin-bottom:0;border-radius:10px}#error .modal-body pre{background-color:#fff0;border:none;font-family:inherit;font-size:15px;white-space:pre-wrap}#error .modal-header{padding-left:45px}#error .alert .alert_heading{font-size:18px;margin-bottom:0}#error .alert .error-msg{color:#b7312c;white-space:pre;font:10pt monospace}#information .alert:not(.error-container){padding:0;margin-bottom:0;background:#fff}#information .modal-header{padding-left:45px}.modal-content,.alert{border-radius:10px}#information .details{margin:0 30px}#information .alert .alert_heading{font-size:18px;margin-bottom:0}.flex-container{display:flex;margin-bottom:1rem;align-items:center}.token-btn{height:2em;padding-top:5px;padding-bottom:.3em;max-width:10ch}.btn{background-color:#3391ba}#resume-button{color:#fff}
|
|
10
|
+
*/.ekko-lightbox-container{position:relative}.ekko-lightbox-container iframe{width:100%!important;height:100%;overflow:hidden}.ekko-lightbox-nav-overlay{height:100%;width:100%;left:0;position:absolute;top:0;z-index:100}.ekko-lightbox-nav-overlay a{height:100%;width:49%;padding-top:45%;color:#fff;display:block;font-size:30px;opacity:0;text-shadow:2px 2px 4px #1a1a1a;transition:opacity .5s;z-index:100}.ekko-lightbox-nav-overlay a:empty{width:49%}.ekko-lightbox a:hover{text-decoration:none;opacity:1}.ekko-lightbox .glyphicon-chevron-left{padding-left:15px;float:left;left:0;text-align:left}.ekko-lightbox .glyphicon-chevron-right{padding-right:15px;float:right;right:0;text-align:right}.ekko-lightbox .modal-body{overflow:hidden}.ekko-lightbox .modal-footer{text-align:left}#responsive_iframe .content_container,#responsive_iframe .content_container_no_conflict{padding:0}.section_downsize{font-size:86%}.section_downsize .h1,.section_downsize h1{font-size:28px}.section_downsize .h2,.section_downsize h2{font-size:25px}.section_downsize .h3,.section_downsize h3{font-size:20px}.section_downsize .h4,.section_downsize h4{font-size:17px}.section_downsize .h5,.section_downsize h5{font-size:16px}.section_downsize .h6,.section_downsize h6{font-size:13px}.section_downsize .panel-body .h1,.section_downsize .panel-body h1{margin-bottom:30px}.section_downsize .panel-body .h2,.section_downsize .panel-body h2{margin-bottom:13px}.section_downsize .panel-body .h3,.section_downsize .panel-body h3{margin-bottom:11px}.section_downsize .panel-body .h4,.section_downsize .panel-body h4{margin-bottom:10px}.section_downsize .panel-body .h5,.section_downsize .panel-body h5,.section_downsize .panel-body .h6,.section_downsize .panel-body h6{margin-bottom:9px}.section_downsize ol>li,.section_downsize ul>li{margin-bottom:6px}.section_downsize .alert h3,.section_downsize blockquote{font-size:15px}.section_downsize .caption,.section_downsize .thumbnail .caption,.section_downsize .video-caption{font-size:13px}.section_downsize pre{font-size:86%}@media only screen and (min-width:768px){.section_upsize{font-size:115%;line-height:1.6}.section_upsize .h1,.section_upsize h1{font-size:42px}.section_upsize .h2,.section_upsize h2{font-size:32px}.section_upsize .h3,.section_upsize h3{font-size:25px}.section_upsize .h4,.section_upsize h4{font-size:21px}.section_upsize .h5,.section_upsize h5{font-size:18px}.section_upsize .h6,.section_upsize h6{font-size:15px}.section_upsize h1+h2{font-size:32px}.section_upsize p{margin-bottom:22px}.section_upsize .table{font-size:16px}.section_upsize .panel-body .h1,.section_upsize .panel-body h1{margin-bottom:30px}.section_upsize .panel-body .h2,.section_upsize .panel-body h2{margin-bottom:13px}.section_upsize .panel-body .h3,.section_upsize .panel-body h3{margin-bottom:11px}.section_upsize .panel-body .h4,.section_upsize .panel-body h4{margin-bottom:10px}.section_upsize .panel-body .h5,.section_upsize .panel-body h5,.section_upsize .panel-body .h6,.section_upsize .panel-body h6{margin-bottom:9px}.section_upsize ol>li,.section_upsize ul>li{margin-bottom:9px}.section_upsize .alert h3{font-size:16px}.section_upsize blockquote{font-size:20px;line-height:1.75;font-weight:400}.section_upsize .caption,.section_upsize .thumbnail .caption,.section_upsize .video-caption{font-size:15px}.section_upsize pre{font-size:14px}}@media only screen and (min-width:768px){h1.hero{font-size:40px}}.remove_gutters{padding-right:0;padding-left:0;margin-right:0;margin-left:0}.add_overlapping_container{width:100%;left:8%;position:absolute;z-index:1}.remove_underline a{text-decoration:none}.section_header h1 a,.section_header p.h1 a{color:#fff;text-decoration:none}.dropdown>.btn>span[class*=icon-]{line-height:1}section.section_downsize .carousel-indicators li.active{margin-bottom:5px}.gf-author,.gf-snippet,.gf-spacer,.gfc-resultsHeader,.blog_post_hide_date .gf-relativePublishedDate{display:none!important}.panel .add_panel_image_left{background-position:left center}.full_banner_container .carousel{margin-top:0;margin-bottom:0}.add_background_color_transparent{background-color:transparent!important}.add_background_color_white{background-color:#fff!important}.add_background_color_gray,tr.add_background_color_gray td{background-color:#f5f5f5!important}.add_background_color_mediumgray,tr.add_background_color_mediumgray td{background-color:#6f6f6f!important}.add_background_color_blue,tr.add_background_color_blue td{background-color:#0076a8!important}.add_background_color_darkblue,tr.add_background_color_darkblue td{background-color:#005487!important}.add_background_color_green,tr.add_background_color_green td{background-color:#008013!important}.add_background_color_yellow,tr.add_background_color_yellow td{background-color:#f2a900!important}.add_background_color_orange,tr.add_background_color_orange td,.add_background_color_darkorange,tr.add_background_color_darkorange td{background-color:#c05708!important}.add_background_color_aqua,tr.add_background_color_aqua td{background-color:#00a9e0!important}.add_background_color_red,tr.add_background_color_red td{background-color:#b7312c!important}.add_background_color_purple,tr.add_background_color_purple td{background-color:#715091!important}.add_background_color_aqua:not(.add_revert_color),.add_background_color_aqua:not(.add_revert_color) *,.add_background_color_blue:not(.add_revert_color),.add_background_color_blue:not(.add_revert_color) *,.add_background_color_darkblue:not(.add_revert_color),.add_background_color_darkblue:not(.add_revert_color) *,.add_background_color_darkorange:not(.add_revert_color),.add_background_color_darkorange:not(.add_revert_color) *,.add_background_color_green:not(.add_revert_color),.add_background_color_green:not(.add_revert_color) *,.add_background_color_mediumgray:not(.add_revert_color),.add_background_color_mediumgray:not(.add_revert_color) *,.add_background_color_orange:not(.add_revert_color),.add_background_color_orange:not(.add_revert_color) *,.add_background_color_purple:not(.add_revert_color),.add_background_color_purple:not(.add_revert_color) *,.add_background_color_red:not(.add_revert_color),.add_background_color_red:not(.add_revert_color) *,.add_background_color_yellow:not(.add_revert_color),.add_background_color_yellow:not(.add_revert_color) *{color:#fff!important}.add_font_color_white,.add_font_color_white *{color:#fff!important}.add_font_color_black,.add_font_color_black *{color:#000!important}.add_font_color_gray,.add_font_color_gray *{color:#e6e6e6!important}.add_font_color_mediumgray,.add_font_color_mediumgray *{color:#6f6f6f!important}.add_font_color_darkgray,.add_font_color_darkgray *{color:#1a1a1a!important}.add_font_color_darkblue,.add_font_color_darkblue *{color:#005487!important}.add_font_color_green,.add_font_color_green *{color:#008013!important}.add_font_color_orange,.add_font_color_orange *,.add_font_color_darkorange,.add_font_color_darkorange *{color:#c05708!important}.add_background_position_right{background-position:right center!important}.add_background_position_center{background-position:center center!important}.add_background_position_left{background-position:left center!important}.add_background_position_top{background-position:center top!important}.add_background_position_bottom{background-position:center bottom!important}[class*=add_gradient_background_]:before,[class*=add_transparent_background_]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0}.add_transparent_background_black_20:before{background-color:#0003!important}.add_transparent_background_black_40:before{background-color:#0006!important}.add_transparent_background_black_60:before{background-color:#0009!important}.add_transparent_background_black_80:before{background-color:#000c!important}.add_transparent_background_white_20:before{background-color:#fff3!important}.add_transparent_background_white_40:before{background-color:#fff6!important}.add_transparent_background_white_60:before{background-color:#fff9!important}.add_transparent_background_white_80:before{background-color:#fffc!important}.add_gradient_background_from_top:before{background:linear-gradient(to bottom,#000000d9,#00000080 40%,#0000,#0000)}.add_gradient_background_from_bottom:before{background:linear-gradient(to bottom,#0000,#0000 40%,#00000080,#000000d9)}.panel[class*=add_gradient_background_],.panel[class*=add_transparent_background_],[class*=panel-][class*=add_gradient_background_],[class*=panel-][class*=add_transparent_background_]{z-index:2}.panel[class*=add_gradient_background_]:before,.panel[class*=add_transparent_background_]:before,[class*=panel-][class*=add_gradient_background_]:before,[class*=panel-][class*=add_transparent_background_]:before{z-index:-1}.panel .panel-footer[style^=background-],.panel .panel-heading[style^=background-]{min-height:41px}.add_border_color_gray{border-color:#e6e6e6!important}.add_border_color_mediumgray{border-color:#6f6f6f!important}.add_border_color_aqua{border-color:#00a9e0!important}.add_border_color_blue{border-color:#0076a8!important}.add_border_color_darkblue{border-color:#005487!important}.add_border_color_green{border-color:#008013!important}.add_border_color_orange{border-color:#c05708!important}.add_border_color_purple{border-color:#715091!important}.panel-body.panel_icon_16{padding-left:32px}.panel-body.panel_icon_24{padding-left:48px}.panel-body.panel_icon_32{padding-left:64px}.panel-body.panel_icon_48{padding-left:96px}.panel-body.panel_icon_56{padding-left:112px}.panel-body[class*=panel_icon_]>span[class*=icon-]:not(.glyphicon):first-child{line-height:1;float:left}.panel-body.panel_icon_16>span[class*=icon-]:not(.glyphicon):first-child{margin-top:3px;margin-left:-24px;font-size:16px}.panel-body.panel_icon_24>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-33px;font-size:24px}.panel-body.panel_icon_32>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-49px;font-size:32px}.panel-body.panel_icon_48>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-81px;font-size:48px}.panel-body.panel_icon_56>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-97px;font-size:56px}.section_downsize .panel-footer[style^=background-]{min-height:38px}.btn[class*=btn_color_]{color:#fff!important}.btn.btn_color_mediumgray,.btn.btn_color_mediumgray:visited{background:#6f6f6f}.btn.btn_color_blue,.btn.btn_color_blue:visited{background:#0076a8}.btn.btn_color_green,.btn.btn_color_green:visited{background:#008013}.btn.btn_color_orange,.btn.btn_color_orange:visited{background:#c05708}[class*=companion_btn]{padding:9px 13px 8px;border-style:solid;border-width:1px;background:transparent!important}.companion_btn.btn_color_mediumgray,.companion_btn.btn_color_mediumgray:visited{border-color:#6f6f6f;color:#6f6f6f!important}.companion_btn.btn_color_blue,.companion_btn.btn_color_blue:visited{border-color:#0076a8;color:#0076a8!important}.companion_btn.btn_color_green,.companion_btn.btn_color_green:visited{border-color:#008013;color:#008013!important}.companion_btn.btn_color_orange,.companion_btn.btn_color_orange:visited{border-color:#c05708;color:#c05708!important}[class*=companion_btn]:hover{opacity:.6}[class*=companion_btn].btn-xs{padding:4px 8px}[class*=companion_btn].btn-sm{padding:7px 11px}[class*=companion_btn].btn-lg{padding:11px 16px}.panel-group.accordion_variant_01 .panel{margin-bottom:10px}.panel-group.accordion_variant_01 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_01 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_01 .panel-heading{padding-left:55px;position:relative}.panel-group.accordion_variant_01 .panel-heading:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-heading:before{content:""!important}.panel-group.accordion_variant_01 .panel-heading.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-body :last-child{margin-bottom:0}.panel-group.accordion_variant_03 .panel-heading{padding:0}.panel-group.accordion_variant_03 .panel-heading .btn{width:100%;border-radius:4px;background:transparent!important;display:block;text-align:left}.panel-group.accordion_variant_03 .panel-heading .btn,.panel-group.accordion_variant_03 .panel-heading .btn *{font: 700 13px/1.333 Arial,Helvetica,sans-serif!important;color:#1a1a1a!important}.panel-group.accordion_variant_03 .panel-heading .btn *{padding:0!important;margin:0!important;border:none!important}.panel-group.accordion_variant_03 .panel{margin-bottom:10px}.panel-group.accordion_variant_03 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_03 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_03 .panel-heading .btn{padding-left:55px;position:relative}.panel-group.accordion_variant_03 .panel-heading .btn:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-heading .btn:before{content:""!important}.panel-group.accordion_variant_03 .panel-heading .btn.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-body :last-child{margin-bottom:0}.add_icon_color_white:before,span.add_icon_color_white{color:#fff}.add_icon_color_gray:before,span.add_icon_color_gray{color:#e6e6e6}.add_icon_color_mediumgray:before,span.add_icon_color_mediumgray{color:#6f6f6f}.add_icon_color_darkblue:before,span.add_icon_color_darkblue{color:#005487}.add_icon_color_green:before,span.add_icon_color_green{color:#008013}.add_icon_color_yellow:before,span.add_icon_color_yellow{color:#f2a900}.add_icon_color_orange:before,span.add_icon_color_orange{color:#c05708}.show_more_toggle{position:relative;overflow:hidden}.show_more_toggle .read_more{position:absolute;bottom:0;left:0;width:100%;padding-top:20px;background:linear-gradient(to bottom,#fff0,#fff 40%)}.show_more_toggle.add_background_gradient_gray .read_more{background:linear-gradient(to bottom,#f5f5f500,#f5f5f5 40%)}.show_more_toggle.add_background_gradient_mediumgray .read_more{background:linear-gradient(to bottom,#6f6f6f00,#6f6f6f 40%)}.show_more_toggle.add_background_gradient_aqua .read_more{background:linear-gradient(to bottom,#00a9e000,#00a9e0 40%)}.show_more_toggle.add_background_gradient_blue .read_more{background:linear-gradient(to bottom,#0076a800,#0076a8 40%)}.show_more_toggle.add_background_gradient_darkblue .read_more{background:linear-gradient(to bottom,#004b8700,#004b87 40%)}.show_more_toggle.add_background_gradient_purple .read_more{background:linear-gradient(to bottom,#521f7700,#521f77 40%)}.show_more_toggle.add_background_gradient_green .read_more{background:linear-gradient(to bottom,#48a23f00,#48a23f 40%)}.show_more_toggle.add_background_gradient_yellow .read_more{background:linear-gradient(to bottom,#f2a90000,#f2a900 40%)}.show_more_toggle.add_background_gradient_orange .read_more{background:linear-gradient(to bottom,#d7882500,#d78825 40%)}.show_more_toggle.add_background_gradient_darkorange .read_more{background:linear-gradient(to bottom,#cb601500,#cb6015 40%)}.show_more_toggle.add_background_gradient_red .read_more{background:linear-gradient(to bottom,#b7312c00,#b7312c 40%)}.show_more_toggle.show_more_toggle_expanded .read_more{padding-top:0}.show_more_toggle .read_more a:focus{text-decoration:none}.show_more_toggle .read_more a:hover{text-decoration:underline}.show_more_toggle_element{position:relative;padding-bottom:40px}.show_more_toggle_element .read_more_actuator{width:100%;height:20px;padding:0;margin-bottom:0;position:absolute;bottom:0;left:0}.show_more_toggle_content{overflow:hidden}.show_more_toggle_content :last-child{margin-bottom:0}.show_more_toggle_mask{overflow:hidden;transition:height .3s ease-out;-webkit-mask-image:linear-gradient(to bottom,black 0%,rgba(0,0,0,0) 95%)}.show_more_toggle_mask.show_more_toggle_expanded,.show_more_toggle_mask.more_toggle_remove_mask{-webkit-mask-image:linear-gradient(to bottom,black 0%,black 100%)}.tab-container.tab-container-vertical{display:block;overflow:hidden;background-color:#fff;width:100%;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}ul.nav-tabs.tabs-vertical{display:block;float:left;position:relative;border-radius:4px 0 0 4px;-moz-border-radius:4px 0px 0px 4px;-webkit-border-radius:4px 0px 0px 4px;border:1px solid #b1b1b1;width:25%;background-color:#f5f5f5;padding:10px}.tab-container .tabs-vertical>li>a{margin-right:0;border-radius:0;display:block;border-bottom:1px solid #e6e6e6;border-top:1px solid #fff;padding-left:5px}.tab-container .tabs-vertical>li:first-of-type>a{border-top-color:transparent}.tab-container .tabs-vertical>li:last-of-type:after{border-top:1px solid #fff;display:block;content:""}.tab-container .tabs-vertical>li,.tab-container .tabs-vertical>li.active{background:transparent;position:relative;margin:0;width:100%}.tab-container .tabs-vertical>li.active>a,.tab-container .tabs-vertical>li.active>a:focus,.tab-container .tabs-vertical>li.active>a:hover{border-right-color:#0076a8;border-bottom-color:#0076a8;border-left:1px solid #0076a8;border-top-color:#0076a8;background:#0076a8;z-index:1000;color:#fff;margin-right:-10px;margin-left:-10px;padding-left:15px;padding-right:20px}.tab-container .tabs-vertical>li.active>a:after,.tab-container .tabs-vertical>li.active>a:focus:after,.tab-container .tabs-vertical>li.active>a:hover:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;border-left:0;border-bottom:13px solid transparent;border-top:13px solid transparent;border-left:10px solid #0076a8}.tab-container .tabs-vertical>li>a:hover{background-color:#f5f5f5;border-left-color:#f5f5f5;border-right-color:#f5f5f5}.tab-container.tab-container-vertical .tab-content{display:block;overflow:hidden;margin:0;position:relative;background-color:#fff;float:left;width:75%;height:100%;border-radius:0 4px 4px 0;-moz-border-radius:0px 4px 4px 0px;-webkit-border-radius:0px 4px 4px 0px;border:1px solid #b1b1b1;border-left:0px;padding:40px}.tab-container .tabs-vertical>li.active .label-description{color:#fff!important}a span[class*=pictogram-][class*=pictogram-]{color:inherit!important}.asset_description{color:#6f6f6f}form .form_captcha_input{width:140px!important;margin-bottom:20px}form .form_captcha_input input{width:150px!important}form .form_captcha_img{margin-bottom:20px}form .form_captcha_refresh{float:none!important;display:inline!important}.lSSlideOuter{overflow:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lightSlider:after,.lightSlider:before{content:" ";display:table}.lightSlider{overflow:hidden;margin:0}.lSSlideWrapper{max-width:100%;overflow:hidden;position:relative}.lSSlideWrapper>.lightSlider:after{clear:both}.lSSlideWrapper .lSSlide{-webkit-transform:translate(0px,0px);-ms-transform:translate(0px,0px);transform:translate(0);-webkit-transition:all 1s;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform,height;transition-property:transform,height;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade{position:relative}.lSSlideWrapper .lSFade>*{position:absolute!important;top:0;left:0;z-index:9;margin-right:0;width:100%}.lSSlideWrapper.usingCss .lSFade>*{opacity:0;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade>.active{z-index:10}.lSSlideWrapper.usingCss .lSFade>.active{opacity:1}.lSSlideOuter .lSPager.lSpg{margin:10px 0 0;padding:0;text-align:center}.lSSlideOuter ul.lSPager.lSpg>li{cursor:pointer;display:inline-block;padding:0 5px}.lSSlideOuter ul.lSPager.lSpg>li a{background-color:#1a1a1a;border-radius:30px;display:inline-block;height:8px;overflow:hidden;text-indent:-999em;width:8px;position:relative;z-index:99;-webkit-transition:all .5s linear 0s;transition:all .5s linear 0s}.lSSlideOuter .lSPager.lSpg>li.active a,.lSSlideOuter ul.lSPager.lSpg>li:hover a{background-color:#0076a8}.lSSlideOuter .media{opacity:.8}.lSSlideOuter .media.active{opacity:1}.lSSlideOuter .lSPager.lSGallery{list-style:none outside none!important;padding-left:0;margin:0;overflow:hidden;transform:translateZ(0);-moz-transform:translate3d(0px,0px,0px);-ms-transform:translate3d(0px,0px,0px);-webkit-transform:translate3d(0px,0px,0px);-o-transform:translate3d(0px,0px,0px);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lSSlideOuter ul.lSPager.lSGallery li{overflow:hidden!important;-webkit-transition:border-radius .12s linear 0s .35s linear 0s!important;transition:border-radius .12s linear 0s .35s linear 0s!important}.lSSlideOuter .lSPager.lSGallery li:hover,.lSSlideOuter ul.lSPager.lSGallery li.active{border-radius:5px}.lSSlideOuter ul.lSPager.lSGallery img{display:block!important;height:auto!important;max-width:100%!important}.lSSlideOuter .lSPager.lSGallery:after,.lSSlideOuter ul.lSPager.lSGallery:before{content:" ";display:table}.lSSlideOuter ul.lSPager.lSGallery:after{clear:both}.lSAction>a{width:24px;display:block;top:50%;height:24px;cursor:pointer;line-height:1;position:absolute;z-index:99}.lSAction>a.lSNext{margin-right:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSNext:before{content:""!important;font-family:mathworks;font-size:24px}.lSAction>a.lSPrev{margin-left:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSPrev:before{content:""!important;font-family:mathworks;font-size:24px}@media (max-width:767px){.lSAction>a{background-color:#0076a8;color:#fff}}.lSAction>a:hover{opacity:1}.lSAction>.lSPrev{background-position:0 0;left:10px;top:calc(50% - 12px)!important}.lSAction>.lSNext{background-position:-32px 0;right:10px;top:calc(50% - 12px)!important}.lSAction>a.disabled{pointer-events:none}.cS-hidden{height:1px;opacity:0;filter:alpha(opacity=0);overflow:hidden}.lSSlideOuter.vertical{position:relative}.lSSlideOuter.vertical.noPager{padding-right:0!important}.lSSlideOuter.vertical .lSGallery{position:absolute!important;right:0;top:0}.lSSlideOuter.vertical .lightSlider>*{width:100%!important;max-width:none!important}.lSSlideOuter.vertical .lSAction>a{left:50%;margin-left:-14px;margin-top:0}.lSSlideOuter.vertical .lSAction>.lSNext{background-position:31px -31px;bottom:10px;top:auto}.lSSlideOuter.vertical .lSAction>.lSPrev{background-position:0 -31px;bottom:auto;top:10px}.lSSlideOuter.lSrtl{direction:rtl}.lSSlideOuter .lightSlider,.lSSlideOuter ul.lSPager{padding-left:0;list-style:none outside none!important}.lSSlideOuter.lSrtl .lightSlider,.lSSlideOuter.lSrtl .lSPager{padding-right:0}.lSSlideOuter .lightSlider>*,.lSSlideOuter .lSGallery li{float:left}.lSSlideOuter.lSrtl .lightSlider>*,.lSSlideOuter.lSrtl .lSGallery li{float:right!important}@-webkit-keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@-webkit-keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@-webkit-keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@-webkit-keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}@keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}.lSSlideOuter .rightEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lSSlideOuter .leftEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.vertical .rightEnd{-webkit-animation:topEnd .3s;animation:topEnd .3s;position:relative}.lSSlideOuter.vertical .leftEnd{-webkit-animation:bottomEnd .3s;animation:bottomEnd .3s;position:relative}.lSSlideOuter.lSrtl .rightEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.lSrtl .leftEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lightSlider.lsGrab>*{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lightSlider.lsGrabbing>*{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.light_slider_container{padding:0 38px;position:relative}.light_slider_container:before{content:"";border-left:2px solid white;position:absolute;z-index:10;top:0;bottom:0;left:-2px}.light_slider_container:after{content:"";border-right:2px solid white;position:absolute;z-index:10;top:0;bottom:0;right:-2px}.light_slider_container ul{height:auto!important}.light_slider_container .lSSlideOuter{margin:0 -40px;padding:0 40px;position:relative}.light_slider_container .lSSlideOuter:before{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;left:0;z-index:2}.light_slider_container .lSSlideOuter:after{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;right:0;z-index:2}.light_slider_container .lSSlideWrapper{overflow:visible}.light_slider_container .lSAction>a.lSPrev{margin-left:-49px;top:calc(50% - 16px)!important}.light_slider_container .lSAction>a.lSNext{margin-right:-49px;top:calc(50% - 16px)!important}.light_slider_container ul>li>:last-child{margin-bottom:0}.borderless_tab_controls{margin-bottom:20px}.borderless_tab_controls>li>a{text-decoration:none!important}.borderless_tab_controls>li.active>a{color:gray;border-bottom:3px solid #00a9e0;padding-bottom:5px}.borderless_tab_controls>li.active>a.has-icon{padding-bottom:12px!important}.band.add_background_color_gray .light_slider_container:after,.band.add_background_color_gray .light_slider_container:before{border-color:#f5f5f5}.band.add_background_color_gray .light_slider_container .lSSlideOuter:after,.band.add_background_color_gray .light_slider_container .lSSlideOuter:before{background:#f5f5f5}html body{overflow:hidden}.main{height:100%}.feedback{position:fixed;bottom:40px;left:30px}.feedback span{margin-right:8px}.App{text-align:center}.App-logo{height:40vmin;pointer-events:none}@media (prefers-reduced-motion: no-preference){.App-logo{animation:App-logo-spin infinite 20s linear}}.App-header{background-color:#282c34;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:calc(10px + 2vmin);color:#fff}.App-link{color:#61dafb}@keyframes App-logo-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}#overlay{position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:2;transition:opacity .5s ease-out,visibility .5s ease-out;visibility:visible}label{font-weight:400;font-size:18px;margin-bottom:10px}.has-feedback label~.form-control-feedback{top:35px}.card{position:absolute;border:none;background:none;right:100%}.card.react-draggable-dragging .card-body{box-shadow:0 0 10px #666}.card-body{cursor:move;display:flex;align-items:center;border-radius:8px;padding:0 4px;background:#fff;border:1px solid #bfbfbf;transition:box-shadow .15s linear;box-shadow:0 0 12px #00000026}.card-body .trigger-btn{border:1px solid transparent;background:none;border-radius:2px;outline:none;position:relative;height:20px;margin:2px 4px;padding:0 2px}.card-body .trigger-btn:active,.card-body .trigger-btn:focus{background:#6d6d6d59;box-shadow:inset 0 1px #00000026}.card-body .trigger-btn:hover{background:#6d6d6d33}.drag-handle{width:10px;height:18px;background:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%205%2010'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%236c99d0;}%3c/style%3e%3c/defs%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='9'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='9'%20r='1'/%3e%3c/svg%3e") center no-repeat;background-size:9px}.icon-custom-trigger{width:23px;height:19px;background-repeat:no-repeat}.trigger-tutorial-icon,.alert-success .icon-custom-trigger{background-image:url(../media/trigger-ok.Dzg8OIrk.svg)}.trigger-tutorial .icon{margin-bottom:-4px;display:inline-block}.alert-danger .icon-custom-trigger{background-image:url(../media/trigger-error.QEdsGL-m.svg)}.card-body:focus,.card-body:active,.card-body:hover{opacity:1}:root{--tutorial-width: 340px;--tutorial-arrow-size: 8px}.trigger-tutorial{color:#000;position:absolute;width:var(--tutorial-width);padding:15px;-webkit-user-select:none;user-select:none;margin-top:var(--tutorial-arrow-size);right:-143px}.trigger-tutorial p:last-of-type{margin-bottom:5px}.trigger-tutorial:before{content:"";display:block;width:calc(2 * var(--tutorial-arrow-size));height:calc(2 * var(--tutorial-arrow-size));position:absolute;background:url("data:image/svg+xml,%3csvg%20id='main'%20data-name='main'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cpolygon%20points='16,16%201,31%2031,31'%20style='fill:%20%23fff;%20stroke:%20rgba(0,0,0,0.2);%20stroke-width:%203px'%20/%3e%3cline%20x1='2'%20y1='31'%20x2='30'%20y2='31'%20style='stroke:%20%23fff;%20stroke-width:%203px'%20/%3e%3c/svg%3e") no-repeat;left:calc(var(--tutorial-width) / 2 - var(--tutorial-arrow-size));top:calc(-2 * var(--tutorial-arrow-size))}div#MatlabJsd{height:100%}#MatlabJsd iframe{border:0;height:100%;width:100%}iframe{border:0px;height:380px;width:100%}label{padding-left:5px}p#LicensingGathererNote{margin:15px 0 0}#controls{display:flex;justify-content:space-evenly;overflow:auto}#controls .btn{display:flex;align-items:center;width:120px;min-width:100px;padding:10px 5px}#controls .btn.btn_color_blue{border-width:2px}#controls.labels-on-top .btn{flex-direction:column}#controls .btn span[class*=icon-custom-]{--size: 32px;width:var(--size);height:var(--size);background-repeat:no-repeat;margin-right:4px}#controls.labels-on-top .btn span[class*=icon-custom-]{margin:0 -2px 4px 0;display:block}#controls .btn-label{font-size:13px}.icon-custom-restart{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1245.17'%20y1='-78.08'%20x2='-1245.17'%20y2='-92.11'%20gradientTransform='translate(-1222%20-64)%20rotate(180)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.07'%20y1='28.61'%20x2='23.07'%20y2='13.18'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.61,23.16l-2.27,2.4.47.5a6.4,6.4,0,0,0,9.36,0l0,0a7.28,7.28,0,0,0,0-9.93,6.39,6.39,0,0,0-8.86-.51L18,14.18l-1.81,7.15L23,19.42l-1.3-1.37a3.32,3.32,0,0,1,4.3.49,3.73,3.73,0,0,1,0,5.11,3.39,3.39,0,0,1-2.45,1.06,3.3,3.3,0,0,1-2.43-1.06Z'/%3e%3c/svg%3e")}.icon-custom-start{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='24.5'%20y1='13.95'%20x2='24.5'%20y2='27.77'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='24.78'%20y1='28.63'%20x2='24.78'%20y2='13.14'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolygon%20class='cls-3'%20points='18%2013.95%2018%2027.77%2031%2020.36%2018%2013.95'/%3e%3c/svg%3e")}.icon-custom-stop{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='23.29'%20y1='13.73'%20x2='23.29'%20y2='27.97'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.29'%20y1='28.47'%20x2='23.29'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='23.29'%20y1='23.22'%20x2='23.29'%20y2='18.48'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3ccircle%20class='cls-3'%20cx='23.29'%20cy='20.85'%20r='7.12'/%3e%3crect%20class='cls-4'%20x='20.92'%20y='18.48'%20width='4.75'%20height='4.75'/%3e%3c/svg%3e")}.icon-custom-sign-out{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.2'%20y1='14.36'%20x2='21.2'%20y2='27.47'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.32'%20y1='28.61'%20x2='21.32'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolyline%20class='cls-3'%20points='13.73%2018.69%2022.02%2018.74%2022.02%2014.36%2029.16%2020.92%2022.02%2027.47%2022.02%2023.12%2013.27%2023.12%2013.25%2018.2'/%3e%3c/svg%3e")}.icon-custom-shutdown{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-4{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Light_Blue_Gradient_2);stroke:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1761.33'%20y1='-365.39'%20x2='-1774.31'%20y2='-366.68'%20gradientTransform='matrix(0,%20-1.05,%201.04,%200,%20400.64,%20-1829.66)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='242.54'%20y1='1.89'%20x2='228.38'%20y2='0.49'%20gradientTransform='matrix(0,%201.05,%20-1.04,%200,%2020.78,%20-225.56)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_2'%20x1='-11.48'%20y1='-188.04'%20x2='-11.48'%20y2='-185.37'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Light_Blue_Gradient_'/%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='-12.24'%20y1='-184.12'%20x2='-10.72'%20y2='-189.29'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M22.2,17.31,23,18.73a3.64,3.64,0,0,1-.62,4.52,4,4,0,0,1-5.54,0,3.74,3.74,0,0,1-1.23-2.66,5.41,5.41,0,0,1,1.17-3l-.2-.24-2.34-2.62L14,15c-2.43,2.68-2.74,7.89.18,10.73l0,0a7.88,7.88,0,0,0,10.78,0c3.34-3.27,2.44-9-.24-11l-2.57,3.16'/%3e%3crect%20class='cls-4'%20x='18.22'%20y='13.71'%20width='2.57'%20height='5.14'/%3e%3c/svg%3e")}.icon-custom-feedback{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-6{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:%23f1abc2;stroke:url(%23rubber_outline);}.cls-4{fill:%23c1b49a;}.cls-5{fill:url(%23linear-gradient);}.cls-6{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='rubber_outline'%20x1='61.99'%20y1='-2.03'%20x2='66.52'%20y2='-0.76'%20gradientTransform='translate(-37.48%2017.4)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.04'%20stop-color='%23e56691'/%3e%3cstop%20offset='0.99'%20stop-color='%236d0538'/%3e%3c/linearGradient%3e%3clinearGradient%20id='linear-gradient'%20x1='-330.35'%20y1='-327.4'%20x2='-332.91'%20y2='-329.97'%20gradientTransform='matrix(0.7,%20-0.71,%20-0.71,%20-0.7,%2013.67,%20-440.73)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.06'%20stop-color='%2358595b'/%3e%3cstop%20offset='0.98'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='55.23'%20y1='-4.61'%20x2='55.23'%20y2='-1.36'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='54.08'%20y1='0.93'%20x2='56.38'%20y2='-6.9'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3crect%20class='cls-3'%20x='25.4'%20y='14.44'%20width='2.73'%20height='3.12'%20transform='translate(-3.39%2023.93)%20rotate(-45.6)'/%3e%3cpolygon%20class='cls-4'%20points='18.54%2026.59%2015.36%2027.75%2016.43%2024.52%2018.54%2026.59'/%3e%3cpolygon%20class='cls-5'%20points='15.89%2027.25%2016.71%2024.8%2015.97%2024.08%2014.57%2028.47%2018.92%2026.96%2018.18%2026.24%2015.89%2027.25'/%3e%3crect%20class='cls-6'%20x='15.95'%20y='19.22'%20width='12.27'%20height='3.12'%20transform='translate(-8.21%2022.02)%20rotate(-45.6)'/%3e%3c/svg%3e")}.icon-custom-help{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.37'%20y1='13.65'%20x2='21.37'%20y2='28.01'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.34'%20y1='28.51'%20x2='21.34'%20y2='13.15'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.56.43H21.68a.89.89,0,0,1,.94.84V21.49a.89.89,0,0,1-.84.94H1.56a.89.89,0,0,1-.94-.84V1.37A.89.89,0,0,1,1.46.43Z'/%3e%3crect%20class='cls-2'%20x='1.12'%20y='0.93'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.5,24.53c0-.23,0-.4,0-.52a4.89,4.89,0,0,1,.28-1.76,4.19,4.19,0,0,1,.69-1.13,12.72,12.72,0,0,1,1.25-1.2,6,6,0,0,0,1.17-1.27,2.06,2.06,0,0,0,.27-1,2.42,2.42,0,0,0-.79-1.78,2.69,2.69,0,0,0-1.94-.76,2.62,2.62,0,0,0-1.85.69,3.63,3.63,0,0,0-1,2.17l-1.78-.22a4.57,4.57,0,0,1,1.43-3,4.57,4.57,0,0,1,3.14-1,4.7,4.7,0,0,1,3.3,1.13,3.54,3.54,0,0,1,1.24,2.72,3.46,3.46,0,0,1-.44,1.71A8,8,0,0,1,23.8,21.1a8.5,8.5,0,0,0-1.11,1.11,2.47,2.47,0,0,0-.38.82,6.26,6.26,0,0,0-.15,1.5ZM20.39,28V26h2v2Z'/%3e%3c/svg%3e")}#information .alert:not(.error-container,.warnings-container){padding:0;margin-bottom:0;background:#fff}#information .error-msg,.warnings-msg{white-space:pre;font:10pt monospace}#information .error-container.alert,.warnings-container.alert{border-radius:0;margin:5px 20px;padding:10px}#information .error-container.alert p,.warnings-container.alert p{margin:0}#information .error-container.alert .error-text,.warnings-container.alert .warnings-text{margin-left:30px}#information .error-logs-container .error-container.alert,.warnings-container .warnings-container.alert{padding:0}#information .error-msg,.warnings-msg{padding:10px;max-height:200px;overflow:auto}#information .error-logs-container .warnings-container .expand_trigger{padding:10px 5px 5px 40px;font-size:15px}#information .expand_target{transition:max-height .2s ease-out,border-color .2s ease-in;overflow:hidden;max-height:200px}#information .expand_target.collapsed{max-height:0;border-color:#fff}#spinner{--spinner-size: 22px;border:4px solid rgba(0,0,0,.1);border-top:4px solid #09f;border-radius:50%;width:var(--spinner-size);height:var(--spinner-size);margin-right:4px;animation:spin 2s linear infinite;float:left}#icon-small{margin-left:3px;float:none;color:green}#token{width:15ch;margin-right:1rem}#token-form{margin-top:1rem}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.alert table td{padding:4px}.alert table td:first-child{padding-right:20px;padding-left:0;white-space:nowrap}.alert table td:nth-child(2){white-space:normal}@media (min-width: 768px){.modal-dialog{width:700px}}.passive-link{color:#888;text-decoration:underline;cursor:pointer}.flex-item-1{flex-basis:30%;padding:.2rem;align-items:center}.flex-item-2{flex-basis:70%;padding:.2rem;align-items:center}.help p[class*=icon-]{background-repeat:no-repeat;background-size:32px;background-position:left 4px;padding-left:40px;min-height:36px;margin-bottom:10px}#error .alert{padding:0;margin-bottom:0;border-radius:10px}#error .modal-body pre{background-color:#fff0;border:none;font-family:inherit;font-size:15px;white-space:pre-wrap}#error .modal-header{padding-left:45px}#error .alert .alert_heading{font-size:18px;margin-bottom:0}#error .alert .error-msg{color:#b7312c;white-space:pre;font:10pt monospace}#information .alert:not(.error-container){padding:0;margin-bottom:0;background:#fff}#information .modal-header{padding-left:45px}.modal-content,.alert{border-radius:10px}#information .details{margin:0 30px}#information .alert .alert_heading{font-size:18px;margin-bottom:0}.flex-container{display:flex;margin-bottom:1rem;align-items:center}.token-btn{height:2em;padding-top:5px;padding-bottom:.3em;max-width:10ch}.btn{background-color:#3391ba}#resume-button{color:#fff}
|