本連載ではここ数回、PowerShellスクリプトを使ってWebページを取得する方法を試している。前回は「curl.exe」を使ってWebページが取得できることを確認した。curlは双方向の通信にも利用できる便利なユーティリティなのだが、curlでは取得できないWebページも存在する。今回はそういった場合の対処方法を模索していく。
curlを使ったWebページ作成PowerShellスクリプト
前回作成したPowerShellスクリプト「netcat.ps1」は次の通りだ。
#!/usr/bin/env pwsh
#========================================================================
# URLで指定されたリソースを取得
#========================================================================
#========================================================================
# 引数を処理
# -URL url WebリソースのURL
#========================================================================
Param(
[Parameter(Mandatory=$true)][String]$URL = "",
[String]$Agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
)
#========================================================================
# Webリソース取得に利用するアプリケーション
#========================================================================
$curl='C:\Windows\System32\curl.exe'
#========================================================================
# curl を使って取得する
#========================================================================
& $curl --location `
-A $Agent `
-get $URL
今のところ、ただの「curl.exe」へのラッパースクリプトにしかなっていないのだが、netcat.ps1をPowerShellスクリプトとして独立させているのには理由がある。curlは便利なコマンドではあるのだが、curlでは取得できないWebページが存在する。取得できない場合には別のソフトウエアで取得したいので、別スクリプトとして独立させている。netcat.ps1の中で使用するソフトウエアを切り分ければよく、ユーザーは何も気にせずnetcat.ps1を実行すればよいという状態にしたいわけだ。
curlでは取得できないWebページ
先述の通り、Webページは必ずしもcurlで取得できるとは限らない。Webサーバによってはアクセス元が人間であるかどうか判定しているものがあり、人間以外に対してはコンテンツの提供を行わないものがあるからだ。そういった意図がないページであっても、コンテンツを動的に表示するタイプのWebページだと、curlコマンドでは想定しているデータが得られないこともある。
例えば、次のWebページを見てみよう。このWebページはMicrosoftが月例の累積更新プログラムの影響を行う際にまとめサイト的に公開しているもので、「どのプロダクトにセキュリティ脆弱性が含まれているか」といった要約情報が掲載されている。
このWebページをMicrosoft Edgeで閲覧すると次のようになる。
当然だが、Webブラウザでは想定通りにコンテンツが表示されている。
では、このページを前回作成したnetcat.ps1で取得しようとするとどうなるか。次のようになる。
PS C:\Users\daichi> netcat.ps1 https://msrc.microsoft.com/update-guide/releaseNote/2022-Jun
<!doctype html><html lang="en" dir="ltr"><head><meta charset="utf-8"/><meta http-equiv="Pragma" content="no-cache"/><meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"/><link rel="icon" href="/update-guide/favicon/favicon.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#0078d4"/><meta name="color-scheme" content="dark light"/><meta name="description"/><meta name="keywords"/><link rel="apple-touch-icon" href="/update-guide/favicon/logo192.png"/><link rel="manifest" href="/update-guide/manifest.json"/><title>Security Update Guide - Microsoft Security Response Center</title><style>@media (prefers-color-scheme:dark){html{color:#f5f5f5;background:#000}}</style><script defer="defer" src="/update-guide/static/js/main.9f990607.js"></script><link href="/update-guide/static/css/main.400450b5.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script nomodule>S
ring.prototype.endsWith||(String.prototype.endsWith=function(t,n){return(void 0===n||n>this.length)&&(n=this.length),this.substring(n-t.length,n)===t})</script></body></html>
PS C:\Users\daichi>
Microsoft Edgeで先ほどのWebページのソースコードを閲覧すると次のようになる。
Webブラウザでもcurlでも、同じソースコード(HTML)を取得できていることがわかる。
セキュリティ脆弱性情報はユーザーが自分で回ってチェックするよりも、定期的に自動取得して自動解析を行い、必要があるときだけユーザーに通知が届くようにしておきたい。この方法なら、管理する対象のソフトウエアが増えたとしても、脆弱性をチェックする手間を低減することができる。逆に言えば、そうでもしないとやっていられない。
しかし、Microsoft Edgeで表示させたHTMLのソースコードからも、netcat.ps1で取得したHTMLソースコードからも、必要な情報を得ることができない。これでは処理の自動化もできず、結局人間が手動で定期的にチェックしなければいけないということになる。
JavaScript経由でページを取得しているケース
次のWebページを取得して得られるHTMLソースコードは、先ほど示した通りだ。
しかし、Webブラウザに表示されているのはそのソースコードの内容ではない。Webブラウザの開発者モードでレンダリングのベースとなっているHTMLをチェックすると、次のようになっていることを確認することができる。
実は、Microsoft Edgeが最初に取得したHTMLソースコードにはJavaScriptが含まれており、実際にはこのJavaScriptを実行することでさらにWebサーバからコンテンツを取得して次のHTMLソースコードを取得し、レンダリングを行っている。最初に取得したHTMLソースコードだけでは駄目で、その内容をいったん実行してさらにHTMLソースコードをアップデートする必要があるわけだ。
curl.exeにはJavaScriptを実行する機能は含まれていないので、最初のHTMLソースコードの取得まではできるのだが、その先が取得できないのだ。
このように、JavaScriptを実行することで本来のコンテンツを取得する仕組みになっているWebサイトは結構存在しており、そうしたWebサイトはcurlコマンドでは取得できない。しかし、それでは不便なので、何とかしてJavaScriptを実行し、本来のコンテンツを取得できるようにしたい。
動きとしてはこうなってほしい
では、どうなってほしいか。ちょっと長い出力になるが、JavaScriptを実行した後の結果を得られるように、次のようにnetcat.ps1が動作してくれることが望ましい。
PS C:\Users\daichi> netcat.ps1 https://msrc.microsoft.com/update-guide/releaseNote/2022-Jun
<!DOCTYPE html>
<html lang="en" dir="ltr"><head><style data-merge-styles="true"></style><style data-merge-styles="true"></style><style data-merge-styles="true"></style><style data-merge-styles="true"></style><style data-merge-styles="true"></style><style data-merge-styles="true"></style><meta charset="utf-8"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate"><link rel="icon" href="/update-guide/favicon/favicon.svg"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="theme-color" content="#0078d4"><meta name="color-scheme" content="dark light"><meta name="description" content="<h2>今月の更新プログラム</h2>
今回のリリースは、次の製品、機能、およびロールのセキュリティ更新プログラムで構成されています。
<ul>
<li>.NET と Visual Studio</li>
<li>Azure OMI</li>
<li>Azure リアルタイム オペレーティング システム</li>
<li>Azure Service Fabric コンテナー</li>
<li>Intel</li>
<li>Microsoft Edge (Chromium ベース)</li>
<li>Microsoft Office</li>
<li>Microsoft Office Excel</li>
<li>Microsoft Office SharePoint</li>
<li>Microsoft Windows ALPC</li>
<li>Microsoft Windows Codecs Library</li>
<li>リモート ボリューム シャドウ コピー サービス (RVSS)</li>
<li>ロール: Windows Hyper-V</li>
<li>SQL Server</li>
<li>Windows Ancillary Function Driver for WinSock</li>
<li>Windows App Store</li>
<li>Windows Autopilot</li>
<li>Windows Container Isolation FS Filter ドライバー</li>
<li>Windows Container Manager サービス</li>
<li>Windows Defender</li>
<li>Windows Encrypting File System (EFS)</li>
<li>Windows..."><meta name="keywords" content="セキュリティ、更新プログラム、Microsoft、MSFT、更新プログラム ガイド、セ キュリティ レスポンス、セキュリティ レスポンス センター、方法、CVE、脆弱性、謝辞、MSRC、製品リリース、SECREL、影響を受けるソフトウェア、Windows、Xbox、Azure、クラウド, リリース ノート、リリース、FAQ、ガイド、実用的"><link rel="apple-touch-icon" href="/update-guide/favicon/logo192.png"><link rel="manifest" href="/update-guide/manifest.json"><title>2022 年 6 月のセキュリティ更新プログラム - リリース ノート - セキュリティ更新プログラム ガイド - Microsoft</title><style>@media (prefers-color-scheme:dark){html{color:#f5f5f5;background:#000}}</style><script defer="defer" src="/update-guide/static/js/main.9f990607.js"></script><link href="/update-guide/static/css/main.400450b5.css" rel="stylesheet"><style data-load-themed-styles="true">.resul
Content_4cc31f3f{display:table-row}.resultContent_4cc31f3f .resultItem_4cc31f3f{display:table-cell;vertical-align:bottom}.peoplePickerPersona_4cc31f3f{width:180px}.peoplePickerPersona_4cc31f3f .ms-Persona-details{width:100%}.peoplePicker_4cc31f3f .ms-BasePicker-text{min-height:40px}.peoplePickerPersonaContent_4cc31f3f{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}</style><style data-load-themed-styles="true">.callout_ad5629e1 .ms-Suggestions-itemButton{padding:0;border:none}.callout_ad5629e1 .ms-Suggestions{min-width:300px}</style><style data-load-themed-styles="true">.resultContent_f73be5be{display:table-row}.resultContent_f73be5be .resultItem_f73be5be{display:table-cell;vertical-align:bottom}.peoplePickerPersona_f73be5be{width:180px}.peoplePickerPersona_f73be5be .ms-Persona-details{width:100%}.peoplePicker_f73be5be .ms-BasePicker-text{min-height:
0px}.peoplePickerPersonaContent_f73be5be{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:7px 12px}</style><style data-load-themed-styles="true">.pickerText_9f838726{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #a19f9d;min-width:180px;padding:1px;min-height:32px}.pickerText_9f838726:hover{border-color:#c7e0f4}.pickerInput_9f838726{height:34px;border:none;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;outline:0;padding:0 6px 0;margin:1px}.pickerInput_9f838726::-ms-clear{display:none}.root_8c91000a{min-width:260px}.suggestionsItem_8c91000a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-
ox-sizing:border-box;box-sizing:border-box;width:100%;position:relative;overflow:hidden}.suggestionsItem_8c91000a:hover{background:#f3f2f1}.suggestionsItem_8c91000a:hover .closeButton_8c91000a{display:block}.suggestionsItem_8c91000a.suggestionsItemIsSuggested_8c91000a{background:#edebe9}.suggestionsItem_8c91000a.suggestionsItemIsSuggested_8c91000a:hover{background:#c8c6c4}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.suggestionsItem_8c91000a.suggestionsItemIsSuggested_8c91000a:hover{background:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.suggestionsItem_8c91000a.suggestionsItemIsSuggested_8c91000a{background:Highlight;color:HighlightText;-ms-high-contrast-adjust:none}}.suggestionsItem_8c91000a.suggestionsItemIsSuggested_8c91000a .closeButton_8c91000a:hover{background:#a19f9d;color:#323130}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.suggestionsItem_8c91000a.suggestionsItemI
Suggested_8c91000a .itemButton_8c91000a{color:HighlightText}}.suggestionsItem_8c91000a .closeButton_8c91000a{display:none;color:#605e5c}.suggestionsItem_8c91000a .closeButton_8c91000a:hover{background:#edebe9}.actionButton_8c91000a{background-color:transparent;border:0;cursor:pointer;margin:0;position:relative;border-top:1px solid #edebe9;height:40px;width:100%;font-size:12px}[dir=ltr] .actionButton_8c91000a{padding-left:8px}[dir=rtl] .actionButton_8c91000a{padding-right:8px}html[dir=ltr] .actionButton_8c91000a{text-align:left}html[dir=rtl] .actionButton_8c91000a{text-align:right}.actionButton_8c91000a:hover{background-color:#edebe9;cursor:pointer}.actionButton_8c91000a:active,.actionButton_8c91000a:focus{background-color:#c7e0f4}.actionButton_8c91000a .ms-Button-icon{font-size:16px;width:25px}.actionButton_8c91000a .ms-Button-label{margin:0 4px 0 9px}html[dir=rtl] .actionButton_8c91000a .ms-Button-label{margin:0 9px 0 4px}.buttonSelected_8c91000a{background-color:#c7e0f4}.suggestionsTitle_8c91000a{padding
0 12px;color:#0078d4;font-size:12px;line-height:40px;border-bottom:1px solid #edebe9}.suggestionsContainer_8c91000a{overflow-y:auto;overflow-x:hidden;max-height:300px;border-bottom:1px solid #edebe9}.suggestionsNone_8c91000a{text-align:center;color:#797775;font-size:12px;line-height:30px}.suggestionsSpinner_8c91000a{margin:5px 0;white-space:nowrap;line-height:20px;font-size:12px}html[dir=ltr] .suggestionsSpinner_8c91000a{padding-left:14px}html[dir=rtl] .suggestionsSpinner_8c91000a{padding-right:14px}html[dir=ltr] .suggestionsSpinner_8c91000a{text-align:left}html[dir=rtl] .suggestionsSpinner_8c91000a{text-align:right}.suggestionsSpinner_8c91000a .ms-Spinner-circle{display:inline-block;vertical-align:middle}.suggestionsSpinner_8c91000a .ms-Spinner-label{display:inline-block;margin:0 10px 0 16px;vertical-align:middle}html[dir=rtl] .suggestionsSpinner_8c91000a .ms-Spinner-label{margin:0 16px 0 10px}.itemButton_8c91000a.itemButton_8c91000a{width:100%;padding:0;min-width:0;height:100%}@media screen and (-ms-high
contrast:active),screen and (forced-colors:active){.itemButton_8c91000a.itemButton_8c91000a{color:WindowText}}.itemButton_8c91000a.itemButton_8c91000a:hover{color:#201f1e}.closeButton_8c91000a.closeButton_8c91000a{padding:0 4px;height:auto;width:32px}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.closeButton_8c91000a.closeButton_8c91000a{color:WindowText}}.closeButton_8c91000a.closeButton_8c91000a:hover{background:#c8c6c4;color:#201f1e}.suggestionsAvailable_8c91000a{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.pickerText_a8f91b74{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #a19f9d;min-width:180px;min-height:30px}.pickerText_a8f91b74:hover{border-color:#323130}.pickerText_a8f91b74.inputFocused_a8f91b74{position:relative;border-color:#0078d4
.pickerText_a8f91b74.inputFocused_a8f91b74:after{pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;bottom:-1px;right:-1px;border:2px solid #0078d4}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.pickerText_a8f91b74.inputDisabled_a8f91b74{position:relative;border-color:GrayText}.pickerText_a8f91b74.inputDisabled_a8f91b74:after{pointer-events:none;content:"";position:absolute;left:0;top:0;bottom:0;right:0;background-color:Window}}.pickerInput_a8f91b74{height:34px;border:none;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;outline:0;padding:0 6px 0;-ms-flex-item-align:end;align-self:flex-end}.pickerItems_a8f91b74{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:100%}.screenReaderOnly_a8f91b74{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.suggestionsContainer_44c59fda{overflow-y:auto;overflow-x:hidden;max-height:300px}.suggestionsContainer_44c59fda .ms
Suggestion-item:hover{background-color:#f3f2f1;cursor:pointer}.suggestionsContainer_44c59fda .is-suggested{background-color:#deecf9}.suggestionsContainer_44c59fda .is-suggested:hover{background-color:#c7e0f4;cursor:pointer}.root_ade399af{min-width:260px}.actionButton_ade399af{background:0 0;background-color:transparent;border:0;cursor:pointer;margin:0;padding:0;position:relative;width:100%;font-size:12px}html[dir=ltr] .actionButton_ade399af{text-align:left}html[dir=rtl] .actionButton_ade399af{text-align:right}.actionButton_ade399af:hover{background-color:#f3f2f1;cursor:pointer}.actionButton_ade399af:active,.actionButton_ade399af:focus{background-color:#c7e0f4}.actionButton_ade399af .ms-Button-icon{font-size:16px;width:25px}.actionButton_ade399af .ms-Button-label{margin:0 4px 0 9px}html[dir=rtl] .actionButton_ade399af .ms-Button-label{margin:0 9px 0 4px}.buttonSelected_ade399af{background-color:#deecf9}.buttonSelected_ade399af:hover{background-color:#c7e0f4;cursor:pointer}@media screen and (-ms-high-contras
:active),screen and (forced-colors:active){.buttonSelected_ade399af:hover{background-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.buttonSelected_ade399af{background-color:Highlight;color:HighlightText;-ms-high-contrast-adjust:none}}.suggestionsTitle_ade399af{font-size:12px}.suggestionsSpinner_ade399af{margin:5px 0;white-space:nowrap;line-height:20px;font-size:12px}html[dir=ltr] .suggestionsSpinner_ade399af{padding-left:14px}html[dir=rtl] .suggestionsSpinner_ade399af{padding-right:14px}html[dir=ltr] .suggestionsSpinner_ade399af{text-align:left}html[dir=rtl] .suggestionsSpinner_ade399af{text-align:right}.suggestionsSpinner_ade399af .ms-Spinner-circle{display:inline-block;vertical-align:middle}.suggestionsSpinner_ade399af .ms-Spinner-label{display:inline-block;margin:0 10px 0 16px;vertical-align:middle}html[dir=rtl] .suggestionsSpinner_ade399af .ms-Spinner-label{margin:0 16px 0 10px}.itemButton_ade399af{height:100%;width:100%;padding:7px
2px}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.itemButton_ade399af{color:WindowText}}.screenReaderOnly_ade399af{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.personaContainer_6625fd9a{border-radius:15px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#eff6fc;margin:4px;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;position:relative}.personaContainer_6625fd9a::-moz-focus-inner{border:0}.personaContainer_6625fd9a{outline:transparent}.personaContainer_6625fd9a{position:relative}.ms-Fabric--isFocusVisible .personaContainer_6625fd9a:focus:after{-webkit-box-sizing:border-box;box-sizing:border-box;content:"";position:absolute;top:-2px;right:-2px;bottom:-2px;left:-2px;pointer-events:none;border:1px solid #605e5c;border-radius:0}.personaContain
r_6625fd9a .ms-Persona-primaryText{color:#005a9e;font-size:14px;font-weight:400}.personaContainer_6625fd9a .ms-Persona-primaryText.hover_6625fd9a{color:#005a9e}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a .ms-Persona-primaryText{color:HighlightText}}.personaContainer_6625fd9a .actionButton_6625fd9a:hover{background:#c7e0f4}.personaContainer_6625fd9a .actionButton_6625fd9a .ms-Button-icon{color:#005a9e}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a .actionButton_6625fd9a .ms-Button-icon{color:HighlightText}}.personaContainer_6625fd9a:hover{background:#deecf9}.personaContainer_6625fd9a:hover .ms-Persona-primaryText{color:#005a9e;font-size:14px;font-weight:400}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a:hover .ms-Persona-primaryText{color:HighlightText}}.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a{background:#007
d4}.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .ms-Persona-primaryText{color:#ffffff}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .ms-Persona-primaryText{color:HighlightText}}.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .actionButton_6625fd9a{color:#ffffff}.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .actionButton_6625fd9a .ms-Button-icon{color:#005a9e}.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .actionButton_6625fd9a .ms-Button-icon:hover{background:#005a9e}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a .actionButton_6625fd9a .ms-Button-icon{color:HighlightText}}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a.personaContainerIsSelected_6625fd9a{border-color:Highlight;background:Highlight
-ms-high-contrast-adjust:none}}.personaContainer_6625fd9a.validationError_6625fd9a .ms-Persona-primaryText{color:#e81123}.personaContainer_6625fd9a.validationError_6625fd9a .ms-Persona-initials{font-size:20px}@media screen and (-ms-high-contrast:active),screen and (forced-colors:active){.personaContainer_6625fd9a{border:1px solid WindowText}}.personaContainer_6625fd9a .itemContent_6625fd9a{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;min-width:0;max-width:100%}.personaContainer_6625fd9a .removeButton_6625fd9a{border-radius:15px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:33px;height:33px;-ms-flex-preferred-size:32px;flex-basis:32px}.personaContainer_6625fd9a .expandButton_6625fd9a{border-radius:15px 0 0 15px;height:33px;width:44px;padding-right:16px;position:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-17px}.personaContainer_6625fd9a .personaWrapper_6625fd9a{position:relative;display:inherit}.personaContainer_6625fd9a .personaWrapper_6625fd9a .ms-Persona-det
ils{padding:0 8px}.personaContainer_6625fd9a .personaDetails_6625fd9a{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.itemContainer_6625fd9a{display:inline-block;vertical-align:top}</style><script async="" type="text/javascript" charset="UTF-8" src="https://amcdn.msftauth.net/scripts/me/MeControl/10.22108.2/en-US/meBoot.min.js" crossorigin="anonymous"></script><style type="text/css">.mectrl_resetStyle,a.mectrl_resetStyle,button.mectrl_resetStyle{height:auto;min-width:auto;min-height:auto;border-style:none;border-width:0;padding:0;margin:0;outline-style:none!important;background-color:transparent;text-decoration:none;text-align:left;font-family:"Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;cursor:pointer}.mectrl_dropdown{position:relative}.mectrl_dropdownbody{position:absolute;right:0;z-index:1000000;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear 120ms,opacity 120ms ease;transition:visibility 0s linear 120ms,opacity 1
0ms ease}.mectrl_dropdownbody.expanded{opacity:1;visibility:visible;-webkit-transition-delay:0s;transition-delay:0s}.mectrl_focus_visible :focus{outline-style:solid!important;outline-color:#666!important;outline-width:2px!important;outline-offset:-2px!important}.mectrl_focus_visible.mectrl_theme_dark :focus,.mectrl_focus_visible.mectrl_theme_gray :focus,.mectrl_focus_visible.mectrl_theme_off_black :focus{outline-style:solid!important;outline-color:#fff!important;outline-width:2px!important;outline-offset:-2px!important}.mectrl_focus_visible.mectrl_theme_dark_header .mectrl_mainDropdown #mectrl_main_trigger:focus,.mectrl_focus_visible.mectrl_theme_gray_header .mectrl_mainDropdown #mectrl_main_trigger:focus,.mectrl_focus_visible.mectrl_theme_off_black_header .mectrl_mainDropdown #mectrl_main_trigger:focus{outline-style:solid!important;outline-color:#fff!important;outline-width:2px!important;outline-offset:-2px!important}.mectrl_focus_visible.mectrl_theme_light_header .mectrl_mainDropdown #mectrl_main_trigger
focus{outline-style:solid!important;outline-color:#666!important;outline-width:2px!important;outline-offset:-2px!important}.mectrl_glyph{overflow:hidden;background-size:cover;background-position:center center;background-repeat:no-repeat}.glyph_more{width:24px;height:24px}.glyph_text{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;width:1px;margin:-1px;overflow:hidden;padding:0;position:absolute}.mectrl_signIn_circle_glyph{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23707070'%3E%3Cg class='mectrl_stroke' stroke-width='1.9' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25'/%3E%3Cg transform='matrix(1.1 0 0 1.1 8.8 5.61)'%3E%3Ccircle class='mectrl_stroke' cx='20' cy='16' r='7'/%3E%3Cpath class='mectrl_stroke' d='M30 35h10m-5-5v10M30.833 32.09A11 11 0 009 34'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.glyph_aadAccount_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://
ww.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23707070' stroke='%23707070'%3E%3Ccircle class='mectrl_stroke' cx='32' cy='32' r='30.25' stroke-width='1.5' fill='none'/%3E%3Cg class='mectrl_stroke' fill='none' stroke-width='2.5' transform='matrix(.9 0 0 .9 10.4 10.4)'%3E%3Crect x='13.3' y='12.3' width='21.4' height='28.5' rx='.6' ry='.6'/%3E%3Ccircle cy='25.4' cx='24' r='3.6'/%3E%3Cpath d='M18 35a1 1 0 1112 0'/%3E%3C/g%3E%3Cg class='mectrl_fill' stroke='none'%3E%3Cpath d='M36.68 14h2.34l-3.24 6.75h-2.43zM24.89 14h2.43l5.58 11.25a1.046 1.046 0 01-1.791 1.08l-.549-1.08z'/%3E%3C/g%3E%3C/svg%3E")}.glyph_account_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23707070'%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25' stroke-width='1.5'/%3E%3Cg transform='matrix(.9 0 0 .9 10.431 10.431)' stroke-width='2'%3E%3Ccircle cx='24.25' cy='18' r='9'/%3E%3Cpath d='M11.2 40a1 1 0 1126.1 0'/%3E%3C/g%3E%3C/g%3E%3
/svg%3E")}.glyph_msft{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='23'%3E%3Cpath d='M44.836 4.6v13.8h-2.4V7.583H42.4L38.119 18.4h-1.588L32.142 7.583h-.028V18.4H29.9V4.6h3.436L37.3 14.83h.057L41.545 4.6zm2 1.049a1.268 1.268 0 01.419-.967 1.411 1.411 0 011-.39 1.392 1.392 0 011.02.4 1.3 1.3 0 01.405.957 1.249 1.249 0 01-.414.953 1.428 1.428 0 01-1.011.385A1.4 1.4 0 0147.25 6.6a1.263 1.263 0 01-.41-.949M49.41 18.4h-2.329V8.507h2.329zm7.064-1.694a3.225 3.225 0 001.145-.24 4.808 4.808 0 001.155-.636V18a4.659 4.659 0 01-1.266.481 6.9 6.9 0 01-1.554.163 4.707 4.707 0 01-4.918-4.907 5.644 5.644 0 011.4-3.932 5.054 5.054 0 013.955-1.545 5.42 5.42 0 011.324.169 4.4 4.4 0 011.063.39v2.232a4.73 4.73 0 00-1.1-.611 3.187 3.187 0 00-1.15-.217 2.918 2.918 0 00-2.223.9 3.366 3.366 0 00-.847 2.415 3.217 3.217 0 00.813 2.339 2.938 2.938 0 002.209.837m8.931-8.363a2.892 2.892 0 01.5.039 2.025 2.025 0 01.376.1v2.357a2.075 2.075 0 00-.535-.255 2.649 2.649 0
0-.851-.12 1.811 1.811 0 00-1.449.722 3.47 3.47 0 00-.592 2.223V18.4h-2.335V8.507h2.329v1.559h.039a2.731 2.731 0 01.962-1.266 2.615 2.615 0 011.55-.457m1 5.254a5.355 5.355 0 011.387-3.887 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.53 3.53 0 00.7 2.367 2.5 2.5 0 002.011.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.39 2.39 0 00-1.929-.813 2.441 2.441 0 00-1.988.852 3.707 3.707 0 00-.707 2.43m11.2-2.416a1 1 0 00.317.785 5.431 5.431 0 001.405.716 4.768 4.768 0 011.959 1.256 2.608 2.608 0 01.563 1.689 2.718 2.718 0 01-1.073 2.243 4.565 4.565 0 01-2.9.846 6.962 6.962 0 01-1.362-.149 6.036 6.036 0 01-1.265-.38v-2.29a5.74 5.74 0 001.367.7 4.009 4.009 0 001.328.26 2.37 2.37 0 001.164-.221.792.792 0 00.375-.741 1.027 1.027 0 00-.389-.813 5.772 5.772 0 00-1.478-.766 4.56 4.56 0 01-1.828-1.212 2.657 2.657 0 01-.539-1.713
2.706 2.706 0 011.063-2.2 4.245 4.245 0 012.764-.862 6.669 6.669 0 011.164.116 5.131 5.131 0 011.078.3v2.214a4.943 4.943 0 00-1.078-.53 3.61 3.61 0 00-1.222-.221 1.776 1.776 0 00-1.035.26.822.822 0 00-.37.712m5.241 2.493a5.355 5.355 0 011.386-3.89 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.535 3.535 0 00.7 2.367 2.506 2.506 0 002.012.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.391 2.391 0 00-1.93-.813 2.44 2.44 0 00-1.987.852 3.707 3.707 0 00-.707 2.43m15.464-3.109H99.7V18.4h-2.359v-7.988h-1.655V8.507h1.655V7.13a3.425 3.425 0 011.016-2.555 3.56 3.56 0 012.6-1 5.949 5.949 0 01.751.043 3.025 3.025 0 01.577.13v2.016a2.381 2.381 0 00-.4-.164 2.106 2.106 0 00-.664-.1 1.405 1.405 0 00-1.126.457 2.015 2.015 0 00-.395 1.356v1.194h3.469V6.283l2.338-.712v2.936h2.358v1.905h-2.358v4.629a1.954 1.954 0 00.332 1.29 1.329 1
329 0 001.045.375 1.569 1.569 0 00.486-.1 2.271 2.271 0 00.5-.231V18.3a2.765 2.765 0 01-.736.231 5.072 5.072 0 01-1.015.105 2.889 2.889 0 01-2.209-.784 3.341 3.341 0 01-.736-2.363z' fill='%23737373'/%3E%3Cpath fill='%23f25022' d='M0 0h10.931v10.931H0z'/%3E%3Cpath fill='%237fba00' d='M12.069 0H23v10.931H12.069z'/%3E%3Cpath fill='%2300a4ef' d='M0 12.069h10.931V23H0z'/%3E%3Cpath fill='%23ffb900' d='M12.069 12.069H23V23H12.069z'/%3E%3C/svg%3E")}.glyph_more{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23707070'%3E%3Cg class='mectrl_fill'%3E%3Ccircle r='2' cx='12' cy='24'/%3E%3Ccircle r='2' cx='24' cy='24'/%3E%3Ccircle r='2' cx='36' cy='24'/%3E%3C/g%3E%3C/svg%3E")}.glyph_chevron{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 3 16 10' fill='%23231F20'%3E%3Cg class='mectrl_fill'%3E%3Cpath d='M15.284 3.642l.716.716-8 8-8-8 .716-.716L8 10.926z'/%3E%3C/g%3E
3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_msft,.mectrl_theme_azure_hcdark .glyph_msft,.mectrl_theme_dark .glyph_msft,.mectrl_theme_gray .glyph_msft,.mectrl_theme_off_black .glyph_msft{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='23'%3E%3Cpath d='M44.836 4.6v13.8h-2.4V7.583H42.4L38.119 18.4h-1.588L32.142 7.583h-.028V18.4H29.9V4.6h3.436L37.3 14.83h.057L41.545 4.6zm2 1.049a1.268 1.268 0 01.419-.967 1.411 1.411 0 011-.39 1.392 1.392 0 011.02.4 1.3 1.3 0 01.405.957 1.249 1.249 0 01-.414.953 1.428 1.428 0 01-1.011.385A1.4 1.4 0 0147.25 6.6a1.263 1.263 0 01-.41-.949M49.41 18.4h-2.329V8.507h2.329zm7.064-1.694a3.225 3.225 0 001.145-.24 4.808 4.808 0 001.155-.636V18a4.659 4.659 0 01-1.266.481 6.9 6.9 0 01-1.554.163 4.707 4.707 0 01-4.918-4.907 5.644 5.644 0 011.4-3.932 5.054 5.054 0 013.955-1.545 5.42 5.42 0 011.324.169 4.4 4.4 0 011.063.39v2.232a4.73 4.73 0 00-1.1-.611 3.187 3.187 0 00-1.15-.217 2.918 2.918 0 00-2.223.9 3.366 3.366 0 00-.847
2.415 3.217 3.217 0 00.813 2.339 2.938 2.938 0 002.209.837m8.931-8.363a2.892 2.892 0 01.5.039 2.025 2.025 0 01.376.1v2.357a2.075 2.075 0 00-.535-.255 2.649 2.649 0 00-.851-.12 1.811 1.811 0 00-1.449.722 3.47 3.47 0 00-.592 2.223V18.4h-2.335V8.507h2.329v1.559h.039a2.731 2.731 0 01.962-1.266 2.615 2.615 0 011.55-.457m1 5.254a5.355 5.355 0 011.387-3.887 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.53 3.53 0 00.7 2.367 2.5 2.5 0 002.011.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.39 2.39 0 00-1.929-.813 2.441 2.441 0 00-1.988.852 3.707 3.707 0 00-.707 2.43m11.2-2.416a1 1 0 00.317.785 5.431 5.431 0 001.405.716 4.768 4.768 0 011.959 1.256 2.608 2.608 0 01.563 1.689 2.718 2.718 0 01-1.073 2.243 4.565 4.565 0 01-2.9.846 6.962 6.962 0 01-1.362-.149 6.036 6.036 0 01-1.265-.38v-2.29a5.74 5.74 0 001.367.7 4.009 4.009 0 00
.328.26 2.37 2.37 0 001.164-.221.792.792 0 00.375-.741 1.027 1.027 0 00-.389-.813 5.772 5.772 0 00-1.478-.766 4.56 4.56 0 01-1.828-1.212 2.657 2.657 0 01-.539-1.713 2.706 2.706 0 011.063-2.2 4.245 4.245 0 012.764-.862 6.669 6.669 0 011.164.116 5.131 5.131 0 011.078.3v2.214a4.943 4.943 0 00-1.078-.53 3.61 3.61 0 00-1.222-.221 1.776 1.776 0 00-1.035.26.822.822 0 00-.37.712m5.241 2.493a5.355 5.355 0 011.386-3.89 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.535 3.535 0 00.7 2.367 2.506 2.506 0 002.012.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.391 2.391 0 00-1.93-.813 2.44 2.44 0 00-1.987.852 3.707 3.707 0 00-.707 2.43m15.464-3.109H99.7V18.4h-2.359v-7.988h-1.655V8.507h1.655V7.13a3.425 3.425 0 011.016-2.555 3.56 3.56 0 012.6-1 5.949 5.949 0 01.751.043 3.025 3.025 0 01.577.13v2.016a2.381 2.381 0 00-.4-.164 2.106 2.
06 0 00-.664-.1 1.405 1.405 0 00-1.126.457 2.015 2.015 0 00-.395 1.356v1.194h3.469V6.283l2.338-.712v2.936h2.358v1.905h-2.358v4.629a1.954 1.954 0 00.332 1.29 1.329 1.329 0 001.045.375 1.569 1.569 0 00.486-.1 2.271 2.271 0 00.5-.231V18.3a2.765 2.765 0 01-.736.231 5.072 5.072 0 01-1.015.105 2.889 2.889 0 01-2.209-.784 3.341 3.341 0 01-.736-2.363z' fill='%23fff'/%3E%3Cpath fill='%23f25022' d='M0 0h10.931v10.931H0z'/%3E%3Cpath fill='%237fba00' d='M12.069 0H23v10.931H12.069z'/%3E%3Cpath fill='%2300a4ef' d='M0 12.069h10.931V23H0z'/%3E%3Cpath fill='%23ffb900' d='M12.069 12.069H23V23H12.069z'/%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .mectrl_signIn_circle_glyph,.mectrl_theme_azure_hcdark .mectrl_signIn_circle_glyph,.mectrl_theme_dark .mectrl_signIn_circle_glyph,.mectrl_theme_gray .mectrl_signIn_circle_glyph,.mectrl_theme_off_black .mectrl_signIn_circle_glyph{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23fff'%3E%3Cg class='mectrl_strok
' stroke-width='1.9' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25'/%3E%3Cg transform='matrix(1.1 0 0 1.1 8.8 5.61)'%3E%3Ccircle class='mectrl_stroke' cx='20' cy='16' r='7'/%3E%3Cpath class='mectrl_stroke' d='M30 35h10m-5-5v10M30.833 32.09A11 11 0 009 34'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_aadAccount_circle,.mectrl_theme_azure_hcdark .glyph_aadAccount_circle,.mectrl_theme_dark .glyph_aadAccount_circle,.mectrl_theme_gray .glyph_aadAccount_circle,.mectrl_theme_off_black .glyph_aadAccount_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23fff' stroke='%23fff'%3E%3Ccircle class='mectrl_stroke' cx='32' cy='32' r='30.25' stroke-width='1.5' fill='none'/%3E%3Cg class='mectrl_stroke' fill='none' stroke-width='2.5' transform='matrix(.9 0 0 .9 10.4 10.4)'%3E%3Crect x='13.3' y='12.3' width='21.4' height='28.5' rx='.6' ry='.6'/%3E%3Ccircle cy='25.4' cx='24' r='3.6'/%3E%3Cpath d='M18 35a1 1 0 1112 0'/%3E%3C
g%3E%3Cg class='mectrl_fill' stroke='none'%3E%3Cpath d='M36.68 14h2.34l-3.24 6.75h-2.43zM24.89 14h2.43l5.58 11.25a1.046 1.046 0 01-1.791 1.08l-.549-1.08z'/%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_account_circle,.mectrl_theme_azure_hcdark .glyph_account_circle,.mectrl_theme_dark .glyph_account_circle,.mectrl_theme_gray .glyph_account_circle,.mectrl_theme_off_black .glyph_account_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23fff'%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25' stroke-width='1.5'/%3E%3Cg transform='matrix(.9 0 0 .9 10.431 10.431)' stroke-width='2'%3E%3Ccircle cx='24.25' cy='18' r='9'/%3E%3Cpath d='M11.2 40a1 1 0 1126.1 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_more,.mectrl_theme_azure_hcdark .glyph_more,.mectrl_theme_dark .glyph_more,.mectrl_theme_gray .glyph_more,.mectrl_theme_off_black .glyph_more{background-image:url("data:image/s
g+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23fff'%3E%3Cg class='mectrl_fill'%3E%3Ccircle r='2' cx='12' cy='24'/%3E%3Ccircle r='2' cx='24' cy='24'/%3E%3Ccircle r='2' cx='36' cy='24'/%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_chevron,.mectrl_theme_azure_hcdark .glyph_chevron,.mectrl_theme_dark .glyph_chevron,.mectrl_theme_gray .glyph_chevron,.mectrl_theme_off_black .glyph_chevron{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 3 16 10' fill='%23fff'%3E%3Cg class='mectrl_fill'%3E%3Cpath d='M15.284 3.642l.716.716-8 8-8-8 .716-.716L8 10.926z'/%3E%3C/g%3E%3C/svg%3E")}@media screen and (-ms-high-contrast:black-on-white){.c-uhfh>.theme-dark .c-me .glyph_text,.mectrl_theme_azure_hcdark .glyph_text,.mectrl_theme_dark .glyph_text,.mectrl_theme_gray .glyph_text,.mectrl_theme_off_black .glyph_text{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);heigh
:1px;width:1px;margin:-1px;overflow:hidden;padding:0;position:absolute}.c-uhfh>.theme-dark .c-me .mectrl_signIn_circle_glyph,.mectrl_theme_azure_hcdark .mectrl_signIn_circle_glyph,.mectrl_theme_dark .mectrl_signIn_circle_glyph,.mectrl_theme_gray .mectrl_signIn_circle_glyph,.mectrl_theme_off_black .mectrl_signIn_circle_glyph{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23707070'%3E%3Cg class='mectrl_stroke' stroke-width='1.9' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25'/%3E%3Cg transform='matrix(1.1 0 0 1.1 8.8 5.61)'%3E%3Ccircle class='mectrl_stroke' cx='20' cy='16' r='7'/%3E%3Cpath class='mectrl_stroke' d='M30 35h10m-5-5v10M30.833 32.09A11 11 0 009 34'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_aadAccount_circle,.mectrl_theme_azure_hcdark .glyph_aadAccount_circle,.mectrl_theme_dark .glyph_aadAccount_circle,.mectrl_theme_gray .glyph_aadAccount_circle,.mectrl_theme_off_black .glyph_aadAccount_circle{b
ckground-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23707070' stroke='%23707070'%3E%3Ccircle class='mectrl_stroke' cx='32' cy='32' r='30.25' stroke-width='1.5' fill='none'/%3E%3Cg class='mectrl_stroke' fill='none' stroke-width='2.5' transform='matrix(.9 0 0 .9 10.4 10.4)'%3E%3Crect x='13.3' y='12.3' width='21.4' height='28.5' rx='.6' ry='.6'/%3E%3Ccircle cy='25.4' cx='24' r='3.6'/%3E%3Cpath d='M18 35a1 1 0 1112 0'/%3E%3C/g%3E%3Cg class='mectrl_fill' stroke='none'%3E%3Cpath d='M36.68 14h2.34l-3.24 6.75h-2.43zM24.89 14h2.43l5.58 11.25a1.046 1.046 0 01-1.791 1.08l-.549-1.08z'/%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_account_circle,.mectrl_theme_azure_hcdark .glyph_account_circle,.mectrl_theme_dark .glyph_account_circle,.mectrl_theme_gray .glyph_account_circle,.mectrl_theme_off_black .glyph_account_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' strok
='%23707070'%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25' stroke-width='1.5'/%3E%3Cg transform='matrix(.9 0 0 .9 10.431 10.431)' stroke-width='2'%3E%3Ccircle cx='24.25' cy='18' r='9'/%3E%3Cpath d='M11.2 40a1 1 0 1126.1 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_msft,.mectrl_theme_azure_hcdark .glyph_msft,.mectrl_theme_dark .glyph_msft,.mectrl_theme_gray .glyph_msft,.mectrl_theme_off_black .glyph_msft{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='23'%3E%3Cpath d='M44.836 4.6v13.8h-2.4V7.583H42.4L38.119 18.4h-1.588L32.142 7.583h-.028V18.4H29.9V4.6h3.436L37.3 14.83h.057L41.545 4.6zm2 1.049a1.268 1.268 0 01.419-.967 1.411 1.411 0 011-.39 1.392 1.392 0 011.02.4 1.3 1.3 0 01.405.957 1.249 1.249 0 01-.414.953 1.428 1.428 0 01-1.011.385A1.4 1.4 0 0147.25 6.6a1.263 1.263 0 01-.41-.949M49.41 18.4h-2.329V8.507h2.329zm7.064-1.694a3.225 3.225 0 001.145-.24 4.808 4.808 0 001.155-.636V18a4.659
4.659 0 01-1.266.481 6.9 6.9 0 01-1.554.163 4.707 4.707 0 01-4.918-4.907 5.644 5.644 0 011.4-3.932 5.054 5.054 0 013.955-1.545 5.42 5.42 0 011.324.169 4.4 4.4 0 011.063.39v2.232a4.73 4.73 0 00-1.1-.611 3.187 3.187 0 00-1.15-.217 2.918 2.918 0 00-2.223.9 3.366 3.366 0 00-.847 2.415 3.217 3.217 0 00.813 2.339 2.938 2.938 0 002.209.837m8.931-8.363a2.892 2.892 0 01.5.039 2.025 2.025 0 01.376.1v2.357a2.075 2.075 0 00-.535-.255 2.649 2.649 0 00-.851-.12 1.811 1.811 0 00-1.449.722 3.47 3.47 0 00-.592 2.223V18.4h-2.335V8.507h2.329v1.559h.039a2.731 2.731 0 01.962-1.266 2.615 2.615 0 011.55-.457m1 5.254a5.355 5.355 0 011.387-3.887 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.53 3.53 0 00.7 2.367 2.5 2.5 0 002.011.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.39 2.39 0 00-1.929-.813 2.441 2.441 0 00-1.988.852 3.707 3.707 0
00-.707 2.43m11.2-2.416a1 1 0 00.317.785 5.431 5.431 0 001.405.716 4.768 4.768 0 011.959 1.256 2.608 2.608 0 01.563 1.689 2.718 2.718 0 01-1.073 2.243 4.565 4.565 0 01-2.9.846 6.962 6.962 0 01-1.362-.149 6.036 6.036 0 01-1.265-.38v-2.29a5.74 5.74 0 001.367.7 4.009 4.009 0 001.328.26 2.37 2.37 0 001.164-.221.792.792 0 00.375-.741 1.027 1.027 0 00-.389-.813 5.772 5.772 0 00-1.478-.766 4.56 4.56 0 01-1.828-1.212 2.657 2.657 0 01-.539-1.713 2.706 2.706 0 011.063-2.2 4.245 4.245 0 012.764-.862 6.669 6.669 0 011.164.116 5.131 5.131 0 011.078.3v2.214a4.943 4.943 0 00-1.078-.53 3.61 3.61 0 00-1.222-.221 1.776 1.776 0 00-1.035.26.822.822 0 00-.37.712m5.241 2.493a5.355 5.355 0 011.386-3.89 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.535 3.535 0 00.7 2.367 2.506 2.506 0 002.012.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411
.391 2.391 0 00-1.93-.813 2.44 2.44 0 00-1.987.852 3.707 3.707 0 00-.707 2.43m15.464-3.109H99.7V18.4h-2.359v-7.988h-1.655V8.507h1.655V7.13a3.425 3.425 0 011.016-2.555 3.56 3.56 0 012.6-1 5.949 5.949 0 01.751.043 3.025 3.025 0 01.577.13v2.016a2.381 2.381 0 00-.4-.164 2.106 2.106 0 00-.664-.1 1.405 1.405 0 00-1.126.457 2.015 2.015 0 00-.395 1.356v1.194h3.469V6.283l2.338-.712v2.936h2.358v1.905h-2.358v4.629a1.954 1.954 0 00.332 1.29 1.329 1.329 0 001.045.375 1.569 1.569 0 00.486-.1 2.271 2.271 0 00.5-.231V18.3a2.765 2.765 0 01-.736.231 5.072 5.072 0 01-1.015.105 2.889 2.889 0 01-2.209-.784 3.341 3.341 0 01-.736-2.363z' fill='%23737373'/%3E%3Cpath fill='%23f25022' d='M0 0h10.931v10.931H0z'/%3E%3Cpath fill='%237fba00' d='M12.069 0H23v10.931H12.069z'/%3E%3Cpath fill='%2300a4ef' d='M0 12.069h10.931V23H0z'/%3E%3Cpath fill='%23ffb900' d='M12.069 12.069H23V23H12.069z'/%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_more,.mectrl_theme_azure_hcdark .glyph_more,.mectrl_theme_dark .glyph_more,.mectrl_theme_gray .glyph_m
re,.mectrl_theme_off_black .glyph_more{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23707070'%3E%3Cg class='mectrl_fill'%3E%3Ccircle r='2' cx='12' cy='24'/%3E%3Ccircle r='2' cx='24' cy='24'/%3E%3Ccircle r='2' cx='36' cy='24'/%3E%3C/g%3E%3C/svg%3E")}.c-uhfh>.theme-dark .c-me .glyph_chevron,.mectrl_theme_azure_hcdark .glyph_chevron,.mectrl_theme_dark .glyph_chevron,.mectrl_theme_gray .glyph_chevron,.mectrl_theme_off_black .glyph_chevron{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 3 16 10' fill='%23231F20'%3E%3Cg class='mectrl_fill'%3E%3Cpath d='M15.284 3.642l.716.716-8 8-8-8 .716-.716L8 10.926z'/%3E%3C/g%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:white-on-black){.glyph_msft{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='23'%3E%3Cpath d='M44.836 4.6v13.8h-2.4V7.583H42
4L38.119 18.4h-1.588L32.142 7.583h-.028V18.4H29.9V4.6h3.436L37.3 14.83h.057L41.545 4.6zm2 1.049a1.268 1.268 0 01.419-.967 1.411 1.411 0 011-.39 1.392 1.392 0 011.02.4 1.3 1.3 0 01.405.957 1.249 1.249 0 01-.414.953 1.428 1.428 0 01-1.011.385A1.4 1.4 0 0147.25 6.6a1.263 1.263 0 01-.41-.949M49.41 18.4h-2.329V8.507h2.329zm7.064-1.694a3.225 3.225 0 001.145-.24 4.808 4.808 0 001.155-.636V18a4.659 4.659 0 01-1.266.481 6.9 6.9 0 01-1.554.163 4.707 4.707 0 01-4.918-4.907 5.644 5.644 0 011.4-3.932 5.054 5.054 0 013.955-1.545 5.42 5.42 0 011.324.169 4.4 4.4 0 011.063.39v2.232a4.73 4.73 0 00-1.1-.611 3.187 3.187 0 00-1.15-.217 2.918 2.918 0 00-2.223.9 3.366 3.366 0 00-.847 2.415 3.217 3.217 0 00.813 2.339 2.938 2.938 0 002.209.837m8.931-8.363a2.892 2.892 0 01.5.039 2.025 2.025 0 01.376.1v2.357a2.075 2.075 0 00-.535-.255 2.649 2.649 0 00-.851-.12 1.811 1.811 0 00-1.449.722 3.47 3.47 0 00-.592 2.223V18.4h-2.335V8.507h2.329v1.559h.039a2.731 2.731 0 01.962-1.266 2.615 2.615 0 011.55-.457m1 5.254a5.355 5.355 0 011.387-3.88
5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.53 3.53 0 00.7 2.367 2.5 2.5 0 002.011.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.39 2.39 0 00-1.929-.813 2.441 2.441 0 00-1.988.852 3.707 3.707 0 00-.707 2.43m11.2-2.416a1 1 0 00.317.785 5.431 5.431 0 001.405.716 4.768 4.768 0 011.959 1.256 2.608 2.608 0 01.563 1.689 2.718 2.718 0 01-1.073 2.243 4.565 4.565 0 01-2.9.846 6.962 6.962 0 01-1.362-.149 6.036 6.036 0 01-1.265-.38v-2.29a5.74 5.74 0 001.367.7 4.009 4.009 0 001.328.26 2.37 2.37 0 001.164-.221.792.792 0 00.375-.741 1.027 1.027 0 00-.389-.813 5.772 5.772 0 00-1.478-.766 4.56 4.56 0 01-1.828-1.212 2.657 2.657 0 01-.539-1.713 2.706 2.706 0 011.063-2.2 4.245 4.245 0 012.764-.862 6.669 6.669 0 011.164.116 5.131 5.131 0 011.078.3v2.214a4.943 4.943 0 00-1.078-.53 3.61 3.61 0 00-1.222-.221 1.776 1.776 0 00-1.035.2
.822.822 0 00-.37.712m5.241 2.493a5.355 5.355 0 011.386-3.89 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.535 3.535 0 00.7 2.367 2.506 2.506 0 002.012.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.391 2.391 0 00-1.93-.813 2.44 2.44 0 00-1.987.852 3.707 3.707 0 00-.707 2.43m15.464-3.109H99.7V18.4h-2.359v-7.988h-1.655V8.507h1.655V7.13a3.425 3.425 0 011.016-2.555 3.56 3.56 0 012.6-1 5.949 5.949 0 01.751.043 3.025 3.025 0 01.577.13v2.016a2.381 2.381 0 00-.4-.164 2.106 2.106 0 00-.664-.1 1.405 1.405 0 00-1.126.457 2.015 2.015 0 00-.395 1.356v1.194h3.469V6.283l2.338-.712v2.936h2.358v1.905h-2.358v4.629a1.954 1.954 0 00.332 1.29 1.329 1.329 0 001.045.375 1.569 1.569 0 00.486-.1 2.271 2.271 0 00.5-.231V18.3a2.765 2.765 0 01-.736.231 5.072 5.072 0 01-1.015.105 2.889 2.889 0 01-2.209-.784 3.341 3.341 0 01-.736-2.363z' fill
'%23fff'/%3E%3Cpath fill='%23f25022' d='M0 0h10.931v10.931H0z'/%3E%3Cpath fill='%237fba00' d='M12.069 0H23v10.931H12.069z'/%3E%3Cpath fill='%2300a4ef' d='M0 12.069h10.931V23H0z'/%3E%3Cpath fill='%23ffb900' d='M12.069 12.069H23V23H12.069z'/%3E%3C/svg%3E")}.mectrl_signIn_circle_glyph{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23fff'%3E%3Cg class='mectrl_stroke' stroke-width='1.9' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25'/%3E%3Cg transform='matrix(1.1 0 0 1.1 8.8 5.61)'%3E%3Ccircle class='mectrl_stroke' cx='20' cy='16' r='7'/%3E%3Cpath class='mectrl_stroke' d='M30 35h10m-5-5v10M30.833 32.09A11 11 0 009 34'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.glyph_aadAccount_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23fff' stroke='%23fff'%3E%3Ccircle class='mectrl_stroke' cx='32' cy='32' r='30.25' stroke-width='1.5' fill='none'/%3E%3Cg class='mectrl_st
oke' fill='none' stroke-width='2.5' transform='matrix(.9 0 0 .9 10.4 10.4)'%3E%3Crect x='13.3' y='12.3' width='21.4' height='28.5' rx='.6' ry='.6'/%3E%3Ccircle cy='25.4' cx='24' r='3.6'/%3E%3Cpath d='M18 35a1 1 0 1112 0'/%3E%3C/g%3E%3Cg class='mectrl_fill' stroke='none'%3E%3Cpath d='M36.68 14h2.34l-3.24 6.75h-2.43zM24.89 14h2.43l5.58 11.25a1.046 1.046 0 01-1.791 1.08l-.549-1.08z'/%3E%3C/g%3E%3C/svg%3E")}.glyph_account_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23fff'%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25' stroke-width='1.5'/%3E%3Cg transform='matrix(.9 0 0 .9 10.431 10.431)' stroke-width='2'%3E%3Ccircle cx='24.25' cy='18' r='9'/%3E%3Cpath d='M11.2 40a1 1 0 1126.1 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.glyph_more{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23fff'%3E%3Cg class='mectrl_fill'%3E%3Ccircle r=
2' cx='12' cy='24'/%3E%3Ccircle r='2' cx='24' cy='24'/%3E%3Ccircle r='2' cx='36' cy='24'/%3E%3C/g%3E%3C/svg%3E")}.glyph_chevron{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 3 16 10' fill='%23fff'%3E%3Cg class='mectrl_fill'%3E%3Cpath d='M15.284 3.642l.716.716-8 8-8-8 .716-.716L8 10.926z'/%3E%3C/g%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:black-on-white){.glyph_text{clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;width:1px;margin:-1px;overflow:hidden;padding:0;position:absolute}.mectrl_signIn_circle_glyph{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23707070'%3E%3Cg class='mectrl_stroke' stroke-width='1.9' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25'/%3E%3Cg transform='matrix(1.1 0 0 1.1 8.8 5.61)'%3E%3Ccircle class='mectrl_stroke' cx='20' cy='16' r='7'/%3E%3Cpath class='mectrl_stroke' d='
30 35h10m-5-5v10M30.833 32.09A11 11 0 009 34'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.glyph_aadAccount_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%23707070' stroke='%23707070'%3E%3Ccircle class='mectrl_stroke' cx='32' cy='32' r='30.25' stroke-width='1.5' fill='none'/%3E%3Cg class='mectrl_stroke' fill='none' stroke-width='2.5' transform='matrix(.9 0 0 .9 10.4 10.4)'%3E%3Crect x='13.3' y='12.3' width='21.4' height='28.5' rx='.6' ry='.6'/%3E%3Ccircle cy='25.4' cx='24' r='3.6'/%3E%3Cpath d='M18 35a1 1 0 1112 0'/%3E%3C/g%3E%3Cg class='mectrl_fill' stroke='none'%3E%3Cpath d='M36.68 14h2.34l-3.24 6.75h-2.43zM24.89 14h2.43l5.58 11.25a1.046 1.046 0 01-1.791 1.08l-.549-1.08z'/%3E%3C/g%3E%3C/svg%3E")}.glyph_account_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' stroke='%23707070'%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='32' cy='32' r='30.25' strok
-width='1.5'/%3E%3Cg transform='matrix(.9 0 0 .9 10.431 10.431)' stroke-width='2'%3E%3Ccircle cx='24.25' cy='18' r='9'/%3E%3Cpath d='M11.2 40a1 1 0 1126.1 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.glyph_msft{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='108' height='23'%3E%3Cpath d='M44.836 4.6v13.8h-2.4V7.583H42.4L38.119 18.4h-1.588L32.142 7.583h-.028V18.4H29.9V4.6h3.436L37.3 14.83h.057L41.545 4.6zm2 1.049a1.268 1.268 0 01.419-.967 1.411 1.411 0 011-.39 1.392 1.392 0 011.02.4 1.3 1.3 0 01.405.957 1.249 1.249 0 01-.414.953 1.428 1.428 0 01-1.011.385A1.4 1.4 0 0147.25 6.6a1.263 1.263 0 01-.41-.949M49.41 18.4h-2.329V8.507h2.329zm7.064-1.694a3.225 3.225 0 001.145-.24 4.808 4.808 0 001.155-.636V18a4.659 4.659 0 01-1.266.481 6.9 6.9 0 01-1.554.163 4.707 4.707 0 01-4.918-4.907 5.644 5.644 0 011.4-3.932 5.054 5.054 0 013.955-1.545 5.42 5.42 0 011.324.169 4.4 4.4 0 011.063.39v2.232a4.73 4.73 0 00-1.1-.611 3.187 3.187 0 00-1.15-.217 2.918 2.918 0 00-2.223.9 3.366
.366 0 00-.847 2.415 3.217 3.217 0 00.813 2.339 2.938 2.938 0 002.209.837m8.931-8.363a2.892 2.892 0 01.5.039 2.025 2.025 0 01.376.1v2.357a2.075 2.075 0 00-.535-.255 2.649 2.649 0 00-.851-.12 1.811 1.811 0 00-1.449.722 3.47 3.47 0 00-.592 2.223V18.4h-2.335V8.507h2.329v1.559h.039a2.731 2.731 0 01.962-1.266 2.615 2.615 0 011.55-.457m1 5.254a5.355 5.355 0 011.387-3.887 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.53 3.53 0 00.7 2.367 2.5 2.5 0 002.011.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.39 2.39 0 00-1.929-.813 2.441 2.441 0 00-1.988.852 3.707 3.707 0 00-.707 2.43m11.2-2.416a1 1 0 00.317.785 5.431 5.431 0 001.405.716 4.768 4.768 0 011.959 1.256 2.608 2.608 0 01.563 1.689 2.718 2.718 0 01-1.073 2.243 4.565 4.565 0 01-2.9.846 6.962 6.962 0 01-1.362-.149 6.036 6.036 0 01-1.265-.38v-2.29a5.74 5.74 0 001.367.7 4
009 4.009 0 001.328.26 2.37 2.37 0 001.164-.221.792.792 0 00.375-.741 1.027 1.027 0 00-.389-.813 5.772 5.772 0 00-1.478-.766 4.56 4.56 0 01-1.828-1.212 2.657 2.657 0 01-.539-1.713 2.706 2.706 0 011.063-2.2 4.245 4.245 0 012.764-.862 6.669 6.669 0 011.164.116 5.131 5.131 0 011.078.3v2.214a4.943 4.943 0 00-1.078-.53 3.61 3.61 0 00-1.222-.221 1.776 1.776 0 00-1.035.26.822.822 0 00-.37.712m5.241 2.493a5.355 5.355 0 011.386-3.89 5.1 5.1 0 013.85-1.434 4.741 4.741 0 013.623 1.381 5.208 5.208 0 011.3 3.729 5.259 5.259 0 01-1.385 3.83 5.02 5.02 0 01-3.773 1.424 4.931 4.931 0 01-3.652-1.352 4.984 4.984 0 01-1.349-3.688m2.426-.076a3.535 3.535 0 00.7 2.367 2.506 2.506 0 002.012.818 2.344 2.344 0 001.934-.818 3.78 3.78 0 00.664-2.425 3.649 3.649 0 00-.688-2.411 2.391 2.391 0 00-1.93-.813 2.44 2.44 0 00-1.987.852 3.707 3.707 0 00-.707 2.43m15.464-3.109H99.7V18.4h-2.359v-7.988h-1.655V8.507h1.655V7.13a3.425 3.425 0 011.016-2.555 3.56 3.56 0 012.6-1 5.949 5.949 0 01.751.043 3.025 3.025 0 01.577.13v2.016a2.381 2.381 0 00-.
-.164 2.106 2.106 0 00-.664-.1 1.405 1.405 0 00-1.126.457 2.015 2.015 0 00-.395 1.356v1.194h3.469V6.283l2.338-.712v2.936h2.358v1.905h-2.358v4.629a1.954 1.954 0 00.332 1.29 1.329 1.329 0 001.045.375 1.569 1.569 0 00.486-.1 2.271 2.271 0 00.5-.231V18.3a2.765 2.765 0 01-.736.231 5.072 5.072 0 01-1.015.105 2.889 2.889 0 01-2.209-.784 3.341 3.341 0 01-.736-2.363z' fill='%23737373'/%3E%3Cpath fill='%23f25022' d='M0 0h10.931v10.931H0z'/%3E%3Cpath fill='%237fba00' d='M12.069 0H23v10.931H12.069z'/%3E%3Cpath fill='%2300a4ef' d='M0 12.069h10.931V23H0z'/%3E%3Cpath fill='%23ffb900' d='M12.069 12.069H23V23H12.069z'/%3E%3C/svg%3E")}.glyph_more{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='%23707070'%3E%3Cg class='mectrl_fill'%3E%3Ccircle r='2' cx='12' cy='24'/%3E%3Ccircle r='2' cx='24' cy='24'/%3E%3Ccircle r='2' cx='36' cy='24'/%3E%3C/g%3E%3C/svg%3E")}.glyph_chevron{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.
3.org/2000/svg' width='16' height='10' viewBox='0 3 16 10' fill='%23231F20'%3E%3Cg class='mectrl_fill'%3E%3Cpath d='M15.284 3.642l.716.716-8 8-8-8 .716-.716L8 10.926z'/%3E%3C/g%3E%3C/svg%3E")}}.mectrl_profilepic{position:relative;width:100%;height:100%;border-radius:50%;overflow:hidden;background-size:cover;background-position:center center;background-repeat:no-repeat}.mectrl_profilepic_initials{border:1px solid #777;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#mectrl_currentAccount_picture .mectrl_profilepic_initials{font-size:32px}.mectrl_profilepic_initials.mectrl_initials{position:absolute;top:1px;bottom:1px;left:1px;right:1px;border-radius:50%}.c-uhfh>.theme-dark .c-me .mectrl_profilepic_initials,.mectrl_theme_azure_hcdark .mectrl_profilepic_initials,.mectrl_theme_dark .mectrl_profilepic_initials,.mectrl_theme_gray .mectrl_profilepic_initials,.mectrl_theme_off_
lack .mectrl_profilepic_initials{border:1px solid #fff;color:#fff}.mectrl_profilepic_button{position:relative}.mectrl_profilepic_button:hover::before{z-index:1;content:"";position:absolute;display:block;width:100%;height:100%;border-radius:50%;overflow:hidden;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='%23fff' stroke='%23fff'%3E%3Ccircle cx='72.8' cy='106.3' r='7' stroke='none'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E");background-size:32px 32px;background-position:center center;background-repeat:no-repeat}@media screen and (-ms-high-contrast:black-on-white){.mectrl_profilepic_button:hover::before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' stroke='%23000'%3E%3Ccircle cx='72.8' cy='106.3' r='7' stroke='n
ne'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:white-on-black){.mectrl_profilepic_button:hover::before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='%230ff' stroke='%230ff'%3E%3Ccircle cx='72.8' cy='106.3' r='7' stroke='none'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E")}}.mectrl_focus_visible .mectrl_profilepic_button:focus::before{z-index:1;content:"";position:absolute;display:block;width:100%;height:100%;border-radius:50%;overflow:hidden;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='%23fff' stroke='%23fff'%3E%3Ccirc
e cx='72.8' cy='106.3' r='7' stroke='none'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E");background-size:32px 32px;background-position:center center;background-repeat:no-repeat}@media screen and (-ms-high-contrast:black-on-white){.mectrl_focus_visible .mectrl_profilepic_button:focus::before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' stroke='%23000'%3E%3Ccircle cx='72.8' cy='106.3' r='7' stroke='none'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:white-on-black){.mectrl_focus_visible .mectrl_profilepic_button:focus::before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w
.org/2000/svg' viewBox='0 0 300 300' fill='%230ff' stroke='%230ff'%3E%3Ccircle cx='72.8' cy='106.3' r='7' stroke='none'/%3E%3Cg class='mectrl_stroke' fill='none'%3E%3Ccircle cx='150' cy='155' r='49' stroke-width='15'/%3E%3Cpath d='M45 79v153h210V79h-55l-15-15h-70l-15 15z' stroke-width='14'/%3E%3C/g%3E%3C/svg%3E")}}.mectrl_profilepic_button:focus::before,.mectrl_profilepic_button:hover::before{background-color:rgba(0,0,0,.5)}@media screen and (-ms-high-contrast:black-on-white){.mectrl_profilepic_button:focus::before,.mectrl_profilepic_button:hover::before{background-color:rgba(255,255,255,.5)}}@media screen and (-ms-high-contrast:white-on-black){.mectrl_profilepic_button:focus::before,.mectrl_profilepic_button:hover::before{background-color:rgba(255,255,255,.5)}}.mectrl_theme_azure_hclight .mectrl_profilepic_button{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px}.mectrl_theme_azure_hclight .mectrl_profilepic_button:focus::before,.mectrl_theme_azure_hclight .mectrl_profilepic_button:hover::befo
e{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcdark .mectrl_profilepic_button{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px}.mectrl_theme_azure_hcdark .mectrl_profilepic_button:focus::before,.mectrl_theme_azure_hcdark .mectrl_profilepic_button:hover::before{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_topHeader{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;font-size:13px;width:100%;height:48px}.mectrl_topHeader .mectrl_profilepic{width:32px;height:32px;margin:8px}.mectrl_topHeader .mectrl_header_text{max-width:160px;line-height:48px;vertical-ali
n:top;font-family:"Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;font-size:13px;padding-left:12px;padding-right:4px}.mectrl_topHeader .mectrl_header_text.noIcon{padding-right:12px}.mectrl_topHeader{color:#333}.c-uhfh>.theme-dark .c-me .mectrl_topHeader,.mectrl_theme_dark .mectrl_topHeader{color:#fff}.c-uhfh>.theme-dark .c-me .mectrl_header_text,.mectrl_theme_dark .mectrl_header_text{color:#fff}.mectrl_theme_dark.mectrl_theme_light_header .mectrl_topHeader{color:#333}.mectrl_theme_dark.mectrl_theme_light_header .mectrl_header_text{color:#333}.mectrl_theme_azure_hclight .mectrl_topHeader{color:#000}.mectrl_theme_azure_hcdark .mectrl_topHeader{color:#fff}.mectrl_theme_gray .mectrl_topHeader{color:#fff}.mectrl_theme_off_black .mectrl_topHeader{color:#fff}.mectrl_screen_reader_text{display:inline-block;position:absolute;width:1px;height:1px;overflow:hidden;color:#000}.c-uhfh>.theme-dark .c-me .mectrl_screen_reader_text,.mectrl_theme_azure_hcdark .
ectrl_screen_reader_text,.mectrl_theme_dark .mectrl_screen_reader_text,.mectrl_theme_dark_header .mectrl_screen_reader_text,.mectrl_theme_gray .mectrl_screen_reader_text,.mectrl_theme_off_black .mectrl_screen_reader_text{color:#fff}.mectrl_theme_dark.mectrl_theme_light_header{color:#fff}span[id^=mectrl_tooltip].mectrl_tooltip{display:block;visibility:hidden;position:fixed;z-index:1300000;max-width:260px;padding:4px;font-family:"Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;font-size:12px;line-height:normal;text-align:center;word-break:break-all;overflow-wrap:break-word;border:1px solid #ccc;color:#333;background-color:#fff;-webkit-box-shadow:2px 2px 2px #777;box-shadow:2px 2px 2px #777;pointer-events:none}.mectrl_truncate,a.mectrl_truncate,button.mectrl_truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mectrl_root,.mectrl_root div{font-family:"Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Helvetica Neue","BBAlpha Sans"
"S60 Sans",Arial,sans-serif;line-height:normal}.mectrl_root *,.mectrl_root div *{-webkit-box-sizing:border-box;box-sizing:border-box}.mectrl_mainDropdown>.mectrl_dropdownbody{width:320px;max-width:100vw;-webkit-box-shadow:0 24px 54px rgba(0,0,0,.15),0 4.5px 13.5px rgba(0,0,0,.08);box-shadow:0 24px 54px rgba(0,0,0,.15),0 4.5px 13.5px rgba(0,0,0,.08)}@media screen and (-ms-high-contrast:active){.mectrl_mainDropdown>.mectrl_dropdownbody{border:1px solid}}a.mectrl_trigger{display:inline-block}</style><script async="" type="text/javascript" charset="UTF-8" src="https://amcdn.msftauth.net/scripts/me/MeControl/10.22108.2/en-US/meCore.min.js" crossorigin="anonymous"></script><style type="text/css">.mectrl_resetStyle,a.mectrl_resetStyle,button.mectrl_resetStyle{height:auto;min-width:auto;min-height:auto;border-style:none;border-width:0;padding:0;margin:0;outline-style:none!important;background-color:transparent;text-decoration:none;text-align:left;font-family:"Segoe UI","Segoe UI Web Regular","Segoe UI Symbol","Hel
etica Neue","BBAlpha Sans","S60 Sans",Arial,sans-serif;cursor:pointer}.mectrl_body{text-align:left;color:#333;background-color:#fff}.mectrl_body a{color:#333}.mectrl_body button{color:#333}.c-uhfh>.theme-dark .c-me .mectrl_body,.mectrl_theme_dark .mectrl_body{text-align:left;color:#fff;background-color:#1a1a1a}.c-uhfh>.theme-dark .c-me .mectrl_body a,.mectrl_theme_dark .mectrl_body a{color:#fff}.c-uhfh>.theme-dark .c-me .mectrl_body button,.mectrl_theme_dark .mectrl_body button{color:#fff}.mectrl_theme_azure_hclight .mectrl_body{text-align:left;color:#000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_theme_azure_hclight .mectrl_body a{color:#0000cd!important;border-color:#0000cd!important;outline-color:#0000cd!important;fill:#0000cd!important;background-color:#fff;text-decoration:underline}.mectrl_theme_azure_hclight .mectrl_body button{color:#000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_theme_azure_hclight ::-moz-selection{-ms-high-contras
-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight ::selection{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcdark .mectrl_body{text-align:left;color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark .mectrl_body a{color:#ff0!important;border-color:#ff0!important;outline-color:#ff0!important;fill:#ff0!important;background-color:#000;text-decoration:underline}.mectrl_theme_azure_hcdark .mectrl_body button{color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark ::-moz-selection{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark ::selection{-ms-high-c
ntrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_gray .mectrl_body{text-align:left;color:#fff;background-color:#444}.mectrl_theme_gray .mectrl_body a{color:#fff}.mectrl_theme_gray .mectrl_body button{color:#fff}.mectrl_theme_off_black .mectrl_body{text-align:left;color:#fff;background-color:#262626}.mectrl_theme_off_black .mectrl_body a{color:#fff}.mectrl_theme_off_black .mectrl_body button{color:#fff}.mectrl_company{padding-left:14px;padding-right:14px;font-size:13px}.mectrl_company .glyph_msft{width:16px;height:16px;float:left;margin-right:4px}#mectrl_currentAccount_picture{display:block;border-radius:50%;overflow:hidden;width:88px;height:88px;margin-left:16px;margin-right:20px;margin-top:20px;margin-bottom:20px}.mectrl_currentAccount{display:-ms-grid;display:grid;-ms-grid-columns:auto 1fr auto;grid-template-columns:auto 1fr auto;-ms-grid-rows:48px auto;grid-template-rows:48px auto}.mectrl_currentAccou
t>*{display:block;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.mectrl_currentAccount .mectrl_company{-ms-grid-row:1;-ms-grid-row-span:1;grid-row:1/2;-ms-grid-column:1;-ms-grid-column-span:1;grid-column:1/2}.mectrl_ie .mectrl_currentAccount .mectrl_company{max-width:160px}.mectrl_currentAccount .mectrl_signout{-ms-grid-row:1;-ms-grid-row-span:1;grid-row:1/2;-ms-grid-column:3;-ms-grid-column-span:1;grid-column:3/4;font-size:13px;padding:15px 14px}.mectrl_ie .mectrl_currentAccount .mectrl_signout{max-width:160px}.mectrl_currentAccount .mectrl_accountInfo{min-height:132px;width:100%;-ms-grid-row:2;-ms-grid-row-span:1;grid-row:2/3;-ms-grid-column:1;-ms-grid-column-span:3;grid-column:1/4;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails{font-size:13px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:0;width:0;padding-right:12px}.mectrl_curre
tAccount .mectrl_accountInfo .mectrl_accountDetails>*{padding:1px}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails>:nth-child(2){margin-top:3px;font-size:13px}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails>:not(:nth-child(2)){margin-top:4px}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails>:first-child{margin-top:0}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails>:last-child{padding:0}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{display:block;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content}.mectrl_currentAccount .mectrl_accountInfo .mectrl_name{font-size:18px;font-weight:700}.mectrl_currentAccount .mectrl_accountInfo .mectrl_name:focus{outline:0}.mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{color:#0078d6;background-color:inherit;text-decoration:underline}.mectrl_currentAccount a.mectrl_signout,.mectrl_currentAccount a.mectrl_signout:focus,.me
trl_currentAccount button.mectrl_signout,.mectrl_currentAccount button.mectrl_signout:focus{color:#333;background-color:#fff}.mectrl_focus_visible .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_focus_visible .mectrl_currentAccount button.mectrl_signout:focus{color:inherit;background-color:rgba(0,0,0,.08)}.mectrl_currentAccount a.mectrl_signout:hover,.mectrl_currentAccount button.mectrl_signout:hover{color:inherit;background-color:rgba(0,0,0,.08)}.mectrl_currentAccount a.mectrl_signout:active,.mectrl_currentAccount button.mectrl_signout:active{color:inherit;background-color:rgba(0,0,0,.12)}.c-uhfh>.theme-dark .c-me .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link,.mectrl_theme_dark .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{color:#0088d6;background-color:inherit;text-decoration:none}.c-uhfh>.theme-dark .c-me .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:focus,.c-uhfh>.theme-dark .c-me .mectrl_currentAcc
unt .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:hover,.mectrl_theme_dark .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:focus,.mectrl_theme_dark .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:hover{text-decoration:underline}.c-uhfh>.theme-dark .c-me .mectrl_currentAccount a.mectrl_signout,.c-uhfh>.theme-dark .c-me .mectrl_currentAccount a.mectrl_signout:focus,.c-uhfh>.theme-dark .c-me .mectrl_currentAccount button.mectrl_signout,.c-uhfh>.theme-dark .c-me .mectrl_currentAccount button.mectrl_signout:focus,.mectrl_theme_dark .mectrl_currentAccount a.mectrl_signout,.mectrl_theme_dark .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_theme_dark .mectrl_currentAccount button.mectrl_signout,.mectrl_theme_dark .mectrl_currentAccount button.mectrl_signout:focus{color:#fff;background-color:#1a1a1a}.mectrl_focus_visible .c-uhfh>.theme-dark .c-me .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_focus_visible .c-uhfh>.theme-dark .c-me
.mectrl_currentAccount button.mectrl_signout:focus,.mectrl_focus_visible .mectrl_theme_dark .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_focus_visible .mectrl_theme_dark .mectrl_currentAccount button.mectrl_signout:focus{color:inherit;background-color:rgba(255,255,255,.16)}.c-uhfh>.theme-dark .c-me .mectrl_currentAccount a.mectrl_signout:hover,.c-uhfh>.theme-dark .c-me .mectrl_currentAccount button.mectrl_signout:hover,.mectrl_theme_dark .mectrl_currentAccount a.mectrl_signout:hover,.mectrl_theme_dark .mectrl_currentAccount button.mectrl_signout:hover{color:inherit;background-color:rgba(255,255,255,.16)}.c-uhfh>.theme-dark .c-me .mectrl_currentAccount a.mectrl_signout:active,.c-uhfh>.theme-dark .c-me .mectrl_currentAccount button.mectrl_signout:active,.mectrl_theme_dark .mectrl_currentAccount a.mectrl_signout:active,.mectrl_theme_dark .mectrl_currentAccount button.mectrl_signout:active{color:inherit;background-color:rgba(255,255,255,.24)}.mectrl_theme_azure_hclight .mectrl_currentAccount .mectrl_a
countInfo .mectrl_accountDetails .mectrl_link{color:#0000cd!important;border-color:#0000cd!important;outline-color:#0000cd!important;fill:#0000cd!important;background-color:#fff;text-decoration:underline}.mectrl_theme_azure_hclight .mectrl_currentAccount a.mectrl_signout,.mectrl_theme_azure_hclight .mectrl_currentAccount a.mectrl_signout:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:#0000cd!important;border-color:#0000cd!important;outline-color:#0000cd!important;fill:#0000cd!important;background-color:#fff;text-decoration:underline}.mectrl_focus_visible .mectrl_theme_azure_hclight .mectrl_currentAccount a.mectrl_signout:focus{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight .mectrl_currentAccount a.mectrl_signout:hover{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;backg
ound-color:purple}.mectrl_theme_azure_hclight .mectrl_currentAccount a.mectrl_signout:active{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight .mectrl_currentAccount button.mectrl_signout,.mectrl_theme_azure_hclight .mectrl_currentAccount button.mectrl_signout:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:#000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_focus_visible .mectrl_theme_azure_hclight .mectrl_currentAccount button.mectrl_signout:focus{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight .mectrl_currentAccount button.mectrl_signout:hover{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purpl
}.mectrl_theme_azure_hclight .mectrl_currentAccount button.mectrl_signout:active{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcdark .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{color:#ff0!important;border-color:#ff0!important;outline-color:#ff0!important;fill:#ff0!important;background-color:#000;text-decoration:underline}.mectrl_theme_azure_hcdark .mectrl_currentAccount a.mectrl_signout,.mectrl_theme_azure_hcdark .mectrl_currentAccount a.mectrl_signout:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:#ff0!important;border-color:#ff0!important;outline-color:#ff0!important;fill:#ff0!important;background-color:#000;text-decoration:underline}.mectrl_focus_visible .mectrl_theme_azure_hcdark .mectrl_currentAccount a.mectrl_signout:focus{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:
000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_currentAccount a.mectrl_signout:hover{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_currentAccount a.mectrl_signout:active{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_currentAccount button.mectrl_signout,.mectrl_theme_azure_hcdark .mectrl_currentAccount button.mectrl_signout:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_focus_visible .mectrl_theme_azure_hcdark .mectrl_currentAccount button.mectrl_signout:focus{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!importan
;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_currentAccount button.mectrl_signout:hover{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_currentAccount button.mectrl_signout:active{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_gray .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{color:#56bdfc;background-color:inherit;text-decoration:none}.mectrl_theme_gray .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:focus,.mectrl_theme_gray .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:hover{color:#c5e9fe;text-decoration:underline}.mectrl_theme_gray .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:active{color:#fff}.mectrl_theme_gray
mectrl_currentAccount a.mectrl_signout,.mectrl_theme_gray .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_theme_gray .mectrl_currentAccount button.mectrl_signout,.mectrl_theme_gray .mectrl_currentAccount button.mectrl_signout:focus{color:#fff;background-color:#444}.mectrl_focus_visible .mectrl_theme_gray .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_focus_visible .mectrl_theme_gray .mectrl_currentAccount button.mectrl_signout:focus{color:inherit;background-color:#505050}.mectrl_theme_gray .mectrl_currentAccount a.mectrl_signout:hover,.mectrl_theme_gray .mectrl_currentAccount button.mectrl_signout:hover{color:inherit;background-color:#505050}.mectrl_theme_gray .mectrl_currentAccount a.mectrl_signout:active,.mectrl_theme_gray .mectrl_currentAccount button.mectrl_signout:active{color:inherit;background-color:#262626}.mectrl_theme_off_black .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link{color:#23a6e8;background-color:inherit;text-decoration:none}.mectrl_theme_off_b
ack .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:focus,.mectrl_theme_off_black .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:hover{color:#79cdfe;text-decoration:underline}.mectrl_theme_off_black .mectrl_currentAccount .mectrl_accountInfo .mectrl_accountDetails .mectrl_link:active{color:#fff}.mectrl_theme_off_black .mectrl_currentAccount a.mectrl_signout,.mectrl_theme_off_black .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_theme_off_black .mectrl_currentAccount button.mectrl_signout,.mectrl_theme_off_black .mectrl_currentAccount button.mectrl_signout:focus{color:#fff;background-color:#262626}.mectrl_focus_visible .mectrl_theme_off_black .mectrl_currentAccount a.mectrl_signout:focus,.mectrl_focus_visible .mectrl_theme_off_black .mectrl_currentAccount button.mectrl_signout:focus{color:inherit;background-color:#505050}.mectrl_theme_off_black .mectrl_currentAccount a.mectrl_signout:hover,.mectrl_theme_off_black .mectrl_currentAccount but
on.mectrl_signout:hover{color:inherit;background-color:#505050}.mectrl_theme_off_black .mectrl_currentAccount a.mectrl_signout:active,.mectrl_theme_off_black .mectrl_currentAccount button.mectrl_signout:active{color:inherit;background-color:#666}@media screen and (-ms-high-contrast:white-on-black){.mectrl_focus_visible .mectrl_currentAccount button.mectrl_signout:focus{background-color:#0ff}.mectrl_currentAccount button.mectrl_signout:hover{background-color:#0ff}.mectrl_currentAccount button.mectrl_signout:active{background-color:#0ff}.mectrl_focus_visible .mectrl_currentAccount a.mectrl_signout:focus{text-decoration:underline}.mectrl_currentAccount a.mectrl_signout:hover{text-decoration:underline}.mectrl_currentAccount a.mectrl_signout:active{text-decoration:underline}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_focus_visible .mectrl_currentAccount button.mectrl_signout:focus{background-color:indigo}.mectrl_currentAccount button.mectrl_signout:hover{background-color:indigo}.mectrl_current
ccount button.mectrl_signout:active{background-color:indigo}.mectrl_focus_visible .mectrl_currentAccount a.mectrl_signout:focus{text-decoration:underline}.mectrl_currentAccount a.mectrl_signout:hover{text-decoration:underline}.mectrl_currentAccount a.mectrl_signout:active{text-decoration:underline}}.mectrl_commands{position:relative}.mectrl_commands .mectrl_link{padding:1px;font-size:13px;margin-right:34px}.mectrl_commands .moreCommands{position:absolute;top:1px;right:0}.mectrl_commands .moreCommands .mectrl_trigger,.mectrl_commands .moreCommands .mectrl_trigger:focus{color:#333;background-color:#fff}.mectrl_commands .moreCommands .mectrl_trigger.expanded,.mectrl_commands .moreCommands .mectrl_trigger:hover{color:inherit;background-color:rgba(0,0,0,.08)}.mectrl_commands .moreCommands .mectrl_trigger:active{color:inherit;background-color:rgba(0,0,0,.12)}.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:focus{color:inherit;background-color:rgba(0,0,0,.08)}.c-uhfh>.theme-dark .c-me .mectrl_
ommands .moreCommands .mectrl_trigger,.c-uhfh>.theme-dark .c-me .mectrl_commands .moreCommands .mectrl_trigger:focus,.mectrl_theme_dark .mectrl_commands .moreCommands .mectrl_trigger,.mectrl_theme_dark .mectrl_commands .moreCommands .mectrl_trigger:focus{color:#fff;background-color:#1a1a1a}.c-uhfh>.theme-dark .c-me .mectrl_commands .moreCommands .mectrl_trigger.expanded,.c-uhfh>.theme-dark .c-me .mectrl_commands .moreCommands .mectrl_trigger:hover,.mectrl_theme_dark .mectrl_commands .moreCommands .mectrl_trigger.expanded,.mectrl_theme_dark .mectrl_commands .moreCommands .mectrl_trigger:hover{color:inherit;background-color:rgba(255,255,255,.16)}.c-uhfh>.theme-dark .c-me .mectrl_commands .moreCommands .mectrl_trigger:active,.mectrl_theme_dark .mectrl_commands .moreCommands .mectrl_trigger:active{color:inherit;background-color:rgba(255,255,255,.24)}.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_commands .moreC
mmands .mectrl_trigger:focus{color:inherit;background-color:rgba(255,255,255,.16)}.mectrl_theme_azure_hclight .mectrl_commands .moreCommands .mectrl_trigger,.mectrl_theme_azure_hclight .mectrl_commands .moreCommands .mectrl_trigger:focus{border:1px solid #000;color:#000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_theme_azure_hclight .mectrl_commands .moreCommands .mectrl_trigger.expanded,.mectrl_theme_azure_hclight .mectrl_commands .moreCommands .mectrl_trigger:hover{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight .mectrl_commands .moreCommands .mectrl_trigger:active{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:focus{-ms-high-contrast-adjust:non
;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcdark .mectrl_commands .moreCommands .mectrl_trigger,.mectrl_theme_azure_hcdark .mectrl_commands .moreCommands .mectrl_trigger:focus{border:1px solid #fff;color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark .mectrl_commands .moreCommands .mectrl_trigger.expanded,.mectrl_theme_azure_hcdark .mectrl_commands .moreCommands .mectrl_trigger:hover{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark .mectrl_commands .moreCommands .mectrl_trigger:active{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:foc
s{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_gray .mectrl_commands .moreCommands .mectrl_trigger,.mectrl_theme_gray .mectrl_commands .moreCommands .mectrl_trigger:focus{color:#fff;background-color:#444}.mectrl_theme_gray .mectrl_commands .moreCommands .mectrl_trigger.expanded,.mectrl_theme_gray .mectrl_commands .moreCommands .mectrl_trigger:hover{color:inherit;background-color:#505050}.mectrl_theme_gray .mectrl_commands .moreCommands .mectrl_trigger:active{color:inherit;background-color:#262626}.mectrl_theme_gray.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:focus{color:inherit;background-color:#505050}.mectrl_theme_off_black .mectrl_commands .moreCommands .mectrl_trigger,.mectrl_theme_off_black .mectrl_commands .moreCommands .mectrl_trigger:focus{color:#fff;background-color:#262626}.mectrl_theme_off_black .mectrl_commands .moreCommands .mectrl_trigger.expanded,.mec
rl_theme_off_black .mectrl_commands .moreCommands .mectrl_trigger:hover{color:inherit;background-color:#505050}.mectrl_theme_off_black .mectrl_commands .moreCommands .mectrl_trigger:active{color:inherit;background-color:#666}.mectrl_theme_off_black.mectrl_focus_visible .mectrl_commands .moreCommands .mectrl_trigger:focus{color:inherit;background-color:#505050}.mectrl_menu{position:relative}.mectrl_menu ul{list-style:none;position:absolute;bottom:0;right:0;z-index:1;opacity:0;visibility:hidden;-webkit-transition:visibility 0s linear 130ms,opacity 130ms ease;transition:visibility 0s linear 130ms,opacity 130ms ease;max-width:260px;min-width:130px;margin:0;padding:0;-webkit-box-shadow:0 3px 6px 0 rgba(0,0,0,.16);box-shadow:0 3px 6px 0 rgba(0,0,0,.16);border:solid 1px #ccc!important}.mectrl_menu ul.expanded{opacity:1;visibility:visible;-webkit-transition-delay:0s;transition-delay:0s}@media screen and (-ms-high-contrast:black-on-white),screen and (-ms-high-contrast:white-on-black){.mectrl_menu ul{border:none!imp
rtant}}.mectrl_menu ul li{display:block;height:36px}.mectrl_menu ul li a,.mectrl_menu ul li button{width:100%;height:100%;display:block;padding:0 10px;line-height:36px;font-size:14px}@media screen and (-ms-high-contrast:black-on-white),screen and (-ms-high-contrast:white-on-black){.mectrl_menu ul li a,.mectrl_menu ul li button{border:solid 1px}}.mectrl_menu.fixed-menu ul{position:fixed}.mectrl_menu ul{color:#333!important;background-color:#fff!important}.mectrl_menu ul a:focus,.mectrl_menu ul button:focus{color:#333!important;background-color:#fff!important}.mectrl_menu ul a:hover,.mectrl_menu ul button:hover{color:inherit!important;background-color:rgba(0,0,0,.08)!important}.mectrl_menu ul a:active,.mectrl_menu ul button:active{color:inherit!important;background-color:rgba(0,0,0,.12)!important}.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_focus_visible .mectrl_menu ul button:focus{color:inherit!important;background-color:rgba(0,0,0,.08)!important}.c-uhfh>.theme-dark .c-me .mectrl_menu ul,.mectrl_t
eme_dark .mectrl_menu ul{color:#fff!important;background-color:#1a1a1a!important}.c-uhfh>.theme-dark .c-me .mectrl_menu ul a:focus,.c-uhfh>.theme-dark .c-me .mectrl_menu ul button:focus,.mectrl_theme_dark .mectrl_menu ul a:focus,.mectrl_theme_dark .mectrl_menu ul button:focus{color:#fff!important;background-color:#1a1a1a!important}.c-uhfh>.theme-dark .c-me .mectrl_menu ul a:hover,.c-uhfh>.theme-dark .c-me .mectrl_menu ul button:hover,.mectrl_theme_dark .mectrl_menu ul a:hover,.mectrl_theme_dark .mectrl_menu ul button:hover{color:inherit!important;background-color:rgba(255,255,255,.16)!important}.c-uhfh>.theme-dark .c-me .mectrl_menu ul a:active,.c-uhfh>.theme-dark .c-me .mectrl_menu ul button:active,.mectrl_theme_dark .mectrl_menu ul a:active,.mectrl_theme_dark .mectrl_menu ul button:active{color:inherit!important;background-color:rgba(255,255,255,.24)!important}.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_menu ul a:focus,.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_menu ul button:focus
.mectrl_theme_dark.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_menu ul button:focus{color:inherit!important;background-color:rgba(255,255,255,.16)!important}.mectrl_theme_azure_hclight .mectrl_menu ul{border:1px solid #000!important;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#fff!important}.mectrl_theme_azure_hclight .mectrl_menu ul a:focus,.mectrl_theme_azure_hclight .mectrl_menu ul button:focus{-ms-high-contrast-adjust:none!important;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple!important}.mectrl_theme_azure_hclight .mectrl_menu ul a:hover,.mectrl_theme_azure_hclight .mectrl_menu ul button:hover{-ms-high-contrast-adjust:none!important;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple!important}.mectrl_theme_azure_hclight .mectrl_menu ul a:a
tive,.mectrl_theme_azure_hclight .mectrl_menu ul button:active{-ms-high-contrast-adjust:none!important;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple!important}.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_menu ul button:focus{-ms-high-contrast-adjust:none!important;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple!important}.mectrl_theme_azure_hcdark .mectrl_menu ul{border:1px solid #000!important;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:#000!important}.mectrl_theme_azure_hcdark .mectrl_menu ul a:focus,.mectrl_theme_azure_hcdark .mectrl_menu ul button:focus{-ms-high-contrast-adjust:none!important;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-co
or:#0ff!important}.mectrl_theme_azure_hcdark .mectrl_menu ul a:hover,.mectrl_theme_azure_hcdark .mectrl_menu ul button:hover{-ms-high-contrast-adjust:none!important;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff!important}.mectrl_theme_azure_hcdark .mectrl_menu ul a:active,.mectrl_theme_azure_hcdark .mectrl_menu ul button:active{-ms-high-contrast-adjust:none!important;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff!important}.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_menu ul button:focus{-ms-high-contrast-adjust:none!important;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff!important}.mectrl_theme_gray .mectrl_menu ul{color:#fff!important;background-color:#444!important}.mectrl_theme_gray .mectrl_menu ul a:foc
s,.mectrl_theme_gray .mectrl_menu ul button:focus{color:#fff!important;background-color:#444!important}.mectrl_theme_gray .mectrl_menu ul a:hover,.mectrl_theme_gray .mectrl_menu ul button:hover{color:inherit!important;background-color:#505050!important}.mectrl_theme_gray .mectrl_menu ul a:active,.mectrl_theme_gray .mectrl_menu ul button:active{color:inherit!important;background-color:#262626!important}.mectrl_theme_gray.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_theme_gray.mectrl_focus_visible .mectrl_menu ul button:focus{color:inherit!important;background-color:#505050!important}.mectrl_theme_off_black .mectrl_menu ul{color:#fff!important;background-color:#262626!important}.mectrl_theme_off_black .mectrl_menu ul a:focus,.mectrl_theme_off_black .mectrl_menu ul button:focus{color:#fff!important;background-color:#262626!important}.mectrl_theme_off_black .mectrl_menu ul a:hover,.mectrl_theme_off_black .mectrl_menu ul button:hover{color:inherit!important;background-color:#505050!important}.mectrl_the
e_off_black .mectrl_menu ul a:active,.mectrl_theme_off_black .mectrl_menu ul button:active{color:inherit!important;background-color:#666!important}.mectrl_theme_off_black.mectrl_focus_visible .mectrl_menu ul a:focus,.mectrl_theme_off_black.mectrl_focus_visible .mectrl_menu ul button:focus{color:inherit!important;background-color:#505050!important}.mectrl_presence{position:absolute;width:20px;height:20px;background-size:contain;border-width:4px;border:solid #fff;border-radius:50%;margin-left:84px;margin-top:84px;z-index:2}.mectrl_presence_header{position:relative;width:12px;height:12px;border-radius:50%;border:solid #fff;background-size:contain;border-width:2px;margin-left:-17px;margin-top:23px}.mectrl_currentAccount .mectrl_accountInfo>*{padding:0}#mectrl_presenceDropdown_trigger{font-size:13px;opacity:.6;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}#mectrl_presenceDropdown_menu button{font-size:12px;opacity:1}.mectrl_presence_indicator_
ontainer{position:absolute}.mectrl_presence_indicator_container div{width:16px;height:16px;border-radius:8px;background-size:cover}.mectrl_presence_string_container{padding-left:8px;margin-left:16px;border-radius:8px}.mectrl_presence_dropdown_glyph{width:16px;height:10px;background-size:contain;margin-left:5px;margin-bottom:1px}#mectrl_presenceDropdown_trigger{color:#231f20;background-color:inherit}#mectrl_presenceDropdown_menu button{color:#000;background-color:inherit}.c-uhfh>.theme-dark .c-me #mectrl_presenceDropdown_trigger,.mectrl_theme_dark #mectrl_presenceDropdown_trigger{color:#fff;background-color:#1a1a1a}.c-uhfh>.theme-dark .c-me #mectrl_presenceDropdown_menu button,.mectrl_theme_dark #mectrl_presenceDropdown_menu button{color:#fff;background-color:#1a1a1a}.mectrl_theme_azure_hclight #mectrl_presenceDropdown_trigger{color:#231f20;background-color:inherit}.mectrl_theme_azure_hclight #mectrl_presenceDropdown_menu button{color:#000;background-color:inherit}.mectrl_theme_azure_hcdark #mectrl_presence
ropdown_trigger{color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark #mectrl_presenceDropdown_menu button{color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_gray #mectrl_presenceDropdown_trigger{color:#fff;background-color:#444}.mectrl_theme_gray #mectrl_presenceDropdown_menu button{color:#fff;background-color:#444}.mectrl_theme_off_black #mectrl_presenceDropdown_trigger{color:#fff;background-color:#262626}.mectrl_theme_off_black #mectrl_presenceDropdown_menu button{color:#fff;background-color:#262626}.mectrl_scrollShadow{background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#fff),to(rgba(255,255,255,0))),-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.44)),color-stop(40%,rgba(0,0,0,.16)),to(rgba(0,0,0,0)));background:linear-gradient(#fff 50%,rgba(255,255,255,0)),linear-gradient(rgba(0,0,0,.44) 0,rgba(0,0,0,.16) 40%,rgba(0,0,0,0) 100%);background-repeat:no-repeat;backgroun
-size:100% 12px,100% 6px;background-attachment:local,scroll}.c-uhfh>.theme-dark .c-me .mectrl_scrollShadow,.mectrl_theme_azure_hcdark .mectrl_scrollShadow,.mectrl_theme_azure_hclight .mectrl_scrollShadow,.mectrl_theme_dark .mectrl_scrollShadow{background:0 0}.mectrl_theme_gray .mectrl_scrollShadow{background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#444),to(rgba(255,255,255,0))),-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.44)),color-stop(40%,rgba(0,0,0,.16)),to(rgba(0,0,0,0)));background:linear-gradient(#444 50%,rgba(255,255,255,0)),linear-gradient(rgba(0,0,0,.44) 0,rgba(0,0,0,.16) 40%,rgba(0,0,0,0) 100%);background-repeat:no-repeat;background-size:100% 12px,100% 6px;background-attachment:local,scroll}.mectrl_theme_off_black .mectrl_scrollShadow{background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,#262626),to(rgba(255,255,255,0))),-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.44)),color-stop(40%,rgba(0,0,0,.16)),to(rgba(
,0,0,0)));background:linear-gradient(#262626 50%,rgba(255,255,255,0)),linear-gradient(rgba(0,0,0,.44) 0,rgba(0,0,0,.16) 40%,rgba(0,0,0,0) 100%);background-repeat:no-repeat;background-size:100% 12px,100% 6px;background-attachment:local,scroll}div.mectrl_accountList_container{overflow:auto;max-height:270px}div.mectrl_accountList_container.signedOut{max-height:330px}ul.mectrl_accountList{list-style:none;margin:0;padding:0}ul.mectrl_accountList .mectrl_profilepic{float:left;margin-left:16px;margin-right:12px;margin-top:10px;margin-bottom:10px;width:40px;height:40px}ul.mectrl_accountList .mectrl_profilepic_initials.mectrl_initials{font-size:16px}div.mectrl_accountList_container{border-top:1px solid rgba(0,0,0,.08)}.c-uhfh>.theme-dark .c-me div.mectrl_accountList_container,.mectrl_theme_dark div.mectrl_accountList_container{border-top:1px solid rgba(255,255,255,.16)}.mectrl_theme_azure_hclight div.mectrl_accountList_container{border-top:1px solid #000}.mectrl_theme_azure_hcdark div.mectrl_accountList_container{b
rder-top:1px solid #fff}.mectrl_theme_gray div.mectrl_accountList_container{border-top:1px solid #505050}.mectrl_theme_off_black div.mectrl_accountList_container{border-top:1px solid #505050}.mectrl_webview .c-uhfh>.theme-dark .c-me div.mectrl_accountList_container,.mectrl_webview div.mectrl_accountList_container,.mectrl_webview.mectrl_theme_azure_hcdark div.mectrl_accountList_container,.mectrl_webview.mectrl_theme_azure_hclight div.mectrl_accountList_container,.mectrl_webview.mectrl_theme_dark div.mectrl_accountList_container{border-top:none}.mectrl_accountItem{height:60px;position:relative}.mectrl_accountItem .primaryAction{width:100%;height:100%;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (-ms-high-contrast:active){.mectrl_accountItem .primaryAction:focus{outline-offset:-3px}}@media screen and (-ms-high-contrast:white-on-black){.mectrl_accountItem .primaryAction:active,.mectrl_accountItem .primary
ction:focus,.mectrl_accountItem .primaryAction:hover{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_accountItem .primaryAction:active,.mectrl_accountItem .primaryAction:focus,.mectrl_accountItem .primaryAction:hover{background-color:indigo}}.mectrl_accountItem .primaryAction .mectrl_accountItemInfo{padding-top:10px;padding-bottom:10px;padding-right:48px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:0;width:0}.mectrl_accountItem .primaryAction:disabled{cursor:auto}.mectrl_accountItem .primaryAction:disabled .mectrl_profilepic:after{content:"";display:block;width:100%;height:100%}.mectrl_accountItem .primaryAction:disabled .mectrl_accountItemInfo :nth-child(2){font-style:italic}.mectrl_accountItem .mectrl_accountActions{position:absolute;top:18px;right:12px}.mectrl_accountItem .primaryAction,.mectrl_accountItem .primaryAction:focus{color:inherit;background-color:rgba(0,0,0,.04)}.mectrl_accountItem .primaryAction.expanded,.mectrl_accountItem:hover .primaryAc
ion{color:inherit;background-color:rgba(0,0,0,.08)}@media screen and (-ms-high-contrast:white-on-black){.mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.mectrl_accountItem .primaryAction:active{color:inherit;background-color:rgba(0,0,0,.12)}@media screen and (-ms-high-contrast:white-on-black){.mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.mectrl_accountItem .primaryAction:disabled .mectrl_accountItemInfo{color:#656565}.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:rgba(0,0,0,.08)}@media screen and (-ms-high-contrast:white-on-black){.mectrl_focus_visible .mectrl_ac
ountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction,.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction:focus,.mectrl_theme_dark .mectrl_accountItem .primaryAction,.mectrl_theme_dark .mectrl_accountItem .primaryAction:focus{color:#ddd;background-color:rgba(255,255,255,.08)}.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction.expanded,.c-uhfh>.theme-dark .c-me .mectrl_accountItem:hover .primaryAction,.mectrl_theme_dark .mectrl_accountItem .primaryAction.expanded,.mectrl_theme_dark .mectrl_accountItem:hover .primaryAction{color:inherit;background-color:rgba(255,255,255,.16)}@media screen and (-ms-high-contrast:white-on-black){.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction.expanded.signIn,.c-uhfh>.theme-dark .c-me .mectrl_accountItem:hover .primaryAction.signIn,.mectrl_theme_dark
.mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_dark .mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction.expanded.signIn,.c-uhfh>.theme-dark .c-me .mectrl_accountItem:hover .primaryAction.signIn,.mectrl_theme_dark .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_dark .mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction:active,.mectrl_theme_dark .mectrl_accountItem .primaryAction:active{color:inherit;background-color:rgba(255,255,255,.24)}@media screen and (-ms-high-contrast:white-on-black){.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction:active.signIn,.mectrl_theme_dark .mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.c-uhfh>.theme-dark .c-me .mectrl_accountItem .primaryAction
active.signIn,.mectrl_theme_dark .mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:rgba(255,255,255,.16)}@media screen and (-ms-high-contrast:white-on-black){.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction,.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:
000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction.expanded,.mectrl_theme_azure_hclight .mectrl_accountItem:hover .primaryAction{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_azure_hclight .mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_azure_hclight .mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:active{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!imp
rtant;background-color:purple}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:disabled{color:maroon!important;border-color:maroon!important;outline-color:maroon!important;fill:maroon!important;background-color:#fff!important}.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:disabled:focus,.mectrl_theme_azure_hclight .mectrl_accountItem .primaryAction:disabled:hover{-ms-high-contrast-adjust:none;color:maroon!important;border-color:maroon!important;outline-color:maroon!important;fill:maroon!important;background-color:#fff!important}.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{-ms-high-contrast-adjust:none;color:#fff!important;border-c
lor:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hclight.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction,.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:focus{-webkit-box-shadow:inset 0 0 0 1px;box-shadow:inset 0 0 0 1px;color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction.expanded,.mectrl_theme_azure_hcdark .mectrl_accountItem:hover .primaryAction{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}@media screen and (-ms-high-contra
t:white-on-black){.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_azure_hcdark .mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_azure_hcdark .mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:active{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:disabled{
olor:#0f0!important;border-color:#0f0!important;outline-color:#0f0!important;fill:#0f0!important;background-color:#000!important}.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:disabled:focus,.mectrl_theme_azure_hcdark .mectrl_accountItem .primaryAction:disabled:hover{-ms-high-contrast-adjust:none;color:#0f0!important;border-color:#0f0!important;outline-color:#0f0!important;fill:#0f0!important;background-color:#000!important}.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.mectrl
theme_gray .mectrl_accountItem .primaryAction,.mectrl_theme_gray .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:#666}.mectrl_theme_gray .mectrl_accountItem .primaryAction.expanded,.mectrl_theme_gray .mectrl_accountItem:hover .primaryAction{color:inherit;background-color:#505050}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_gray .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_gray .mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_gray .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_gray .mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.mectrl_theme_gray .mectrl_accountItem .primaryAction:active{color:inherit;background-color:#262626}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_gray .mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on
white){.mectrl_theme_gray .mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.mectrl_theme_gray.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:#505050}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_gray.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_gray.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.mectrl_theme_off_black .mectrl_accountItem .primaryAction,.mectrl_theme_off_black .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:#363636}.mectrl_theme_off_black .mectrl_accountItem .primaryAction.expanded,.mectrl_theme_off_black .mectrl_accountItem:hover .primaryAction{color:inherit;background-color:#505050}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_off_black .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_off_blac
.mectrl_accountItem:hover .primaryAction.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_off_black .mectrl_accountItem .primaryAction.expanded.signIn,.mectrl_theme_off_black .mectrl_accountItem:hover .primaryAction.signIn{background-color:indigo}}.mectrl_theme_off_black .mectrl_accountItem .primaryAction:active{color:inherit;background-color:#666}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_off_black .mectrl_accountItem .primaryAction:active.signIn{background-color:#0ff}}@media screen and (-ms-high-contrast:black-on-white){.mectrl_theme_off_black .mectrl_accountItem .primaryAction:active.signIn{background-color:indigo}}.mectrl_theme_off_black.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{color:inherit;background-color:#505050}@media screen and (-ms-high-contrast:white-on-black){.mectrl_theme_off_black.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:#0ff}}@media screen and (-ms-high-contras
:black-on-white){.mectrl_theme_off_black.mectrl_focus_visible .mectrl_accountItem .primaryAction:focus{background-color:indigo}}.mectrl_accountActions .mectrl_trigger{display:block;width:100%;height:100%;cursor:pointer}.mectrl_accountActions .mectrl_trigger[disabled]{cursor:default}.mectrl_accountActions .mectrl_trigger,.mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit}.mectrl_accountActions .mectrl_trigger.expanded,.mectrl_accountActions .mectrl_trigger:hover{background-color:#fff}.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{background-color:#fff}.c-uhfh>.theme-dark .c-me .mectrl_accountActions .mectrl_trigger,.c-uhfh>.theme-dark .c-me .mectrl_accountActions .mectrl_trigger:focus,.mectrl_theme_dark .mectrl_accountActions .mectrl_trigger,.mectrl_theme_dark .mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit}.c-uhfh>.theme-dark .c-me .mectrl_accountActions .mectrl_trigger.expanded,.c-uhfh>.theme-dark .c-me .mectrl_accoun
Actions .mectrl_trigger:hover,.mectrl_theme_dark .mectrl_accountActions .mectrl_trigger.expanded,.mectrl_theme_dark .mectrl_accountActions .mectrl_trigger:hover{background-color:rgba(255,255,255,.48)}.c-uhfh>.theme-dark .c-me.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus,.mectrl_theme_dark.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{background-color:rgba(255,255,255,.48)}.mectrl_theme_azure_hclight .mectrl_accountActions .mectrl_trigger,.mectrl_theme_azure_hclight .mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit;border:1px solid #000;color:#000;border-color:#000;outline-color:#000;fill:#000;background-color:#fff}.mectrl_theme_azure_hclight .mectrl_accountActions .mectrl_trigger.expanded,.mectrl_theme_azure_hclight .mectrl_accountActions .mectrl_trigger:hover{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcl
ght.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{-ms-high-contrast-adjust:none;color:#fff!important;border-color:#fff!important;outline-color:#fff!important;fill:#fff!important;background-color:purple}.mectrl_theme_azure_hcdark .mectrl_accountActions .mectrl_trigger,.mectrl_theme_azure_hcdark .mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit;border:1px solid #fff;color:#fff;border-color:#fff;outline-color:#fff;fill:#fff;background-color:#000}.mectrl_theme_azure_hcdark .mectrl_accountActions .mectrl_trigger.expanded,.mectrl_theme_azure_hcdark .mectrl_accountActions .mectrl_trigger:hover{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;background-color:#0ff}.mectrl_theme_azure_hcdark.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{-ms-high-contrast-adjust:none;color:#000!important;border-color:#000!important;outline-color:#000!important;fill:#000!important;ba
kground-color:#0ff}.mectrl_theme_gray .mectrl_accountActions .mectrl_trigger,.mectrl_theme_gray .mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit}.mectrl_theme_gray .mectrl_accountActions .mectrl_trigger.expanded,.mectrl_theme_gray .mectrl_accountActions .mectrl_trigger:hover{background-color:rgba(68,68,68,.48)}.mectrl_theme_gray.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{background-color:rgba(68,68,68,.48)}.mectrl_theme_off_black .mectrl_accountActions .mectrl_trigger,.mectrl_theme_off_black .mectrl_accountActions .mectrl_trigger:focus{color:inherit;background-color:inherit}.mectrl_theme_off_black .mectrl_accountActions .mectrl_trigger.expanded,.mectrl_theme_off_black .mectrl_accountActions .mectrl_trigger:hover{background-color:rgba(38,38,38,.48)}.mectrl_theme_off_black.mectrl_focus_visible .mectrl_accountActions .mectrl_trigger:focus{background-color:rgba(38,38,38,.48)}.mectrl_accountItemInfo{font-size:12px}.mectrl_accountItemInfo a,.mectrl_accoun
ItemInfo div{font-size:12px}.mectrl_accountItemInfo .signedIn{font-weight:700}h1.mectrl_signedOutAccountListHeader{font-size:15px;height:48px;line-height:48px;text-align:center;font-weight:700;margin-bottom:0}</style><script async="" type="text/javascript" charset="UTF-8" src="https://js.monitor.azure.com/scripts/c/ms.shared.analytics-3.1.11.gbl.min.js" crossorigin="anonymous"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"><div class="body-115" style="width: 100%; height: inherit;"><div class="css-116"><div class="appShell-98" id="app-shell" style="--app-sidebar-width:var(--app-sidebar-width-collapsed);"><header class="appBarContainer-97" role="banner"><div style="align-content: stretch; background-color: rgb(0, 69, 120); display: flex; height: 48px;"><img alt="" class="msft-logo__img" height="16" src="/update-guide/static/media/ms-logo.8d83e36b34d8a2ef413fcc5f72f9928e.svg" width="16"><span class="msft-logo__label css-162">Microsoft</span><div style=
flex-grow: 8; flex-shrink: 1; min-width: 10em; max-width: 92%;"><div><div style="position: relative;"><div data-automation-id="visibleContent" style=""><div class="ms-FocusZone css-137 ms-CommandBar root-163" role="menubar" data-focuszone-id="FocusZone19"><div role="group" aria-label="Contextual Menu" class="ms-OverflowSet ms-CommandBar-primaryCommand primarySet-166"><div class="ms-OverflowSet-item item-167" role="none"><a role="menuitem" href="/" name="MSRC" target="_blank" class="ms-Button ms-Button--commandBar ms-CommandBarItem-link root-169" aria-label="Home" data-is-focusable="true" tabindex="0"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><span class="ms-Button-textContainer textContainer-171"><span class="ms-Button-label label-173" id="id__20">MSRC</span></span></span></a></div><div class="ms-OverflowSet-item item-167" role="none"><button type="button" role="menuitem" name="セキュリティ更新プログラム" class="ms-Button ms-Button--commandB
r ms-CommandBarItem-link root-169" data-is-focusable="true" tabindex="-1"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><span class="ms-Button-textContainer textContainer-171"><span class="ms-Button-label label-176" id="id__23">セキュリティ更新プログラム</span></span></span></button></div><div class="ms-OverflowSet-item item-167" role="none"><button type="button" role="menuitem" title="Acknowledgements title" class="ms-Button ms-Button--commandBar ms-CommandBarItem-link root-169" data-is-focusable="true" tabindex="-1"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><i data-icon-name="Ribbon" aria-hidden="true" class="ms-Icon root-89 css-178 ms-Button-icon icon-172" style="font-family: FabricMDL2Icons-3;"></i><span class="ms-Button-textContainer textContainer-171"><span class="ms-Button-label label-176" id="id__26">謝辞</span></span></span></button></div><div class="ms-OverflowSet-item item-167"
role="none"><button type="button" role="menuitem" title="Developer title" class="ms-Button ms-Button--commandBar ms-CommandBarItem-link root-169" data-is-focusable="true" tabindex="-1"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><i data-icon-name="Code" aria-hidden="true" class="ms-Icon root-89 css-180 ms-Button-icon icon-172" style="font-family: FabricMDL2Icons-2;"></i><span class="ms-Button-textContainer textContainer-171"><span class="ms-Button-label label-176" id="id__29">開発者</span></span></span></button></div></div><div role="group" aria-label="Utility Menu" class="ms-OverflowSet ms-CommandBar-secondaryCommand secondarySet-181"><div class="ms-OverflowSet-item item-167" role="none"></div><div class="ms-OverflowSet-item item-167" role="none"><a role="menuitem" target="_blank" title="フィードバックとサポート" href="https://aka.ms/msrc-feedback-sug" class="ms-Button ms-Button--commandBar ms-CommandBarItem-link root-169" data-is-focusa
le="true" tabindex="-1"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><i data-icon-name="Feedback" aria-hidden="true" class="ms-Icon root-89 css-183 ms-Button-icon icon-172" style="font-family: FabricMDL2Icons-5;"></i></span></a></div><div class="ms-OverflowSet-item item-167" role="none"><button type="button" role="menuitem" title="Settings" class="ms-Button ms-Button--commandBar ms-Button--hasMenu ms-CommandBarItem-link root-169" data-is-focusable="true" aria-expanded="false" aria-haspopup="true" tabindex="-1"><span class="ms-Button-flexContainer flexContainer-170" data-automationid="splitbuttonprimary"><i data-icon-name="Settings" aria-hidden="true" class="ms-Icon root-89 css-140 ms-Button-icon icon-172" style="font-family: FabricMDL2Icons;"></i><i data-icon-name="ChevronDown" aria-hidden="true" class="ms-Icon root-89 css-140 ms-Button-menuIcon menuIcon-174" style="font-family: FabricMDL2Icons;"></i></span></button></div></div></div></div></div></
iv></div><div style="align-items: stretch; display: flex;"><div class="hideAccount" style="min-width: 2em;"><div id="meControl" style="width: 100%; height: 100%;"><div class="mectrl_root mectrl_theme_dark mectrl_theme_dark_header"><button id="mectrl_main_trigger" class="mectrl_resetStyle mectrl_trigger" aria-label="Sign in to your account" type="button"><span class="mectrl_screen_reader_text">Sign in to your account</span><div class="mectrl_topHeader mectrl_theme_dark" aria-hidden="true" role="presentation"><div id="mectrl_headerPicture" class="mectrl_profilepic mectrl_glyph mectrl_signIn_circle_glyph" aria-hidden="true" role="presentation"></div></div></button></div></div></div></div></div></header><div class="mainContainer-99"><div><div style="position: relative;"><div data-automation-id="visibleContent" style=""><div class="ms-Breadcrumb root-129" role="navigation"><div class="ms-FocusZone css-137" data-focuszone-id="FocusZone6"><ol class="ms-Breadcrumb-list list-130"><li class="ms-Breadcrumb-listItem l
stItem-131"><a href="https://www.microsoft.com/msrc" class="ms-Link ms-Breadcrumb-itemLink itemLink-149" tabindex="0"><div class="ms-TooltipHost root-138" role="none">MSRC<div hidden="" id="tooltip7" style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; border: 0px; overflow: hidden; white-space: nowrap;">MSRC</div></div></a><i data-icon-name="ChevronRight" aria-hidden="true" class="ms-Breadcrumb-chevron chevron-141"></i></li><li class="ms-Breadcrumb-listItem listItem-131"><span class="ms-Breadcrumb-item item-136"><div class="ms-TooltipHost root-138" role="none">Customer Guidance<div hidden="" id="tooltip8" style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; border: 0px; overflow: hidden; white-space: nowrap;">Customer Guidance</div></div></span><i data-icon-name="ChevronRight" aria-hidden="true" class="ms-Breadcrumb-chevron chevron-141"></i></li><li class="ms-Breadcrumb-listItem listItem-131"><button type="button" class="ms-Link ms-Breadcrumb-ite
Link itemLink-150" tabindex="-1"><div class="ms-TooltipHost root-138" role="none">Security Update Guide<div hidden="" id="tooltip9" style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; border: 0px; overflow: hidden; white-space: nowrap;">Security Update Guide</div></div></button><i data-icon-name="ChevronRight" aria-hidden="true" class="ms-Breadcrumb-chevron chevron-141"></i></li><li class="ms-Breadcrumb-listItem listItem-131"><button type="button" class="ms-Link ms-Breadcrumb-itemLink itemLink-150" tabindex="-1"><div class="ms-TooltipHost root-138" role="none">リリース ノート<div hidden="" id="tooltip10" style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; border: 0px; overflow: hidden; white-space: nowrap;">リリース ノート</div></div></button><i data-icon-name="ChevronRight" aria-hidden="true" class="ms-Breadcrumb-chevron chevron-141"></i></li><li class="ms-Breadcrumb-listItem listItem-131"><button type="button" class="ms-Link ms-B
eadcrumb-itemLink itemLink-150" tabindex="-1"><div class="ms-TooltipHost root-138" role="none">2022 Jun<div hidden="" id="tooltip11" style="position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; border: 0px; overflow: hidden; white-space: nowrap;">2022 Jun</div></div></button></li></ol></div></div></div></div></div><div id="cookie-consent-banner"></div><div class="ms-MessageBar ms-MessageBar-multiline root-151"><div class="ms-MessageBar-content content-152"><div class="ms-MessageBar-icon iconContainer-153" aria-hidden="true"><i data-icon-name="Info" aria-hidden="true" class="icon-160"></i></div><div class="ms-MessageBar-text text-155" id="MessageBar12" role="status" aria-live="polite"><span class="ms-MessageBar-innerText innerText-156" title="Preview"><span>Welcome to the new and improved Security Update Guide! We’d love your feedback. <a href="https://aka.ms/msrc-feedback-sug" class="ms-Link root-186">Please click here to share your thoughts</a> or email us at <a href="mailto:msrc_e
g_support@microsoft.com?subject=[Update Guide] Support Request" class="ms-Link root-186">msrc_eng_support@microsoft.com</a>. Thank you!</span></span></div></div></div><div style="width: 100%; display: flex;"><div role="presentation" tabindex="-1" id="objectObject" data-testid="objectObject" class="ms-Stack ms-Card css-188" style="padding: 1em 1.25em;"><div class="ms-Stack ms-CardSection css-190"><span class="ms-fontWeight-bold css-191"><h1>2022 年 6 月のセキュリティ更新プログラ ム</h1></span><div class="ms-Shimmer-container root-118"><div class="ms-Shimmer-dataWrapper dataWrapper-193"><div class="css-194"><h2>今月の更新プログラム</h2>
<p>今回のリリースは、次の製品、機能、およびロールのセキュリティ更新プログラムで構成されています。</p>
<ul>
<li>.NET と Visual Studio</li>
<li>Azure OMI</li>
<li>Azure リアルタイム オペレーティング システム</li>
<li>Azure Service Fabric コンテナー</li>
<li>Intel</li>
<li>Microsoft Edge (Chromium ベース)</li>
<li>Microsoft Office</li>
<li>Microsoft Office Excel</li>
<li>Microsoft Office SharePoint</li>
<li>Microsoft Windows ALPC</li>
<li>Microsoft Windows Codecs Library</li>
<li>リモート ボリューム シャドウ コピー サービス (RVSS)</li>
<li>ロール: Windows Hyper-V</li>
<li>SQL Server</li>
<li>Windows Ancillary Function Driver for WinSock</li>
<li>Windows App Store</li>
<li>Windows Autopilot</li>
<li>Windows Container Isolation FS Filter ドライバー</li>
<li>Windows Container Manager サービス</li>
<li>Windows Defender</li>
<li>Windows Encrypting File System (EFS)</li>
<li>Windows File History Service</li>
<li>Windows インストーラー</li>
<li>Windows iSCSI</li>
<li>Windows Kerberos</li>
<li>Windows カーネル</li>
<li>Windows LDAP - ライトウェイト ディレクトリ アクセス プロトコル</li>
<li>Windows Local Security Authority Subsystem Service</li>
<li>Windows Media</li>
<li>Windows Network Address Translation (NAT)</li>
<li>Windows ネットワーク ファイル システム</li>
<li>Windows PowerShell</li>
<li>Windows SMB</li>
</ul>
<p>これらのセキュリティ更新プログラムについて、次の情報に注意してください。</p>
<h2>セキュリティ更新プログラム ガイド ブログの投稿</h2>
<table>
<thead>
<tr>
<th>日付</th>
<th>ブログの投稿</th>
</tr>
</thead>
<tbody>
<tr>
<td>2022 年 1 月 12 日</td>
<td><a href="https://aka.ms/SUGNotificationProfile">近日公開: New Security Update Guide Notification System (英語情報)</a></td>
</tr>
<tr>
<td>2021 年 2 月 10 日</td>
<td><a href="https://msrc-blog.microsoft.com/2021/02/09/continuing-to-listen-good-news-about-the-security-update-guide-api/">Continuing to Listen: Good News about the Security Update Guide API (英語情報)</a></td>
</tr>
<tr>
<td>2021 年 1 月 14 日</td>
<td><a href="https://msrc-blog.microsoft.com/2021/01/13/security-update-guide-supports-cves-assigned-by-industry-partners/">Security Update Guide Supports CVEs Assigned by Industry Partners (英語情報)</a></td>
</tr>
<tr>
<td>2020 年 12 月 9 日</td>
<td><a href="https://msrc-blog.microsoft.com/2020/12/08/security-update-guide-lets-keep-the-conversation-going/">Security Update Guide: Let’s keep the conversation going (英語情報)</a></td>
</tr>
<tr>
<td>2020 年 11 月 10 日</td>
<td><a href="https://msrc-blog.microsoft.com/2020/11/09/vulnerability-descriptions-in-the-new-version-of-the-security-update-guide/">Vulnerability Descriptions in the New Version of the Security Update Guide (英語情報)</a></td>
</tr>
</tbody>
</table>
<h2>関連情報</h2>
<ul>
<li>新しいホットパッチ機能が一般提供されました。詳細については、<a href="https://docs.microsoft.com/ja-jp/azure/automanage/automanage-hotpatch?WT.mc_id=modinfra-18529-thmaure">Windows Server Azure エディション仮想マシン (VM) のホットパッチ 機能</a>に関するページを参照してください。</li>
<li>Windows 10 の更新プログラムは累積的です。今月のセキュリティ リリースには、セキュリティ以外の更新プログラムに加えて、Windows 10 に影響する脆弱性のすべてのセキュリティ修正プログラムが含まれています。これらの更新プログラムは、<a href="https://www.catalog.update.microsoft.com/Home.aspx">Microsoft Update カタログ</a>から入手できます。Windows 10 オペレーティング システムのライフサイクルとサポート期間については、「<a href="https://docs.microsoft.com/ja-jp/lifecycle/faq/windows">Windows ライフサイクルのファクト シート</a>」を参照してください。</li>
<li>マイクロソフトは、Windows のリリース ノートの改善に取り組んでいます。詳細については、「<a href="https://techcommunity.microsoft.com/t5/windows-it-pro-blog/what-s-next-for-windows-release-notes/ba-p/1754399">What's next for Windows release notes</a>」(英語情報) を参照してください。</li>
<li>各オペレーティング システムの最新のサービス スタック更新プログラムの一覧については、<a href="https://msrc.microsoft.com/update-guide/ja-jp/vulnerability/ADV990001">ADV990001</a> を参照してください。この一覧は、新しいサービス スタック更 新プログラムがリリースされるたびに更新されます。最新のサービス スタック更新プログラムをインストールすることが重要です。</li>
<li>脆弱性についてのセキュリティの変更のほか、更新プログラムにはセキュリティ関連機能を改善する多層防御の変更が含まれています。</li>
<li>Windows 7、Windows Server 2008 R2、または Windows Server 2008 を実行している場合、セキュリティ更新プログラムを引き続き受信するには、拡張セキュリティ更新プログラムを購入する必要があります。詳細については、<a href="https://support.microsoft.com/ja-jp/topic/procedure-to-continue-receiving-security-updates-after-extended-support-ends-on-january-14-2020-48c59204-fe67-3f42-84fc-c3c3145ff28e">4522133</a> を参照してください。</li>
</ul>
<h2>FAQ、緩和策、回避策</h2>
<p>次の CVE には、FAQ、緩和策、または回避策があります。[脆弱性] タブから詳細を確認するには、<strong>[列の編集]</strong> パネルで <strong>[FAQ]</strong>、<strong>[Mitigations (軽減策)]</strong>、<strong>[Workarounds (回避策)]</strong> の各列を選択します。</p>
<ul>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-2007">CVE-2022-2007</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-2008">CVE-2022-2008</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-2010">CVE-2022-2010</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-2011">CVE-2022-2011</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-21123">CVE-2022-21123</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-21125">CVE-2022-21125</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-21127">CVE-2022-21127</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-21166">CVE-2022-21166</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-22018">CVE-2022-22018</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-22021">CVE-2022-22021</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-29111">CVE-2022-29111</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-29119">CVE-2022-29119</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-29143">CVE-2022-29143</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-29149">CVE-2022-29149</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30136">CVE-2022-30136</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30137">CVE-2022-30137</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30139">CVE-2022-30139</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30140">CVE-2022-30140</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30141">CVE-2022-30141</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30142">CVE-2022-30142</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30143">CVE-2022-30143</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30145">CVE-2022-30145</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30146">CVE-2022-30146</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30148">CVE-2022-30148</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30149">CVE-2022-30149</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30150">CVE-2022-30150</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30151">CVE-2022-30151</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30153">CVE-2022-30153</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30154">CVE-2022-30154</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30155">CVE-2022-30155</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30157">CVE-2022-30157</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30158">CVE-2022-30158</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30159">CVE-2022-30159</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30161">CVE-2022-30161</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30162">CVE-2022-30162</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30163">CVE-2022-30163</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30164">CVE-2022-30164</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30165">CVE-2022-30165</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30167">CVE-2022-30167</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30168">CVE-2022-30168</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30171">CVE-2022-30171</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30172">CVE-2022-30172</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30173">CVE-2022-30173</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30174">CVE-2022-30174</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30177">CVE-2022-30177</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30178">CVE-2022-30178</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30179">CVE-2022-30179</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30180">CVE-2022-30180</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30184">CVE-2022-30184</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30188">CVE-2022-30188</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30189">CVE-2022-30189</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-30193">CVE-2022-30193</a></li>
<li><a href="https://msrc.microsoft.com/update-guide/ja-jp/security-guidance/advisory/CVE-2022-32230">CVE-2022-32230</a></li>
</ul>
<h2>既知の問題</h2>
<p>[展開] タブから詳細を確認するには、<strong>[列の編集]</strong> パネルで <strong>[Known Issues (既知の問題)]</strong> を選択します。</p>
<p>Windows の既知の問題の詳細については、<a href="https://docs.microsoft.com/ja-jp/windows/release-information/windows-message-center">Windows メッセージ センター</a>を参照してください (現在サポートされているバージョンの Windows へのリンク は左ウィンドウにあります)。</p>
<table>
<thead>
<tr>
<th>サポート技術情報</th>
<th>対象製品</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5002219">5002219</a></td>
<td>SharePoint Foundation 2013</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014692">5014692</a></td>
<td>Windows Server 2019</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014697">5014697</a></td>
<td>Windows 11</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014699">5014699</a></td>
<td>Windows 10 Version 20H2、Windows Server Version 20H2、Windows 10 Version 21H1、Windows 10 Version 21H2</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014738">5014738</a></td>
<td>Windows 8.1、Windows Server 2012 R2 (マンスリー ロールアップ)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014741">5014741</a></td>
<td>Windows Server 2012 (セキュリティのみの更新プログラム)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014742">5014742</a></td>
<td>Windows 7、Windows Server 2008 R2 (セキュリティのみの更新プログラム)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014743">5014743</a></td>
<td>Windows Server 2008 (セキュリティのみの更新プログラム)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014746">5014746</a></td>
<td>Windows 8.1、Windows Server 2012 R2 (セキュリティのみの更新プログラム)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014747">5014747</a></td>
<td>Windows 8.1、Windows Server 2012 R2 (マンスリー ロールアップ)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014748">5014748</a></td>
<td>Windows 7、Windows Server 2008 R2 (マンスリー ロールアップ)</td>
</tr>
<tr>
<td><a href="https://support.microsoft.com/ja-jp/help/5014752">5014752</a></td>
<td>Windows Server 2008 (マンスリー ロールアップ)</td>
</tr>
</tbody>
</table>
</div><p class="css-195">リリース日: 2022/07/09</p></div></div></div></div></div></div></div></div></div></div><script nomodule="">String.prototype.endsWith||(String.prototype.endsWith=function(t,n){return(void 0===n||n>this.length)&&(n=this.length),this.substring(n-t.length,n)===t})</script><script async="" src="https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"></script><script src="https://amcdn.msftauth.net/me?partner=MSMSRC"></script></body></html>
PS C:\Users\daichi>
この出力結果なら欲しいデータが含まれているので、解析して必要となるデータを抽出し、処理を行うという自動化が可能になる。
ブラウザのヘッドレスモードを使う
要は、Microsoft EdgeのようなWebブラウザが実行しているのと同じように、netcat.ps1でJavaScriptを解釈して実行すればよい。その方法はいくつかあるが、手っ取り早いのはWebブラウザの機能をそのまま使うことだ。
最近主流のWebブラウザは「ヘッドレスモード」と呼ばれる機能を実装しており、「ブラウザウインドウを起動することなくコンテンツを取得する」といった操作をさせることができる。本来、これはWebアプリケーション開発やデバッグを目的としたものなのだが、Webコンテンツを取得するといった目的でも使用できるのだ。
ほかの方法でJavaScriptを実行するようにしても良いのだが、ヘッドレスモードを使う方法が最も強力で確実だと思う。netcat.ps1にWebブラウザのヘッドレスモードを利用する機能を追加して、より汎用的に利用できるPowerShellスクリプトにしていこう。