-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRE_ Tableau and javascript.html
More file actions
213 lines (191 loc) · 528 KB
/
RE_ Tableau and javascript.html
File metadata and controls
213 lines (191 loc) · 528 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<!-- saved from url=(0044)https://outlook.live.com/owa/projection.aspx -->
<html dir="ltr"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=10">
<meta http-equiv="pragma" content="no-cache">
<meta name="referrer" content="never">
<script>
function addStyleToDom(styleHref) {
var head = document.getElementsByTagName('head')[0];
var linkElement = null;
if (window.document.createStyleSheet) {
var link = window.document.createStyleSheet(styleHref);
linkElement = link.owningElement;
}
else {
linkElement = window.document.createElement('link');
linkElement.rel = 'stylesheet';
linkElement.type = 'text/css';
linkElement.href = styleHref;
head.appendChild(linkElement);
}
return linkElement;
}
function loadStyle(cssPath, callback, owaServerPath, cdnPath) {
var linkElement = addStyleToDom(cssPath);
// If browser supports css link element onload event, use that to callback when the stylesheet has loaded.
// Otherwise, wait 50 ms and hope for the best (this is the same logic as StyleLoader.LoadStyle)
if ('onload' in linkElement) {
var styleLoadedCallback = function () {
if ((!linkElement.readyState || (linkElement.readyState && (linkElement.readyState === 'loaded' || linkElement.readyState === 'complete')))) {
linkElement.onload = null;
linkElement.onreadystatechange = null;
linkElement.onerror = null;
callback();
}
};
var retryWithFallback = function() {
if (cssPath && owaServerPath && cdnPath && cssPath.startsWith(owaServerPath)) {
// Replace current path with fallback endpoint and try again
cssPath = cdnPath + cssPath.substr(owaServerPath.length);
}
// Retry without passing a fallback endpoint, so that we just retry once
loadStyle(cssPath, callback);
};
linkElement.onload = styleLoadedCallback;
linkElement.onreadystatechange = styleLoadedCallback;
// Retry with fallback on error when cdn path is specified. Otherwise just finish this resource
linkElement.onerror = cdnPath ? retryWithFallback : styleLoadedCallback;
}
else {
window.setTimeout(callback, 50)
}
}
function loadStyleSheets(styleSheets, owaServerPath, cdnPath) {
var count = 0;
onStyleLoaded = function () {
count++;
if (count === styleSheets.length) {
// Show the contents after all style sheets have loaded
window.document.body.style.display = "block";
}
};
for (var i = 0; i < styleSheets.length; i++) {
loadStyle(styleSheets[i], onStyleLoaded, owaServerPath, cdnPath);
}
}
function InlineImageLoader() {
}
InlineImageLoader.GetLoader = function InlineImageLoader$GetLoader() {
if (window.opener != null) {
return window.opener.InlineImageLoader.GetLoader();
}
}
window.onload = function () {
window.opener.popOutProjectionManager.projectionReady(self);
}
window.onbeforeunload = function () {
return window.opener.popOutProjectionManager.onBeforeProjectionUnload(self);
}
window.onunload = function () {
window.opener.popOutProjectionManager.onProjectionUnload(self);
}
// Cache the ids of Extensibility app iframes, indexed by Office Developer Platform conversationId
var appFrames = {};
// Listen for messages to allow Extensibility apps to communicate with the main OWA window
messageListener = function(event) {
var eventData = JSON.parse(event.data);
var odpConversationId = eventData._conversationId; // id used by the Office Developer Platform
if (!odpConversationId) {
return;
}
if (event.source === window.opener) {
// Send this message to the app iframe
var appFrameId = appFrames[odpConversationId];
if(appFrameId) {
var appFrame = document.getElementById(appFrameId);
if (appFrame) {
appFrame.contentWindow.postMessage(event.data, appFrame.src);
}
}
}
else
{
// Send this message to the main OWA window
if (!appFrames[odpConversationId]) {
// Determine which iframe corresponds to the sender
var documentFrames = document.getElementsByTagName("iframe");
for (i = 0; i < documentFrames.length; i++) {
if (documentFrames[i].contentWindow === event.source)
{
// Save the iframe id for this conversation id
appFrames[odpConversationId] = documentFrames[i].id;
break;
}
}
}
window.opener.postMessage(event.data, window.opener.location.href);
}
}
if (window.addEventListener) {
// Listen for messages to and from Extensibility apps using postMessage
window.addEventListener("message", messageListener, false);
}
</script>
<style>
.popoutBody
{
margin: 0;
height: 100%;
width: 100%;
display: none;
}
</style>
<style>.customScrollBar::-webkit-scrollbar{height:18px;width:18px}.customScrollBar::-webkit-scrollbar:disabled{display:none}.customScrollBar::-webkit-scrollbar-button{background-color:#fff;background-repeat:no-repeat;cursor:pointer}.customScrollBar::-webkit-scrollbar-button:horizontal:increment,.customScrollBar::-webkit-scrollbar-button:horizontal:decrement,.customScrollBar::-webkit-scrollbar-button:horizontal:increment:hover,.customScrollBar::-webkit-scrollbar-button:horizontal:decrement:hover,.customScrollBar::-webkit-scrollbar-button:vertical:increment,.customScrollBar::-webkit-scrollbar-button:vertical:decrement,.customScrollBar::-webkit-scrollbar-button:vertical:increment:hover,.customScrollBar::-webkit-scrollbar-button:vertical:decrement:hover{background-position:center;height:18px;width:18px}.customScrollBarLight::-webkit-scrollbar-button{display:none}.customScrollBar::-webkit-scrollbar-track{background-color:#fff}.customScrollBarLight::-webkit-scrollbar-track{background-color:#0072c6}.customScrollBar::-webkit-scrollbar-thumb{border-radius:9px;border:solid 6px #fff;background-color:#c8c8c8}.customScrollBarLight::-webkit-scrollbar-thumb{border-color:#0072c6;background-color:#95b1c1}.customScrollBar::-webkit-scrollbar-thumb:vertical{min-height:50px}.customScrollBar::-webkit-scrollbar-thumb:horizontal{min-width:50px}.customScrollBar::-webkit-scrollbar-thumb:hover{border-radius:9px;border:solid 6px #fff;background-color:#98a3a6}.customScrollBar::-webkit-scrollbar-corner{background-color:#fff}.nativeScrollInertia{-webkit-overflow-scrolling:touch}.csimg{display:inline-block;overflow:hidden}button::-moz-focus-inner{border-width:0;padding:0}.textbox{border-width:1px;border-style:solid;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;-webkit-appearance:none;height:30px;padding:0 5px}.tnarrow .textbox,.twide .textbox{font-size:12px;background-color:#fff;height:14px;padding:3px 5px}.textbox::-webkit-input-placeholder{color:#a6a6a6}.textbox:-moz-placeholder{color:#a6a6a6}.textbox::-moz-placeholder{color:#a6a6a6}.textbox:-ms-input-placeholder{color:#a6a6a6}.textarea{padding:10px}.textarea:hover{background-color:transparent;border-color:transparent}.o365button{background:transparent;border-width:0;padding:0;cursor:pointer!important;font-size:14px}.o365button:disabled,label.o365button[disabled=true]{cursor:default!important}.o365buttonOutlined{padding-right:11px;padding-left:11px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-width:1px;border-style:solid}.o365buttonOutlined .o365buttonLabel{display:inline-block}.o365buttonOutlined{height:30px}.twide .o365buttonOutlined,.tnarrow .o365buttonOutlined{height:22px}.o365buttonOutlined .o365buttonLabel{height:22px}.checkbox{border-style:none;cursor:pointer;vertical-align:middle}.popupShadow{box-shadow:0 0 20px rgba(0,0,0,.4);border:1px solid #eaeaea}.contextMenuDropShadow{box-shadow:0 0 7px rgba(0,0,0,.4);border:1px solid #eaeaea}.modalBackground{background-color:#fff;height:100%;width:100%;opacity:.65;filter:Alpha(opacity=65)}.clearModalBackground{background-color:#fff;opacity:0;filter:Alpha(opacity=0);height:100%;width:100%}.contextMenuPopup{background-color:#fff}.removeFocusOutline *:focus{outline:none}.addFocusOutline button:focus{outline:dotted 1px}.addFocusRingOutline button:focus{outline:auto 5px -webkit-focus-ring-color}.border-color-transparent{border-color:transparent}.vResize,.hResize{z-index:1000}.hResize,.hResizeCursor *{cursor:row-resize!important}.vResize,.vResizeCursor *{cursor:col-resize!important}.vResizing,.hResizing{filter:alpha(opacity=60);opacity:.6;-moz-opacity:.6;border:solid 1px #666}.vResizing{border-width:0 1px}.hResizing{border-width:1px 0}</style>
<style></style>
<style>@font-face{font-family:"wf_segoe-ui_light";
src:local("Segoe UI Light"),local("Segoe WP Light"),url('prem/fonts/segoeui-light.eot?#iefix') format('embedded-opentype'),url('prem/fonts/segoeui-light.woff') format('woff'),url('prem/fonts/segoeui-light.ttf') format('truetype')}
@font-face{font-family:"wf_segoe-ui_normal";
src:local("Segoe UI"),local("Segoe WP"),url('prem/fonts/segoeui-regular.eot?#iefix') format('embedded-opentype'),url('prem/fonts/segoeui-regular.woff') format('woff'),url('prem/fonts/segoeui-regular.ttf') format('truetype')}
@font-face{font-family:"wf_segoe-ui_semibold";
font-weight:bold;
src:local("Segoe UI Semibold"),local("Segoe WP Semibold"),url('prem/fonts/segoeui-semibold.eot?#iefix') format('embedded-opentype'),url('prem/fonts/segoeui-semibold.woff') format('woff'),url('prem/fonts/segoeui-semibold.ttf') format('truetype')}
@font-face{font-family:"wf_segoe-ui_semilight";
src:local("Segoe UI Semilight"),local("Segoe WP Semilight"),url('prem/fonts/segoeui-semilight.eot?#iefix') format('embedded-opentype'),url('prem/fonts/segoeui-semilight.woff') format('woff'),url('prem/fonts/segoeui-semilight.ttf') format('truetype')}
.ms-font-su{color:#333;font-family:'wf_segoe-ui_semilight','Segoe UI Semilight','Segoe WP Semilight','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:42px;font-weight:normal}.ms-font-xxl{color:#333;font-family:'wf_segoe-ui_light','Segoe UI Light','Segoe WP Light','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:28px;font-weight:normal}.touch .ms-font-xxl{font-size:30px}.ms-font-xl{color:#333;font-family:'wf_segoe-ui_light','Segoe UI Light','Segoe WP Light','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:21px;font-weight:normal}.touch .ms-font-xl{font-size:22px}.ms-font-l{color:#333;font-family:'wf_segoe-ui_semilight','Segoe UI Semilight','Segoe WP Semilight','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:17px;font-weight:normal}.touch .ms-font-l{font-size:18px}.ms-font-m{color:#333;font-family:'wf_segoe-ui_normal','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:14px;font-weight:normal}.touch .ms-font-m{font-size:15px}.ms-font-s{color:#333;font-family:'wf_segoe-ui_normal','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:12px;font-weight:normal}.touch .ms-font-s{font-size:13px}.ms-font-xs{color:#333;font-family:'wf_segoe-ui_normal','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:11px;font-weight:normal}.touch .ms-font-xs{font-size:12px}.ms-font-mi{color:#333;font-family:'wf_segoe-ui_semibold','Segoe UI Semibold','Segoe WP Semibold','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-size:10px;font-weight:bold}.touch .ms-font-mi{font-size:11px}.ms-font-weight-light,.ms-fontWeight-light,.ms-fwt-l,.ms-font-weight-light-hover:hover,.ms-fontWeight-light:hover,.ms-fwt-l-h:hover{font-family:'wf_segoe-ui_light','Segoe UI Light','Segoe WP Light','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif}.ms-font-weight-semilight,.ms-fontWeight-semilight,.ms-fwt-sl,.ms-font-weight-semilight-hover:hover,.ms-fontWeight-semilight:hover,.ms-fwt-sl-h:hover{font-family:'wf_segoe-ui_semilight','Segoe UI Semilight','Segoe WP Semilight','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif}.ms-font-weight-regular,.ms-fontWeight-regular,.ms-fwt-r,.ms-font-weight-regular-hover:hover,.ms-fontWeight-regular:hover,.ms-fwt-r-h:hover{font-family:'wf_segoe-ui_normal','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif}.ms-font-weight-semibold,.ms-fontWeight-semibold,.ms-fwt-sb,.ms-font-weight-semibold-hover:hover,.ms-fontWeight-semibold:hover,.ms-fwt-sb-h:hover{font-family:'wf_segoe-ui_semibold','Segoe UI Semibold','Segoe WP Semibold','Segoe UI','Segoe WP',Tahoma,Arial,sans-serif;font-weight:bold}</style>
<style>.ms-bg-color-black,.ms-bgc-b,.ms-bg-color-black-hover:hover,.ms-bg-color-black-focus:focus,.ms-bg-color-black-before:before,.ms-bgc-b-h:hover,.ms-bgc-b-f:focus,.ms-bgc-b-b:before{background-color:#000}.ms-bg-color-neutralDark,.ms-bgc-nd,.ms-bg-color-neutralDark-hover:hover,.ms-bg-color-neutralDark-focus:focus,.ms-bg-color-neutralDark-before:before,.ms-bgc-nd-h:hover,.ms-bgc-nd-f:focus,.ms-bgc-nd-b:before{background-color:#212121}.ms-bg-color-neutralPrimary,.ms-bgc-np,.ms-bg-color-neutralPrimary-hover:hover,.ms-bg-color-neutralPrimary-focus:focus,.ms-bg-color-neutralPrimary-before:before,.ms-bgc-np-h:hover,.ms-bgc-np-f:focus,.ms-bgc-np-b:before{background-color:#333}.ms-bg-color-neutralSecondary,.ms-bgc-ns,.ms-bg-color-neutralSecondary-hover:hover,.ms-bg-color-neutralSecondary-focus:focus,.ms-bg-color-neutralSecondary-before:before,.ms-bgc-ns-h:hover,.ms-bgc-ns-f:focus,.ms-bgc-ns-b:before{background-color:#666}.ms-bg-color-neutralSecondaryAlt,.ms-bgc-nsa,.ms-bg-color-neutralSecondaryAlt-hover:hover,.ms-bg-color-neutralSecondaryAlt-focus:focus,.ms-bg-color-neutralSecondaryAlt-before:before,.ms-bgc-nsa-h:hover,.ms-bgc-nsa-f:focus,.ms-bgc-nsa-b:before{background-color:#767676}.ms-bg-color-neutralTertiary,.ms-bgc-nt,.ms-bg-color-neutralTertiary-hover:hover,.ms-bg-color-neutralTertiary-focus:focus,.ms-bg-color-neutralTertiary-before:before,.ms-bgc-nt-h:hover,.ms-bgc-nt-f:focus,.ms-bgc-nt-b:before{background-color:#a6a6a6}.ms-bg-color-neutralTertiaryAlt,.ms-bgc-nta,.ms-bg-color-neutralTertiaryAlt-hover:hover,.ms-bg-color-neutralTertiaryAlt-focus:focus,.ms-bg-color-neutralTertiaryAlt-before:before,.ms-bgc-nta-h:hover,.ms-bgc-nta-f:focus,.ms-bgc-nta-b:before{background-color:#c8c8c8}.ms-bg-color-neutralLight,.ms-bgc-nl,.ms-bg-color-neutralLight-hover:hover,.ms-bg-color-neutralLight-focus:focus,.ms-bg-color-neutralLight-before:before,.ms-bgc-nl-h:hover,.ms-bgc-nl-f:focus,.ms-bgc-nl-b:before{background-color:#eaeaea}.ms-bg-color-neutralLighter,.ms-bgc-nlr,.ms-bg-color-neutralLighter-hover:hover,.ms-bg-color-neutralLighter-focus:focus,.ms-bg-color-neutralLighter-before:before,.ms-bgc-nlr-h:hover,.ms-bgc-nlr-f:focus,.ms-bgc-nlr-b:before{background-color:#f4f4f4}.ms-bg-color-neutralLighterAlt,.ms-bgc-nlra,.ms-bg-color-neutralLighterAlt-hover:hover,.ms-bg-color-neutralLighterAlt-focus:focus,.ms-bg-color-neutralLighterAlt-before:before,.ms-bgc-nlra-h:hover,.ms-bgc-nlra-f:focus,.ms-bgc-nlra-b:before{background-color:#f8f8f8}.ms-bg-color-white,.ms-bgc-w,.ms-bg-color-white-hover:hover,.ms-bg-color-white-focus:focus,.ms-bg-color-white-before:before,.ms-bgc-w-h:hover,.ms-bgc-w-b:before{background-color:#fff}.ms-border-color-black,.ms-bcl-b,.ms-border-color-black-hover:hover,.ms-border-color-black-focus:focus,.ms-border-color-black-before:before,.ms-bcl-b-h:hover,.ms-bcl-b-f:focus,.ms-bcl-b-b:before{border-color:#000}.ms-border-color-neutralDark,.ms-bcl-nd,.ms-border-color-neutralDark-hover:hover,.ms-border-color-neutralDark-focus:focus,.ms-border-color-neutralDark-before:before,.ms-bcl-nd-h:hover,.ms-bcl-nd-f:focus,.ms-bcl-nd-b:before{border-color:#212121}.ms-border-color-neutralPrimary,.ms-bcl-np,.ms-border-color-neutralPrimary-hover:hover,.ms-border-color-neutralPrimary-focus:focus,.ms-border-color-neutralPrimary-before:before,.ms-bcl-np-h:hover,.ms-bcl-np-f:focus,.ms-bcl-np-b:before{border-color:#333}.ms-border-color-neutralSecondary,.ms-bcl-ns,.ms-border-color-neutralSecondary-hover:hover,.ms-border-color-neutralSecondary-focus:focus,.ms-border-color-neutralSecondary-before:before,.ms-bcl-ns-h:hover,.ms-bcl-ns-f:focus,.ms-bcl-ns-b:before{border-color:#666}.ms-border-color-neutralSecondaryAlt,.ms-bcl-nsa,.ms-border-color-neutralSecondaryAlt-hover:hover,.ms-border-color-neutralSecondaryAlt-focus:focus,.ms-border-color-neutralSecondaryAlt-before:before,.ms-bcl-nsa-h:hover,.ms-bcl-nsa-f:focus,.ms-bcl-nsa-b:before{border-color:#767676}.ms-border-color-neutralTertiary,.ms-bcl-nt,.ms-border-color-neutralTertiary-hover:hover,.ms-border-color-neutralTertiary-focus:focus,.ms-border-color-neutralTertiary-before:before,.ms-bcl-nt-h:hover,.ms-bcl-nt-f:focus,.ms-bcl-nt-b:before{border-color:#a6a6a6}.ms-border-color-neutralTertiaryAlt,.ms-bcl-nta,.ms-border-color-neutralTertiaryAlt-hover:hover,.ms-border-color-neutralTertiaryAlt-focus:focus,.ms-border-color-neutralTertiaryAlt-before:before,.ms-bcl-nta-h:hover,.ms-bcl-nta-f:focus,.ms-bcl-nta-b:before{border-color:#c8c8c8}.ms-border-color-neutralLight,.ms-bcl-nl,.ms-border-color-neutralLight-hover:hover,.ms-border-color-neutralLight-focus:focus,.ms-border-color-neutralLight-before:before,.ms-bcl-nl-h:hover,.ms-bcl-nl-f:focus,.ms-bcl-nl-b:before{border-color:#eaeaea}.ms-border-color-neutralLighter,.ms-bcl-nlr,.ms-border-color-neutralLighter-hover:hover,.ms-border-color-neutralLighter-focus:focus,.ms-border-color-neutralLighter-before:before,.ms-bcl-nlr-h:hover,.ms-bcl-nlr-f:focus,.ms-bcl-nlr-b:before{border-color:#f4f4f4}.ms-border-color-neutralLighterAlt,.ms-bcl-nlra,.ms-border-color-neutralLighterAlt-hover:hover,.ms-border-color-neutralLighterAlt-focus:focus,.ms-border-color-neutralLighterAlt-before:before,.ms-bcl-nlra-h:hover,.ms-bcl-nlra-f:focus,.ms-bcl-nlra-b:before{border-color:#f8f8f8}.ms-border-color-white,.ms-bcl-w,.ms-border-color-white-hover:hover,.ms-border-color-white-focus:focus,.ms-border-color-white-before:before,.ms-bcl-w-h:hover,.ms-bcl-w-f:focus,.ms-bcl-w-b:before{border-color:#fff}.ms-font-color-black,.ms-fontColor-black,.ms-fcl-b,.ms-font-color-black-hover:hover,.ms-font-color-black-focus:focus,.ms-font-color-black-before:before,.ms-fcl-b-h:hover,.ms-fcl-b-f:focus,.ms-fcl-b-b:before{color:#000}.ms-font-color-neutralDark,.ms-fontColor-neutralDark,.ms-fcl-nd,.ms-font-color-neutralDark-hover:hover,.ms-font-color-neutralDark-focus:focus,.ms-font-color-neutralDark-before:before,.ms-fcl-nd-h:hover,.ms-fcl-nd-f:focus,.ms-fcl-nd-b:before{color:#212121}.ms-font-color-neutralPrimary,.ms-fontColor-neutralPrimary,.ms-fcl-np,.ms-font-color-neutralPrimary-hover:hover,.ms-font-color-neutralPrimary-focus:focus,.ms-font-color-neutralPrimary-before:before,.ms-fcl-np-h:hover,.ms-fcl-np-f:focus,.ms-fcl-np-b:before{color:#333}.ms-font-color-neutralSecondary,.ms-fontColor-neutralSecondary,.ms-fcl-ns,.ms-font-color-neutralSecondary-hover:hover,.ms-font-color-neutralSecondary-focus:focus,.ms-font-color-neutralSecondary-before:before,.ms-fcl-ns-h:hover,.ms-fcl-ns-f:focus,.ms-fcl-ns-b:before{color:#666}.ms-font-color-neutralSecondaryAlt,.ms-fontColor-neutralSecondaryAlt,.ms-fcl-nsa,.ms-font-color-neutralSecondaryAlt-hover:hover,.ms-font-color-neutralSecondaryAlt-focus:focus,.ms-font-color-neutralSecondaryAlt-before:before,.ms-fcl-nsa-h:hover,.ms-fcl-nsa-f:focus,.ms-fcl-nsa-b:before{color:#767676}.ms-font-color-neutralTertiary,.ms-fontColor-neutralTertiary,.ms-fcl-nt,.ms-font-color-neutralTertiary-hover:hover,.ms-font-color-neutralTertiary-focus:focus,.ms-font-color-neutralTertiary-before:before,.ms-fcl-nt-h:hover,.ms-fcl-nt-f:focus,.ms-fcl-nt-b:before{color:#a6a6a6}.ms-font-color-neutralTertiaryAlt,.ms-fontColor-neutralTertiaryAlt,.ms-fcl-nta,.ms-font-color-neutralTertiaryAlt-hover:hover,.ms-font-color-neutralTertiaryAlt-focus:focus,.ms-font-color-neutralTertiaryAlt-before:before,.ms-fcl-nta-h:hover,.ms-fcl-nta-f:focus,.ms-fcl-nta-b:before{color:#c8c8c8}.ms-font-color-neutralLight,.ms-fontColor-neutralLight,.ms-fcl-nl,.ms-font-color-neutralLight-hover:hover,.ms-font-color-neutralLight-focus:focus,.ms-font-color-neutralLight-before:before,.ms-fcl-nl-h:hover,.ms-fcl-nl-f:focus,.ms-fcl-nl-b:before{color:#eaeaea}.ms-font-color-neutralLighter,.ms-fontColor-neutralLighter,.ms-fcl-nlr,.ms-font-color-neutralLighter-hover:hover,.ms-font-color-neutralLighter-focus:focus,.ms-font-color-neutralLighter-before:before,.ms-fcl-nlr-h:hover,.ms-fcl-nlr-f:focus,.ms-fcl-nlr-b:before{color:#f4f4f4}.ms-font-color-neutralLighterAlt,.ms-fontColor-neutralLighterAlt,.ms-fcl-nlra,.ms-font-color-neutralLighterAlt-hover:hover,.ms-font-color-neutralLighterAlt-focus:focus,.ms-font-color-neutralLighterAlt-before:before,.ms-fcl-nlra-h:hover,.ms-fcl-nlra-f:focus,.ms-fcl-nlra-b:before{color:#f8f8f8}.ms-font-color-white,.ms-fontColor-white,.ms-fcl-w,.ms-font-color-white-hover:hover,.ms-font-color-white-focus:focus,.ms-font-color-white-before:before,.ms-fcl-w-h:hover,.ms-fcl-w-f:focus,.ms-fcl-w-b:before{color:#fff}</style>
<style>.ms-bg-color-yellow,.ms-bgc-y,.ms-bg-color-yellow-hover:hover,.ms-bg-color-yellow-before:before,.ms-bgc-y-h:hover,.ms-bgc-y-b:before{background-color:#ffb900}.ms-bg-color-yellowLight,.ms-bgc-yl,.ms-bg-color-yellowLight-hover:hover,.ms-bg-color-yellowLight-before:before,.ms-bgc-yl-h:hover,.ms-bgc-yl-b:before{background-color:#fff100}.ms-bg-color-orange,.ms-bgc-o,.ms-bg-color-orange-hover:hover,.ms-bg-color-orange-before:before,.ms-bgc-o-h:hover,.ms-bgc-o-b:before{background-color:#d83b01}.ms-bg-color-orangeLight,.ms-bgc-ol,.ms-bg-color-orangeLight-hover:hover,.ms-bg-color-orangeLight-before:before,.ms-bgc-ol-h:hover,.ms-bgc-ol-b:before{background-color:#ff8c00}.ms-bg-color-redDark,.ms-bgc-rd,.ms-bg-color-redDark-hover:hover,.ms-bg-color-redDark-before:before,.ms-bgc-rd-h:hover,.ms-bgc-rd-b:before{background-color:#a80000}.ms-bg-color-red,.ms-bgc-r,.ms-bg-color-red-hover:hover,.ms-bg-color-red-before:before,.ms-bgc-r-h:hover,.ms-bgc-r-b:before{background-color:#e81123}.ms-bg-color-magentaDark,.ms-bgc-md,.ms-bg-color-magentaDark-hover:hover,.ms-bg-color-magentaDark-before:before,.ms-bgc-md-h:hover,.ms-bgc-md-b:before{background-color:#5c005c}.ms-bg-color-magenta,.ms-bgc-m,.ms-bg-color-magenta-hover:hover,.ms-bg-color-magenta-before:before,.ms-bgc-m-h:hover,.ms-bgc-m-b:before{background-color:#b4009e}.ms-bg-color-magentaLight,.ms-bgc-ml,.ms-bg-color-magentaLight-hover:hover,.ms-bg-color-magentaLight-before:before,.ms-bgc-ml-h:hover,.ms-bgc-ml-b:before{background-color:#e3008c}.ms-bg-color-purpleDark,.ms-bgc-pd,.ms-bg-color-purpleDark-hover:hover,.ms-bg-color-purpleDark-before:before,.ms-bgc-pd-h:hover,.ms-bgc-pd-b:before{background-color:#32145a}.ms-bg-color-purple,.ms-bgc-p,.ms-bg-color-purple-hover:hover,.ms-bg-color-purple-before:before,.ms-bgc-p-h:hover,.ms-bgc-p-b:before{background-color:#5c2d91}.ms-bg-color-purpleLight,.ms-bgc-pl,.ms-bg-color-purpleLight-hover:hover,.ms-bg-color-purpleLight-before:before,.ms-bgc-pl-h:hover,.ms-bgc-pl-b:before{background-color:#b4a0ff}.ms-bg-color-blueDark,.ms-bgc-bd,.ms-bg-color-blueDark-hover:hover,.ms-bg-color-blueDark-before:before,.ms-bgc-bd-h:hover,.ms-bgc-bd-b:before{background-color:#002050}.ms-bg-color-blueMid,.ms-bgc-bm,.ms-bg-color-blueMid-hover:hover,.ms-bg-color-blueMid-before:before,.ms-bgc-bm-h:hover,.ms-bgc-bm-b:before{background-color:#00188f}.ms-bg-color-blue,.ms-bgc-blu,.ms-bg-color-blue-hover:hover,.ms-bg-color-blue-before:before,.ms-bgc-blu-h:hover,.ms-bgc-blu-b:before{background-color:#0078d7}.ms-bg-color-blueLight,.ms-bgc-bl,.ms-bg-color-blueLight-hover:hover,.ms-bg-color-blueLight-before:before,.ms-bgc-bl-h:hover,.ms-bgc-bl-b:before{background-color:#00bcf2}.ms-bg-color-tealDark,.ms-bgc-ted,.ms-bg-color-tealDark-hover:hover,.ms-bg-color-tealDark-before:before,.ms-bgc-ted-h:hover,.ms-bgc-ted-b:before{background-color:#004b50}.ms-bg-color-teal,.ms-bgc-t,.ms-bg-color-teal-hover:hover,.ms-bg-color-teal-before:before,.ms-bgc-t-h:hover,.ms-bgc-t-b:before{background-color:#008272}.ms-bg-color-tealLight,.ms-bgc-tel,.ms-bg-color-tealLight-hover:hover,.ms-bg-color-tealLight-before:before,.ms-bgc-tel-h:hover,.ms-bgc-tel-b:before{background-color:#00b294}.ms-bg-color-greenDark,.ms-bgc-gd,.ms-bg-color-greenDark-hover:hover,.ms-bg-color-greenDark-before:before,.ms-bgc-gd-h:hover,.ms-bgc-gd-b:before{background-color:#004b1c}.ms-bg-color-green,.ms-bgc-g,.ms-bg-color-green-hover:hover,.ms-bg-color-green-before:before,.ms-bgc-g-h:hover,.ms-bgc-g-b:before{background-color:#107c10}.ms-bg-color-greenLight,.ms-bgc-gl,.ms-bg-color-greenLight-hover:hover,.ms-bg-color-greenLight-before:before,.ms-bgc-gl-h:hover,.ms-bgc-gl-b:before{background-color:#bad80a}.ms-border-color-yellow,.ms-bcl-y,.ms-border-color-yellow-hover:hover,.ms-border-color-yellow-before:before,.ms-bcl-y-h:hover,.ms-bcl-y-b:before{border-color:#ffb900}.ms-border-color-yellowLight,.ms-bcl-yl,.ms-border-color-yellowLight-hover:hover,.ms-border-color-yellowLight-before:before,.ms-bcl-yl-h:hover,.ms-bcl-yl-b:before{border-color:#fff100}.ms-border-color-orange,.ms-bcl-o,.ms-border-color-orange-hover:hover,.ms-border-color-orange-before:before,.ms-bcl-o-h:hover,.ms-bcl-o-b:before{border-color:#d83b01}.ms-border-color-orangeLight,.ms-bcl-ol,.ms-border-color-orangeLight-hover:hover,.ms-border-color-orangeLight-before:before,.ms-bcl-ol-h:hover,.ms-bcl-ol-b:before{border-color:#ff8c00}.ms-border-color-redDark,.ms-bcl-rd,.ms-border-color-redDark-hover:hover,.ms-border-color-redDark-before:before,.ms-bcl-rd-h:hover,.ms-bcl-rd-b:before{border-color:#a80000}.ms-border-color-red,.ms-bcl-r,.ms-border-color-red-hover:hover,.ms-border-color-red-before:before,.ms-bcl-r-h:hover,.ms-bcl-r-b:before{border-color:#e81123}.ms-border-color-magentaDark,.ms-bcl-md,.ms-border-color-magentaDark-hover:hover,.ms-border-color-magentaDark-before:before,.ms-bcl-md-h:hover,.ms-bcl-md-b:before{border-color:#5c005c}.ms-border-color-magenta,.ms-bcl-m,.ms-border-color-magenta-hover:hover,.ms-border-color-magenta-before:before,.ms-bcl-m-h:hover,.ms-bcl-m-b:before{border-color:#b4009e}.ms-border-color-magentaLight,.ms-bcl-ml,.ms-border-color-magentaLight-hover:hover,.ms-border-color-magentaLight-before:before,.ms-bcl-ml-h:hover,.ms-bcl-ml-b:before{border-color:#e3008c}.ms-border-color-purpleDark,.ms-bcl-pd,.ms-border-color-purpleDark-hover:hover,.ms-border-color-purpleDark-before:before,.ms-bcl-pd-h:hover,.ms-bcl-pd-b:before{border-color:#32145a}.ms-border-color-purple,.ms-bcl-p,.ms-border-color-purple-hover:hover,.ms-border-color-purple-before:before,.ms-bcl-p-h:hover,.ms-bcl-p-b:before{border-color:#5c2d91}.ms-border-color-purpleLight,.ms-bcl-pl,.ms-border-color-purpleLight-hover:hover,.ms-border-color-purpleLight-before:before,.ms-bcl-pl-h:hover,.ms-bcl-pl-b:before{border-color:#b4a0ff}.ms-border-color-blueDark,.ms-bcl-bd,.ms-border-color-blueDark-hover:hover,.ms-border-color-blueDark-before:before,.ms-bcl-bd-h:hover,.ms-bcl-bd-b:before{border-color:#002050}.ms-border-color-blueMid,.ms-bcl-bm,.ms-border-color-blueMid-hover:hover,.ms-border-color-blueMid-before:before,.ms-bcl-bm-h:hover,.ms-bcl-bm-b:before{border-color:#00188f}.ms-border-color-blue,.ms-bcl-blu,.ms-border-color-blue-hover:hover,.ms-border-color-blue-before:before,.ms-bcl-blu-h:hover,.ms-bcl-blu-b:before{border-color:#0078d7}.ms-border-color-blueLight,.ms-bcl-bl,.ms-border-color-blueLight-hover:hover,.ms-border-color-blueLight-before:before,.ms-bcl-bl-h:hover,.ms-bcl-bl-b:before{border-color:#00bcf2}.ms-border-color-tealDark,.ms-bcl-ted,.ms-border-color-tealDark-hover:hover,.ms-border-color-tealDark-before:before,.ms-bcl-ted-h:hover,.ms-bcl-ted-b:before{border-color:#004b50}.ms-border-color-teal,.ms-bcl-t,.ms-border-color-teal-hover:hover,.ms-border-color-teal-before:before,.ms-bcl-t-h:hover,.ms-bcl-t-b:before{border-color:#008272}.ms-border-color-tealLight,.ms-bcl-tel,.ms-border-color-tealLight-hover:hover,.ms-border-color-tealLight-before:before,.ms-bcl-tel-h:hover,.ms-bcl-tel-b:before{border-color:#00b294}.ms-border-color-greenDark,.ms-bcl-gd,.ms-border-color-greenDark-hover:hover,.ms-border-color-greenDark-before:before,.ms-bcl-gd-h:hover,.ms-bcl-gd-b:before{border-color:#004b1c}.ms-border-color-green,.ms-bcl-g,.ms-border-color-green-hover:hover,.ms-border-color-green-before:before,.ms-bcl-g-h:hover,.ms-bcl-g-b:before{border-color:#107c10}.ms-border-color-greenLight,.ms-bcl-gl,.ms-border-color-greenLight-hover:hover,.ms-border-color-greenLight-before:before,.ms-bcl-gl-h:hover,.ms-bcl-gl-b:before{border-color:#bad80a}.ms-font-color-yellow,.ms-fcl-y,.ms-font-color-yellow-hover:hover,.ms-font-color-yellow-before:before,.ms-fcl-y-h:hover,.ms-fcl-y-b:before{color:#ffb900}.ms-font-color-yellowLight,.ms-fcl-yl,.ms-font-color-yellowLight-hover:hover,.ms-font-color-yellowLight-before:before,.ms-fcl-yl-h:hover,.ms-fcl-yl-b:before{color:#fff100}.ms-font-color-orange,.ms-fcl-o,.ms-font-color-orange-hover:hover,.ms-font-color-orange-before:before,.ms-fcl-o-h:hover,.ms-fcl-o-b:before{color:#d83b01}.ms-font-color-orangeLight,.ms-fcl-ol,.ms-font-color-orangeLight-hover:hover,.ms-font-color-orangeLight-before:before,.ms-fcl-ol-h:hover,.ms-fcl-ol-b:before{color:#ff8c00}.ms-font-color-redDark,.ms-fcl-rd,.ms-font-color-redDark-hover:hover,.ms-font-color-redDark-before:before,.ms-fcl-rd-h:hover,.ms-fcl-rd-b:before{color:#a80000}.ms-font-color-red,.ms-fcl-r,.ms-font-color-red-hover:hover,.ms-font-color-red-before:before,.ms-fcl-r-h:hover,.ms-fcl-r-b:before{color:#e81123}.ms-font-color-magentaDark,.ms-fcl-md,.ms-font-color-magentaDark-hover:hover,.ms-font-color-magentaDark-before:before,.ms-fcl-md-h:hover,.ms-fcl-md-b:before{color:#5c005c}.ms-font-color-magenta,.ms-fcl-m,.ms-font-color-magenta-hover:hover,.ms-font-color-magenta-before:before,.ms-fcl-m-h:hover,.ms-fcl-m-b:before{color:#b4009e}.ms-font-color-magentaLight,.ms-fcl-ml,.ms-font-color-magentaLight-hover:hover,.ms-font-color-magentaLight-before:before,.ms-fcl-ml-h:hover,.ms-fcl-ml-b:before{color:#e3008c}.ms-font-color-purpleDark,.ms-fcl-pd,.ms-font-color-purpleDark-hover:hover,.ms-font-color-purpleDark-before:before,.ms-fcl-pd-h:hover,.ms-fcl-pd-b:before{color:#32145a}.ms-font-color-purple,.ms-fcl-p,.ms-font-color-purple-hover:hover,.ms-font-color-purple-before:before,.ms-fcl-p-h:hover,.ms-fcl-p-b:before{color:#5c2d91}.ms-font-color-purpleLight,.ms-fcl-pl,.ms-font-color-purpleLight-hover:hover,.ms-font-color-purpleLight-before:before,.ms-fcl-pl-h:hover,.ms-fcl-pl-b:before{color:#b4a0ff}.ms-font-color-blueDark,.ms-fcl-bd,.ms-font-color-blueDark-hover:hover,.ms-font-color-blueDark-before:before,.ms-fcl-bd-h:hover,.ms-fcl-bd-b:before{color:#002050}.ms-font-color-blueMid,.ms-fcl-bm,.ms-font-color-blueMid-hover:hover,.ms-font-color-blueMid-before:before,.ms-fcl-bm-h:hover,.ms-fcl-bm-b:before{color:#00188f}.ms-font-color-blue,.ms-fcl-blu,.ms-font-color-blue-hover:hover,.ms-font-color-blue-before:before,.ms-fcl-blu-h:hover,.ms-fcl-blu-b:before{color:#0078d7}.ms-font-color-blueLight,.ms-fcl-bl,.ms-font-color-blueLight-hover:hover,.ms-font-color-blueLight-before:before,.ms-fcl-bl-h:hover,.ms-fcl-bl-b:before{color:#00bcf2}.ms-font-color-tealDark,.ms-fcl-ted,.ms-font-color-tealDark-hover:hover,.ms-font-color-tealDark-before:before,.ms-fcl-ted-h:hover,.ms-fcl-ted-b:before{color:#004b50}.ms-font-color-teal,.ms-fcl-t,.ms-font-color-teal-hover:hover,.ms-font-color-teal-before:before,.ms-fcl-t-h:hover,.ms-fcl-t-b:before{color:#008272}.ms-font-color-tealLight,.ms-fcl-tel,.ms-font-color-tealLight-hover:hover,.ms-font-color-tealLight-before:before,.ms-fcl-tel-h:hover,.ms-fcl-tel-b:before{color:#00b294}.ms-font-color-greenDark,.ms-fcl-gd,.ms-font-color-greenDark-hover:hover,.ms-font-color-greenDark-before:before,.ms-fcl-gd-h:hover,.ms-fcl-gd-b:before{color:#004b1c}.ms-font-color-green,.ms-fcl-g,.ms-font-color-green-hover:hover,.ms-font-color-green-before:before,.ms-fcl-g-h:hover,.ms-fcl-g-b:before{color:#107c10}.ms-font-color-greenLight,.ms-fcl-gl,.ms-font-color-greenLight-hover:hover,.ms-font-color-greenLight-before:before,.ms-fcl-gl-h:hover,.ms-fcl-gl-b:before{color:#bad80a}</style>
<style>.owa-font-compose{font-family:Calibri,Arial,Helvetica,sans-serif}.owa-bg-color-neutral-orange{background-color:#D82300}.owa-bg-color-neutral-red{background-color:#A80F22}.owa-bg-color-neutral-yellow{background-color:#FFEE94}.owa-bg-color-neutral-green{background-color:#5DD255}.owa-bg-color-cal-green{background-color:#68A490}.owa-bg-color-cal-purple{background-color:#976CBE}.owa-border-color-neutral-orange{border-color:#D82300}.owa-border-color-neutral-red{border-color:#A80F22}.owa-border-color-neutral-yellow{border-color:#FFEE94}.owa-border-color-neutral-green{border-color:#5DD255}.owa-border-color-cal-green{border-color:#68A490}.owa-border-color-cal-purple{border-color:#976CBE}.owa-color-neutral-darkBlue{color:#00008B}.owa-color-neutral-orange{color:#D82300}.owa-color-neutral-red{color:#A80F22}.owa-color-neutral-yellow{color:#FFEE94}.owa-color-neutral-green{color:#5DD255}.owa-color-neutral-green-alt,.owa-color-neutral-green-alt:before{color:#107c10}.owa-color-cal-green{color:#68A490}.owa-color-cal-green-hover{color:#377353}.owa-color-cal-purple{color:#976CBE}.owa-color-cal-purple-hover{color:#67397B}.owa-color-cal-blue{color:#71C2EB}.owa-color-cal-brown{color:#AB9B81}.owa-color-cal-green-alt{color:#A9C47A}.owa-color-cal-grey{color:#999B9C}.owa-color-cal-orange{color:#E6975C}.owa-color-cal-pink{color:#CA6AAB}.owa-color-cal-red{color:#D57272}.owa-color-cal-teal{color:#7BCBC4}.owa-color-cal-yellow{color:#E3B75D}.owa-color-folder-brown{color:#EAC282}.ms-font-color-red{color:#E81123}.ms-font-color-redDark{color:#A80000}</style>
<style>@font-face { font-family: wf_segoe-ui_light; src: local("Segoe UI Light"), local("Segoe WP Light"), url("prem/fonts/segoeui-light.woff") format("woff"), url("prem/fonts/segoeui-light.ttf") format("truetype"); }@font-face { font-family: wf_segoe-ui_normal; src: local("Segoe UI"), local("Segoe WP"), url("prem/fonts/segoeui-regular.woff") format("woff"), url("prem/fonts/segoeui-regular.ttf") format("truetype"); }@font-face { font-family: wf_segoe-ui_semibold; src: local("Segoe UI Semibold"), local("Segoe WP Semibold"), url("prem/fonts/segoeui-semibold.woff") format("woff"), url("prem/fonts/segoeui-semibold.ttf") format("truetype"); font-weight: bold; }@font-face { font-family: wf_segoe-ui_semilight; src: local("Segoe UI Semilight"), local("Segoe WP Semilight"), url("prem/fonts/segoeui-semilight.woff") format("woff"), url("prem/fonts/segoeui-semilight.ttf") format("truetype"); }@font-face { font-family: webfontPreload; src: url("prem/16.1692.10.2254277/resources/styles/fonts/office365icons.eot?#iefix") format("embedded-opentype"), url("prem/16.1692.10.2254277/resources/styles/fonts/office365icons.woff") format("woff"), url("prem/16.1692.10.2254277/resources/styles/fonts/office365icons.ttf") format("truetype"); font-weight: normal; font-style: normal; }</style><style>.customScrollBar::-webkit-scrollbar { height: 18px; width: 18px; }.customScrollBar::-webkit-scrollbar:disabled { display: none; }.customScrollBar::-webkit-scrollbar-button { background-color: rgb(255, 255, 255); background-repeat: no-repeat; cursor: pointer; }.customScrollBar::-webkit-scrollbar-button:horizontal:increment, .customScrollBar::-webkit-scrollbar-button:horizontal:decrement, .customScrollBar::-webkit-scrollbar-button:horizontal:increment:hover, .customScrollBar::-webkit-scrollbar-button:horizontal:decrement:hover, .customScrollBar::-webkit-scrollbar-button:vertical:increment, .customScrollBar::-webkit-scrollbar-button:vertical:decrement, .customScrollBar::-webkit-scrollbar-button:vertical:increment:hover, .customScrollBar::-webkit-scrollbar-button:vertical:decrement:hover { background-position: center center; height: 18px; width: 18px; }.customScrollBarLight::-webkit-scrollbar-button { display: none; }.customScrollBar::-webkit-scrollbar-track { background-color: rgb(255, 255, 255); }.customScrollBarLight::-webkit-scrollbar-track { background-color: rgb(0, 114, 198); }.customScrollBar::-webkit-scrollbar-thumb { border-radius: 9px; border: 6px solid rgb(255, 255, 255); background-color: rgb(200, 200, 200); }.customScrollBarLight::-webkit-scrollbar-thumb { border-color: rgb(0, 114, 198); background-color: rgb(149, 177, 193); }.customScrollBar::-webkit-scrollbar-thumb:vertical { min-height: 50px; }.customScrollBar::-webkit-scrollbar-thumb:horizontal { min-width: 50px; }.customScrollBar::-webkit-scrollbar-thumb:hover { border-radius: 9px; border: 6px solid rgb(255, 255, 255); background-color: rgb(152, 163, 166); }.customScrollBar::-webkit-scrollbar-corner { background-color: rgb(255, 255, 255); }.nativeScrollInertia { }.csimg { display: inline-block; overflow: hidden; }.textbox { border-width: 1px; border-style: solid; border-radius: 0px; box-shadow: none; -webkit-appearance: none; height: 30px; padding: 0px 5px; }.tnarrow .textbox, .twide .textbox { font-size: 12px; background-color: rgb(255, 255, 255); height: 14px; padding: 3px 5px; }.textbox::-webkit-input-placeholder { color: rgb(166, 166, 166); }.textarea { padding: 10px; }.textarea:hover { background-color: transparent; border-color: transparent; }.o365button { background: transparent; border-width: 0px; padding: 0px; font-size: 14px; cursor: pointer !important; }.o365button:disabled, label.o365button[disabled="true"] { cursor: default !important; }.o365buttonOutlined { padding-right: 11px; padding-left: 11px; box-sizing: border-box; border-width: 1px; border-style: solid; }.o365buttonOutlined .o365buttonLabel { display: inline-block; }.o365buttonOutlined { height: 30px; }.twide .o365buttonOutlined, .tnarrow .o365buttonOutlined { height: 22px; }.o365buttonOutlined .o365buttonLabel { height: 22px; }.checkbox { border-style: none; cursor: pointer; vertical-align: middle; }.popupShadow { box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 20px; border: 1px solid rgb(234, 234, 234); }.contextMenuDropShadow { box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 7px; border: 1px solid rgb(234, 234, 234); }.modalBackground { background-color: rgb(255, 255, 255); height: 100%; width: 100%; opacity: 0.65; }.clearModalBackground { background-color: rgb(255, 255, 255); opacity: 0; height: 100%; width: 100%; }.contextMenuPopup { background-color: rgb(255, 255, 255); }.removeFocusOutline :focus { outline: none; }.addFocusOutline button:focus { outline: dotted 1px; }.addFocusRingOutline button:focus { outline: -webkit-focus-ring-color auto 5px; }.border-color-transparent { border-color: transparent; }.vResize, .hResize { z-index: 1000; }.hResize, .hResizeCursor * { cursor: row-resize !important; }.vResize, .vResizeCursor * { cursor: col-resize !important; }.vResizing, .hResizing { opacity: 0.6; border: 1px solid rgb(102, 102, 102); }.vResizing { border-width: 0px 1px; }.hResizing { border-width: 1px 0px; }</style><style></style><style>.ms-font-su { color: rgb(51, 51, 51); font-family: wf_segoe-ui_semilight, "Segoe UI Semilight", "Segoe WP Semilight", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 42px; font-weight: normal; }.ms-font-xxl { color: rgb(51, 51, 51); font-family: wf_segoe-ui_light, "Segoe UI Light", "Segoe WP Light", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 28px; font-weight: normal; }.touch .ms-font-xxl { font-size: 30px; }.ms-font-xl { color: rgb(51, 51, 51); font-family: wf_segoe-ui_light, "Segoe UI Light", "Segoe WP Light", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 21px; font-weight: normal; }.touch .ms-font-xl { font-size: 22px; }.ms-font-l { color: rgb(51, 51, 51); font-family: wf_segoe-ui_semilight, "Segoe UI Semilight", "Segoe WP Semilight", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 17px; font-weight: normal; }.touch .ms-font-l { font-size: 18px; }.ms-font-m { color: rgb(51, 51, 51); font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 14px; font-weight: normal; }.touch .ms-font-m { font-size: 15px; }.ms-font-s { color: rgb(51, 51, 51); font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 12px; font-weight: normal; }.touch .ms-font-s { font-size: 13px; }.ms-font-xs { color: rgb(51, 51, 51); font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 11px; font-weight: normal; }.touch .ms-font-xs { font-size: 12px; }.ms-font-mi { color: rgb(51, 51, 51); font-family: wf_segoe-ui_semibold, "Segoe UI Semibold", "Segoe WP Semibold", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 10px; font-weight: normal; }.touch .ms-font-mi { font-size: 11px; }.ms-font-weight-light, .ms-fwt-l, .ms-font-weight-light-hover:hover, .ms-font-weight-light-before::before, .ms-fwt-l-h:hover, .ms-fwt-l-b::before { font-family: wf_segoe-ui_light, "Segoe UI Light", "Segoe WP Light", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; }.ms-font-weight-semilight, .ms-fwt-sl, .ms-font-weight-semilight-hover:hover, .ms-font-weight-semilight-before::before, .ms-fwt-sl-h:hover, .ms-fwt-sl-b::before { font-family: wf_segoe-ui_semilight, "Segoe UI Semilight", "Segoe WP Semilight", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; }.ms-font-weight-regular, .ms-fwt-r, .ms-font-weight-regular-hover:hover, .ms-font-weight-regular-before::before, .ms-fwt-r-h:hover, .ms-fwt-r-b::before { font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; }.ms-font-weight-semibold, .ms-fwt-sb, .ms-font-weight-semibold-hover:hover, .ms-font-weight-semibold-before::before, .ms-fwt-sb-h:hover, .ms-fwt-sb-b::before { font-family: wf_segoe-ui_semibold, "Segoe UI Semibold", "Segoe WP Semibold", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-weight: bold; }</style><style>.ms-bg-color-themeDark, .ms-bgc-td, .ms-bg-color-themeDark-hover:hover, .ms-bg-color-themeDark-focus:focus, .ms-bg-color-themeDark-before::before, .ms-bgc-td-h:hover, .ms-bgc-td-f:focus, .ms-bgc-td-b::before { background-color: rgb(13, 98, 170); }.ms-bg-color-themeDarkAlt, .ms-bgc-tda, .ms-bg-color-themeDarkAlt-hover:hover, .ms-bg-color-themeDarkAlt-focus:focus, .ms-bg-color-themeDarkAlt-before::before, .ms-bgc-tda-h:hover, .ms-bgc-tda-f:focus, .ms-bgc-tda-b::before { background-color: rgb(16, 110, 190); }.ms-bg-color-themeDarker, .ms-bgc-tdr, .ms-bg-color-themeDarker-hover:hover, .ms-bg-color-themeDarker-focus:focus, .ms-bg-color-themeDarker-before::before, .ms-bgc-tdr-h:hover, .ms-bgc-tdr-f:focus, .ms-bgc-tdr-b::before { background-color: rgb(16, 74, 125); }.ms-bg-color-themePrimary, .ms-bgc-tp, .ms-bg-color-themePrimary-hover:hover, .ms-bg-color-themePrimary-focus:focus, .ms-bg-color-themePrimary-before::before, .ms-bgc-tp-h:hover, .ms-bgc-tp-f:focus, .ms-bgc-tp-b::before { background-color: rgb(0, 120, 215); }.ms-bg-color-themeSecondary, .ms-bgc-ts, .ms-bg-color-themeSecondary-hover:hover, .ms-bg-color-themeSecondary-focus:focus, .ms-bg-color-themeSecondary-before::before, .ms-bgc-ts-h:hover, .ms-bgc-ts-f:focus, .ms-bgc-ts-b::before { background-color: rgb(43, 136, 216); }.ms-bg-color-themeTertiary, .ms-bgc-tt, .ms-bg-color-themeTertiary-hover:hover, .ms-bg-color-themeTertiary-focus:focus, .ms-bg-color-themeTertiary-before::before, .ms-bgc-tt-h:hover, .ms-bgc-tt-f:focus, .ms-bgc-tt-b::before { background-color: rgb(113, 175, 229); }.ms-bg-color-themeLight, .ms-bgc-tl, .ms-bg-color-themeLight-hover:hover, .ms-bg-color-themeLight-focus:focus, .ms-bg-color-themeLight-before::before, .ms-bgc-tl-h:hover, .ms-bgc-tl-f:focus, .ms-bgc-tl-b::before { background-color: rgb(199, 224, 244); }.ms-bg-color-themeLighter, .ms-bgc-tlr, .ms-bg-color-themeLighter-hover:hover, .ms-bg-color-themeLighter-focus:focus, .ms-bg-color-themeLighter-before::before, .ms-bgc-tlr-h:hover, .ms-bgc-tlr-f:focus, .ms-bgc-tlr-b::before { background-color: rgb(222, 236, 249); }.ms-bg-color-themeLighterAlt, .ms-bgc-tlra, .ms-bg-color-themeLighterAlt-hover:hover, .ms-bg-color-themeLighterAlt-focus:focus, .ms-bg-color-themeLighterAlt-before::before, .ms-bgc-tlra-h:hover, .ms-bgc-tlra-f:focus, .ms-bgc-tlra-b::before { background-color: rgb(239, 246, 252); }.ms-border-color-themeDark, .ms-bcl-td, .ms-border-color-themeDark-hover:hover, .ms-border-color-themeDark-focus:focus, .ms-border-color-themeDark-before::before, .ms-bcl-td-h:hover, .ms-bcl-td-f:focus, .ms-bcl-td-b::before { border-color: rgb(13, 98, 170); }.ms-border-color-themeDarkAlt, .ms-bcl-tda, .ms-border-color-themeDarkAlt-hover:hover, .ms-border-color-themeDarkAlt-focus:focus, .ms-border-color-themeDarkAlt-before::before, .ms-bcl-tda-h:hover, .ms-bcl-tda-f:focus, .ms-bcl-tda-b::before { border-color: rgb(16, 110, 190); }.ms-border-color-themeDarker, .ms-bcl-tdr, .ms-border-color-themeDarker-hover:hover, .ms-border-color-themeDarker-focus:focus, .ms-border-color-themeDarker-before::before, .ms-bcl-tdr-h:hover, .ms-bcl-tdr-f:focus, .ms-bcl-tdr-b::before { border-color: rgb(16, 74, 125); }.ms-border-color-themePrimary, .ms-bcl-tp, .ms-border-color-themePrimary-hover:hover, .ms-border-color-themePrimary-focus:focus, .ms-border-color-themePrimary-before::before, .ms-bcl-tp-h:hover, .ms-bcl-tp-f:focus, .ms-bcl-tp-b::before { border-color: rgb(0, 120, 215); }.ms-border-color-themeSecondary, .ms-bcl-ts, .ms-border-color-themeSecondary-hover:hover, .ms-border-color-themeSecondary-focus:focus, .ms-border-color-themeSecondary-before::before, .ms-bcl-ts-h:hover, .ms-bcl-ts-f:focus, .ms-bcl-ts-b::before { border-color: rgb(43, 136, 216); }.ms-border-color-themeTertiary, .ms-bcl-tt, .ms-border-color-themeTertiary-hover:hover, .ms-border-color-themeTertiary-focus:focus, .ms-border-color-themeTertiary-before::before, .ms-bcl-tt-h:hover, .ms-bcl-tt-f:focus, .ms-bcl-tt-b::before { border-color: rgb(113, 175, 229); }.ms-border-color-themeLight, .ms-bcl-tl, .ms-border-color-themeLight-hover:hover, .ms-border-color-themeLight-focus:focus, .ms-border-color-themeLight-before::before, .ms-bcl-tl-h:hover, .ms-bcl-tl-f:focus, .ms-bcl-tl-b::before { border-color: rgb(199, 224, 244); }.ms-border-color-themeLighter, .ms-bcl-tlr, .ms-border-color-themeLighter-hover:hover, .ms-border-color-themeLighter-focus:focus, .ms-border-color-themeLighter-before::before, .ms-bcl-tlr-h:hover, .ms-bcl-tlr-f:focus, .ms-bcl-tlr-b::before { border-color: rgb(222, 236, 249); }.ms-border-color-themeLighterAlt, .ms-bcl-tlra, .ms-border-color-themeLighterAlt-hover:hover, .ms-border-color-themeLighterAlt-focus:focus, .ms-border-color-themeLighterAlt-before::before, .ms-bcl-tlra-h:hover, .ms-bcl-tlra-f:focus, .ms-bcl-tlra-b::before { border-color: rgb(239, 246, 252); }.ms-border-color-top-themePrimary, .ms-bcl-t-tp, .ms-border-color-top-themePrimary-hover:hover, .ms-border-color-top-themePrimary-focus:focus, .ms-border-color-top-themePrimary-before::before, .ms-bcl-t-tp-h:hover, .ms-bcl-t-tp-f:focus, .ms-bcl-t-tp-b::before { border-top-color: rgb(0, 120, 215); }.ms-font-color-themeDark, .ms-fontColor-themeDark, .ms-fontColor-themeDark, .ms-fcl-td, .ms-font-color-themeDark-hover:hover, .ms-font-color-themeDark-focus:focus, .ms-font-color-themeDark-before::before, .ms-fcl-td-h:hover, .ms-fcl-td-f:focus, .ms-fcl-td-b::before { color: rgb(13, 98, 170); }.ms-font-color-themeDarkAlt, .ms-fontColor-themeDarkAlt, .ms-fontColor-themeDarkAlt, .ms-fcl-tda, .ms-font-color-themeDarkAlt-hover:hover, .ms-font-color-themeDarkAlt-focus:focus, .ms-font-color-themeDarkAlt-before::before, .ms-fcl-tda-h:hover, .ms-fcl-tda-f:focus, .ms-fcl-tda-b::before { color: rgb(16, 110, 190); }.ms-font-color-themeDarker, .ms-fontColor-themeDarker, .ms-fontColor-themeDarker, .ms-fcl-tdr, .ms-font-color-themeDarker-hover:hover, .ms-font-color-themeDarker-focus:focus, .ms-font-color-themeDarker-before::before, .ms-fcl-tdr-h:hover, .ms-fcl-tdr-f:focus, .ms-fcl-tdr-b::before { color: rgb(16, 74, 125); }.ms-font-color-themePrimary, .ms-fontColor-themePrimary, .ms-fontColor-themePrimary, .ms-fcl-tp, .ms-font-color-themePrimary-hover:hover, .ms-font-color-themePrimary-focus:focus, .ms-font-color-themePrimary-before::before, .ms-fcl-tp-h:hover, .ms-fcl-tp-f:focus, .ms-fcl-tp-b::before { color: rgb(0, 120, 215); }.ms-font-color-themeSecondary, .ms-fontColor-themeSecondary, .ms-fontColor-themeSecondary, .ms-fcl-ts, .ms-font-color-themeSecondary-hover:hover, .ms-font-color-themeSecondary-focus:focus, .ms-font-color-themeSecondary-before::before, .ms-fcl-ts-h:hover, .ms-fcl-ts-f:focus, .ms-fcl-ts-b::before { color: rgb(43, 136, 216); }.ms-font-color-themeTertiary, .ms-fontColor-themeTertiary, .ms-fontColor-themeTertiary, .ms-fcl-tt, .ms-font-color-themeTertiary-hover:hover, .ms-font-color-themeTertiary-focus:focus, .ms-font-color-themeTertiary-before::before, .ms-fcl-tt-h:hover, .ms-fcl-tt-f:focus, .ms-fcl-tt-b::before { color: rgb(113, 175, 229); }.ms-font-color-themeLight, .ms-fontColor-themeLight, .ms-fontColor-themeLight, .ms-fcl-tl, .ms-font-color-themeLight-hover:hover, .ms-font-color-themeLight-focus:focus, .ms-font-color-themeLight-before::before, .ms-fcl-tl-h:hover, .ms-fcl-tl-f:focus, .ms-fcl-tl-b::before { color: rgb(199, 224, 244); }.ms-font-color-themeLighter, .ms-fontColor-themeLighter, .ms-fontColor-themeLighter, .ms-fcl-tlr, .ms-font-color-themeLighter-hover:hover, .ms-font-color-themeLighter-focus:focus, .ms-font-color-themeLighter-before::before, .ms-fcl-tlr-h:hover, .ms-fcl-tlr-f:focus, .ms-fcl-tlr-b::before { color: rgb(222, 236, 249); }.ms-font-color-themeLighterAlt, .ms-fontColor-themeLighterAlt, .ms-fontColor-themeLighterAlt, .ms-fcl-tlra, .ms-font-color-themeLighterAlt-hover:hover, .ms-font-color-themeLighterAlt-focus:focus, .ms-font-color-themeLighterAlt-before::before, .ms-fcl-tlra-h:hover, .ms-fcl-tlra-f:focus, .ms-fcl-tlra-b::before { color: rgb(239, 246, 252); }.o365cs-base.o365cst .o365cs-topnavLinkBackground-2 { background-color: rgba(0, 0, 0, 0.8); }.o365cs-base.o365cst .o365cs-topnavText, .o365cs-base.o365cst .o365cs-topnavText:hover { color: rgb(255, 255, 255); }.o365cs-base.o365cst .o365cs-navMenuButton { color: rgb(255, 255, 255); }.o365cs-base.o365cst.o365cs-topnavBGColor-2 { background-color: rgb(0, 0, 0); }.o365cs-base.o365cst .o365cs-appLauncherBackground { background-color: rgb(51, 51, 51); }</style><style>.ms-bg-color-black, .ms-bgc-b, .ms-bg-color-black-hover:hover, .ms-bg-color-black-focus:focus, .ms-bg-color-black-before::before, .ms-bgc-b-h:hover, .ms-bgc-b-f:focus, .ms-bgc-b-b::before { background-color: rgb(0, 0, 0); }.ms-bg-color-neutralDark, .ms-bgc-nd, .ms-bg-color-neutralDark-hover:hover, .ms-bg-color-neutralDark-focus:focus, .ms-bg-color-neutralDark-before::before, .ms-bgc-nd-h:hover, .ms-bgc-nd-f:focus, .ms-bgc-nd-b::before { background-color: rgb(33, 33, 33); }.ms-bg-color-neutralPrimary, .ms-bgc-np, .ms-bg-color-neutralPrimary-hover:hover, .ms-bg-color-neutralPrimary-focus:focus, .ms-bg-color-neutralPrimary-before::before, .ms-bgc-np-h:hover, .ms-bgc-np-f:focus, .ms-bgc-np-b::before { background-color: rgb(51, 51, 51); }.ms-bg-color-neutralSecondary, .ms-bgc-ns, .ms-bg-color-neutralSecondary-hover:hover, .ms-bg-color-neutralSecondary-focus:focus, .ms-bg-color-neutralSecondary-before::before, .ms-bgc-ns-h:hover, .ms-bgc-ns-f:focus, .ms-bgc-ns-b::before { background-color: rgb(102, 102, 102); }.ms-bg-color-neutralSecondaryAlt, .ms-bgc-nsa, .ms-bg-color-neutralSecondaryAlt-hover:hover, .ms-bg-color-neutralSecondaryAlt-focus:focus, .ms-bg-color-neutralSecondaryAlt-before::before, .ms-bgc-nsa-h:hover, .ms-bgc-nsa-f:focus, .ms-bgc-nsa-b::before { background-color: rgb(118, 118, 118); }.ms-bg-color-neutralTertiary, .ms-bgc-nt, .ms-bg-color-neutralTertiary-hover:hover, .ms-bg-color-neutralTertiary-focus:focus, .ms-bg-color-neutralTertiary-before::before, .ms-bgc-nt-h:hover, .ms-bgc-nt-f:focus, .ms-bgc-nt-b::before { background-color: rgb(166, 166, 166); }.ms-bg-color-neutralTertiaryAlt, .ms-bgc-nta, .ms-bg-color-neutralTertiaryAlt-hover:hover, .ms-bg-color-neutralTertiaryAlt-focus:focus, .ms-bg-color-neutralTertiaryAlt-before::before, .ms-bgc-nta-h:hover, .ms-bgc-nta-f:focus, .ms-bgc-nta-b::before { background-color: rgb(200, 200, 200); }.ms-bg-color-neutralLight, .ms-bgc-nl, .ms-bg-color-neutralLight-hover:hover, .ms-bg-color-neutralLight-focus:focus, .ms-bg-color-neutralLight-before::before, .ms-bgc-nl-h:hover, .ms-bgc-nl-f:focus, .ms-bgc-nl-b::before { background-color: rgb(234, 234, 234); }.ms-bg-color-neutralLighter, .ms-bgc-nlr, .ms-bg-color-neutralLighter-hover:hover, .ms-bg-color-neutralLighter-focus:focus, .ms-bg-color-neutralLighter-before::before, .ms-bgc-nlr-h:hover, .ms-bgc-nlr-f:focus, .ms-bgc-nlr-b::before { background-color: rgb(244, 244, 244); }.ms-bg-color-neutralLighterAlt, .ms-bgc-nlra, .ms-bg-color-neutralLighterAlt-hover:hover, .ms-bg-color-neutralLighterAlt-focus:focus, .ms-bg-color-neutralLighterAlt-before::before, .ms-bgc-nlra-h:hover, .ms-bgc-nlra-f:focus, .ms-bgc-nlra-b::before { background-color: rgb(248, 248, 248); }.ms-bg-color-white, .ms-bgc-w, .ms-bg-color-white-hover:hover, .ms-bg-color-white-focus:focus, .ms-bg-color-white-before::before, .ms-bgc-w-h:hover, .ms-bgc-w-b::before { background-color: rgb(255, 255, 255); }.ms-border-color-black, .ms-bcl-b, .ms-border-color-black-hover:hover, .ms-border-color-black-focus:focus, .ms-border-color-black-before::before, .ms-bcl-b-h:hover, .ms-bcl-b-f:focus, .ms-bcl-b-b::before { border-color: rgb(0, 0, 0); }.ms-border-color-neutralDark, .ms-bcl-nd, .ms-border-color-neutralDark-hover:hover, .ms-border-color-neutralDark-focus:focus, .ms-border-color-neutralDark-before::before, .ms-bcl-nd-h:hover, .ms-bcl-nd-f:focus, .ms-bcl-nd-b::before { border-color: rgb(33, 33, 33); }.ms-border-color-neutralPrimary, .ms-bcl-np, .ms-border-color-neutralPrimary-hover:hover, .ms-border-color-neutralPrimary-focus:focus, .ms-border-color-neutralPrimary-before::before, .ms-bcl-np-h:hover, .ms-bcl-np-f:focus, .ms-bcl-np-b::before { border-color: rgb(51, 51, 51); }.ms-border-color-neutralSecondary, .ms-bcl-ns, .ms-border-color-neutralSecondary-hover:hover, .ms-border-color-neutralSecondary-focus:focus, .ms-border-color-neutralSecondary-before::before, .ms-bcl-ns-h:hover, .ms-bcl-ns-f:focus, .ms-bcl-ns-b::before { border-color: rgb(102, 102, 102); }.ms-border-color-neutralSecondaryAlt, .ms-bcl-nsa, .ms-border-color-neutralSecondaryAlt-hover:hover, .ms-border-color-neutralSecondaryAlt-focus:focus, .ms-border-color-neutralSecondaryAlt-before::before, .ms-bcl-nsa-h:hover, .ms-bcl-nsa-f:focus, .ms-bcl-nsa-b::before { border-color: rgb(118, 118, 118); }.ms-border-color-neutralTertiary, .ms-bcl-nt, .ms-border-color-neutralTertiary-hover:hover, .ms-border-color-neutralTertiary-focus:focus, .ms-border-color-neutralTertiary-before::before, .ms-bcl-nt-h:hover, .ms-bcl-nt-f:focus, .ms-bcl-nt-b::before { border-color: rgb(166, 166, 166); }.ms-border-color-neutralTertiaryAlt, .ms-bcl-nta, .ms-border-color-neutralTertiaryAlt-hover:hover, .ms-border-color-neutralTertiaryAlt-focus:focus, .ms-border-color-neutralTertiaryAlt-before::before, .ms-bcl-nta-h:hover, .ms-bcl-nta-f:focus, .ms-bcl-nta-b::before { border-color: rgb(200, 200, 200); }.ms-border-color-neutralLight, .ms-bcl-nl, .ms-border-color-neutralLight-hover:hover, .ms-border-color-neutralLight-focus:focus, .ms-border-color-neutralLight-before::before, .ms-bcl-nl-h:hover, .ms-bcl-nl-f:focus, .ms-bcl-nl-b::before { border-color: rgb(234, 234, 234); }.ms-border-color-neutralLighter, .ms-bcl-nlr, .ms-border-color-neutralLighter-hover:hover, .ms-border-color-neutralLighter-focus:focus, .ms-border-color-neutralLighter-before::before, .ms-bcl-nlr-h:hover, .ms-bcl-nlr-f:focus, .ms-bcl-nlr-b::before { border-color: rgb(244, 244, 244); }.ms-border-color-neutralLighterAlt, .ms-bcl-nlra, .ms-border-color-neutralLighterAlt-hover:hover, .ms-border-color-neutralLighterAlt-focus:focus, .ms-border-color-neutralLighterAlt-before::before, .ms-bcl-nlra-h:hover, .ms-bcl-nlra-f:focus, .ms-bcl-nlra-b::before { border-color: rgb(248, 248, 248); }.ms-border-color-white, .ms-bcl-w, .ms-border-color-white-hover:hover, .ms-border-color-white-focus:focus, .ms-border-color-white-before::before, .ms-bcl-w-h:hover, .ms-bcl-w-f:focus, .ms-bcl-w-b::before { border-color: rgb(255, 255, 255); }.ms-font-color-black, .ms-fontColor-black, .ms-fcl-b, .ms-font-color-black-hover:hover, .ms-font-color-black-focus:focus, .ms-font-color-black-before::before, .ms-fcl-b-h:hover, .ms-fcl-b-f:focus, .ms-fcl-b-b::before { color: rgb(0, 0, 0); }.ms-font-color-neutralDark, .ms-fontColor-neutralDark, .ms-fcl-nd, .ms-font-color-neutralDark-hover:hover, .ms-font-color-neutralDark-focus:focus, .ms-font-color-neutralDark-before::before, .ms-fcl-nd-h:hover, .ms-fcl-nd-f:focus, .ms-fcl-nd-b::before { color: rgb(33, 33, 33); }.ms-font-color-neutralPrimary, .ms-fontColor-neutralPrimary, .ms-fcl-np, .ms-font-color-neutralPrimary-hover:hover, .ms-font-color-neutralPrimary-focus:focus, .ms-font-color-neutralPrimary-before::before, .ms-fcl-np-h:hover, .ms-fcl-np-f:focus, .ms-fcl-np-b::before { color: rgb(51, 51, 51); }.ms-font-color-neutralSecondary, .ms-fontColor-neutralSecondary, .ms-fcl-ns, .ms-font-color-neutralSecondary-hover:hover, .ms-font-color-neutralSecondary-focus:focus, .ms-font-color-neutralSecondary-before::before, .ms-fcl-ns-h:hover, .ms-fcl-ns-f:focus, .ms-fcl-ns-b::before { color: rgb(102, 102, 102); }.ms-font-color-neutralSecondaryAlt, .ms-fontColor-neutralSecondaryAlt, .ms-fcl-nsa, .ms-font-color-neutralSecondaryAlt-hover:hover, .ms-font-color-neutralSecondaryAlt-focus:focus, .ms-font-color-neutralSecondaryAlt-before::before, .ms-fcl-nsa-h:hover, .ms-fcl-nsa-f:focus, .ms-fcl-nsa-b::before { color: rgb(118, 118, 118); }.ms-font-color-neutralTertiary, .ms-fontColor-neutralTertiary, .ms-fcl-nt, .ms-font-color-neutralTertiary-hover:hover, .ms-font-color-neutralTertiary-focus:focus, .ms-font-color-neutralTertiary-before::before, .ms-fcl-nt-h:hover, .ms-fcl-nt-f:focus, .ms-fcl-nt-b::before { color: rgb(166, 166, 166); }.ms-font-color-neutralTertiaryAlt, .ms-fontColor-neutralTertiaryAlt, .ms-fcl-nta, .ms-font-color-neutralTertiaryAlt-hover:hover, .ms-font-color-neutralTertiaryAlt-focus:focus, .ms-font-color-neutralTertiaryAlt-before::before, .ms-fcl-nta-h:hover, .ms-fcl-nta-f:focus, .ms-fcl-nta-b::before { color: rgb(200, 200, 200); }.ms-font-color-neutralLight, .ms-fontColor-neutralLight, .ms-fcl-nl, .ms-font-color-neutralLight-hover:hover, .ms-font-color-neutralLight-focus:focus, .ms-font-color-neutralLight-before::before, .ms-fcl-nl-h:hover, .ms-fcl-nl-f:focus, .ms-fcl-nl-b::before { color: rgb(234, 234, 234); }.ms-font-color-neutralLighter, .ms-fontColor-neutralLighter, .ms-fcl-nlr, .ms-font-color-neutralLighter-hover:hover, .ms-font-color-neutralLighter-focus:focus, .ms-font-color-neutralLighter-before::before, .ms-fcl-nlr-h:hover, .ms-fcl-nlr-f:focus, .ms-fcl-nlr-b::before { color: rgb(244, 244, 244); }.ms-font-color-neutralLighterAlt, .ms-fontColor-neutralLighterAlt, .ms-fcl-nlra, .ms-font-color-neutralLighterAlt-hover:hover, .ms-font-color-neutralLighterAlt-focus:focus, .ms-font-color-neutralLighterAlt-before::before, .ms-fcl-nlra-h:hover, .ms-fcl-nlra-f:focus, .ms-fcl-nlra-b::before { color: rgb(248, 248, 248); }.ms-font-color-white, .ms-fontColor-white, .ms-fcl-w, .ms-font-color-white-hover:hover, .ms-font-color-white-focus:focus, .ms-font-color-white-before::before, .ms-fcl-w-h:hover, .ms-fcl-w-f:focus, .ms-fcl-w-b::before { color: rgb(255, 255, 255); }</style><style>.ms-bg-color-yellow, .ms-bgc-y, .ms-bg-color-yellow-hover:hover, .ms-bg-color-yellow-before::before, .ms-bgc-y-h:hover, .ms-bgc-y-b::before { background-color: rgb(255, 185, 0); }.ms-bg-color-yellowLight, .ms-bgc-yl, .ms-bg-color-yellowLight-hover:hover, .ms-bg-color-yellowLight-before::before, .ms-bgc-yl-h:hover, .ms-bgc-yl-b::before { background-color: rgb(255, 241, 0); }.ms-bg-color-orange, .ms-bgc-o, .ms-bg-color-orange-hover:hover, .ms-bg-color-orange-before::before, .ms-bgc-o-h:hover, .ms-bgc-o-b::before { background-color: rgb(216, 59, 1); }.ms-bg-color-orangeLight, .ms-bgc-ol, .ms-bg-color-orangeLight-hover:hover, .ms-bg-color-orangeLight-before::before, .ms-bgc-ol-h:hover, .ms-bgc-ol-b::before { background-color: rgb(255, 140, 0); }.ms-bg-color-redDark, .ms-bgc-rd, .ms-bg-color-redDark-hover:hover, .ms-bg-color-redDark-before::before, .ms-bgc-rd-h:hover, .ms-bgc-rd-b::before { background-color: rgb(168, 0, 0); }.ms-bg-color-red, .ms-bgc-r, .ms-bg-color-red-hover:hover, .ms-bg-color-red-before::before, .ms-bgc-r-h:hover, .ms-bgc-r-b::before { background-color: rgb(232, 17, 35); }.ms-bg-color-magentaDark, .ms-bgc-md, .ms-bg-color-magentaDark-hover:hover, .ms-bg-color-magentaDark-before::before, .ms-bgc-md-h:hover, .ms-bgc-md-b::before { background-color: rgb(92, 0, 92); }.ms-bg-color-magenta, .ms-bgc-m, .ms-bg-color-magenta-hover:hover, .ms-bg-color-magenta-before::before, .ms-bgc-m-h:hover, .ms-bgc-m-b::before { background-color: rgb(180, 0, 158); }.ms-bg-color-magentaLight, .ms-bgc-ml, .ms-bg-color-magentaLight-hover:hover, .ms-bg-color-magentaLight-before::before, .ms-bgc-ml-h:hover, .ms-bgc-ml-b::before { background-color: rgb(227, 0, 140); }.ms-bg-color-purpleDark, .ms-bgc-pd, .ms-bg-color-purpleDark-hover:hover, .ms-bg-color-purpleDark-before::before, .ms-bgc-pd-h:hover, .ms-bgc-pd-b::before { background-color: rgb(50, 20, 90); }.ms-bg-color-purple, .ms-bgc-p, .ms-bg-color-purple-hover:hover, .ms-bg-color-purple-before::before, .ms-bgc-p-h:hover, .ms-bgc-p-b::before { background-color: rgb(92, 45, 145); }.ms-bg-color-purpleLight, .ms-bgc-pl, .ms-bg-color-purpleLight-hover:hover, .ms-bg-color-purpleLight-before::before, .ms-bgc-pl-h:hover, .ms-bgc-pl-b::before { background-color: rgb(180, 160, 255); }.ms-bg-color-blueDark, .ms-bgc-bd, .ms-bg-color-blueDark-hover:hover, .ms-bg-color-blueDark-before::before, .ms-bgc-bd-h:hover, .ms-bgc-bd-b::before { background-color: rgb(0, 32, 80); }.ms-bg-color-blueMid, .ms-bgc-bm, .ms-bg-color-blueMid-hover:hover, .ms-bg-color-blueMid-before::before, .ms-bgc-bm-h:hover, .ms-bgc-bm-b::before { background-color: rgb(0, 24, 143); }.ms-bg-color-blue, .ms-bgc-blu, .ms-bg-color-blue-hover:hover, .ms-bg-color-blue-before::before, .ms-bgc-blu-h:hover, .ms-bgc-blu-b::before { background-color: rgb(0, 120, 215); }.ms-bg-color-blueLight, .ms-bgc-bl, .ms-bg-color-blueLight-hover:hover, .ms-bg-color-blueLight-before::before, .ms-bgc-bl-h:hover, .ms-bgc-bl-b::before { background-color: rgb(0, 188, 242); }.ms-bg-color-tealDark, .ms-bgc-ted, .ms-bg-color-tealDark-hover:hover, .ms-bg-color-tealDark-before::before, .ms-bgc-ted-h:hover, .ms-bgc-ted-b::before { background-color: rgb(0, 75, 80); }.ms-bg-color-teal, .ms-bgc-t, .ms-bg-color-teal-hover:hover, .ms-bg-color-teal-before::before, .ms-bgc-t-h:hover, .ms-bgc-t-b::before { background-color: rgb(0, 130, 114); }.ms-bg-color-tealLight, .ms-bgc-tel, .ms-bg-color-tealLight-hover:hover, .ms-bg-color-tealLight-before::before, .ms-bgc-tel-h:hover, .ms-bgc-tel-b::before { background-color: rgb(0, 178, 148); }.ms-bg-color-greenDark, .ms-bgc-gd, .ms-bg-color-greenDark-hover:hover, .ms-bg-color-greenDark-before::before, .ms-bgc-gd-h:hover, .ms-bgc-gd-b::before { background-color: rgb(0, 75, 28); }.ms-bg-color-green, .ms-bgc-g, .ms-bg-color-green-hover:hover, .ms-bg-color-green-before::before, .ms-bgc-g-h:hover, .ms-bgc-g-b::before { background-color: rgb(16, 124, 16); }.ms-bg-color-greenLight, .ms-bgc-gl, .ms-bg-color-greenLight-hover:hover, .ms-bg-color-greenLight-before::before, .ms-bgc-gl-h:hover, .ms-bgc-gl-b::before { background-color: rgb(186, 216, 10); }.ms-border-color-yellow, .ms-bcl-y, .ms-border-color-yellow-hover:hover, .ms-border-color-yellow-before::before, .ms-bcl-y-h:hover, .ms-bcl-y-b::before { border-color: rgb(255, 185, 0); }.ms-border-color-yellowLight, .ms-bcl-yl, .ms-border-color-yellowLight-hover:hover, .ms-border-color-yellowLight-before::before, .ms-bcl-yl-h:hover, .ms-bcl-yl-b::before { border-color: rgb(255, 241, 0); }.ms-border-color-orange, .ms-bcl-o, .ms-border-color-orange-hover:hover, .ms-border-color-orange-before::before, .ms-bcl-o-h:hover, .ms-bcl-o-b::before { border-color: rgb(216, 59, 1); }.ms-border-color-orangeLight, .ms-bcl-ol, .ms-border-color-orangeLight-hover:hover, .ms-border-color-orangeLight-before::before, .ms-bcl-ol-h:hover, .ms-bcl-ol-b::before { border-color: rgb(255, 140, 0); }.ms-border-color-redDark, .ms-bcl-rd, .ms-border-color-redDark-hover:hover, .ms-border-color-redDark-before::before, .ms-bcl-rd-h:hover, .ms-bcl-rd-b::before { border-color: rgb(168, 0, 0); }.ms-border-color-red, .ms-bcl-r, .ms-border-color-red-hover:hover, .ms-border-color-red-before::before, .ms-bcl-r-h:hover, .ms-bcl-r-b::before { border-color: rgb(232, 17, 35); }.ms-border-color-magentaDark, .ms-bcl-md, .ms-border-color-magentaDark-hover:hover, .ms-border-color-magentaDark-before::before, .ms-bcl-md-h:hover, .ms-bcl-md-b::before { border-color: rgb(92, 0, 92); }.ms-border-color-magenta, .ms-bcl-m, .ms-border-color-magenta-hover:hover, .ms-border-color-magenta-before::before, .ms-bcl-m-h:hover, .ms-bcl-m-b::before { border-color: rgb(180, 0, 158); }.ms-border-color-magentaLight, .ms-bcl-ml, .ms-border-color-magentaLight-hover:hover, .ms-border-color-magentaLight-before::before, .ms-bcl-ml-h:hover, .ms-bcl-ml-b::before { border-color: rgb(227, 0, 140); }.ms-border-color-purpleDark, .ms-bcl-pd, .ms-border-color-purpleDark-hover:hover, .ms-border-color-purpleDark-before::before, .ms-bcl-pd-h:hover, .ms-bcl-pd-b::before { border-color: rgb(50, 20, 90); }.ms-border-color-purple, .ms-bcl-p, .ms-border-color-purple-hover:hover, .ms-border-color-purple-before::before, .ms-bcl-p-h:hover, .ms-bcl-p-b::before { border-color: rgb(92, 45, 145); }.ms-border-color-purpleLight, .ms-bcl-pl, .ms-border-color-purpleLight-hover:hover, .ms-border-color-purpleLight-before::before, .ms-bcl-pl-h:hover, .ms-bcl-pl-b::before { border-color: rgb(180, 160, 255); }.ms-border-color-blueDark, .ms-bcl-bd, .ms-border-color-blueDark-hover:hover, .ms-border-color-blueDark-before::before, .ms-bcl-bd-h:hover, .ms-bcl-bd-b::before { border-color: rgb(0, 32, 80); }.ms-border-color-blueMid, .ms-bcl-bm, .ms-border-color-blueMid-hover:hover, .ms-border-color-blueMid-before::before, .ms-bcl-bm-h:hover, .ms-bcl-bm-b::before { border-color: rgb(0, 24, 143); }.ms-border-color-blue, .ms-bcl-blu, .ms-border-color-blue-hover:hover, .ms-border-color-blue-before::before, .ms-bcl-blu-h:hover, .ms-bcl-blu-b::before { border-color: rgb(0, 120, 215); }.ms-border-color-blueLight, .ms-bcl-bl, .ms-border-color-blueLight-hover:hover, .ms-border-color-blueLight-before::before, .ms-bcl-bl-h:hover, .ms-bcl-bl-b::before { border-color: rgb(0, 188, 242); }.ms-border-color-tealDark, .ms-bcl-ted, .ms-border-color-tealDark-hover:hover, .ms-border-color-tealDark-before::before, .ms-bcl-ted-h:hover, .ms-bcl-ted-b::before { border-color: rgb(0, 75, 80); }.ms-border-color-teal, .ms-bcl-t, .ms-border-color-teal-hover:hover, .ms-border-color-teal-before::before, .ms-bcl-t-h:hover, .ms-bcl-t-b::before { border-color: rgb(0, 130, 114); }.ms-border-color-tealLight, .ms-bcl-tel, .ms-border-color-tealLight-hover:hover, .ms-border-color-tealLight-before::before, .ms-bcl-tel-h:hover, .ms-bcl-tel-b::before { border-color: rgb(0, 178, 148); }.ms-border-color-greenDark, .ms-bcl-gd, .ms-border-color-greenDark-hover:hover, .ms-border-color-greenDark-before::before, .ms-bcl-gd-h:hover, .ms-bcl-gd-b::before { border-color: rgb(0, 75, 28); }.ms-border-color-green, .ms-bcl-g, .ms-border-color-green-hover:hover, .ms-border-color-green-before::before, .ms-bcl-g-h:hover, .ms-bcl-g-b::before { border-color: rgb(16, 124, 16); }.ms-border-color-greenLight, .ms-bcl-gl, .ms-border-color-greenLight-hover:hover, .ms-border-color-greenLight-before::before, .ms-bcl-gl-h:hover, .ms-bcl-gl-b::before { border-color: rgb(186, 216, 10); }.ms-font-color-yellow, .ms-fcl-y, .ms-font-color-yellow-hover:hover, .ms-font-color-yellow-before::before, .ms-fcl-y-h:hover, .ms-fcl-y-b::before { color: rgb(255, 185, 0); }.ms-font-color-yellowLight, .ms-fcl-yl, .ms-font-color-yellowLight-hover:hover, .ms-font-color-yellowLight-before::before, .ms-fcl-yl-h:hover, .ms-fcl-yl-b::before { color: rgb(255, 241, 0); }.ms-font-color-orange, .ms-fcl-o, .ms-font-color-orange-hover:hover, .ms-font-color-orange-before::before, .ms-fcl-o-h:hover, .ms-fcl-o-b::before { color: rgb(216, 59, 1); }.ms-font-color-orangeLight, .ms-fcl-ol, .ms-font-color-orangeLight-hover:hover, .ms-font-color-orangeLight-before::before, .ms-fcl-ol-h:hover, .ms-fcl-ol-b::before { color: rgb(255, 140, 0); }.ms-font-color-redDark, .ms-fcl-rd, .ms-font-color-redDark-hover:hover, .ms-font-color-redDark-before::before, .ms-fcl-rd-h:hover, .ms-fcl-rd-b::before { color: rgb(168, 0, 0); }.ms-font-color-red, .ms-fcl-r, .ms-font-color-red-hover:hover, .ms-font-color-red-before::before, .ms-fcl-r-h:hover, .ms-fcl-r-b::before { color: rgb(232, 17, 35); }.ms-font-color-magentaDark, .ms-fcl-md, .ms-font-color-magentaDark-hover:hover, .ms-font-color-magentaDark-before::before, .ms-fcl-md-h:hover, .ms-fcl-md-b::before { color: rgb(92, 0, 92); }.ms-font-color-magenta, .ms-fcl-m, .ms-font-color-magenta-hover:hover, .ms-font-color-magenta-before::before, .ms-fcl-m-h:hover, .ms-fcl-m-b::before { color: rgb(180, 0, 158); }.ms-font-color-magentaLight, .ms-fcl-ml, .ms-font-color-magentaLight-hover:hover, .ms-font-color-magentaLight-before::before, .ms-fcl-ml-h:hover, .ms-fcl-ml-b::before { color: rgb(227, 0, 140); }.ms-font-color-purpleDark, .ms-fcl-pd, .ms-font-color-purpleDark-hover:hover, .ms-font-color-purpleDark-before::before, .ms-fcl-pd-h:hover, .ms-fcl-pd-b::before { color: rgb(50, 20, 90); }.ms-font-color-purple, .ms-fcl-p, .ms-font-color-purple-hover:hover, .ms-font-color-purple-before::before, .ms-fcl-p-h:hover, .ms-fcl-p-b::before { color: rgb(92, 45, 145); }.ms-font-color-purpleLight, .ms-fcl-pl, .ms-font-color-purpleLight-hover:hover, .ms-font-color-purpleLight-before::before, .ms-fcl-pl-h:hover, .ms-fcl-pl-b::before { color: rgb(180, 160, 255); }.ms-font-color-blueDark, .ms-fcl-bd, .ms-font-color-blueDark-hover:hover, .ms-font-color-blueDark-before::before, .ms-fcl-bd-h:hover, .ms-fcl-bd-b::before { color: rgb(0, 32, 80); }.ms-font-color-blueMid, .ms-fcl-bm, .ms-font-color-blueMid-hover:hover, .ms-font-color-blueMid-before::before, .ms-fcl-bm-h:hover, .ms-fcl-bm-b::before { color: rgb(0, 24, 143); }.ms-font-color-blue, .ms-fcl-blu, .ms-font-color-blue-hover:hover, .ms-font-color-blue-before::before, .ms-fcl-blu-h:hover, .ms-fcl-blu-b::before { color: rgb(0, 120, 215); }.ms-font-color-blueLight, .ms-fcl-bl, .ms-font-color-blueLight-hover:hover, .ms-font-color-blueLight-before::before, .ms-fcl-bl-h:hover, .ms-fcl-bl-b::before { color: rgb(0, 188, 242); }.ms-font-color-tealDark, .ms-fcl-ted, .ms-font-color-tealDark-hover:hover, .ms-font-color-tealDark-before::before, .ms-fcl-ted-h:hover, .ms-fcl-ted-b::before { color: rgb(0, 75, 80); }.ms-font-color-teal, .ms-fcl-t, .ms-font-color-teal-hover:hover, .ms-font-color-teal-before::before, .ms-fcl-t-h:hover, .ms-fcl-t-b::before { color: rgb(0, 130, 114); }.ms-font-color-tealLight, .ms-fcl-tel, .ms-font-color-tealLight-hover:hover, .ms-font-color-tealLight-before::before, .ms-fcl-tel-h:hover, .ms-fcl-tel-b::before { color: rgb(0, 178, 148); }.ms-font-color-greenDark, .ms-fcl-gd, .ms-font-color-greenDark-hover:hover, .ms-font-color-greenDark-before::before, .ms-fcl-gd-h:hover, .ms-fcl-gd-b::before { color: rgb(0, 75, 28); }.ms-font-color-green, .ms-fcl-g, .ms-font-color-green-hover:hover, .ms-font-color-green-before::before, .ms-fcl-g-h:hover, .ms-fcl-g-b::before { color: rgb(16, 124, 16); }.ms-font-color-greenLight, .ms-fcl-gl, .ms-font-color-greenLight-hover:hover, .ms-font-color-greenLight-before::before, .ms-fcl-gl-h:hover, .ms-fcl-gl-b::before { color: rgb(186, 216, 10); }</style><style>.owa-font-compose { font-family: Calibri, Arial, Helvetica, sans-serif; }.owa-bg-color-neutral-orange { background-color: rgb(216, 35, 0); }.owa-bg-color-neutral-red { background-color: rgb(168, 15, 34); }.owa-bg-color-neutral-yellow { background-color: rgb(255, 238, 148); }.owa-bg-color-neutral-green { background-color: rgb(93, 210, 85); }.owa-bg-color-cal-green { background-color: rgb(104, 164, 144); }.owa-bg-color-cal-purple { background-color: rgb(151, 108, 190); }.owa-border-color-neutral-orange { border-color: rgb(216, 35, 0); }.owa-border-color-neutral-red { border-color: rgb(168, 15, 34); }.owa-border-color-neutral-yellow { border-color: rgb(255, 238, 148); }.owa-border-color-neutral-green { border-color: rgb(93, 210, 85); }.owa-border-color-cal-green { border-color: rgb(104, 164, 144); }.owa-border-color-cal-purple { border-color: rgb(151, 108, 190); }.owa-color-neutral-darkBlue { color: rgb(0, 0, 139); }.owa-color-neutral-orange { color: rgb(216, 35, 0); }.owa-color-neutral-red { color: rgb(168, 15, 34); }.owa-color-neutral-yellow { color: rgb(255, 238, 148); }.owa-color-neutral-green { color: rgb(93, 210, 85); }.owa-color-neutral-green-alt, .owa-color-neutral-green-alt::before { color: rgb(16, 124, 16); }.owa-color-cal-green { color: rgb(104, 164, 144); }.owa-color-cal-green-hover { color: rgb(55, 115, 83); }.owa-color-cal-purple { color: rgb(151, 108, 190); }.owa-color-cal-purple-hover { color: rgb(103, 57, 123); }.owa-color-cal-blue { color: rgb(113, 194, 235); }.owa-color-cal-brown { color: rgb(171, 155, 129); }.owa-color-cal-green-alt { color: rgb(169, 196, 122); }.owa-color-cal-grey { color: rgb(153, 155, 156); }.owa-color-cal-orange { color: rgb(230, 151, 92); }.owa-color-cal-pink { color: rgb(202, 106, 171); }.owa-color-cal-red { color: rgb(213, 114, 114); }.owa-color-cal-teal { color: rgb(123, 203, 196); }.owa-color-cal-yellow { color: rgb(227, 183, 93); }.owa-color-folder-brown { color: rgb(234, 194, 130); }.ms-font-color-red { color: rgb(232, 17, 35); }.ms-font-color-redDark { color: rgb(168, 0, 0); }</style><style>.o365cs-topnavBGImage { background: url("prem/16.1692.10.2254277/resources/themes/balloons/images/0/headerbgmaing2.png"), url("prem/16.1692.10.2254277/resources/themes/balloons/images/0/headerbgmaing2.gif"); width: 1px; height: 1px; }</style><style>body { width: 100%; height: 100%; margin: 0px; padding: 0px; }#owaLoading { background-color: rgb(255, 255, 255); width: 100%; height: 100%; position: absolute; z-index: 10001; }#loadingLogo, #loadingSpinner, #statusText { display: block; margin-left: auto; margin-right: auto; text-align: center; }#loadingLogo { padding-top: 174px; padding-bottom: 22px; }.tnarrow #loadingLogo { padding-top: 52px; }#statusText { color: rgb(0, 114, 198); font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 12px; margin-top: 20px; }#statusText > span { display: none; margin-left: auto; margin-right: auto; line-height: 11px; }#statusText.script > .script { display: inline; }#statusText.scriptDelay > .scriptDelay { display: inline; }#statusText.data > .data { display: inline; }#statusText.dataDelay > .dataDelay { display: inline; }#statusText.render > .render { display: inline; }</style><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/sprite1.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/boot.worldwide.mouse.css"><style>@media print {<br> #primaryContainer { width: 1366px; position: fixed !important; }<br>}</style><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/o365shellg2coreowa.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.boot.deferred.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.controls.extended.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.adsbar.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.lightning.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.categorytree.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.triageshared.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.personacontrol.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.mail.common.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.findpeople.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/nbsprite1.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.controls.editorbase.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.recipientwell.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.mail.compose.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.attachments.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.application.readingpane.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.calendar.controls.v2.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.calendar.addroom.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.calendar.locationwell.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.calendar.meetingforms.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/o365shellg2plusowa.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.im.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/common.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/swx.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.extendedmaillistview.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.people.personcard.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.instantsearch.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.search.suggestions.mouse.css"><style>.swx .tab_id_002_noname_0ad8092f-344e-4db3-b2df-1a027e29d61a { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_0ad8092f-344e-4db3-b2df-1a027e29d61a/views/thumbnail"); }.swx .tab_id_002_noname_2268d166-680f-4143-8b9e-8a235f9f580f { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_2268d166-680f-4143-8b9e-8a235f9f580f/views/thumbnail"); }.swx span.moji.id_102125f4474c47d68016ac40bb4ba4c5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/102125f4474c47d68016ac40bb4ba4c5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_102125f4474c47d68016ac40bb4ba4c5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/102125f4474c47d68016ac40bb4ba4c5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f08afcc226db4e77a09bbae00285d92e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f08afcc226db4e77a09bbae00285d92e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f08afcc226db4e77a09bbae00285d92e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f08afcc226db4e77a09bbae00285d92e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4ace86a8452944b6b543684dbfecc60d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4ace86a8452944b6b543684dbfecc60d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4ace86a8452944b6b543684dbfecc60d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4ace86a8452944b6b543684dbfecc60d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b729b2e478f24af8b289acd9a5c4ea87 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b729b2e478f24af8b289acd9a5c4ea87/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b729b2e478f24af8b289acd9a5c4ea87 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b729b2e478f24af8b289acd9a5c4ea87/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7e5f2eb4d5a049aba3c1452f585b1e4a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7e5f2eb4d5a049aba3c1452f585b1e4a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7e5f2eb4d5a049aba3c1452f585b1e4a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7e5f2eb4d5a049aba3c1452f585b1e4a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c7dac0c0dfc142838b771d28187e4fa8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c7dac0c0dfc142838b771d28187e4fa8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c7dac0c0dfc142838b771d28187e4fa8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c7dac0c0dfc142838b771d28187e4fa8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b35bd9478ba440eeb900ea1f2f574af9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b35bd9478ba440eeb900ea1f2f574af9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b35bd9478ba440eeb900ea1f2f574af9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b35bd9478ba440eeb900ea1f2f574af9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1b0cf2beda844bcea51a7fe96c040140 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1b0cf2beda844bcea51a7fe96c040140/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1b0cf2beda844bcea51a7fe96c040140 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1b0cf2beda844bcea51a7fe96c040140/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d2025ac4fb05455c9fad00c9afdfa3d0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d2025ac4fb05455c9fad00c9afdfa3d0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d2025ac4fb05455c9fad00c9afdfa3d0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d2025ac4fb05455c9fad00c9afdfa3d0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4d95adb98d3b49eaa82c49cb692dcd22 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4d95adb98d3b49eaa82c49cb692dcd22/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4d95adb98d3b49eaa82c49cb692dcd22 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4d95adb98d3b49eaa82c49cb692dcd22/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_636c5e8fbdd14e04ade630c5b6152275 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/636c5e8fbdd14e04ade630c5b6152275/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_636c5e8fbdd14e04ade630c5b6152275 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/636c5e8fbdd14e04ade630c5b6152275/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_eb7fed2ffeab4d339064e67dfc9a783b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eb7fed2ffeab4d339064e67dfc9a783b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_eb7fed2ffeab4d339064e67dfc9a783b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eb7fed2ffeab4d339064e67dfc9a783b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_dc3acfadbb994d3793cfe905a0dec482 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dc3acfadbb994d3793cfe905a0dec482/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_dc3acfadbb994d3793cfe905a0dec482 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dc3acfadbb994d3793cfe905a0dec482/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bd31f2f059ce41bca5dfb9b969d7e1ea span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd31f2f059ce41bca5dfb9b969d7e1ea/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bd31f2f059ce41bca5dfb9b969d7e1ea span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd31f2f059ce41bca5dfb9b969d7e1ea/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ef8a8e4599ca4591a96a67f23c23abd1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ef8a8e4599ca4591a96a67f23c23abd1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ef8a8e4599ca4591a96a67f23c23abd1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ef8a8e4599ca4591a96a67f23c23abd1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5d7807e764e14f6ea102ddfdd30acf34 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d7807e764e14f6ea102ddfdd30acf34/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5d7807e764e14f6ea102ddfdd30acf34 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d7807e764e14f6ea102ddfdd30acf34/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_201ca95718f34012b6d76bb7b388c652 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/201ca95718f34012b6d76bb7b388c652/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_201ca95718f34012b6d76bb7b388c652 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/201ca95718f34012b6d76bb7b388c652/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5d3fd81f22b341299881072c627533d5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d3fd81f22b341299881072c627533d5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5d3fd81f22b341299881072c627533d5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d3fd81f22b341299881072c627533d5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f305b50326b34f07a0c2dd0c27325cea span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f305b50326b34f07a0c2dd0c27325cea/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f305b50326b34f07a0c2dd0c27325cea span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f305b50326b34f07a0c2dd0c27325cea/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_83bf44f0d867434fb296d77bf9488828 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/83bf44f0d867434fb296d77bf9488828/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_83bf44f0d867434fb296d77bf9488828 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/83bf44f0d867434fb296d77bf9488828/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bb677fa811474474ad19fd9cf34afd8e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb677fa811474474ad19fd9cf34afd8e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bb677fa811474474ad19fd9cf34afd8e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb677fa811474474ad19fd9cf34afd8e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d796450ddff1496a9d43eb7d1ee795c6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d796450ddff1496a9d43eb7d1ee795c6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d796450ddff1496a9d43eb7d1ee795c6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d796450ddff1496a9d43eb7d1ee795c6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0ebd46c04fa641df8be24bb42d911c6b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ebd46c04fa641df8be24bb42d911c6b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0ebd46c04fa641df8be24bb42d911c6b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ebd46c04fa641df8be24bb42d911c6b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5db6bfb50b064e739f068d407d207ca0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5db6bfb50b064e739f068d407d207ca0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5db6bfb50b064e739f068d407d207ca0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5db6bfb50b064e739f068d407d207ca0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_df369f9ec4a7475396e5c1deabe21167 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df369f9ec4a7475396e5c1deabe21167/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_df369f9ec4a7475396e5c1deabe21167 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df369f9ec4a7475396e5c1deabe21167/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9401c7f9c12944e49daa82fc1e92ec31 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9401c7f9c12944e49daa82fc1e92ec31/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9401c7f9c12944e49daa82fc1e92ec31 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9401c7f9c12944e49daa82fc1e92ec31/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5e4b15ed51244c5daae58114abeda46c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5e4b15ed51244c5daae58114abeda46c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5e4b15ed51244c5daae58114abeda46c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5e4b15ed51244c5daae58114abeda46c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e0734f17138c46a693b00a2b58babc12 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e0734f17138c46a693b00a2b58babc12/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e0734f17138c46a693b00a2b58babc12 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e0734f17138c46a693b00a2b58babc12/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_80a3b4c737e1461b87f86d385084fc84 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80a3b4c737e1461b87f86d385084fc84/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_80a3b4c737e1461b87f86d385084fc84 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80a3b4c737e1461b87f86d385084fc84/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_eadac0775ce3428197104734ef87a481 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eadac0775ce3428197104734ef87a481/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_eadac0775ce3428197104734ef87a481 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eadac0775ce3428197104734ef87a481/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c8d2e2ae0da64a4d8e3bf4fc854c8d25 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c8d2e2ae0da64a4d8e3bf4fc854c8d25/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c8d2e2ae0da64a4d8e3bf4fc854c8d25 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c8d2e2ae0da64a4d8e3bf4fc854c8d25/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c3b6afa09a544c7a8dfd5ff1eaec0bd5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c3b6afa09a544c7a8dfd5ff1eaec0bd5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c3b6afa09a544c7a8dfd5ff1eaec0bd5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c3b6afa09a544c7a8dfd5ff1eaec0bd5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_03987e97cdbd42ffad88e93a648eb7bb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/03987e97cdbd42ffad88e93a648eb7bb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_03987e97cdbd42ffad88e93a648eb7bb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/03987e97cdbd42ffad88e93a648eb7bb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_026491323f50430aabfc3937e3ca3d83 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/026491323f50430aabfc3937e3ca3d83/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_026491323f50430aabfc3937e3ca3d83 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/026491323f50430aabfc3937e3ca3d83/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_34a59afcf88c487db7069f4f88c93a60 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/34a59afcf88c487db7069f4f88c93a60/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_34a59afcf88c487db7069f4f88c93a60 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/34a59afcf88c487db7069f4f88c93a60/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1f60a428906f49d3b9fbaee16b95a63a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1f60a428906f49d3b9fbaee16b95a63a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1f60a428906f49d3b9fbaee16b95a63a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1f60a428906f49d3b9fbaee16b95a63a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_85f3bcfcffe64a5d8440ec21f13a78a1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/85f3bcfcffe64a5d8440ec21f13a78a1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_85f3bcfcffe64a5d8440ec21f13a78a1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/85f3bcfcffe64a5d8440ec21f13a78a1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7757cab2e26e435194c5269358eadda7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7757cab2e26e435194c5269358eadda7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7757cab2e26e435194c5269358eadda7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7757cab2e26e435194c5269358eadda7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8719fee79e884e3aa923bf3140a99d3b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8719fee79e884e3aa923bf3140a99d3b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8719fee79e884e3aa923bf3140a99d3b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8719fee79e884e3aa923bf3140a99d3b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7676b8cb7afc44529d144f7455f2ef8e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7676b8cb7afc44529d144f7455f2ef8e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7676b8cb7afc44529d144f7455f2ef8e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7676b8cb7afc44529d144f7455f2ef8e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_391e60f5ca004b0aa7956478df92eae8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/391e60f5ca004b0aa7956478df92eae8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_391e60f5ca004b0aa7956478df92eae8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/391e60f5ca004b0aa7956478df92eae8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f96a75da9440429ca22baef01ac76685 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f96a75da9440429ca22baef01ac76685/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f96a75da9440429ca22baef01ac76685 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f96a75da9440429ca22baef01ac76685/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_11a49ac0c55b43028d7b64b1bc80543d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11a49ac0c55b43028d7b64b1bc80543d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_11a49ac0c55b43028d7b64b1bc80543d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11a49ac0c55b43028d7b64b1bc80543d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_47eb153b8113466f9a68eaa1e47d21ef span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/47eb153b8113466f9a68eaa1e47d21ef/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_47eb153b8113466f9a68eaa1e47d21ef span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/47eb153b8113466f9a68eaa1e47d21ef/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e245fced1cba4ae18fa0d449de6a89e4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e245fced1cba4ae18fa0d449de6a89e4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e245fced1cba4ae18fa0d449de6a89e4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e245fced1cba4ae18fa0d449de6a89e4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e5f6bbce978749b4947e30cc9688aa50 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5f6bbce978749b4947e30cc9688aa50/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e5f6bbce978749b4947e30cc9688aa50 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5f6bbce978749b4947e30cc9688aa50/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_18884340c2414c62b00bc318504260ed span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/18884340c2414c62b00bc318504260ed/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_18884340c2414c62b00bc318504260ed span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/18884340c2414c62b00bc318504260ed/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6e7f4035a885437fa3fcfd5fc024f907 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6e7f4035a885437fa3fcfd5fc024f907/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6e7f4035a885437fa3fcfd5fc024f907 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6e7f4035a885437fa3fcfd5fc024f907/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8b5e994fbb6c4524983959023879081a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8b5e994fbb6c4524983959023879081a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8b5e994fbb6c4524983959023879081a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8b5e994fbb6c4524983959023879081a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3ea11083ab4b4590876f509701b7f3f6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ea11083ab4b4590876f509701b7f3f6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3ea11083ab4b4590876f509701b7f3f6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ea11083ab4b4590876f509701b7f3f6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9ab2b5d1ff374cea970c22f08aedbe0e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ab2b5d1ff374cea970c22f08aedbe0e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9ab2b5d1ff374cea970c22f08aedbe0e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ab2b5d1ff374cea970c22f08aedbe0e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b23b5804a04e41af8a77deffba126720 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b23b5804a04e41af8a77deffba126720/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b23b5804a04e41af8a77deffba126720 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b23b5804a04e41af8a77deffba126720/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f87b8f95bf4142c281874a8b0d06feff span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f87b8f95bf4142c281874a8b0d06feff/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f87b8f95bf4142c281874a8b0d06feff span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f87b8f95bf4142c281874a8b0d06feff/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a660dab08a73453f89eaba5531ed8db2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a660dab08a73453f89eaba5531ed8db2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a660dab08a73453f89eaba5531ed8db2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a660dab08a73453f89eaba5531ed8db2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9dc9b765760948378c7d749f229a0cce span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9dc9b765760948378c7d749f229a0cce/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9dc9b765760948378c7d749f229a0cce span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9dc9b765760948378c7d749f229a0cce/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5dd08aa8fc4e43529a6e1e303899a73e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5dd08aa8fc4e43529a6e1e303899a73e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5dd08aa8fc4e43529a6e1e303899a73e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5dd08aa8fc4e43529a6e1e303899a73e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d817b63981fb4d0fbf47b3d93e29acb4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d817b63981fb4d0fbf47b3d93e29acb4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d817b63981fb4d0fbf47b3d93e29acb4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d817b63981fb4d0fbf47b3d93e29acb4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2b3bd2ed622e443c8ff98c5df55b4e31 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2b3bd2ed622e443c8ff98c5df55b4e31/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2b3bd2ed622e443c8ff98c5df55b4e31 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2b3bd2ed622e443c8ff98c5df55b4e31/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ad5e3abb979a411399d82f622e542ea6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ad5e3abb979a411399d82f622e542ea6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ad5e3abb979a411399d82f622e542ea6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ad5e3abb979a411399d82f622e542ea6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cb52f32d32eb49f2861c6d575338a4f0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cb52f32d32eb49f2861c6d575338a4f0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cb52f32d32eb49f2861c6d575338a4f0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cb52f32d32eb49f2861c6d575338a4f0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c9001322cacf481680807243df386e39 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9001322cacf481680807243df386e39/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c9001322cacf481680807243df386e39 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9001322cacf481680807243df386e39/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_594b92fd85b34d2d95fc895c5a9a0bb3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/594b92fd85b34d2d95fc895c5a9a0bb3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_594b92fd85b34d2d95fc895c5a9a0bb3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/594b92fd85b34d2d95fc895c5a9a0bb3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_dfeb195419d142029f217bbd6dbb6cc6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dfeb195419d142029f217bbd6dbb6cc6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_dfeb195419d142029f217bbd6dbb6cc6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dfeb195419d142029f217bbd6dbb6cc6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3a732810e2724bd68d904eb44dc2bb29 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3a732810e2724bd68d904eb44dc2bb29/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3a732810e2724bd68d904eb44dc2bb29 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3a732810e2724bd68d904eb44dc2bb29/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_beef2d6ecacd4201807f8671d356649e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/beef2d6ecacd4201807f8671d356649e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_beef2d6ecacd4201807f8671d356649e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/beef2d6ecacd4201807f8671d356649e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bb1c2f628c504c4b94065f3c960b5bae span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb1c2f628c504c4b94065f3c960b5bae/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bb1c2f628c504c4b94065f3c960b5bae span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb1c2f628c504c4b94065f3c960b5bae/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0e644c87b7f54177b5c9256fed2925d5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0e644c87b7f54177b5c9256fed2925d5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0e644c87b7f54177b5c9256fed2925d5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0e644c87b7f54177b5c9256fed2925d5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c94e49b572144fa79fbb82d918a2c831 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c94e49b572144fa79fbb82d918a2c831/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c94e49b572144fa79fbb82d918a2c831 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c94e49b572144fa79fbb82d918a2c831/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9ebcc3c17e43443989bfdc00ea0c89e7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ebcc3c17e43443989bfdc00ea0c89e7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9ebcc3c17e43443989bfdc00ea0c89e7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ebcc3c17e43443989bfdc00ea0c89e7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_acc67fbb858f4bdf8e020d582d8d766d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/acc67fbb858f4bdf8e020d582d8d766d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_acc67fbb858f4bdf8e020d582d8d766d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/acc67fbb858f4bdf8e020d582d8d766d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_56a061e189a74ba1bc0f33404425ddff span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/56a061e189a74ba1bc0f33404425ddff/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_56a061e189a74ba1bc0f33404425ddff span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/56a061e189a74ba1bc0f33404425ddff/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6c37efebe9894985a1b44be64cb7ad11 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6c37efebe9894985a1b44be64cb7ad11/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6c37efebe9894985a1b44be64cb7ad11 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6c37efebe9894985a1b44be64cb7ad11/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7c79bdb0f5b448c1bef9e76b783b516f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c79bdb0f5b448c1bef9e76b783b516f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7c79bdb0f5b448c1bef9e76b783b516f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c79bdb0f5b448c1bef9e76b783b516f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_24d12e8554bd409a99064fbc70e1d92a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/24d12e8554bd409a99064fbc70e1d92a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_24d12e8554bd409a99064fbc70e1d92a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/24d12e8554bd409a99064fbc70e1d92a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e752e2cea39442cb90c9773de77a58fb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e752e2cea39442cb90c9773de77a58fb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e752e2cea39442cb90c9773de77a58fb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e752e2cea39442cb90c9773de77a58fb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_77464b00af64403bba353e88df28a9b8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/77464b00af64403bba353e88df28a9b8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_77464b00af64403bba353e88df28a9b8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/77464b00af64403bba353e88df28a9b8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_828517d7b5d04cf5b5254b8a891c6b9c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/828517d7b5d04cf5b5254b8a891c6b9c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_828517d7b5d04cf5b5254b8a891c6b9c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/828517d7b5d04cf5b5254b8a891c6b9c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ac25fcc9a93f49bf9a9b5747be645f3f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ac25fcc9a93f49bf9a9b5747be645f3f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ac25fcc9a93f49bf9a9b5747be645f3f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ac25fcc9a93f49bf9a9b5747be645f3f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_da17e662730141d78c10cf4f682eb48a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/da17e662730141d78c10cf4f682eb48a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_da17e662730141d78c10cf4f682eb48a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/da17e662730141d78c10cf4f682eb48a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_05990448feea47169c832857356868b7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/05990448feea47169c832857356868b7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_05990448feea47169c832857356868b7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/05990448feea47169c832857356868b7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_70f9799e55d840b58a99dc831ffdc859 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/70f9799e55d840b58a99dc831ffdc859/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_70f9799e55d840b58a99dc831ffdc859 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/70f9799e55d840b58a99dc831ffdc859/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a6f985f1052b486fbd34983a86f2de10 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a6f985f1052b486fbd34983a86f2de10/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a6f985f1052b486fbd34983a86f2de10 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a6f985f1052b486fbd34983a86f2de10/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4c959df8b4404d759ba3ea250d551b55 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4c959df8b4404d759ba3ea250d551b55/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4c959df8b4404d759ba3ea250d551b55 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4c959df8b4404d759ba3ea250d551b55/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_64417822e3d64dfb83d68f80766cbad4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/64417822e3d64dfb83d68f80766cbad4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_64417822e3d64dfb83d68f80766cbad4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/64417822e3d64dfb83d68f80766cbad4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f19cdd4dd3924506841263d11191f8df span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f19cdd4dd3924506841263d11191f8df/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f19cdd4dd3924506841263d11191f8df span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f19cdd4dd3924506841263d11191f8df/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a32cb52b18a84bf69e2d3cca0c312384 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a32cb52b18a84bf69e2d3cca0c312384/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a32cb52b18a84bf69e2d3cca0c312384 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a32cb52b18a84bf69e2d3cca0c312384/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ef67bb6d812747928f86a198bac84d33 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ef67bb6d812747928f86a198bac84d33/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ef67bb6d812747928f86a198bac84d33 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ef67bb6d812747928f86a198bac84d33/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_05c5681f761d4ecfbd3f31e903463a56 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/05c5681f761d4ecfbd3f31e903463a56/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_05c5681f761d4ecfbd3f31e903463a56 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/05c5681f761d4ecfbd3f31e903463a56/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_81c62925e8f943a386c6bb959b133281 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/81c62925e8f943a386c6bb959b133281/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_81c62925e8f943a386c6bb959b133281 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/81c62925e8f943a386c6bb959b133281/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_3f0899b2-8969-4887-8a71-d1b1ca3e1345 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_3f0899b2-8969-4887-8a71-d1b1ca3e1345/views/thumbnail"); }.swx span.moji.id_cec481bb17544214a4427fac86db4d99 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cec481bb17544214a4427fac86db4d99/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cec481bb17544214a4427fac86db4d99 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cec481bb17544214a4427fac86db4d99/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ddca5fcdb71d4a1ba3076f618638bb2e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ddca5fcdb71d4a1ba3076f618638bb2e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ddca5fcdb71d4a1ba3076f618638bb2e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ddca5fcdb71d4a1ba3076f618638bb2e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_249439bb868e47d7ad274ae821bfee75 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/249439bb868e47d7ad274ae821bfee75/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_249439bb868e47d7ad274ae821bfee75 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/249439bb868e47d7ad274ae821bfee75/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4d68acf9a31f40eb86b415bf9347201e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4d68acf9a31f40eb86b415bf9347201e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4d68acf9a31f40eb86b415bf9347201e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4d68acf9a31f40eb86b415bf9347201e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_29d3dd4cc5704de396cf4ffc984651af span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/29d3dd4cc5704de396cf4ffc984651af/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_29d3dd4cc5704de396cf4ffc984651af span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/29d3dd4cc5704de396cf4ffc984651af/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c4946db4ec39440682ab31e984b8fb81 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c4946db4ec39440682ab31e984b8fb81/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c4946db4ec39440682ab31e984b8fb81 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c4946db4ec39440682ab31e984b8fb81/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b3e318618785404b8177157f089d4c9c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b3e318618785404b8177157f089d4c9c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b3e318618785404b8177157f089d4c9c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b3e318618785404b8177157f089d4c9c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f7cd7a504bad47c894b35a73f25a638d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f7cd7a504bad47c894b35a73f25a638d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f7cd7a504bad47c894b35a73f25a638d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f7cd7a504bad47c894b35a73f25a638d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1fdfc400fc234e9fb09dc3d706b6c3f7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1fdfc400fc234e9fb09dc3d706b6c3f7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1fdfc400fc234e9fb09dc3d706b6c3f7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1fdfc400fc234e9fb09dc3d706b6c3f7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_df0a569902b84e549e3675000441b2ef span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df0a569902b84e549e3675000441b2ef/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_df0a569902b84e549e3675000441b2ef span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df0a569902b84e549e3675000441b2ef/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2a92334f21eb4bc68be6961636102456 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2a92334f21eb4bc68be6961636102456/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2a92334f21eb4bc68be6961636102456 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2a92334f21eb4bc68be6961636102456/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fb6fd15bd3e24d8d9e4feb5c372eb03a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fb6fd15bd3e24d8d9e4feb5c372eb03a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fb6fd15bd3e24d8d9e4feb5c372eb03a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fb6fd15bd3e24d8d9e4feb5c372eb03a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_9140db0c-bc25-4ff2-a9d7-9e9721215cf0 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_9140db0c-bc25-4ff2-a9d7-9e9721215cf0/views/thumbnail"); }.swx span.moji.id_673c4b8b466c4774b4c84808b2670263 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/673c4b8b466c4774b4c84808b2670263/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_673c4b8b466c4774b4c84808b2670263 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/673c4b8b466c4774b4c84808b2670263/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_179f82faf6924d37bdb6a04a9a186078 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/179f82faf6924d37bdb6a04a9a186078/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_179f82faf6924d37bdb6a04a9a186078 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/179f82faf6924d37bdb6a04a9a186078/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_829ad138bc524595a9b7b6a1b95a4d79 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/829ad138bc524595a9b7b6a1b95a4d79/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_829ad138bc524595a9b7b6a1b95a4d79 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/829ad138bc524595a9b7b6a1b95a4d79/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_075bac49af93448aae6a17693b6c06a3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/075bac49af93448aae6a17693b6c06a3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_075bac49af93448aae6a17693b6c06a3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/075bac49af93448aae6a17693b6c06a3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_74bd2c325ae14ef38119146cf1d5e338 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/74bd2c325ae14ef38119146cf1d5e338/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_74bd2c325ae14ef38119146cf1d5e338 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/74bd2c325ae14ef38119146cf1d5e338/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5bbf7a2c060849fc8588a725aa4c4a2f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5bbf7a2c060849fc8588a725aa4c4a2f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5bbf7a2c060849fc8588a725aa4c4a2f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5bbf7a2c060849fc8588a725aa4c4a2f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6e0bf7ee73d047deb12a13fa51b48a5b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6e0bf7ee73d047deb12a13fa51b48a5b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6e0bf7ee73d047deb12a13fa51b48a5b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6e0bf7ee73d047deb12a13fa51b48a5b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d72b5430ea5f4dcfb9c28fed21043fd4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d72b5430ea5f4dcfb9c28fed21043fd4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d72b5430ea5f4dcfb9c28fed21043fd4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d72b5430ea5f4dcfb9c28fed21043fd4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d50ae14ad8394880beebd304e5228fc8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d50ae14ad8394880beebd304e5228fc8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d50ae14ad8394880beebd304e5228fc8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d50ae14ad8394880beebd304e5228fc8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e679b2e74ac14b089a97e70ba58e12cb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e679b2e74ac14b089a97e70ba58e12cb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e679b2e74ac14b089a97e70ba58e12cb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e679b2e74ac14b089a97e70ba58e12cb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6d80b24e9d8b442b81d16349a070d4ff span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6d80b24e9d8b442b81d16349a070d4ff/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6d80b24e9d8b442b81d16349a070d4ff span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6d80b24e9d8b442b81d16349a070d4ff/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c940426316eb42ec8278831cc18486fa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c940426316eb42ec8278831cc18486fa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c940426316eb42ec8278831cc18486fa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c940426316eb42ec8278831cc18486fa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_93bc04ed1df04ace986840df7dc97cb1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/93bc04ed1df04ace986840df7dc97cb1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_93bc04ed1df04ace986840df7dc97cb1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/93bc04ed1df04ace986840df7dc97cb1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6a6ea5af9d2046168749d1d689d3bfd3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6a6ea5af9d2046168749d1d689d3bfd3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6a6ea5af9d2046168749d1d689d3bfd3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6a6ea5af9d2046168749d1d689d3bfd3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5d7807e764e14f6ea102ddfdd30acf34 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d7807e764e14f6ea102ddfdd30acf34/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5d7807e764e14f6ea102ddfdd30acf34 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d7807e764e14f6ea102ddfdd30acf34/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_83bf44f0d867434fb296d77bf9488828 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/83bf44f0d867434fb296d77bf9488828/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_83bf44f0d867434fb296d77bf9488828 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/83bf44f0d867434fb296d77bf9488828/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f305b50326b34f07a0c2dd0c27325cea span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f305b50326b34f07a0c2dd0c27325cea/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f305b50326b34f07a0c2dd0c27325cea span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f305b50326b34f07a0c2dd0c27325cea/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_81918ab3b0f441f5a5c2c497958408cb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/81918ab3b0f441f5a5c2c497958408cb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_81918ab3b0f441f5a5c2c497958408cb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/81918ab3b0f441f5a5c2c497958408cb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5d3fd81f22b341299881072c627533d5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d3fd81f22b341299881072c627533d5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5d3fd81f22b341299881072c627533d5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5d3fd81f22b341299881072c627533d5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_650dddb218fa49e58b37365b70f2f2fa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/650dddb218fa49e58b37365b70f2f2fa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_650dddb218fa49e58b37365b70f2f2fa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/650dddb218fa49e58b37365b70f2f2fa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b1040c09b5064088916c769fdec01ae7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b1040c09b5064088916c769fdec01ae7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b1040c09b5064088916c769fdec01ae7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b1040c09b5064088916c769fdec01ae7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_19a9ea11ee2045988b3302668054bf05 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/19a9ea11ee2045988b3302668054bf05/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_19a9ea11ee2045988b3302668054bf05 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/19a9ea11ee2045988b3302668054bf05/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4f34716671c440d4974b00cf66ed0382 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4f34716671c440d4974b00cf66ed0382/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4f34716671c440d4974b00cf66ed0382 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4f34716671c440d4974b00cf66ed0382/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ac0f42d7e2c144ccae179e42618ce1f9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ac0f42d7e2c144ccae179e42618ce1f9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ac0f42d7e2c144ccae179e42618ce1f9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ac0f42d7e2c144ccae179e42618ce1f9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_04f5b00d946941aea7de0df765149de6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/04f5b00d946941aea7de0df765149de6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_04f5b00d946941aea7de0df765149de6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/04f5b00d946941aea7de0df765149de6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d5dd9238357044eb9695bd516d729c85 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d5dd9238357044eb9695bd516d729c85/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d5dd9238357044eb9695bd516d729c85 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d5dd9238357044eb9695bd516d729c85/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_efb907c4b6e346fea5e7e1b20517555e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/efb907c4b6e346fea5e7e1b20517555e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_efb907c4b6e346fea5e7e1b20517555e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/efb907c4b6e346fea5e7e1b20517555e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fda12fccaaa64fb1b3981f1c845249af span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fda12fccaaa64fb1b3981f1c845249af/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fda12fccaaa64fb1b3981f1c845249af span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fda12fccaaa64fb1b3981f1c845249af/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bb11876c0c0047a69b9200b6e0efd78a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb11876c0c0047a69b9200b6e0efd78a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bb11876c0c0047a69b9200b6e0efd78a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb11876c0c0047a69b9200b6e0efd78a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9cfe64021d374cf5b96421b69643c080 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9cfe64021d374cf5b96421b69643c080/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9cfe64021d374cf5b96421b69643c080 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9cfe64021d374cf5b96421b69643c080/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_69dbdd78ac32446b956da89856469e65 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69dbdd78ac32446b956da89856469e65/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_69dbdd78ac32446b956da89856469e65 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69dbdd78ac32446b956da89856469e65/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c78954a018954f7ea698df876c6a8b3f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c78954a018954f7ea698df876c6a8b3f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c78954a018954f7ea698df876c6a8b3f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c78954a018954f7ea698df876c6a8b3f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f06cb8bc97b54669a43bbd2149cd61bd span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f06cb8bc97b54669a43bbd2149cd61bd/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f06cb8bc97b54669a43bbd2149cd61bd span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f06cb8bc97b54669a43bbd2149cd61bd/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2cf4c86d50ab4945b6f761b3da41e36c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2cf4c86d50ab4945b6f761b3da41e36c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2cf4c86d50ab4945b6f761b3da41e36c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2cf4c86d50ab4945b6f761b3da41e36c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3f8400211a9945ed89b8d6bb14cb0994 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3f8400211a9945ed89b8d6bb14cb0994/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3f8400211a9945ed89b8d6bb14cb0994 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3f8400211a9945ed89b8d6bb14cb0994/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0f22c385ca22484d9bfbb3cbab48beea span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0f22c385ca22484d9bfbb3cbab48beea/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0f22c385ca22484d9bfbb3cbab48beea span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0f22c385ca22484d9bfbb3cbab48beea/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6b781277ee4b466db2fc8d2465e11e73 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6b781277ee4b466db2fc8d2465e11e73/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6b781277ee4b466db2fc8d2465e11e73 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6b781277ee4b466db2fc8d2465e11e73/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0228740c3c714b48a739e7f23085c6cd span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0228740c3c714b48a739e7f23085c6cd/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0228740c3c714b48a739e7f23085c6cd span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0228740c3c714b48a739e7f23085c6cd/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a03e417766214c759167f2248d4a61d6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a03e417766214c759167f2248d4a61d6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a03e417766214c759167f2248d4a61d6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a03e417766214c759167f2248d4a61d6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f54ad605536242908a5a0d41c9c1b067 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f54ad605536242908a5a0d41c9c1b067/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f54ad605536242908a5a0d41c9c1b067 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f54ad605536242908a5a0d41c9c1b067/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_aff5b84ab7274da687f581c3f1e0df62 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/aff5b84ab7274da687f581c3f1e0df62/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_aff5b84ab7274da687f581c3f1e0df62 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/aff5b84ab7274da687f581c3f1e0df62/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b9191f54eda54cf1bc866906f44f88bc span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b9191f54eda54cf1bc866906f44f88bc/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b9191f54eda54cf1bc866906f44f88bc span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b9191f54eda54cf1bc866906f44f88bc/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7ee81d5c2d674bb5a15dc472cea34855 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7ee81d5c2d674bb5a15dc472cea34855/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7ee81d5c2d674bb5a15dc472cea34855 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7ee81d5c2d674bb5a15dc472cea34855/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3208293a51b649d496870f8aa12a134b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3208293a51b649d496870f8aa12a134b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3208293a51b649d496870f8aa12a134b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3208293a51b649d496870f8aa12a134b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_aeac21728808419db8762f0668726a46 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/aeac21728808419db8762f0668726a46/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_aeac21728808419db8762f0668726a46 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/aeac21728808419db8762f0668726a46/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cdd18ea4871e43d496e160ad4965f27e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cdd18ea4871e43d496e160ad4965f27e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cdd18ea4871e43d496e160ad4965f27e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cdd18ea4871e43d496e160ad4965f27e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_44328e9107284bd48dde0eb680c0cae9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/44328e9107284bd48dde0eb680c0cae9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_44328e9107284bd48dde0eb680c0cae9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/44328e9107284bd48dde0eb680c0cae9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d21ac7501aa749d5b8e7a8aec0ed90f0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d21ac7501aa749d5b8e7a8aec0ed90f0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d21ac7501aa749d5b8e7a8aec0ed90f0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d21ac7501aa749d5b8e7a8aec0ed90f0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e986a374294e4fb0b99b789eaebad67a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e986a374294e4fb0b99b789eaebad67a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e986a374294e4fb0b99b789eaebad67a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e986a374294e4fb0b99b789eaebad67a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fc4e775f2e0d4f0395f09b58827d2605 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fc4e775f2e0d4f0395f09b58827d2605/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fc4e775f2e0d4f0395f09b58827d2605 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fc4e775f2e0d4f0395f09b58827d2605/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ffe8af5342c54a9491bb5c7fe5f787bf span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ffe8af5342c54a9491bb5c7fe5f787bf/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ffe8af5342c54a9491bb5c7fe5f787bf span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ffe8af5342c54a9491bb5c7fe5f787bf/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c2aadc9747af4d47ae8e885a9e6f287a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c2aadc9747af4d47ae8e885a9e6f287a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c2aadc9747af4d47ae8e885a9e6f287a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c2aadc9747af4d47ae8e885a9e6f287a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_58505e34009947878396f1423ba55a4b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/58505e34009947878396f1423ba55a4b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_58505e34009947878396f1423ba55a4b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/58505e34009947878396f1423ba55a4b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_34bacd320f1c4a9c88bee38a62898b20 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/34bacd320f1c4a9c88bee38a62898b20/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_34bacd320f1c4a9c88bee38a62898b20 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/34bacd320f1c4a9c88bee38a62898b20/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cc7d0be304be4cf584078df6b70f3e36 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cc7d0be304be4cf584078df6b70f3e36/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cc7d0be304be4cf584078df6b70f3e36 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cc7d0be304be4cf584078df6b70f3e36/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5077996932954f3db31d339c1babbc68 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5077996932954f3db31d339c1babbc68/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5077996932954f3db31d339c1babbc68 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5077996932954f3db31d339c1babbc68/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_762c55d69b184dda8743b07a02fac9f9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/762c55d69b184dda8743b07a02fac9f9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_762c55d69b184dda8743b07a02fac9f9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/762c55d69b184dda8743b07a02fac9f9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b6b857539d1646288934df53a153c141 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b6b857539d1646288934df53a153c141/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b6b857539d1646288934df53a153c141 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b6b857539d1646288934df53a153c141/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_689d5408da2d4da6b77a6af46e1afd88 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/689d5408da2d4da6b77a6af46e1afd88/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_689d5408da2d4da6b77a6af46e1afd88 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/689d5408da2d4da6b77a6af46e1afd88/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2100e28ed09e4775a8f526407c688d1a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2100e28ed09e4775a8f526407c688d1a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2100e28ed09e4775a8f526407c688d1a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2100e28ed09e4775a8f526407c688d1a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_76441168f9104465ae8f7c82a5caee39 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/76441168f9104465ae8f7c82a5caee39/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_76441168f9104465ae8f7c82a5caee39 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/76441168f9104465ae8f7c82a5caee39/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_00317bf44db34abfa94f94ecc7188fa1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/00317bf44db34abfa94f94ecc7188fa1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_00317bf44db34abfa94f94ecc7188fa1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/00317bf44db34abfa94f94ecc7188fa1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_60221d3288e84567a2616c9bb0d3d0e2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/60221d3288e84567a2616c9bb0d3d0e2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_60221d3288e84567a2616c9bb0d3d0e2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/60221d3288e84567a2616c9bb0d3d0e2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a84a3172a87443f7a33a6586a58c1dc5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a84a3172a87443f7a33a6586a58c1dc5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a84a3172a87443f7a33a6586a58c1dc5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a84a3172a87443f7a33a6586a58c1dc5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3468419d02f14bbdb16dc55670357608 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3468419d02f14bbdb16dc55670357608/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3468419d02f14bbdb16dc55670357608 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3468419d02f14bbdb16dc55670357608/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d2f6fe7561ad4af9ae89e6644509614d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d2f6fe7561ad4af9ae89e6644509614d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d2f6fe7561ad4af9ae89e6644509614d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d2f6fe7561ad4af9ae89e6644509614d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_21d60ed7dc4647838a301aa21c328e3c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/21d60ed7dc4647838a301aa21c328e3c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_21d60ed7dc4647838a301aa21c328e3c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/21d60ed7dc4647838a301aa21c328e3c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0d3f576c6f244ab79ef7b6ad65e7fd64 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0d3f576c6f244ab79ef7b6ad65e7fd64/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0d3f576c6f244ab79ef7b6ad65e7fd64 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0d3f576c6f244ab79ef7b6ad65e7fd64/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_24abb925bd7344ff8e0078f4cdef7c16 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/24abb925bd7344ff8e0078f4cdef7c16/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_24abb925bd7344ff8e0078f4cdef7c16 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/24abb925bd7344ff8e0078f4cdef7c16/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_55ae8db8fc214ece88be5cad13934456 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/55ae8db8fc214ece88be5cad13934456/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_55ae8db8fc214ece88be5cad13934456 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/55ae8db8fc214ece88be5cad13934456/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c8d5659530cb4e029a52ed39c451c81d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c8d5659530cb4e029a52ed39c451c81d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c8d5659530cb4e029a52ed39c451c81d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c8d5659530cb4e029a52ed39c451c81d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bd75ea973fb041f2aa8842b7b883380d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd75ea973fb041f2aa8842b7b883380d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bd75ea973fb041f2aa8842b7b883380d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd75ea973fb041f2aa8842b7b883380d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cec8eeff6e1342e19ebad603d3dd6222 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cec8eeff6e1342e19ebad603d3dd6222/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cec8eeff6e1342e19ebad603d3dd6222 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cec8eeff6e1342e19ebad603d3dd6222/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2e4502d4475d402695c253acf62deff5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2e4502d4475d402695c253acf62deff5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2e4502d4475d402695c253acf62deff5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2e4502d4475d402695c253acf62deff5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_47c9ad2d-6808-452e-9c8a-8edf6cd6d206 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_47c9ad2d-6808-452e-9c8a-8edf6cd6d206/views/thumbnail"); }.swx span.moji.id_d56cc53636294519a89d199cabb901df span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d56cc53636294519a89d199cabb901df/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d56cc53636294519a89d199cabb901df span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d56cc53636294519a89d199cabb901df/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f13557045fc9495bb4622e341a6d8e50 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f13557045fc9495bb4622e341a6d8e50/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f13557045fc9495bb4622e341a6d8e50 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f13557045fc9495bb4622e341a6d8e50/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d318c3ae43ac41c28e494c936b26237f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d318c3ae43ac41c28e494c936b26237f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d318c3ae43ac41c28e494c936b26237f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d318c3ae43ac41c28e494c936b26237f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_dc13520d028a4482bdb6d1d8f345346d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dc13520d028a4482bdb6d1d8f345346d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_dc13520d028a4482bdb6d1d8f345346d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dc13520d028a4482bdb6d1d8f345346d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d45faa770d5c48a78c3b96609aeab752 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d45faa770d5c48a78c3b96609aeab752/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d45faa770d5c48a78c3b96609aeab752 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d45faa770d5c48a78c3b96609aeab752/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_01b90af5efaa4a329ba5fb9fc11a8214 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/01b90af5efaa4a329ba5fb9fc11a8214/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_01b90af5efaa4a329ba5fb9fc11a8214 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/01b90af5efaa4a329ba5fb9fc11a8214/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_afccd49ff27d440e9eb04a7fa0486af0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/afccd49ff27d440e9eb04a7fa0486af0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_afccd49ff27d440e9eb04a7fa0486af0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/afccd49ff27d440e9eb04a7fa0486af0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a40f1059859645098c3b2bf5b60ea6d2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a40f1059859645098c3b2bf5b60ea6d2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a40f1059859645098c3b2bf5b60ea6d2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a40f1059859645098c3b2bf5b60ea6d2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9db38710de1e4baf81d4716c4adf91ae span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9db38710de1e4baf81d4716c4adf91ae/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9db38710de1e4baf81d4716c4adf91ae span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9db38710de1e4baf81d4716c4adf91ae/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c9d5c75397dc4b4e8208d9453e2a3a73 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9d5c75397dc4b4e8208d9453e2a3a73/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c9d5c75397dc4b4e8208d9453e2a3a73 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9d5c75397dc4b4e8208d9453e2a3a73/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fe932a77c25244ccbe18e50782e7a664 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fe932a77c25244ccbe18e50782e7a664/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fe932a77c25244ccbe18e50782e7a664 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fe932a77c25244ccbe18e50782e7a664/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c0c5a61511fd48abb28c0c3f06ba8804 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c0c5a61511fd48abb28c0c3f06ba8804/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c0c5a61511fd48abb28c0c3f06ba8804 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c0c5a61511fd48abb28c0c3f06ba8804/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8027dfb48ed34e2bba262bb3201764c1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8027dfb48ed34e2bba262bb3201764c1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8027dfb48ed34e2bba262bb3201764c1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8027dfb48ed34e2bba262bb3201764c1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3cb8024cb3544ccbb3e15047b15cee5c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3cb8024cb3544ccbb3e15047b15cee5c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3cb8024cb3544ccbb3e15047b15cee5c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3cb8024cb3544ccbb3e15047b15cee5c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b58c1b2e1b8b4783872e827002a6d750 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b58c1b2e1b8b4783872e827002a6d750/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b58c1b2e1b8b4783872e827002a6d750 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b58c1b2e1b8b4783872e827002a6d750/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_314d4a0ddc3a4d4db2fbae0d8600835b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/314d4a0ddc3a4d4db2fbae0d8600835b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_314d4a0ddc3a4d4db2fbae0d8600835b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/314d4a0ddc3a4d4db2fbae0d8600835b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7996182e84444a4dba0d0f0a0d539605 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7996182e84444a4dba0d0f0a0d539605/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7996182e84444a4dba0d0f0a0d539605 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7996182e84444a4dba0d0f0a0d539605/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6a02f7b0e5cd4f96889708ddd0373502 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6a02f7b0e5cd4f96889708ddd0373502/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6a02f7b0e5cd4f96889708ddd0373502 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6a02f7b0e5cd4f96889708ddd0373502/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a39a393f0351424089b2336d90bd31a0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a39a393f0351424089b2336d90bd31a0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a39a393f0351424089b2336d90bd31a0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a39a393f0351424089b2336d90bd31a0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f1147fcaef6d44ff95f79490e33a0bca span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f1147fcaef6d44ff95f79490e33a0bca/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f1147fcaef6d44ff95f79490e33a0bca span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f1147fcaef6d44ff95f79490e33a0bca/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5de66b6d601f49c592e6b05d51800bd3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5de66b6d601f49c592e6b05d51800bd3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5de66b6d601f49c592e6b05d51800bd3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5de66b6d601f49c592e6b05d51800bd3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_29c47595fcd64bf48e9094f043fd910b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/29c47595fcd64bf48e9094f043fd910b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_29c47595fcd64bf48e9094f043fd910b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/29c47595fcd64bf48e9094f043fd910b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_89f6866e23f444ea9d952211fd7556fd span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/89f6866e23f444ea9d952211fd7556fd/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_89f6866e23f444ea9d952211fd7556fd span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/89f6866e23f444ea9d952211fd7556fd/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e87e2280d045412ca423a39518976409 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e87e2280d045412ca423a39518976409/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e87e2280d045412ca423a39518976409 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e87e2280d045412ca423a39518976409/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2cd3d1b5da9a4cbb8c92e4eb0ae63edc span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2cd3d1b5da9a4cbb8c92e4eb0ae63edc/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2cd3d1b5da9a4cbb8c92e4eb0ae63edc span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2cd3d1b5da9a4cbb8c92e4eb0ae63edc/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_10279447f732471d99fb35dd3b5fcbf6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/10279447f732471d99fb35dd3b5fcbf6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_10279447f732471d99fb35dd3b5fcbf6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/10279447f732471d99fb35dd3b5fcbf6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f4432a0e21dd4396b89d80ea6d59c530 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f4432a0e21dd4396b89d80ea6d59c530/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f4432a0e21dd4396b89d80ea6d59c530 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f4432a0e21dd4396b89d80ea6d59c530/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0a7f800771c047a4b7fc70cd5db96f6a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a7f800771c047a4b7fc70cd5db96f6a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0a7f800771c047a4b7fc70cd5db96f6a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a7f800771c047a4b7fc70cd5db96f6a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7c92f2f5f73944b9abdd00f7bebf2f6d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c92f2f5f73944b9abdd00f7bebf2f6d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7c92f2f5f73944b9abdd00f7bebf2f6d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c92f2f5f73944b9abdd00f7bebf2f6d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0c51e8b06af641b9be78f21b6423f64f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0c51e8b06af641b9be78f21b6423f64f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0c51e8b06af641b9be78f21b6423f64f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0c51e8b06af641b9be78f21b6423f64f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d128b5f888764c06ab4fa4413d9f782e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d128b5f888764c06ab4fa4413d9f782e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d128b5f888764c06ab4fa4413d9f782e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d128b5f888764c06ab4fa4413d9f782e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5c5234c2364247c886f71f58f395dc4a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5c5234c2364247c886f71f58f395dc4a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5c5234c2364247c886f71f58f395dc4a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5c5234c2364247c886f71f58f395dc4a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a39cca0a78224bc09fa3e1fb1646181a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a39cca0a78224bc09fa3e1fb1646181a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a39cca0a78224bc09fa3e1fb1646181a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a39cca0a78224bc09fa3e1fb1646181a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_599742270f5d4673a8242b83ff4d38be span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/599742270f5d4673a8242b83ff4d38be/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_599742270f5d4673a8242b83ff4d38be span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/599742270f5d4673a8242b83ff4d38be/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8c9c913bd0e9491f9c95b29860b13570 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8c9c913bd0e9491f9c95b29860b13570/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8c9c913bd0e9491f9c95b29860b13570 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8c9c913bd0e9491f9c95b29860b13570/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8bd527b823384392a8ba47e345a386c2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8bd527b823384392a8ba47e345a386c2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8bd527b823384392a8ba47e345a386c2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8bd527b823384392a8ba47e345a386c2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_38939ff08daa4331ac99a4fb58e2ab7b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/38939ff08daa4331ac99a4fb58e2ab7b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_38939ff08daa4331ac99a4fb58e2ab7b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/38939ff08daa4331ac99a4fb58e2ab7b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0a62f2035a5d4000aaca26b1ed3b0491 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a62f2035a5d4000aaca26b1ed3b0491/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0a62f2035a5d4000aaca26b1ed3b0491 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a62f2035a5d4000aaca26b1ed3b0491/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1dd204076b16496393ba936b22e3861f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1dd204076b16496393ba936b22e3861f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1dd204076b16496393ba936b22e3861f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1dd204076b16496393ba936b22e3861f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_958d5310-cd1b-41bb-a23e-888fab5491ba { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_958d5310-cd1b-41bb-a23e-888fab5491ba/views/thumbnail"); }.swx span.moji.id_e70058351dfa4c59b66e46e34b1c4cc7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e70058351dfa4c59b66e46e34b1c4cc7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e70058351dfa4c59b66e46e34b1c4cc7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e70058351dfa4c59b66e46e34b1c4cc7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_09b6ddfd09214089b0c0196b8675efce span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/09b6ddfd09214089b0c0196b8675efce/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_09b6ddfd09214089b0c0196b8675efce span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/09b6ddfd09214089b0c0196b8675efce/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_14b0b0e3dd8340bc86ee51b67bf07649 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/14b0b0e3dd8340bc86ee51b67bf07649/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_14b0b0e3dd8340bc86ee51b67bf07649 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/14b0b0e3dd8340bc86ee51b67bf07649/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1cb97ee73b8a465cbe93090a427c522d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1cb97ee73b8a465cbe93090a427c522d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1cb97ee73b8a465cbe93090a427c522d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1cb97ee73b8a465cbe93090a427c522d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fbefd5e5569b4b21a268138073efa3f7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fbefd5e5569b4b21a268138073efa3f7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fbefd5e5569b4b21a268138073efa3f7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fbefd5e5569b4b21a268138073efa3f7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_949d0c90966d4ab1bb934833fda2a8c1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/949d0c90966d4ab1bb934833fda2a8c1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_949d0c90966d4ab1bb934833fda2a8c1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/949d0c90966d4ab1bb934833fda2a8c1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_dcb8b97d4fcb4ad48828477e56791670 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dcb8b97d4fcb4ad48828477e56791670/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_dcb8b97d4fcb4ad48828477e56791670 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/dcb8b97d4fcb4ad48828477e56791670/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_51a1005cca6e46b09e59bbb8ac760350 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/51a1005cca6e46b09e59bbb8ac760350/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_51a1005cca6e46b09e59bbb8ac760350 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/51a1005cca6e46b09e59bbb8ac760350/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fe866a5f7d3649b08a3af18636d999ce span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fe866a5f7d3649b08a3af18636d999ce/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fe866a5f7d3649b08a3af18636d999ce span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fe866a5f7d3649b08a3af18636d999ce/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e239655d37964392aac78778215fbc8b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e239655d37964392aac78778215fbc8b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e239655d37964392aac78778215fbc8b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e239655d37964392aac78778215fbc8b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_efd7748c7df44228b4247ecb993f6a63 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/efd7748c7df44228b4247ecb993f6a63/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_efd7748c7df44228b4247ecb993f6a63 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/efd7748c7df44228b4247ecb993f6a63/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9ae183167d594bcba640cf5d9f167a6d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ae183167d594bcba640cf5d9f167a6d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9ae183167d594bcba640cf5d9f167a6d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ae183167d594bcba640cf5d9f167a6d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8a6827ff43e4489188e8cdc28e09f635 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8a6827ff43e4489188e8cdc28e09f635/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8a6827ff43e4489188e8cdc28e09f635 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8a6827ff43e4489188e8cdc28e09f635/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9f5c23a7922a4e54887eb4489344c164 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9f5c23a7922a4e54887eb4489344c164/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9f5c23a7922a4e54887eb4489344c164 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9f5c23a7922a4e54887eb4489344c164/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cedcd9e099014abe91162991edc1d563 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cedcd9e099014abe91162991edc1d563/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cedcd9e099014abe91162991edc1d563 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cedcd9e099014abe91162991edc1d563/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5b01a75a60864c339416187eb51d2d12 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5b01a75a60864c339416187eb51d2d12/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5b01a75a60864c339416187eb51d2d12 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5b01a75a60864c339416187eb51d2d12/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_17c776c766fc449aa9c7e7e6f5d1ed53 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/17c776c766fc449aa9c7e7e6f5d1ed53/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_17c776c766fc449aa9c7e7e6f5d1ed53 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/17c776c766fc449aa9c7e7e6f5d1ed53/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2822aeddd78447d0be51841e8e850cf2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2822aeddd78447d0be51841e8e850cf2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2822aeddd78447d0be51841e8e850cf2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2822aeddd78447d0be51841e8e850cf2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0b915a9734d14dc0a674e1e0f053f6aa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0b915a9734d14dc0a674e1e0f053f6aa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0b915a9734d14dc0a674e1e0f053f6aa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0b915a9734d14dc0a674e1e0f053f6aa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e5443de4193848a09a4014404ca63de6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5443de4193848a09a4014404ca63de6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e5443de4193848a09a4014404ca63de6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5443de4193848a09a4014404ca63de6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0ca8ffd2e17b408fa66f5bf4d94b199e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ca8ffd2e17b408fa66f5bf4d94b199e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0ca8ffd2e17b408fa66f5bf4d94b199e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ca8ffd2e17b408fa66f5bf4d94b199e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8bd884e2726f4121812bdc7c94bbe870 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8bd884e2726f4121812bdc7c94bbe870/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8bd884e2726f4121812bdc7c94bbe870 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8bd884e2726f4121812bdc7c94bbe870/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7ab4107dac6c4f399867b78bb1387740 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7ab4107dac6c4f399867b78bb1387740/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7ab4107dac6c4f399867b78bb1387740 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7ab4107dac6c4f399867b78bb1387740/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_68713b838afb44f497982b9f7a43aad7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/68713b838afb44f497982b9f7a43aad7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_68713b838afb44f497982b9f7a43aad7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/68713b838afb44f497982b9f7a43aad7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9fcd7c6dc5a44aaea0533151f5dbea3a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9fcd7c6dc5a44aaea0533151f5dbea3a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9fcd7c6dc5a44aaea0533151f5dbea3a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9fcd7c6dc5a44aaea0533151f5dbea3a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_848c7fe5ce5c4affbc58343e0b607065 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/848c7fe5ce5c4affbc58343e0b607065/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_848c7fe5ce5c4affbc58343e0b607065 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/848c7fe5ce5c4affbc58343e0b607065/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f49a981d136745eebd793760930b2026 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f49a981d136745eebd793760930b2026/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f49a981d136745eebd793760930b2026 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f49a981d136745eebd793760930b2026/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_21024d3e6e50455e8ebe5fe842c2a12c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/21024d3e6e50455e8ebe5fe842c2a12c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_21024d3e6e50455e8ebe5fe842c2a12c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/21024d3e6e50455e8ebe5fe842c2a12c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2fc1fdcbcd30482185157dceaced8014 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2fc1fdcbcd30482185157dceaced8014/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2fc1fdcbcd30482185157dceaced8014 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2fc1fdcbcd30482185157dceaced8014/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_549d9551d9e64ab19e480de462797946 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/549d9551d9e64ab19e480de462797946/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_549d9551d9e64ab19e480de462797946 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/549d9551d9e64ab19e480de462797946/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_69d5a839b5a945bba62aeac9382aad91 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69d5a839b5a945bba62aeac9382aad91/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_69d5a839b5a945bba62aeac9382aad91 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69d5a839b5a945bba62aeac9382aad91/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9445d780f15f4c838c9385031626e652 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9445d780f15f4c838c9385031626e652/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9445d780f15f4c838c9385031626e652 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9445d780f15f4c838c9385031626e652/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6cc1dc76cb944247b5e358e91645b754 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6cc1dc76cb944247b5e358e91645b754/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6cc1dc76cb944247b5e358e91645b754 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6cc1dc76cb944247b5e358e91645b754/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c145bbcd0d344ee6b61ce9a166dd2459 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c145bbcd0d344ee6b61ce9a166dd2459/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c145bbcd0d344ee6b61ce9a166dd2459 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c145bbcd0d344ee6b61ce9a166dd2459/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5eaab9720bfb4698b976dec5e77f25a6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5eaab9720bfb4698b976dec5e77f25a6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5eaab9720bfb4698b976dec5e77f25a6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5eaab9720bfb4698b976dec5e77f25a6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_88635eebac244c59a4a629b46c5b4fae span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/88635eebac244c59a4a629b46c5b4fae/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_88635eebac244c59a4a629b46c5b4fae span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/88635eebac244c59a4a629b46c5b4fae/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_040add8720a84dccb298bb4fbcde0f20 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/040add8720a84dccb298bb4fbcde0f20/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_040add8720a84dccb298bb4fbcde0f20 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/040add8720a84dccb298bb4fbcde0f20/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9f2a04d6acb04848a1fecca6d5cfc792 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9f2a04d6acb04848a1fecca6d5cfc792/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9f2a04d6acb04848a1fecca6d5cfc792 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9f2a04d6acb04848a1fecca6d5cfc792/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_be1d0aa377614975b16509068dd37804 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/be1d0aa377614975b16509068dd37804/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_be1d0aa377614975b16509068dd37804 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/be1d0aa377614975b16509068dd37804/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3a6f31f2e9264c089142ce6f94989ea6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3a6f31f2e9264c089142ce6f94989ea6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3a6f31f2e9264c089142ce6f94989ea6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3a6f31f2e9264c089142ce6f94989ea6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5f8a8496c2c44e69802c45235184d679 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5f8a8496c2c44e69802c45235184d679/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5f8a8496c2c44e69802c45235184d679 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5f8a8496c2c44e69802c45235184d679/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d8f9062690b74b118c3f313d93c9a4a5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d8f9062690b74b118c3f313d93c9a4a5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d8f9062690b74b118c3f313d93c9a4a5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d8f9062690b74b118c3f313d93c9a4a5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_11070ed6f6df4d1fb22ebe1e425685aa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11070ed6f6df4d1fb22ebe1e425685aa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_11070ed6f6df4d1fb22ebe1e425685aa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11070ed6f6df4d1fb22ebe1e425685aa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a70dd6ee1f41414bab2f8add4a5418ff span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a70dd6ee1f41414bab2f8add4a5418ff/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a70dd6ee1f41414bab2f8add4a5418ff span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a70dd6ee1f41414bab2f8add4a5418ff/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7473cd905bf94b15a8db01e50a240138 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7473cd905bf94b15a8db01e50a240138/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7473cd905bf94b15a8db01e50a240138 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7473cd905bf94b15a8db01e50a240138/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_69a0a917cf0f47feb8714d85093484d6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69a0a917cf0f47feb8714d85093484d6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_69a0a917cf0f47feb8714d85093484d6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69a0a917cf0f47feb8714d85093484d6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6afc571194704870a44cd8ff58545d2e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6afc571194704870a44cd8ff58545d2e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6afc571194704870a44cd8ff58545d2e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6afc571194704870a44cd8ff58545d2e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_187e1d82ff13425693589e6a50783e5c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/187e1d82ff13425693589e6a50783e5c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_187e1d82ff13425693589e6a50783e5c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/187e1d82ff13425693589e6a50783e5c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_63f7e941be294b7993a3bcf46cdf89cb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/63f7e941be294b7993a3bcf46cdf89cb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_63f7e941be294b7993a3bcf46cdf89cb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/63f7e941be294b7993a3bcf46cdf89cb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ecfcc40d42c948279d1cd037fb6d9fe4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ecfcc40d42c948279d1cd037fb6d9fe4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ecfcc40d42c948279d1cd037fb6d9fe4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ecfcc40d42c948279d1cd037fb6d9fe4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2425c945fdbf4a6ab386304ee74683f0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2425c945fdbf4a6ab386304ee74683f0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2425c945fdbf4a6ab386304ee74683f0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2425c945fdbf4a6ab386304ee74683f0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_725f0b5d99ec40af888527ac42ceb99f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/725f0b5d99ec40af888527ac42ceb99f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_725f0b5d99ec40af888527ac42ceb99f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/725f0b5d99ec40af888527ac42ceb99f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_923e0ceafdcd4d278ad501719b2f5a6b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/923e0ceafdcd4d278ad501719b2f5a6b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_923e0ceafdcd4d278ad501719b2f5a6b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/923e0ceafdcd4d278ad501719b2f5a6b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e417fc5820294105963ea6c71cc94cbb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e417fc5820294105963ea6c71cc94cbb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e417fc5820294105963ea6c71cc94cbb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e417fc5820294105963ea6c71cc94cbb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_98732a8744774c86a324d21d86d2051c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/98732a8744774c86a324d21d86d2051c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_98732a8744774c86a324d21d86d2051c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/98732a8744774c86a324d21d86d2051c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_73c8114935344fa0879e01e0a9821f64 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/73c8114935344fa0879e01e0a9821f64/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_73c8114935344fa0879e01e0a9821f64 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/73c8114935344fa0879e01e0a9821f64/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_30c197b4173c4fc09fffbec84a6b366f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/30c197b4173c4fc09fffbec84a6b366f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_30c197b4173c4fc09fffbec84a6b366f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/30c197b4173c4fc09fffbec84a6b366f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_175fd19cacb74bbba1a53c6be6f06b35 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/175fd19cacb74bbba1a53c6be6f06b35/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_175fd19cacb74bbba1a53c6be6f06b35 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/175fd19cacb74bbba1a53c6be6f06b35/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_64e5bded0052435d92b87bdd070939cb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/64e5bded0052435d92b87bdd070939cb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_64e5bded0052435d92b87bdd070939cb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/64e5bded0052435d92b87bdd070939cb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e12a86f86adf47769f8e8eb08d680531 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e12a86f86adf47769f8e8eb08d680531/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e12a86f86adf47769f8e8eb08d680531 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e12a86f86adf47769f8e8eb08d680531/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0f29275aab324fe2b8128b0cd1bef28c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0f29275aab324fe2b8128b0cd1bef28c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0f29275aab324fe2b8128b0cd1bef28c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0f29275aab324fe2b8128b0cd1bef28c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_198427d4b6fb41998a36d8553714ac97 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/198427d4b6fb41998a36d8553714ac97/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_198427d4b6fb41998a36d8553714ac97 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/198427d4b6fb41998a36d8553714ac97/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3e28ea82de214ab5ab64f109f9a2a91e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3e28ea82de214ab5ab64f109f9a2a91e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3e28ea82de214ab5ab64f109f9a2a91e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3e28ea82de214ab5ab64f109f9a2a91e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1dba82a7e1f842e994138582eaeff9e2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1dba82a7e1f842e994138582eaeff9e2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1dba82a7e1f842e994138582eaeff9e2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1dba82a7e1f842e994138582eaeff9e2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_796baec988c943569cff3b0e91c7bcf9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/796baec988c943569cff3b0e91c7bcf9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_796baec988c943569cff3b0e91c7bcf9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/796baec988c943569cff3b0e91c7bcf9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cf27ae06fe0f430689df6fccd68b6fad span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cf27ae06fe0f430689df6fccd68b6fad/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cf27ae06fe0f430689df6fccd68b6fad span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cf27ae06fe0f430689df6fccd68b6fad/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4060021b522145a281f5ad7c194e8359 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4060021b522145a281f5ad7c194e8359/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4060021b522145a281f5ad7c194e8359 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4060021b522145a281f5ad7c194e8359/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9b34855ca4264825bacb3374e5cc5ef0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9b34855ca4264825bacb3374e5cc5ef0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9b34855ca4264825bacb3374e5cc5ef0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9b34855ca4264825bacb3374e5cc5ef0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5981f482c86949f286eaaf9c787525fa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5981f482c86949f286eaaf9c787525fa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5981f482c86949f286eaaf9c787525fa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5981f482c86949f286eaaf9c787525fa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3b3584c6b7324fd580dc3e38e485d8ce span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3b3584c6b7324fd580dc3e38e485d8ce/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3b3584c6b7324fd580dc3e38e485d8ce span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3b3584c6b7324fd580dc3e38e485d8ce/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_69e5864bdccc4b4e9be230a9d7a84b01 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69e5864bdccc4b4e9be230a9d7a84b01/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_69e5864bdccc4b4e9be230a9d7a84b01 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69e5864bdccc4b4e9be230a9d7a84b01/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bb93beb00bae4940a52133b934a66164 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb93beb00bae4940a52133b934a66164/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bb93beb00bae4940a52133b934a66164 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb93beb00bae4940a52133b934a66164/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e5a88c46af5f4b4a81f9f53eabdb18e3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5a88c46af5f4b4a81f9f53eabdb18e3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e5a88c46af5f4b4a81f9f53eabdb18e3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e5a88c46af5f4b4a81f9f53eabdb18e3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_006732094eb5439c957f6e1b60b6e80d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/006732094eb5439c957f6e1b60b6e80d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_006732094eb5439c957f6e1b60b6e80d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/006732094eb5439c957f6e1b60b6e80d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8ba76350eaff44339fe69ce03d139337 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8ba76350eaff44339fe69ce03d139337/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8ba76350eaff44339fe69ce03d139337 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8ba76350eaff44339fe69ce03d139337/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_17f3d267617b46c7ae735a2b31a332f2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/17f3d267617b46c7ae735a2b31a332f2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_17f3d267617b46c7ae735a2b31a332f2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/17f3d267617b46c7ae735a2b31a332f2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_4c7cfb904c7c4902975156bfaf6dee55 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4c7cfb904c7c4902975156bfaf6dee55/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_4c7cfb904c7c4902975156bfaf6dee55 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/4c7cfb904c7c4902975156bfaf6dee55/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7c06975dd0cb46ec9e1040ac3fd3921d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c06975dd0cb46ec9e1040ac3fd3921d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7c06975dd0cb46ec9e1040ac3fd3921d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7c06975dd0cb46ec9e1040ac3fd3921d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_14f03002-b78b-4bb3-875a-caf90f336962 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_14f03002-b78b-4bb3-875a-caf90f336962/views/thumbnail"); }.swx span.moji.id_5e4b15ed51244c5daae58114abeda46c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5e4b15ed51244c5daae58114abeda46c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5e4b15ed51244c5daae58114abeda46c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5e4b15ed51244c5daae58114abeda46c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e0734f17138c46a693b00a2b58babc12 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e0734f17138c46a693b00a2b58babc12/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e0734f17138c46a693b00a2b58babc12 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e0734f17138c46a693b00a2b58babc12/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9401c7f9c12944e49daa82fc1e92ec31 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9401c7f9c12944e49daa82fc1e92ec31/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9401c7f9c12944e49daa82fc1e92ec31 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9401c7f9c12944e49daa82fc1e92ec31/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0ebd46c04fa641df8be24bb42d911c6b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ebd46c04fa641df8be24bb42d911c6b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0ebd46c04fa641df8be24bb42d911c6b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0ebd46c04fa641df8be24bb42d911c6b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2c954e3931b84b88b23be618aad04d60 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2c954e3931b84b88b23be618aad04d60/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2c954e3931b84b88b23be618aad04d60 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2c954e3931b84b88b23be618aad04d60/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d796450ddff1496a9d43eb7d1ee795c6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d796450ddff1496a9d43eb7d1ee795c6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d796450ddff1496a9d43eb7d1ee795c6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d796450ddff1496a9d43eb7d1ee795c6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_df369f9ec4a7475396e5c1deabe21167 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df369f9ec4a7475396e5c1deabe21167/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_df369f9ec4a7475396e5c1deabe21167 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/df369f9ec4a7475396e5c1deabe21167/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bd44b6dc2e784f6eac5db538a15a5d8c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd44b6dc2e784f6eac5db538a15a5d8c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bd44b6dc2e784f6eac5db538a15a5d8c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bd44b6dc2e784f6eac5db538a15a5d8c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_80a3b4c737e1461b87f86d385084fc84 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80a3b4c737e1461b87f86d385084fc84/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_80a3b4c737e1461b87f86d385084fc84 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80a3b4c737e1461b87f86d385084fc84/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_bb677fa811474474ad19fd9cf34afd8e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb677fa811474474ad19fd9cf34afd8e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_bb677fa811474474ad19fd9cf34afd8e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/bb677fa811474474ad19fd9cf34afd8e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5db6bfb50b064e739f068d407d207ca0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5db6bfb50b064e739f068d407d207ca0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5db6bfb50b064e739f068d407d207ca0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5db6bfb50b064e739f068d407d207ca0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3bf5fa39f6504adf83135118d40896bc span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3bf5fa39f6504adf83135118d40896bc/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3bf5fa39f6504adf83135118d40896bc span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3bf5fa39f6504adf83135118d40896bc/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3e36be2d9396496ea6e8dc7f6a9acad7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3e36be2d9396496ea6e8dc7f6a9acad7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3e36be2d9396496ea6e8dc7f6a9acad7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3e36be2d9396496ea6e8dc7f6a9acad7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_eadac0775ce3428197104734ef87a481 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eadac0775ce3428197104734ef87a481/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_eadac0775ce3428197104734ef87a481 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/eadac0775ce3428197104734ef87a481/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fdff4a0706474dc0a09124a20a4d4df1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fdff4a0706474dc0a09124a20a4d4df1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fdff4a0706474dc0a09124a20a4d4df1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fdff4a0706474dc0a09124a20a4d4df1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7a43b13d029342ef8377421e67467be4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7a43b13d029342ef8377421e67467be4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7a43b13d029342ef8377421e67467be4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7a43b13d029342ef8377421e67467be4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_75063885ecac46e5858d78e952081db8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/75063885ecac46e5858d78e952081db8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_75063885ecac46e5858d78e952081db8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/75063885ecac46e5858d78e952081db8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c9c96f5f116644169c3b7dc18e420427 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9c96f5f116644169c3b7dc18e420427/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c9c96f5f116644169c3b7dc18e420427 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c9c96f5f116644169c3b7dc18e420427/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8f5cb164036544bba48aa99934b070bf span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8f5cb164036544bba48aa99934b070bf/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8f5cb164036544bba48aa99934b070bf span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8f5cb164036544bba48aa99934b070bf/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fed32aeaa317437ebd2b0a2d7d9036a9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fed32aeaa317437ebd2b0a2d7d9036a9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fed32aeaa317437ebd2b0a2d7d9036a9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fed32aeaa317437ebd2b0a2d7d9036a9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_93ef3bf9986a4978b046bbdb2f5a6019 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/93ef3bf9986a4978b046bbdb2f5a6019/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_93ef3bf9986a4978b046bbdb2f5a6019 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/93ef3bf9986a4978b046bbdb2f5a6019/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a4adecdd9c284db7b248071bc7cd4ce0 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a4adecdd9c284db7b248071bc7cd4ce0/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a4adecdd9c284db7b248071bc7cd4ce0 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a4adecdd9c284db7b248071bc7cd4ce0/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_2fc67e28-34b3-4068-8040-724564b07476 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_2fc67e28-34b3-4068-8040-724564b07476/views/thumbnail"); }.swx span.moji.id_9dc9b765760948378c7d749f229a0cce span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9dc9b765760948378c7d749f229a0cce/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9dc9b765760948378c7d749f229a0cce span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9dc9b765760948378c7d749f229a0cce/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2b3bd2ed622e443c8ff98c5df55b4e31 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2b3bd2ed622e443c8ff98c5df55b4e31/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2b3bd2ed622e443c8ff98c5df55b4e31 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2b3bd2ed622e443c8ff98c5df55b4e31/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c73b191c08504b9c933b76f58707b550 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c73b191c08504b9c933b76f58707b550/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c73b191c08504b9c933b76f58707b550 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c73b191c08504b9c933b76f58707b550/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3af445b6d4ac46f5a885c6b3f871801c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3af445b6d4ac46f5a885c6b3f871801c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3af445b6d4ac46f5a885c6b3f871801c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3af445b6d4ac46f5a885c6b3f871801c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5dd08aa8fc4e43529a6e1e303899a73e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5dd08aa8fc4e43529a6e1e303899a73e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5dd08aa8fc4e43529a6e1e303899a73e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5dd08aa8fc4e43529a6e1e303899a73e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d817b63981fb4d0fbf47b3d93e29acb4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d817b63981fb4d0fbf47b3d93e29acb4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d817b63981fb4d0fbf47b3d93e29acb4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d817b63981fb4d0fbf47b3d93e29acb4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e86ec46981574373baeca9af544e1dd8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e86ec46981574373baeca9af544e1dd8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e86ec46981574373baeca9af544e1dd8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e86ec46981574373baeca9af544e1dd8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f35ebf0ddd1d4da8b5de712adb3083ba span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f35ebf0ddd1d4da8b5de712adb3083ba/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f35ebf0ddd1d4da8b5de712adb3083ba span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f35ebf0ddd1d4da8b5de712adb3083ba/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_194a1e4d44b242e58367749dcb90326a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/194a1e4d44b242e58367749dcb90326a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_194a1e4d44b242e58367749dcb90326a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/194a1e4d44b242e58367749dcb90326a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9023ca489ef3473b81f5bb44eb3d8d73 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9023ca489ef3473b81f5bb44eb3d8d73/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9023ca489ef3473b81f5bb44eb3d8d73 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9023ca489ef3473b81f5bb44eb3d8d73/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_68138afc5fda4ef79b91a3ca40b05502 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/68138afc5fda4ef79b91a3ca40b05502/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_68138afc5fda4ef79b91a3ca40b05502 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/68138afc5fda4ef79b91a3ca40b05502/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ad5e3abb979a411399d82f622e542ea6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ad5e3abb979a411399d82f622e542ea6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ad5e3abb979a411399d82f622e542ea6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ad5e3abb979a411399d82f622e542ea6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx .tab_id_002_noname_2cd836d1-956e-4ca9-afbe-0531dcdca505 { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/tabs/002_noname_2cd836d1-956e-4ca9-afbe-0531dcdca505/views/thumbnail"); }.swx span.moji.id_18884340c2414c62b00bc318504260ed span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/18884340c2414c62b00bc318504260ed/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_18884340c2414c62b00bc318504260ed span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/18884340c2414c62b00bc318504260ed/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9ab2b5d1ff374cea970c22f08aedbe0e span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ab2b5d1ff374cea970c22f08aedbe0e/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9ab2b5d1ff374cea970c22f08aedbe0e span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9ab2b5d1ff374cea970c22f08aedbe0e/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_03a045222ce34b90b58e4bf180c2284a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/03a045222ce34b90b58e4bf180c2284a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_03a045222ce34b90b58e4bf180c2284a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/03a045222ce34b90b58e4bf180c2284a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7cfb161c33234356bcda36b1a3062b39 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7cfb161c33234356bcda36b1a3062b39/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7cfb161c33234356bcda36b1a3062b39 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7cfb161c33234356bcda36b1a3062b39/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e53595ec70754b01a9b0a8c077d2e5ad span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e53595ec70754b01a9b0a8c077d2e5ad/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e53595ec70754b01a9b0a8c077d2e5ad span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e53595ec70754b01a9b0a8c077d2e5ad/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_5120b685cdba4f50b91ecce8327c57c2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5120b685cdba4f50b91ecce8327c57c2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_5120b685cdba4f50b91ecce8327c57c2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/5120b685cdba4f50b91ecce8327c57c2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_391e60f5ca004b0aa7956478df92eae8 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/391e60f5ca004b0aa7956478df92eae8/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_391e60f5ca004b0aa7956478df92eae8 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/391e60f5ca004b0aa7956478df92eae8/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a660dab08a73453f89eaba5531ed8db2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a660dab08a73453f89eaba5531ed8db2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a660dab08a73453f89eaba5531ed8db2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a660dab08a73453f89eaba5531ed8db2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7fb1910129484e31a4ae54346c84e206 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7fb1910129484e31a4ae54346c84e206/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7fb1910129484e31a4ae54346c84e206 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7fb1910129484e31a4ae54346c84e206/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_87b5c8f795064f7da0da22a59af95680 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/87b5c8f795064f7da0da22a59af95680/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_87b5c8f795064f7da0da22a59af95680 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/87b5c8f795064f7da0da22a59af95680/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_40e49ed72f3f4c53b898102fdbfc2c03 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/40e49ed72f3f4c53b898102fdbfc2c03/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_40e49ed72f3f4c53b898102fdbfc2c03 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/40e49ed72f3f4c53b898102fdbfc2c03/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_9956c4564c8e4fa0a1f0abdecf23d5b2 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9956c4564c8e4fa0a1f0abdecf23d5b2/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_9956c4564c8e4fa0a1f0abdecf23d5b2 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/9956c4564c8e4fa0a1f0abdecf23d5b2/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3bf8b7a4e9c347708d25c5f0069dea3f span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3bf8b7a4e9c347708d25c5f0069dea3f/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3bf8b7a4e9c347708d25c5f0069dea3f span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3bf8b7a4e9c347708d25c5f0069dea3f/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c0c8700df236443ab100d1963c22f192 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c0c8700df236443ab100d1963c22f192/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c0c8700df236443ab100d1963c22f192 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c0c8700df236443ab100d1963c22f192/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b23b5804a04e41af8a77deffba126720 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b23b5804a04e41af8a77deffba126720/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b23b5804a04e41af8a77deffba126720 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b23b5804a04e41af8a77deffba126720/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e1d534825cff456eb54edfe06fc673cf span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e1d534825cff456eb54edfe06fc673cf/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e1d534825cff456eb54edfe06fc673cf span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e1d534825cff456eb54edfe06fc673cf/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_96aabeaf71b44e6faa3c6f141b5f34f9 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/96aabeaf71b44e6faa3c6f141b5f34f9/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_96aabeaf71b44e6faa3c6f141b5f34f9 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/96aabeaf71b44e6faa3c6f141b5f34f9/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_7964e7a51ee44e9c8536016e70563fdc span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7964e7a51ee44e9c8536016e70563fdc/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_7964e7a51ee44e9c8536016e70563fdc span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/7964e7a51ee44e9c8536016e70563fdc/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f96a75da9440429ca22baef01ac76685 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f96a75da9440429ca22baef01ac76685/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f96a75da9440429ca22baef01ac76685 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f96a75da9440429ca22baef01ac76685/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fef63f9addcc47bd8e16e5fef8d4a1fa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fef63f9addcc47bd8e16e5fef8d4a1fa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fef63f9addcc47bd8e16e5fef8d4a1fa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fef63f9addcc47bd8e16e5fef8d4a1fa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_11a49ac0c55b43028d7b64b1bc80543d span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11a49ac0c55b43028d7b64b1bc80543d/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_11a49ac0c55b43028d7b64b1bc80543d span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/11a49ac0c55b43028d7b64b1bc80543d/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0972745a71fd428fb4265e31c3bd1bef span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0972745a71fd428fb4265e31c3bd1bef/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0972745a71fd428fb4265e31c3bd1bef span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0972745a71fd428fb4265e31c3bd1bef/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_80864926eae84cc1b44623185ef2d757 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80864926eae84cc1b44623185ef2d757/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_80864926eae84cc1b44623185ef2d757 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/80864926eae84cc1b44623185ef2d757/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_a6b6cceccbd34d0498dafd7fd4bc51d7 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a6b6cceccbd34d0498dafd7fd4bc51d7/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_a6b6cceccbd34d0498dafd7fd4bc51d7 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/a6b6cceccbd34d0498dafd7fd4bc51d7/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_1d88bbe54b7247f0b2f303c7dd4da0fa span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1d88bbe54b7247f0b2f303c7dd4da0fa/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_1d88bbe54b7247f0b2f303c7dd4da0fa span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/1d88bbe54b7247f0b2f303c7dd4da0fa/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_678da6cda87145f1bc9b96954a3562cf span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/678da6cda87145f1bc9b96954a3562cf/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_678da6cda87145f1bc9b96954a3562cf span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/678da6cda87145f1bc9b96954a3562cf/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_33cf47a4af8e436da5efe3e9f2a249a1 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/33cf47a4af8e436da5efe3e9f2a249a1/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_33cf47a4af8e436da5efe3e9f2a249a1 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/33cf47a4af8e436da5efe3e9f2a249a1/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_008f01b9135a4441a8249f5d003c14a3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/008f01b9135a4441a8249f5d003c14a3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_008f01b9135a4441a8249f5d003c14a3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/008f01b9135a4441a8249f5d003c14a3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_2a7b74e34fe04d9d8b171c61199dbed3 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2a7b74e34fe04d9d8b171c61199dbed3/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_2a7b74e34fe04d9d8b171c61199dbed3 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/2a7b74e34fe04d9d8b171c61199dbed3/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_ccbdfa5036ff4d61a51d87acb294aa03 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ccbdfa5036ff4d61a51d87acb294aa03/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_ccbdfa5036ff4d61a51d87acb294aa03 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/ccbdfa5036ff4d61a51d87acb294aa03/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_0a122fcbe9e148fdb3ca527c0fd330fb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a122fcbe9e148fdb3ca527c0fd330fb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_0a122fcbe9e148fdb3ca527c0fd330fb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/0a122fcbe9e148fdb3ca527c0fd330fb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d934e84022054927a10617d9c68b5f15 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d934e84022054927a10617d9c68b5f15/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d934e84022054927a10617d9c68b5f15 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d934e84022054927a10617d9c68b5f15/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3ed454a895f046e3ab8065cfda006729 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ed454a895f046e3ab8065cfda006729/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3ed454a895f046e3ab8065cfda006729 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ed454a895f046e3ab8065cfda006729/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_556d61fc9e414c0c84d6ae38a9c01659 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/556d61fc9e414c0c84d6ae38a9c01659/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_556d61fc9e414c0c84d6ae38a9c01659 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/556d61fc9e414c0c84d6ae38a9c01659/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_45626156ed244e2093f262ef05de7500 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/45626156ed244e2093f262ef05de7500/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_45626156ed244e2093f262ef05de7500 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/45626156ed244e2093f262ef05de7500/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_d7e5b0d9f6ad4554b7585863166516bb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d7e5b0d9f6ad4554b7585863166516bb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_d7e5b0d9f6ad4554b7585863166516bb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/d7e5b0d9f6ad4554b7585863166516bb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_40d32ff12d044343b6576049a9c85188 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/40d32ff12d044343b6576049a9c85188/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_40d32ff12d044343b6576049a9c85188 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/40d32ff12d044343b6576049a9c85188/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_c552a516696a48fabc97caf091cc1bd5 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c552a516696a48fabc97caf091cc1bd5/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_c552a516696a48fabc97caf091cc1bd5 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/c552a516696a48fabc97caf091cc1bd5/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_6feba691dd4a44398bffb5075ab12923 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6feba691dd4a44398bffb5075ab12923/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_6feba691dd4a44398bffb5075ab12923 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/6feba691dd4a44398bffb5075ab12923/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_02ea7e8b82f545928b11285544095d6a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/02ea7e8b82f545928b11285544095d6a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_02ea7e8b82f545928b11285544095d6a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/02ea7e8b82f545928b11285544095d6a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_69b140433d7b4358923629e259f7c3eb span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69b140433d7b4358923629e259f7c3eb/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_69b140433d7b4358923629e259f7c3eb span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/69b140433d7b4358923629e259f7c3eb/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f6e477f5171548349bd36f72c9d40b9a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f6e477f5171548349bd36f72c9d40b9a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f6e477f5171548349bd36f72c9d40b9a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f6e477f5171548349bd36f72c9d40b9a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_e245fced1cba4ae18fa0d449de6a89e4 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e245fced1cba4ae18fa0d449de6a89e4/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_e245fced1cba4ae18fa0d449de6a89e4 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/e245fced1cba4ae18fa0d449de6a89e4/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b55b85cc25e34675ba8ed0c50050951c span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b55b85cc25e34675ba8ed0c50050951c/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b55b85cc25e34675ba8ed0c50050951c span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b55b85cc25e34675ba8ed0c50050951c/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f540c8eb9b524b92966ec9367fc9b939 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f540c8eb9b524b92966ec9367fc9b939/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f540c8eb9b524b92966ec9367fc9b939 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f540c8eb9b524b92966ec9367fc9b939/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_cf65bd5003004764b30c8c2b7274bb18 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cf65bd5003004764b30c8c2b7274bb18/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_cf65bd5003004764b30c8c2b7274bb18 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/cf65bd5003004764b30c8c2b7274bb18/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_48049a964c6947d398fbc42005288e89 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/48049a964c6947d398fbc42005288e89/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_48049a964c6947d398fbc42005288e89 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/48049a964c6947d398fbc42005288e89/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_fd966c6f0d7247d98441e66e66104a15 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fd966c6f0d7247d98441e66e66104a15/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_fd966c6f0d7247d98441e66e66104a15 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/fd966c6f0d7247d98441e66e66104a15/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8b5e994fbb6c4524983959023879081a span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8b5e994fbb6c4524983959023879081a/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8b5e994fbb6c4524983959023879081a span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8b5e994fbb6c4524983959023879081a/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_b2d0489dd19046a585ab3b9fb12eb952 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b2d0489dd19046a585ab3b9fb12eb952/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_b2d0489dd19046a585ab3b9fb12eb952 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/b2d0489dd19046a585ab3b9fb12eb952/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_8ae2ef5b828447c3a6c9832b2c51160b span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8ae2ef5b828447c3a6c9832b2c51160b/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_8ae2ef5b828447c3a6c9832b2c51160b span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/8ae2ef5b828447c3a6c9832b2c51160b/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_f87b8f95bf4142c281874a8b0d06feff span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f87b8f95bf4142c281874a8b0d06feff/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_f87b8f95bf4142c281874a8b0d06feff span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/f87b8f95bf4142c281874a8b0d06feff/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }.swx span.moji.id_3ea11083ab4b4590876f509701b7f3f6 span.mojiThumbnail { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ea11083ab4b4590876f509701b7f3f6/views/thumbnail"); height: 40px; background-size: 100%; }.swx span.moji.id_3ea11083ab4b4590876f509701b7f3f6 span.keyframe { background-image: url("https://static-asm.secure.skypeassets.com/pes/v1/items/3ea11083ab4b4590876f509701b7f3f6/views/thumbnail"); height: 100%; background-size: 100%; border-radius: 8px; display: block; }</style><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.nonboot.controls.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.tagset.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/ewsprite1.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.attachments.extendedattachmentwell.mouse.css"><style>.AQvgqaFju61JE824Kd5R6 { bottom: 0px; height: 40px; position: relative; z-index: 1; background: none 50% 50% / cover no-repeat scroll padding-box border-box rgb(234, 234, 234); overflow: hidden; }._3qEjvxJOygiKopQP7YiQQm, .AQvgqaFju61JE824Kd5R6 { left: 0px; right: 0px; text-align: left; top: 0px; width: 340px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }._3qEjvxJOygiKopQP7YiQQm { bottom: -33.5px; display: block; height: 73.5px; position: absolute; }._20CRf0RZR-aMi3gHo3GY82 { bottom: 450px; height: 100px; left: 212px; position: absolute; right: 16px; top: 12px; width: 100px; z-index: 4; perspective-origin: 56px 56px; transform: matrix(0.5, 0, 0, 0.5, 0, 0); transform-origin: 112px 0px 0px; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(234, 234, 234); border: 6px solid rgb(255, 255, 255); border-radius: 50%; }._20CRf0RZR-aMi3gHo3GY82, .KkNA_KfbezamOzOnq-YQ2 { text-align: left; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }.KkNA_KfbezamOzOnq-YQ2 { bottom: 0px; height: 82px; left: 0px; position: relative; right: 0px; top: 0px; width: 300px; z-index: 0; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(255, 255, 255); border-bottom: 1px solid rgba(0, 0, 0, 0.14902); overflow: hidden; padding: 8px 16px 16px 24px; }.ngoJ3fijWgL5Tw6vNdXd_ { color: rgb(51, 51, 51); height: 31px; max-width: 250px; width: 250px; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 21px; line-height: 31.5px; font-family: "Segoe UI Semilight WestEuropean", "Segoe UI Semilight", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(51, 51, 51) none 0px; }._2MDczAaRG55KZ-28H7T9jq, .ngoJ3fijWgL5Tw6vNdXd_ { text-align: left; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }._2MDczAaRG55KZ-28H7T9jq { color: rgb(118, 118, 118); height: 19px; width: 300px; column-rule-color: rgb(118, 118, 118); border: 0px none rgb(118, 118, 118); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 18px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(118, 118, 118) none 0px; }._1qt38paDRZ2XOidwdVy2bM { color: rgb(234, 234, 234); text-align: left; white-space: nowrap; column-rule-color: rgb(234, 234, 234); border: 0px none rgb(234, 234, 234); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 15.6px; line-height: 18px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 7.8px; outline: rgb(234, 234, 234) none 0px; }._49UayY2XQwsW809_dZo4l { color: rgb(9, 74, 178); display: block; height: 22px; text-decoration: none; text-overflow: ellipsis; width: 300px; column-rule-color: rgb(9, 74, 178); border: 0px none rgb(9, 74, 178); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 20px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: 10px 0px 0px; outline: rgb(9, 74, 178) none 0px; overflow: hidden; }._1adiYfyo-fjIz8SAZ9xnss, ._49UayY2XQwsW809_dZo4l { cursor: pointer; text-align: left; white-space: nowrap; }._1adiYfyo-fjIz8SAZ9xnss { color: rgb(51, 51, 51); vertical-align: middle; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 20px; font-family: "Segoe UI Semibold WestEuropean", "Segoe UI Semibold", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(51, 51, 51) none 0px; }</style><style>._6tiV2G73O9uw8Jy6f7v8t { bottom: 0px; height: 190px; left: 0px; min-height: 105px; position: relative; right: 0px; top: 0px; width: 290px; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(255, 255, 255); border: 1px solid rgba(0, 0, 0, 0.14902); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; list-style: none outside none; margin: 0px 0px 8px; overflow: hidden; padding: 16px; }._2WucSumN0SD7WsLmw6ta8x { color: rgb(118, 118, 118); cursor: pointer; height: 20px; text-align: center; width: 242px; column-rule-color: rgb(118, 118, 118); border: 0px none rgb(118, 118, 118); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 15px; line-height: normal; font-family: "Segoe UI Light WestEuropean", "Segoe UI Light", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 0px 10px; outline: rgb(118, 118, 118) none 0px; padding: 0px 24px; }._27ozxIk4Crkha9APg-yOXT { color: rgb(51, 51, 51); height: 125px; text-align: left; width: 290px; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px; list-style: none outside none; outline: rgb(51, 51, 51) none 0px; padding: 0px; }.DUULvgoPpKXp2aXZ4hfKl, .uvlRwv2dw2QTjga81Ya8u { color: rgb(51, 51, 51); height: 25px; width: 290px; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 25px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(51, 51, 51) none 0px; }._1K6h59zxwjPFR9yS7e_fYw { bottom: 2px; left: 0px; position: relative; right: 0px; top: -2px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 25px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 4px 0px 0px; }._1K6h59zxwjPFR9yS7e_fYw, ._2MnKuVbgxGPMB0FvNoug-J { color: rgb(51, 51, 51); cursor: pointer; display: inline-block; height: 16px; text-align: left; white-space: nowrap; width: 16px; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); outline: rgb(51, 51, 51) none 0px; }._2MnKuVbgxGPMB0FvNoug-J { vertical-align: middle; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 16px; line-height: 25px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }.ZCEM5pigPMeW2K2LbczJV { text-overflow: ellipsis; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 25px; font-family: "Segoe UI Semibold WestEuropean", "Segoe UI Semibold", "Segoe UI", Tahoma, Arial, sans-serif; overflow: hidden; }._2WLRHzcE8p81zbG-aK2BKX, .ZCEM5pigPMeW2K2LbczJV { color: rgb(51, 51, 51); cursor: pointer; text-align: left; white-space: nowrap; column-rule-color: rgb(51, 51, 51); border: 0px none rgb(51, 51, 51); outline: rgb(51, 51, 51) none 0px; }._2WLRHzcE8p81zbG-aK2BKX { content: "\"\""; speak: none; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 12px; font-family: Office365Icons; }._3nrY88PXO2JE8Jyppn5mAX { float: right; }.iuRdL8MYm7e5bbN6OyQDZ { height: 40px; width: 290px; border-top: 1px solid rgb(244, 244, 244); margin: 10px -10px -16px; padding: 0px 10px; }.Ckvr3m2hQtTTHtWjEjxRH, .iuRdL8MYm7e5bbN6OyQDZ { text-align: left; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 38px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }.Ckvr3m2hQtTTHtWjEjxRH { color: rgb(0, 120, 215); cursor: pointer; text-decoration: none; column-rule-color: rgb(0, 120, 215); border: 0px none rgb(0, 120, 215); outline: rgb(0, 120, 215) none 0px; }</style><style>.PC2ACc_DcBp9VoBhFNn9y { bottom: 0px; color: rgb(255, 255, 255); cursor: pointer; display: block; height: 32px; left: 0px; object-fit: cover; position: absolute; right: 0px; speak: none; text-align: center; top: 0px; width: 32px; column-rule-color: rgb(255, 255, 255); border: 0px none rgb(255, 255, 255); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 21px; line-height: 40px; font-family: Office365Icons; outline: rgb(255, 255, 255) none 0px; }._3PIPHl5rHceV4r1Yu61jdX { color: rgb(118, 118, 118); cursor: pointer; height: 20px; text-align: center; width: 242px; column-rule-color: rgb(118, 118, 118); border: 0px none rgb(118, 118, 118); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 15px; line-height: normal; font-family: "Segoe UI Light WestEuropean", "Segoe UI Light", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 0px 10px; outline: rgb(118, 118, 118) none 0px; padding: 0px 24px; transition: color 0.1s ease 0s; }.s1fvgyUmerUxJZy6sAm03 { bottom: 0px; color: rgb(255, 255, 255); cursor: pointer; display: inline-block; height: 32px; left: 0px; position: relative; right: 0px; speak: none; text-align: center; top: 0px; vertical-align: middle; width: 32px; z-index: 0; column-rule-color: rgb(255, 255, 255); background: none 0px 0px / auto repeat scroll padding-box border-box rgb(166, 166, 166); border: 0px none rgb(255, 255, 255); border-radius: 50%; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 21px; line-height: 40px; font-family: Office365Icons; outline: rgb(255, 255, 255) none 0px; overflow: hidden; }._2ULHqyLxkHnzFbIu38Ee6R { color: rgb(9, 74, 178); cursor: pointer; display: block; height: 16px; min-height: auto; min-width: auto; text-align: left; text-overflow: ellipsis; white-space: nowrap; width: 250px; column-rule-color: rgb(9, 74, 178); align-self: center; border: 0px none rgb(9, 74, 178); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(9, 74, 178) none 0px; overflow: hidden; }._3X30bhQtctpDuGbdZBixv5 { border: 0px none rgb(51, 51, 51); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Semibold WestEuropean", "Segoe UI Semibold", "Segoe UI", Tahoma, Arial, sans-serif; }._2ajJMpL7jcshFyeecERNe9, ._3X30bhQtctpDuGbdZBixv5 { color: rgb(51, 51, 51); cursor: pointer; text-align: left; white-space: nowrap; column-rule-color: rgb(51, 51, 51); outline: rgb(51, 51, 51) none 0px; }._2ajJMpL7jcshFyeecERNe9 { border-width: 0px 0px 0px 1px; border-style: none none none solid; border-color: rgb(51, 51, 51) rgb(51, 51, 51) rgb(51, 51, 51) rgba(0, 0, 0, 0.0980392); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Semilight WestEuropean", "Segoe UI Semilight", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 0px 0px 7.2px; padding: 0px 0px 0px 9.6px; }._2cFecRdGvtEotMGY3J6WSp { bottom: 0px; height: 105px; left: 0px; min-height: 105px; position: relative; right: 0px; top: 0px; width: 290px; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(255, 255, 255); border: 1px solid rgba(0, 0, 0, 0.14902); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: 0px 0px 8px; overflow: hidden; padding: 16px; transition: border-color 0.167s ease 0s, box-shadow 0.167s ease 0s; }._1jqu7mcZ8rkUEjBxVl9Q6R { height: 40px; text-align: left; width: 290px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }.fbACHNDehg5Tb_oTtzSE8 { height: 40px; width: 290px; border-top: 1px solid rgb(244, 244, 244); margin: 10px -10px -16px; padding: 0px 10px; }._2-4wIsoOX1JujHzHM6ekU3, .fbACHNDehg5Tb_oTtzSE8 { text-align: left; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 38px; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }._2-4wIsoOX1JujHzHM6ekU3 { color: rgb(0, 120, 215); cursor: pointer; text-decoration: none; column-rule-color: rgb(0, 120, 215); border: 0px none rgb(0, 120, 215); outline: rgb(0, 120, 215) none 0px; }</style><style>.enBf_JHvIJeyQ2rIVwpyN { width: 324px; perspective-origin: 162px 16px; transform-origin: 162px 16px 0px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }._1qaYB0YvZHT4joR0ePQ8K7, .enBf_JHvIJeyQ2rIVwpyN { height: 32px; text-align: center; list-style: none outside none; }._1qaYB0YvZHT4joR0ePQ8K7 { color: rgb(0, 120, 215); display: inline-block; text-decoration: none; column-rule-color: rgb(0, 120, 215); perspective-origin: 67.9531px 16px; transform-origin: 67.9531px 16px 0px; border: 0px none rgb(0, 120, 215); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: 32px; font-family: "Segoe UI Semibold WestEuropean", "Segoe UI Semibold", "Segoe UI", Tahoma, Arial, sans-serif; outline: rgb(0, 120, 215) none 0px; padding: 0px 8px; }</style><style>._3Gydu8TH3MhSYokqhDFA_I { height: 411px; max-height: 420px; text-align: left; width: 324px; perspective-origin: 170px 213.5px; transform-origin: 170px 213.5px 0px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; overflow: auto; padding: 8px; transition: opacity 0.467s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, max-height 0.467s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; }</style><style>._3PZ_OC39XbQh5aWEJYbJKN { bottom: 0px; height: 40px; position: relative; z-index: 1; background: none 50% 50% / cover no-repeat scroll padding-box border-box rgb(234, 234, 234); overflow: hidden; }._2gOsNPR68hJ204mOMAAVjX, ._3PZ_OC39XbQh5aWEJYbJKN { left: 0px; right: 0px; text-align: left; top: 0px; width: 340px; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }._2gOsNPR68hJ204mOMAAVjX { bottom: -33.5px; display: block; height: 73.5px; position: absolute; }._1vuTFx2Na_nvOoM0oh2tDi { left: 0px; width: 40px; background: none 50% 50% / cover no-repeat scroll padding-box border-box rgb(134, 134, 134); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; opacity: 0.75; }._1vuTFx2Na_nvOoM0oh2tDi, ._3CczfoouQfQQORcPKDhgYU { bottom: 0px; position: absolute; right: 0px; text-align: left; top: 0px; border: 0px; height: 40px; z-index: 4; overflow: hidden; }._3CczfoouQfQQORcPKDhgYU { left: 45px; font-style: normal; font-variant: normal; font-weight: 700; font-stretch: normal; font-size: 16px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }.QhH3Q175QYaMmB2l-ikoT { bottom: 450px; height: 100px; left: 212px; position: absolute; right: 16px; text-align: left; top: 12px; width: 100px; z-index: 4; perspective-origin: 56px 56px; transform: matrix(0.5, 0, 0, 0.5, 0, 0); transform-origin: 112px 0px 0px; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(234, 234, 234); border: 6px solid rgb(255, 255, 255); border-radius: 50%; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; }</style><style>._16WoEz4KPx3tmbk0CNqpH8 { bottom: 0px; box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px; height: 574px; left: 180px; position: relative; right: -160px; text-align: left; top: 0px; width: 340px; z-index: 2; perspective-origin: 171px 288px; transform-origin: 171px 288px 0px; background: none 0px 0px / auto repeat scroll padding-box border-box rgb(234, 234, 234); border: 1px solid rgba(0, 0, 0, 0.14902); font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: "Segoe UI Regular WestEuropean", "Segoe UI", Tahoma, Arial, sans-serif; margin: -20px 0px 0px -180px; overflow: hidden; transition: opacity 0.267s ease-out 0s; }._2HLDrBgoKWFdkQyI52GC41 { position: absolute; top: 510px; float: left; }</style><style>.ms-Callout { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 15px -5px; position: absolute; border: 1px solid rgb(234, 234, 234); box-sizing: border-box; }@media not all {<br> .ms-Callout { border: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Callout { border: 1px solid rgb(0, 0, 0); }<br>}.ms-Callout-container { position: relative; }.ms-Callout-main { background-color: rgb(255, 255, 255); overflow-y: auto; position: relative; }.ms-Callout-beak { position: absolute; background-color: rgb(255, 255, 255); box-shadow: inherit; border: inherit; box-sizing: border-box; transform: rotate(45deg); }.ms-Callout-beakCurtain { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; background-color: rgb(255, 255, 255); }</style><style>.ms-LayerHost-overlay { position: absolute; visibility: hidden; top: 0px; left: 0px; bottom: 0px; right: 0px; }.ms-ProjectedLayer { visibility: visible; }</style><style>.ms-ContextualMenu { background-color: rgb(255, 255, 255); min-width: 180px; }.ms-ContextualMenu-list { list-style-type: none; margin: 0px; padding: 0px; line-height: 0; }.ms-ContextualMenu-item { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(51, 51, 51); position: relative; box-sizing: border-box; }.ms-ContextualMenu-link { font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; font-family: inherit; color: inherit; background: 0px 0px; border: none; min-width: 100%; height: 36px; line-height: 36px; display: block; cursor: pointer; padding: 0px 6px; }.ms-ContextualMenu-link { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-ContextualMenu-link:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-ContextualMenu-link { text-align: left; }html[dir="rtl"] .ms-ContextualMenu-link { text-align: right; }.ms-ContextualMenu-link:hover:not([disabled]) { background: rgb(244, 244, 244); }.ms-ContextualMenu-link.is-disabled, .ms-ContextualMenu-link[disabled] { color: rgb(200, 200, 200); cursor: default; pointer-events: none; }.is-focusVisible .ms-ContextualMenu-link:focus { background: rgb(244, 244, 244); }.ms-ContextualMenu-link.is-expanded, .ms-ContextualMenu-link.is-expanded:hover { background: rgb(218, 218, 218); color: rgb(0, 0, 0); font-weight: 600; }a.ms-ContextualMenu-link { padding: 0px 6px; text-rendering: auto; color: inherit; letter-spacing: normal; word-spacing: normal; text-transform: none; text-indent: 0px; text-shadow: none; box-sizing: border-box; }.ms-ContextualMenu-linkContent { white-space: nowrap; height: inherit; }.ms-ContextualMenu-divider { display: block; height: 1px; background-color: rgb(234, 234, 234); position: relative; }.ms-ContextualMenu-icon { color: rgb(0, 120, 215); display: inline-block; min-height: 1px; width: 14px; text-align: center; vertical-align: top; margin: 0px 4px; }.ms-ContextualMenu-itemText { padding: 0px 12px 0px 4px; }html[dir="rtl"] .ms-ContextualMenu-itemText { padding: 0px 4px 0px 12px; }.ms-ContextualMenu-linkText { margin: 0px 4px; display: inline-block; vertical-align: top; white-space: nowrap; }.ms-Icon.ms-ContextualMenu-submenuChevron { position: absolute; height: 36px; line-height: 36px; vertical-align: middle; text-align: center; font-size: 10px; }html[dir="ltr"] .ms-Icon.ms-ContextualMenu-submenuChevron { right: 8px; }html[dir="rtl"] .ms-Icon.ms-ContextualMenu-submenuChevron { left: 8px; }</style><style>.ms-Breadcrumb { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; margin: 23px 0px 1px; }.ms-Breadcrumb-list { white-space: nowrap; padding: 0px; margin: 0px; }.ms-Breadcrumb-chevron { font-size: 12px; color: rgb(102, 102, 102); vertical-align: top; margin: 11px 7px; line-height: 1; }.ms-Breadcrumb-listItem { list-style-type: none; vertical-align: top; margin: 0px; padding: 0px; display: inline-block; position: relative; }.ms-Breadcrumb-listItem:last-of-type .ms-Breadcrumb-chevron { display: none; }.ms-Breadcrumb-listItem .ms-Breadcrumb-itemLink { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 100; color: rgb(51, 51, 51); display: inline-block; padding: 0px 4px; max-width: 160px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; vertical-align: top; }.ms-Breadcrumb-listItem .ms-Breadcrumb-itemLink { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Breadcrumb-listItem .ms-Breadcrumb-itemLink:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-Breadcrumb-overflow { display: inline-block; position: relative; }.ms-Breadcrumb-overflowButton { font-size: 16px; display: inline-block; color: rgb(0, 120, 215); padding: 8px; cursor: pointer; vertical-align: top; }.ms-Breadcrumb-itemLink, .ms-Breadcrumb-overflowButton { text-decoration: none; outline: transparent; }.ms-Breadcrumb-itemLink:hover, .ms-Breadcrumb-overflowButton:hover { background-color: rgb(234, 234, 234); color: rgb(0, 90, 158); cursor: pointer; }.ms-Breadcrumb-itemLink:focus, .ms-Breadcrumb-overflowButton:focus { outline: rgb(118, 118, 118) solid 1px; color: rgb(33, 33, 33); }.ms-Breadcrumb-itemLink:active, .ms-Breadcrumb-overflowButton:active { outline: transparent; background-color: rgb(200, 200, 200); color: rgb(51, 51, 51); }@media screen and (max-width: 639px) {<br> .ms-Breadcrumb-chevron { font-size: 10px; margin: 8px 5px; }<br> .ms-Breadcrumb-overflowButton { font-size: 15px; padding: 5px 4px; }<br>}@media screen and (max-width: 479px) {<br> .ms-Breadcrumb-listItem .ms-Breadcrumb-itemLink { font-size: 14px; max-width: 116px; }<br> .ms-Breadcrumb-chevron { margin: 5px 4px; }<br> .ms-Breadcrumb-overflowButton { padding: 2px 4px; }<br>}</style><style>.ms-Button { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; box-sizing: border-box; margin: 0px; box-shadow: none; color: rgb(51, 51, 51); background-color: rgb(244, 244, 244); border: 1px solid rgb(244, 244, 244); cursor: pointer; display: inline-block; height: 32px; min-width: 80px; padding: 4px 20px 6px; }.ms-Button { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Button:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-Button:hover { background-color: rgb(234, 234, 234); border-color: rgb(234, 234, 234); }.ms-Button:hover .ms-Button-label { color: rgb(0, 0, 0); }@media not all {<br> .ms-Button:hover { color: rgb(26, 235, 255); border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-Button:hover { color: rgb(55, 0, 110); border-color: rgb(55, 0, 110); }<br>}.ms-Button:focus { background-color: rgb(234, 234, 234); border-color: rgb(244, 244, 244); outline: transparent solid 1px; }.ms-Button:focus .ms-Button-label { color: rgb(0, 0, 0); }.ms-Button:active { background-color: rgb(0, 120, 215); border-color: rgb(0, 120, 215); }.ms-Button:active .ms-Button-label { color: rgb(255, 255, 255); }.ms-Button.is-disabled, .ms-Button:disabled { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); cursor: default; }.ms-Button.is-disabled .ms-Button-label, .ms-Button:disabled .ms-Button-label { color: rgb(166, 166, 166); }.ms-Button.is-disabled:focus, .ms-Button.is-disabled:hover, .ms-Button:disabled:focus, .ms-Button:disabled:hover { outline: 0px; }.ms-Button-label { color: rgb(51, 51, 51); font-weight: 600; font-size: 14px; }.ms-Button-description, .ms-Button-icon { display: none; }.ms-Fabric.is-focusVisible .ms-Button:focus { color: rgb(0, 0, 0); }.ms-Fabric.is-focusVisible .ms-Button:focus::before { border-color: rgb(0, 120, 215); }.ms-Button.ms-Button--primary { background-color: rgb(0, 120, 215); border-color: rgb(0, 120, 215); }.ms-Button.ms-Button--primary .ms-Button-label { color: rgb(255, 255, 255); }.ms-Button.ms-Button--primary:hover { background-color: rgb(0, 90, 158); border-color: rgb(0, 90, 158); }.ms-Button.ms-Button--primary:focus { background-color: rgb(0, 90, 158); border-color: rgb(0, 120, 215); }.ms-Button.ms-Button--primary:active { background-color: rgb(0, 120, 215); border-color: rgb(0, 120, 215); }.ms-Button.ms-Button--primary.is-disabled, .ms-Button.ms-Button--primary:disabled { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); }.ms-Button.ms-Button--primary.is-disabled .ms-Button-label, .ms-Button.ms-Button--primary:disabled .ms-Button-label { color: rgb(166, 166, 166); }.ms-Fabric.is-focusVisible .ms-Button.ms-Button--primary:focus { color: rgb(255, 255, 255); }.ms-Fabric.is-focusVisible .ms-Button.ms-Button--primary:focus::before { border-color: rgb(0, 69, 120); }.ms-Button.ms-Button--hero { background-color: transparent; border: 0px; height: auto; }.ms-Button.ms-Button--hero .ms-Button-icon { color: rgb(0, 120, 215); display: inline-block; padding-top: 5px; font-size: 20px; line-height: 1; }html[dir="ltr"] .ms-Button.ms-Button--hero .ms-Button-icon { margin-right: 8px; }html[dir="rtl"] .ms-Button.ms-Button--hero .ms-Button-icon { margin-left: 8px; }.ms-Button.ms-Button--hero .ms-Button-label { color: rgb(0, 120, 215); font-size: 21px; font-weight: 100; vertical-align: top; }.ms-Button.ms-Button--hero:focus .ms-Button-icon, .ms-Button.ms-Button--hero:hover .ms-Button-icon { color: rgb(0, 90, 158); }.ms-Button.ms-Button--hero:focus .ms-Button-label, .ms-Button.ms-Button--hero:hover .ms-Button-label { color: rgb(0, 69, 120); }.ms-Button.ms-Button--hero:active .ms-Button-icon { color: rgb(0, 120, 215); }.ms-Button.ms-Button--hero:active .ms-Button-label { color: rgb(0, 120, 215); }.ms-Button.ms-Button--hero.is-disabled .ms-Button-icon, .ms-Button.ms-Button--hero:disabled .ms-Button-icon { color: rgb(200, 200, 200); }.ms-Button.ms-Button--hero.is-disabled .ms-Button-label, .ms-Button.ms-Button--hero:disabled .ms-Button-label { color: rgb(166, 166, 166); }.ms-Button.ms-Button--compound { display: block; height: auto; max-width: 280px; min-height: 72px; padding: 20px; }.ms-Button.ms-Button--compound .ms-Button-label { display: block; color: rgb(0, 0, 0); margin-top: -5px; }html[dir="ltr"] .ms-Button.ms-Button--compound .ms-Button-label { text-align: left; }html[dir="rtl"] .ms-Button.ms-Button--compound .ms-Button-label { text-align: right; }.ms-Button.ms-Button--compound .ms-Button-description { color: rgb(102, 102, 102); display: block; font-size: 12px; position: relative; top: 3px; }html[dir="ltr"] .ms-Button.ms-Button--compound .ms-Button-description { text-align: left; }html[dir="rtl"] .ms-Button.ms-Button--compound .ms-Button-description { text-align: right; }.ms-Button.ms-Button--compound:hover .ms-Button-description { color: rgb(33, 33, 33); }.ms-Button.ms-Button--compound:focus { border-color: rgb(0, 120, 215); background-color: rgb(244, 244, 244); }.ms-Button.ms-Button--compound:focus .ms-Button-label { color: rgb(51, 51, 51); }.ms-Button.ms-Button--compound:focus .ms-Button-description { color: rgb(102, 102, 102); }.ms-Button.ms-Button--compound:active { background-color: rgb(0, 120, 215); }.ms-Button.ms-Button--compound:active .ms-Button-description, .ms-Button.ms-Button--compound:active .ms-Button-label { color: rgb(255, 255, 255); }.ms-Button.ms-Button--compound.is-disabled .ms-Button-description, .ms-Button.ms-Button--compound.is-disabled .ms-Button-label, .ms-Button.ms-Button--compound:disabled .ms-Button-description, .ms-Button.ms-Button--compound:disabled .ms-Button-label { color: rgb(166, 166, 166); }.ms-Button.ms-Button--compound.is-disabled:active, .ms-Button.ms-Button--compound.is-disabled:focus, .ms-Button.ms-Button--compound:disabled:active, .ms-Button.ms-Button--compound:disabled:focus { border-color: rgb(244, 244, 244); background-color: rgb(244, 244, 244); }.ms-Button.ms-Button--compound.is-disabled:active .ms-Button-description, .ms-Button.ms-Button--compound.is-disabled:active .ms-Button-label, .ms-Button.ms-Button--compound.is-disabled:focus .ms-Button-description, .ms-Button.ms-Button--compound.is-disabled:focus .ms-Button-label, .ms-Button.ms-Button--compound:disabled:active .ms-Button-description, .ms-Button.ms-Button--compound:disabled:active .ms-Button-label, .ms-Button.ms-Button--compound:disabled:focus .ms-Button-description, .ms-Button.ms-Button--compound:disabled:focus .ms-Button-label { color: rgb(166, 166, 166); }.ms-Button.ms-Button--command { background-color: transparent; border: none; height: 40px; min-width: 0px; padding: 0px 8px; }html[dir="ltr"] .ms-Button.ms-Button--command { text-align: left; }html[dir="rtl"] .ms-Button.ms-Button--command { text-align: right; }.ms-Button.ms-Button--command .ms-Icon { line-height: 40px; }.ms-Button.ms-Button--command .ms-Button-label { color: rgb(51, 51, 51); line-height: 40px; }.ms-Button.ms-Button--command .ms-Button-icon { vertical-align: top; color: rgb(0, 120, 215); display: inline-block; position: relative; font-size: 16px; }html[dir="ltr"] .ms-Button.ms-Button--command .ms-Button-icon { text-align: left; }html[dir="rtl"] .ms-Button.ms-Button--command .ms-Button-icon { text-align: right; }html[dir="ltr"] .ms-Button.ms-Button--command .ms-Button-icon { margin-right: 8px; }html[dir="rtl"] .ms-Button.ms-Button--command .ms-Button-icon { margin-left: 8px; }.ms-Button.ms-Button--command .ms-Button-label { font-weight: 400; }.ms-Button.ms-Button--command:focus .ms-Button-icon, .ms-Button.ms-Button--command:focus .ms-Button-label, .ms-Button.ms-Button--command:hover .ms-Button-icon, .ms-Button.ms-Button--command:hover .ms-Button-label { color: rgb(0, 69, 120); }.ms-Button.ms-Button--command:active .ms-Button-icon, .ms-Button.ms-Button--command:active .ms-Button-label { color: rgb(0, 120, 215); }.ms-Button.ms-Button--command.is-disabled .ms-Button-icon, .ms-Button.ms-Button--command:disabled .ms-Button-icon { color: rgb(200, 200, 200); }.ms-Button.ms-Button--command.is-disabled .ms-Button-label, .ms-Button.ms-Button--command:disabled .ms-Button-label { color: rgb(166, 166, 166); }.ms-Button.ms-Button--icon { background-color: transparent; color: rgb(102, 102, 102); padding: 0px; min-width: auto; height: auto; border: 0px; }.ms-Button.ms-Button--icon { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Button.ms-Button--icon:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-Button.ms-Button--icon:active, .ms-Button.ms-Button--icon:hover { background-color: transparent; color: rgb(51, 51, 51); }.ms-Button.ms-Button--icon:focus { background-color: transparent; }.ms-Button.ms-Button--icon .ms-Icon { font-size: 16px; padding: 8px; }.ms-Button.ms-Button--icon .ms-Button-icon { display: inline; }.ms-Button.ms-Button--icon.is-disabled, .ms-Button.ms-Button--icon:disabled { color: rgb(200, 200, 200); background-color: transparent; }@media not all {<br> .ms-Button.ms-Button--icon { color: rgb(255, 241, 0); }<br>}@media not all {<br> .ms-Button.ms-Button--icon { color: rgb(0, 24, 143); }<br>}.ms-Button.ms-Button--primary.disabled { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); pointer-events: none; cursor: default; }.ms-Button.ms-Button--primary.disabled .ms-Button-label { color: rgb(166, 166, 166); }html[dir="ltr"] .ms-Button + .ms-Button { margin-left: 6px; }html[dir="rtl"] .ms-Button + .ms-Button { margin-right: 6px; }html[dir="ltr"] .ms-Button.ms-Button--command + .ms-Button.ms-Button--command { margin-left: 14px; }html[dir="rtl"] .ms-Button.ms-Button--command + .ms-Button.ms-Button--command { margin-right: 14px; }a.ms-Button { text-decoration: none; text-align: center; }</style><style>.ms-Checkbox { box-sizing: border-box; color: rgb(51, 51, 51); font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 400; min-height: 36px; position: relative; }.ms-Checkbox .ms-Label { font-size: 14px; padding: 0px 0px 0px 26px; display: inline-block; }html[dir="rtl"] .ms-Checkbox .ms-Label { padding: 0px 26px 0px 0px; }.ms-Checkbox-input { position: absolute; opacity: 0; top: 8px; }.ms-Checkbox-label::before { content: ""; display: inline-block; border: 2px solid rgb(166, 166, 166); width: 20px; height: 20px; font-weight: 400; position: absolute; box-sizing: border-box; transition-property: background, border, border-color; transition-duration: 0.2s; transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1); }.ms-Checkbox-label::after { content: ""; font-family: FabricMDL2Icons; display: none; position: absolute; font-weight: 900; background-color: transparent; font-size: 13px; top: 0px; color: rgb(255, 255, 255); line-height: 20px; width: 20px; text-align: center; }.ms-Checkbox-label { display: inline-block; cursor: pointer; margin-top: 8px; position: relative; vertical-align: top; user-select: none; min-width: 20px; min-height: 20px; line-height: 20px; }.ms-Checkbox-label:hover::before { border-color: rgb(118, 118, 118); }.ms-Checkbox-label:hover .ms-Label { color: rgb(0, 0, 0); }.ms-Checkbox-label:focus::before { border-color: rgb(118, 118, 118); }.ms-Checkbox-label:focus.is-disabled::before { border-color: rgb(200, 200, 200); }.ms-Checkbox-label:focus.is-checked::before { border-color: rgb(16, 110, 190); }.ms-Checkbox-label:active::before { border-color: rgb(118, 118, 118); }.ms-Checkbox-label:active .ms-Label { color: rgb(0, 0, 0); }.ms-Checkbox-label.is-checked::before { border: 10px solid rgb(0, 120, 215); background-color: rgb(0, 120, 215); }@media not all, not all {<br> .ms-Checkbox-label.is-checked::before { display: none; }<br>}.ms-Checkbox-label.is-checked::after { display: block; }@media not all, not all {<br> .ms-Checkbox-label.is-checked::after { height: 16px; width: 16px; line-height: 16px; }<br>}@media not all {<br> .ms-Checkbox-label.is-checked::after { border: 2px solid rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Checkbox-label.is-checked::after { border: 2px solid rgb(0, 0, 0); }<br>}.ms-Checkbox-label.is-checked:focus::before, .ms-Checkbox-label.is-checked:hover::before { border-color: rgb(16, 110, 190); }.ms-Checkbox-label.is-disabled { cursor: default; }.ms-Checkbox-label.is-disabled:focus::before, .ms-Checkbox-label.is-disabled:hover::before { border-color: rgb(200, 200, 200); }.ms-Checkbox-label.is-disabled::before { background-color: rgb(200, 200, 200); border-color: rgb(200, 200, 200); color: rgb(200, 200, 200); }@media not all {<br> .ms-Checkbox-label.is-disabled::after { border: 2px solid rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Checkbox-label.is-disabled::after { border: 2px solid rgb(96, 0, 0); }<br>}@media not all {<br> .ms-Checkbox-label.is-disabled::after { color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Checkbox-label.is-disabled::after { color: rgb(96, 0, 0); }<br>}.ms-Checkbox-label.is-disabled .ms-Label { color: rgb(166, 166, 166); }@media not all {<br> .ms-Checkbox-label.is-disabled .ms-Label { color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Checkbox-label.is-disabled .ms-Label { color: rgb(96, 0, 0); }<br>}.ms-Checkbox-label.is-inFocus::before { border-color: rgb(118, 118, 118); }.ms-Checkbox-label.is-inFocus.is-disabled::before { border-color: rgb(200, 200, 200); }.ms-Checkbox-label.is-inFocus.is-checked::before { border-color: rgb(16, 110, 190); }.is-focusVisible .ms-Checkbox.is-inFocus::before { content: ""; position: absolute; top: 0px; bottom: 0px; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .is-focusVisible .ms-Checkbox.is-inFocus::before { right: 0px; }html[dir="rtl"] .is-focusVisible .ms-Checkbox.is-inFocus::before { left: 0px; }html[dir="ltr"] .is-focusVisible .ms-Checkbox.is-inFocus::before { left: -8px; }html[dir="rtl"] .is-focusVisible .ms-Checkbox.is-inFocus::before { right: -8px; }@media not all {<br> .is-focusVisible .ms-Checkbox.is-inFocus::before { border: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> .is-focusVisible .ms-Checkbox.is-inFocus::before { border: 1px solid rgb(0, 0, 0); }<br>}</style><style>.ms-Image { overflow: hidden; }.ms-Image-image { display: block; opacity: 0; }.ms-Image-image.is-loaded { opacity: 1; }.ms-Image-image--center, .ms-Image-image--contain, .ms-Image-image--cover { position: relative; top: 50%; }html[dir="ltr"] .ms-Image-image--center, html[dir="ltr"] .ms-Image-image--contain, html[dir="ltr"] .ms-Image-image--cover { left: 50%; }html[dir="rtl"] .ms-Image-image--center, html[dir="rtl"] .ms-Image-image--contain, html[dir="rtl"] .ms-Image-image--cover { right: 50%; }html[dir="ltr"] .ms-Image-image--center, html[dir="ltr"] .ms-Image-image--contain, html[dir="ltr"] .ms-Image-image--cover { transform: translate(-50%, -50%); }html[dir="rtl"] .ms-Image-image--center, html[dir="rtl"] .ms-Image-image--contain, html[dir="rtl"] .ms-Image-image--cover { transform: translate(50%, -50%); }.ms-Image-image--contain.ms-Image-image--landscape { width: 100%; height: auto; }.ms-Image-image--contain.ms-Image-image--portrait { height: 100%; width: auto; }.ms-Image-image--cover.ms-Image-image--landscape { height: 100%; width: auto; }.ms-Image-image--cover.ms-Image-image--portrait { width: 100%; height: auto; }.ms-Image-image--none { height: auto; width: auto; }.ms-Image-image--scaleWidthHeight { height: 100%; width: 100%; }.ms-Image-image--scaleWidth { height: auto; width: 100%; }.ms-Image-image--scaleHeight { height: 100%; width: auto; }</style><style>.ms-ChoiceFieldGroup { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; margin-bottom: 4px; }.ms-ChoiceFieldGroup .ms-ChoiceFieldGroup-list { padding: 0px; margin: 0px; }.ms-ChoiceField { box-sizing: border-box; color: rgb(51, 51, 51); font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 400; min-height: 36px; border: 1px solid transparent; position: relative; line-height: 20px; }html[dir="ltr"] .ms-ChoiceField { padding-left: 8px; }html[dir="rtl"] .ms-ChoiceField { padding-right: 8px; }.ms-ChoiceField .ms-Label { font-size: 14px; padding: 0px 0px 0px 26px; display: inline-block; }html[dir="rtl"] .ms-ChoiceField .ms-Label { padding: 0px 26px 0px 0px; }.ms-ChoiceField-input { position: absolute; opacity: 0; top: 8px; }.ms-ChoiceField-field::before { content: ""; display: inline-block; border: 2px solid rgb(166, 166, 166); width: 20px; height: 20px; font-weight: 400; position: absolute; box-sizing: border-box; transition-property: background, border, border-color; transition-duration: 0.2s; transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1); border-radius: 50%; }.ms-ChoiceField-field::after { content: ""; width: 0px; height: 0px; border-radius: 50%; position: absolute; top: 10px; bottom: 0px; transition-property: top, left, right, width, height; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.23, 1); box-sizing: border-box; }html[dir="ltr"] .ms-ChoiceField-field::after { left: 10px; }html[dir="rtl"] .ms-ChoiceField-field::after { right: 10px; }html[dir="ltr"] .ms-ChoiceField-field::after { right: 0px; }html[dir="rtl"] .ms-ChoiceField-field::after { left: 0px; }@media not all {<br> .ms-ChoiceField-field::after { color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-ChoiceField-field::after { color: rgb(96, 0, 0); }<br>}.ms-ChoiceField-field { display: inline-block; cursor: pointer; margin-top: 8px; position: relative; vertical-align: top; user-select: none; }.ms-ChoiceField-field:hover::before { border-color: rgb(118, 118, 118); }.ms-ChoiceField-field:hover .ms-Label { color: rgb(0, 0, 0); }.ms-ChoiceField-field:focus::before { border-color: rgb(118, 118, 118); }.ms-ChoiceField-field:focus.is-disabled::before { border-color: rgb(200, 200, 200); }.ms-ChoiceField-field:focus.is-checked::before { border-color: rgb(16, 110, 190); }.ms-ChoiceField-field:active::before { border-color: rgb(118, 118, 118); }.ms-ChoiceField-field:active .ms-Label { color: rgb(0, 0, 0); }.ms-ChoiceField-field.is-checked::before { border: 2px solid rgb(0, 120, 215); background-color: transparent; }@media not all {<br> .ms-ChoiceField-field.is-checked::before { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-ChoiceField-field.is-checked::before { border-color: rgb(55, 0, 110); }<br>}.ms-ChoiceField-field.is-checked::after { background-color: rgb(0, 120, 215); top: 5px; width: 10px; height: 10px; }html[dir="ltr"] .ms-ChoiceField-field.is-checked::after { left: 5px; }html[dir="rtl"] .ms-ChoiceField-field.is-checked::after { right: 5px; }@media not all {<br> .ms-ChoiceField-field.is-checked::after { background-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-ChoiceField-field.is-checked::after { background-color: rgb(55, 0, 110); }<br>}.ms-ChoiceField-field.is-checked:focus::before, .ms-ChoiceField-field.is-checked:hover::before { border-color: rgb(16, 110, 190); }.ms-ChoiceField-field.is-disabled { cursor: default; }.ms-ChoiceField-field.is-disabled:focus::before, .ms-ChoiceField-field.is-disabled:hover::before { border-color: rgb(200, 200, 200); }.ms-ChoiceField-field.is-disabled::before { background-color: rgb(200, 200, 200); border-color: rgb(200, 200, 200); color: rgb(200, 200, 200); }@media not all {<br> .ms-ChoiceField-field.is-disabled::before { border-color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-ChoiceField-field.is-disabled::before { border-color: rgb(96, 0, 0); }<br>}.ms-ChoiceField-field.is-disabled .ms-Label { color: rgb(166, 166, 166); }@media not all {<br> .ms-ChoiceField-field.is-disabled .ms-Label { color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-ChoiceField-field.is-disabled .ms-Label { color: rgb(96, 0, 0); }<br>}.ms-ChoiceField-field.is-inFocus::before { border-color: rgb(118, 118, 118); }.ms-ChoiceField-field.is-inFocus.is-disabled::before { border-color: rgb(200, 200, 200); }.ms-ChoiceField-field.is-inFocus.is-checked::before { border-color: rgb(16, 110, 190); }.ms-ChoiceField--image { display: inline-block; font-size: 0px; background-color: rgb(244, 244, 244); }html[dir="ltr"] .ms-ChoiceField--image { margin-right: 6px; }html[dir="rtl"] .ms-ChoiceField--image { margin-left: 6px; }html[dir="ltr"] .ms-ChoiceField--image { padding-left: 0px; }html[dir="rtl"] .ms-ChoiceField--image { padding-right: 0px; }.ms-ChoiceField--image .ms-ChoiceField-field--image { display: inline-block; box-sizing: border-box; min-width: 164px; cursor: pointer; padding: 20px 20px 12px; text-align: center; transition: all 0.2s ease; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField { position: relative; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField .ms-ChoiceField-imageWrapper { transition: opacity 0.2s ease; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField .ms-ChoiceField-imageWrapper.is-hidden { position: absolute; top: 0px; width: 100%; height: 100%; overflow: hidden; opacity: 0; }html[dir="ltr"] .ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField .ms-ChoiceField-imageWrapper.is-hidden { left: 0px; }html[dir="rtl"] .ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField .ms-ChoiceField-imageWrapper.is-hidden { right: 0px; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-innerField .ms-ChoiceField-imageWrapper .ms-Image { display: inline-block; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-labelWrapper { display: inline-block; position: relative; margin: 10px 0px 0px; padding: 0px 24px; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-labelWrapper .ms-ChoiceField-icon { display: none; position: absolute; line-height: 12px; font-size: 17px; color: rgb(0, 90, 158); }html[dir="ltr"] .ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-labelWrapper .ms-ChoiceField-icon { left: 0px; }html[dir="rtl"] .ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-labelWrapper .ms-ChoiceField-icon { right: 0px; }.ms-ChoiceField--image .ms-ChoiceField-field--image .ms-ChoiceField-labelWrapper .ms-Label { display: inline-block; padding: 0px; line-height: 12px; font-weight: 600; color: rgb(51, 51, 51); }.ms-ChoiceField--image .ms-ChoiceField-field--image.is-checked { background-color: rgb(222, 236, 249); }.ms-ChoiceField--image .ms-ChoiceField-field--image.is-checked .ms-ChoiceField-labelWrapper .ms-ChoiceField-icon { display: inline-block; }.is-focusVisible .ms-ChoiceField.is-inFocus { border: 1px solid rgb(51, 51, 51); }</style><style>.ms-Label { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; margin: 0px; box-shadow: none; color: rgb(51, 51, 51); box-sizing: border-box; display: block; padding: 5px 0px; }.ms-Label.is-required::after { content: " *"; color: rgb(168, 0, 0); }.ms-Label.is-disabled { color: rgb(166, 166, 166); }</style><style>.ms-Label { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; margin: 0px; box-shadow: none; color: rgb(51, 51, 51); box-sizing: border-box; display: block; padding: 5px 0px; }.ms-Label.is-required::after { content: " *"; color: rgb(168, 0, 0); }.ms-Label.is-disabled { color: rgb(166, 166, 166); }.ms-TextField { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; box-sizing: border-box; margin: 0px 0px 8px; padding: 0px; box-shadow: none; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400; }.ms-TextField .ms-Label { font-size: 14px; font-weight: 400; }.ms-TextField.is-disabled .ms-TextField-field { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); pointer-events: none; cursor: default; }.ms-TextField.is-disabled::-webkit-input-placeholder { color: rgb(166, 166, 166); }.ms-TextField.is-required .ms-Label::after { content: " *"; color: rgb(168, 0, 0); }.ms-TextField.is-active { border-color: rgb(0, 120, 215); }.ms-TextField-field { box-sizing: border-box; margin: 0px; box-shadow: none; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; border: 1px solid rgb(200, 200, 200); border-radius: 0px; font-weight: 400; font-size: 14px; color: rgb(51, 51, 51); height: 32px; padding: 6px 12px 7px; width: 100%; outline: 0px; text-overflow: ellipsis; }html[dir="rtl"] .ms-TextField-field { padding: 6px 12px 7px; }.ms-TextField-field:hover { border-color: rgb(118, 118, 118); }.ms-TextField-field:focus { border-color: rgb(0, 120, 215); }@media not all {<br> .ms-TextField-field:focus, .ms-TextField-field:hover { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-TextField-field:focus, .ms-TextField-field:hover { border-color: rgb(55, 0, 110); }<br>}.ms-TextField-field[disabled] { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); pointer-events: none; cursor: default; }.ms-TextField-field::-webkit-input-placeholder { color: rgb(102, 102, 102); }.ms-TextField-description { color: rgb(118, 118, 118); font-size: 11px; }.ms-TextField.ms-TextField--underlined { border-bottom: 1px solid rgb(200, 200, 200); display: table; width: 100%; }.ms-TextField.ms-TextField--underlined:hover { border-color: rgb(118, 118, 118); }@media not all {<br> .ms-TextField.ms-TextField--underlined:hover { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-TextField.ms-TextField--underlined:hover { border-color: rgb(55, 0, 110); }<br>}.ms-TextField.ms-TextField--underlined:active, .ms-TextField.ms-TextField--underlined:focus { border-color: rgb(0, 120, 215); }.ms-TextField.ms-TextField--underlined .ms-Label { font-size: 14px; display: table-cell; vertical-align: top; padding-top: 9px; height: 32px; width: 1%; white-space: nowrap; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-Label { margin-right: 8px; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-Label { margin-left: 8px; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-left: 12px; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-right: 12px; }.ms-TextField.ms-TextField--underlined .ms-TextField-field { border: 0px; display: table-cell; padding-top: 8px; padding-bottom: 3px; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { float: left; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { float: right; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { text-align: left; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { text-align: right; }.ms-TextField.ms-TextField--underlined .ms-TextField-field:active, .ms-TextField.ms-TextField--underlined .ms-TextField-field:focus, .ms-TextField.ms-TextField--underlined .ms-TextField-field:hover { outline: 0px; }.ms-TextField.ms-TextField--underlined.is-disabled { border-bottom-color: rgb(234, 234, 234); }.ms-TextField.ms-TextField--underlined.is-disabled .ms-Label { color: rgb(166, 166, 166); }.ms-TextField.ms-TextField--underlined.is-disabled .ms-TextField-field { background-color: transparent; color: rgb(166, 166, 166); }.ms-TextField.ms-TextField--underlined.is-active { border-color: rgb(0, 120, 215); }@media not all {<br> .ms-TextField.ms-TextField--underlined.is-active { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-TextField.ms-TextField--underlined.is-active { border-color: rgb(55, 0, 110); }<br>}.ms-TextField.ms-TextField--multiline .ms-TextField-field { -webkit-font-smoothing: antialiased; color: rgb(51, 51, 51); font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 400; line-height: 17px; min-height: 60px; padding-top: 6px; overflow: auto; }.ms-TextField-errorMessage { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; font-weight: 400; color: rgb(168, 0, 0); margin: 0px; padding-top: 5px; }.ms-TextField-invalid, .ms-TextField-invalid:focus, .ms-TextField-invalid:hover { border-color: rgb(168, 0, 0); }.ms-u-screenReaderOnly { position: absolute; text-indent: -9999px; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; border: 0px; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-left: 12px; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-right: 12px; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-right: 0px; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-Label { padding-left: 0px; }html[dir="ltr"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { text-align: left; }html[dir="rtl"] .ms-TextField.ms-TextField--underlined .ms-TextField-field { text-align: right; }.ms-TextField.ms-TextField--multiline .ms-TextField-field.ms-TextField-field--unresizable { resize: none; }.ms-TextField-hidden { display: none; }</style><style>.ms-ColorPicker { position: relative; max-width: 300px; }.ms-ColorPicker-panel { padding: 16px; }.ms-ColorPicker-colorRect { position: relative; margin-bottom: 10px; }.ms-ColorPicker-rectContainer { position: relative; }.ms-ColorPicker-capture { position: absolute; left: 0px; top: 0px; bottom: 0px; right: 0px; background: rgba(255, 0, 0, 0.0980392); }.ms-ColorPicker-rectContainer.is-adjusting .ms-ColorPicker-capture { position: fixed; }.ms-ColorPicker-thumb { position: absolute; width: 20px; height: 20px; background: rgb(255, 255, 255); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 50%; box-shadow: rgb(0, 0, 0) 0px 0px 15px -5px; transform: translate(-50%, -50%); }.ms-ColorPicker-thumb.is-slider { top: 50%; }.ms-ColorPicker-light { position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; background: linear-gradient(to right, rgb(255, 255, 255) 0px, transparent 100%); }.ms-ColorPicker-dark { position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; background: linear-gradient(transparent 0px, rgb(0, 0, 0) 100%); }.ms-ColorPicker-slider { position: relative; height: 20px; margin-bottom: 5px; border: 1px solid rgb(234, 234, 234); box-sizing: border-box; }.ms-ColorPicker-slider.is-hue { background: linear-gradient(to left, red 0px, rgb(255, 0, 153) 10%, rgb(205, 0, 255) 20%, rgb(50, 0, 255) 30%, rgb(0, 102, 255) 40%, rgb(0, 255, 253) 50%, rgb(0, 255, 102) 60%, rgb(53, 255, 0) 70%, rgb(205, 255, 0) 80%, rgb(255, 153, 0) 90%, red 100%); }.ms-ColorPicker-slider.is-alpha { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJUlEQVQYV2N89erVfwY0ICYmxoguxjgUFKI7GsTH5m4M3w1ChQC1/Ca8i2n1WgAAAABJRU5ErkJggg=="); }.ms-ColorPicker-sliderOverlay { content: ""; position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; }.ms-ColorPicker-input { width: 100%; border: none; box-sizing: border-box; height: 30px; }.ms-ColorPicker-input.ms-TextField { padding-right: 2px; }.ms-ColorPicker-input .ms-TextField-field { min-width: auto; padding: 5px; }</style><style>.ms-CommandBar { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(51, 51, 51); position: relative; background-color: rgb(244, 244, 244); height: 40px; white-space: nowrap; user-select: none; }.ms-CommandBar-primaryCommands { position: absolute; overflow: hidden; display: inline; vertical-align: top; line-height: 40px; margin: 0px 20px; }.ms-CommandBar-sideCommands { position: absolute; }html[dir="ltr"] .ms-CommandBar-sideCommands { right: 0px; }html[dir="rtl"] .ms-CommandBar-sideCommands { left: 0px; }html[dir="ltr"] .ms-CommandBar-sideCommands { text-align: right; }html[dir="rtl"] .ms-CommandBar-sideCommands { text-align: left; }html[dir="ltr"] .ms-CommandBar-sideCommands { padding-right: 20px; }html[dir="rtl"] .ms-CommandBar-sideCommands { padding-left: 20px; }.ms-CommandBarItem { display: inline-block; color: rgb(0, 120, 215); height: 40px; outline: transparent; vertical-align: top; padding: 0px 4px; }@media not all {<br> .ms-CommandBarItem { height: 38px; outline: 0px; }<br> html[dir="ltr"] .ms-CommandBarItem { border-left: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarItem { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="ltr"] .ms-CommandBarItem { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarItem { border-left: 1px solid rgb(0, 0, 0); }<br>}@media not all {<br> .ms-CommandBarItem { height: 38px; outline: 0px; }<br> html[dir="ltr"] .ms-CommandBarItem { border-left: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarItem { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="ltr"] .ms-CommandBarItem { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarItem { border-left: 1px solid rgb(255, 255, 255); }<br>}.ms-CommandBarItem-chevronDown, .ms-CommandBarItem-commandText { display: inline-block; padding: 0px 4px; vertical-align: top; }.ms-CommandBarItem-text { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(51, 51, 51); position: relative; background: 0px 0px; border: none; line-height: 40px; min-width: 20px; text-align: center; padding: 0px 4px; display: block; height: 100%; }.ms-CommandBarItem-text { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-CommandBarItem-text:focus::after { content: ""; position: absolute; top: 2px; right: 2px; bottom: 2px; left: 2px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-CommandBarItem-text.ms-CommandBarItem--noName { padding: 0px 8px; }.ms-CommandBarItem-link { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(51, 51, 51); position: relative; background: 0px 0px; border: none; line-height: 40px; min-width: 20px; text-align: center; padding: 0px 4px; display: block; height: 100%; cursor: pointer; }.ms-CommandBarItem-link { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-CommandBarItem-link:focus::after { content: ""; position: absolute; top: 2px; right: 2px; bottom: 2px; left: 2px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-CommandBarItem-link.ms-CommandBarItem--noName { padding: 0px 8px; }@media not all {<br> html[dir="ltr"] .ms-CommandBarItem-link.is-expanded, html[dir="ltr"] .ms-CommandBarItem-link:hover { border-left: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarItem-link.is-expanded, html[dir="rtl"] .ms-CommandBarItem-link:hover { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="ltr"] .ms-CommandBarItem-link.is-expanded, html[dir="ltr"] .ms-CommandBarItem-link:hover { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarItem-link.is-expanded, html[dir="rtl"] .ms-CommandBarItem-link:hover { border-left: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> html[dir="ltr"] .ms-CommandBarItem-link.is-expanded, html[dir="ltr"] .ms-CommandBarItem-link:hover { border-left: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarItem-link.is-expanded, html[dir="rtl"] .ms-CommandBarItem-link:hover { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="ltr"] .ms-CommandBarItem-link.is-expanded, html[dir="ltr"] .ms-CommandBarItem-link:hover { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarItem-link.is-expanded, html[dir="rtl"] .ms-CommandBarItem-link:hover { border-left: 1px solid rgb(0, 0, 0); }<br>}.ms-CommandBarItem-link:hover { color: rgb(33, 33, 33); background-color: rgb(234, 234, 234); }.ms-CommandBarItem-link:hover .ms-CommandBarItem-icon { color: rgb(0, 90, 158); }.ms-CommandBarItem-link:hover .ms-CommandBarItem-chevronDown { color: rgb(60, 60, 60); }.ms-CommandBarItem-link:hover .ms-CommandBarItem-overflow { color: rgb(33, 33, 33); }.ms-CommandBarItem-link.is-expanded { background-color: rgb(218, 218, 218); color: rgb(0, 0, 0); }.ms-CommandBarItem-link.is-expanded .ms-CommandBarItem-icon { color: rgb(0, 69, 120); }.ms-CommandBarItem-link.is-expanded .ms-CommandBarItem-chevronDown { color: rgb(33, 33, 33); }.ms-CommandBarItem-link.is-expanded .ms-CommandBarItem-overflow { color: rgb(0, 0, 0); }.ms-CommandBarItem-link.is-expanded:hover { background-color: rgb(208, 208, 208); }.ms-CommandBarItem-icon { font-size: 16px; color: rgb(16, 110, 190); padding: 0px 4px; }.ms-CommandBarItem-chevronDown { color: rgb(102, 102, 102); font-size: 12px; }.ms-CommandBarItem-overflow { font-size: 18px; color: rgb(51, 51, 51); padding: 0px 7px; }.ms-CommandBarSearch { width: 208px; max-width: 208px; background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); height: 40px; position: relative; box-sizing: border-box; border-color: transparent; }html[dir="ltr"] .ms-CommandBarSearch { float: left; }html[dir="rtl"] .ms-CommandBarSearch { float: right; }html[dir="ltr"] .ms-CommandBarSearch { border-right: 1px solid rgb(234, 234, 234); }html[dir="rtl"] .ms-CommandBarSearch { border-left: 1px solid rgb(234, 234, 234); }@media not all {<br> .ms-CommandBarSearch { z-index: 10; }<br> html[dir="ltr"] .ms-CommandBarSearch { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarSearch { border-left: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> html[dir="ltr"] .ms-CommandBarSearch { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarSearch { border-left: 1px solid rgb(0, 0, 0); }<br>}.ms-CommandBarSearch::before { position: absolute; content: " "; right: 0px; bottom: 0px; left: 0px; margin: 0px 8px; border-bottom: 1px solid rgb(234, 234, 234); }.ms-CommandBarSearch:hover { color: rgb(0, 120, 215); }@media not all {<br> html[dir="ltr"] .ms-CommandBarSearch:hover { border-left: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarSearch:hover { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="ltr"] .ms-CommandBarSearch:hover { border-right: 1px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarSearch:hover { border-left: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> html[dir="ltr"] .ms-CommandBarSearch:hover { border-left: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarSearch:hover { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="ltr"] .ms-CommandBarSearch:hover { border-right: 1px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarSearch:hover { border-left: 1px solid rgb(0, 0, 0); }<br>}.ms-CommandBarSearch-input { height: 40px; padding: 8px 8px 8px 0px; border: none; background-color: transparent; width: 100%; box-sizing: border-box; outline: 0px; cursor: pointer; font-size: 14px; -webkit-appearance: none; border-radius: 0px; }html[dir="ltr"] .ms-CommandBarSearch-input { border-left: 42px solid transparent; }html[dir="rtl"] .ms-CommandBarSearch-input { border-right: 42px solid transparent; }@media not all {<br> html[dir="ltr"] .ms-CommandBarSearch-input { border-left: 40px solid rgb(0, 0, 0); }<br> html[dir="rtl"] .ms-CommandBarSearch-input { border-right: 40px solid rgb(0, 0, 0); }<br>}@media not all {<br> html[dir="ltr"] .ms-CommandBarSearch-input { border-left: 40px solid rgb(255, 255, 255); }<br> html[dir="rtl"] .ms-CommandBarSearch-input { border-right: 40px solid rgb(255, 255, 255); }<br>}.ms-CommandBarSearch-iconSearchWrapper { display: block; }.ms-CommandBarSearch-iconArrowWrapper { display: none; }.ms-CommandBarSearch-iconArrowWrapper, .ms-CommandBarSearch-iconSearchWrapper { top: 0px; }html[dir="ltr"] .ms-CommandBarSearch-iconArrowWrapper, html[dir="ltr"] .ms-CommandBarSearch-iconSearchWrapper { padding-left: 17px; }html[dir="rtl"] .ms-CommandBarSearch-iconArrowWrapper, html[dir="rtl"] .ms-CommandBarSearch-iconSearchWrapper { padding-right: 17px; }html[dir="ltr"] .ms-CommandBarSearch-iconArrowWrapper, html[dir="ltr"] .ms-CommandBarSearch-iconSearchWrapper { padding-right: 8px; }html[dir="rtl"] .ms-CommandBarSearch-iconArrowWrapper, html[dir="rtl"] .ms-CommandBarSearch-iconSearchWrapper { padding-left: 8px; }.ms-CommandBarSearch-iconClearWrapper { display: none; top: 1px; z-index: 10; }html[dir="ltr"] .ms-CommandBarSearch-iconClearWrapper { right: 0px; }html[dir="rtl"] .ms-CommandBarSearch-iconClearWrapper { left: 0px; }.ms-CommandBarSearch.is-active { background-color: rgb(199, 224, 244); color: rgb(0, 0, 0); }.ms-CommandBarSearch.is-active:hover { background-color: rgb(199, 224, 244); color: rgb(0, 0, 0); }.ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { cursor: text; }html[dir="ltr"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { padding-right: 40px; }html[dir="rtl"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { padding-left: 40px; }html[dir="ltr"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { border-left-width: 8px; }html[dir="rtl"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { border-right-width: 8px; }html[dir="ltr"] .ms-CommandBarSearch.is-active.ms-CommandBarSearch--hasBack .ms-CommandBarSearch-input { border-left-width: 40px; }html[dir="rtl"] .ms-CommandBarSearch.is-active.ms-CommandBarSearch--hasBack .ms-CommandBarSearch-input { border-right-width: 40px; }.ms-CommandBarSearch.is-active .ms-CommandBarSearch-iconSearchWrapper { display: none; }.ms-CommandBarSearch.is-active.ms-CommandBarSearch--hasBack .ms-CommandBarSearch-iconArrowWrapper { display: block; }html[dir="ltr"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { padding-right: 40px; }html[dir="rtl"] .ms-CommandBarSearch.is-active .ms-CommandBarSearch-input { padding-left: 40px; }.ms-CommandBarSearch.is-active .ms-CommandBarSearch-iconClearWrapper { display: block; }.ms-CommandBarSearch-iconWrapper { height: 40px; line-height: 40px; cursor: pointer; position: absolute; text-align: center; }.ms-CommandBarSearch .ms-Icon::before { font-size: 16px; color: rgb(0, 120, 215); }.ms-CommandBarSearch-input, .ms-CommandBarSearch-input::-webkit-input-placeholder { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; }</style><style>.ms-DatePicker { box-sizing: border-box; margin: 0px 0px 17px; padding: 0px; box-shadow: none; z-index: 300; }.ms-DatePicker .ms-TextField { position: relative; }.ms-DatePicker .ms-TextField input[readonly] { cursor: pointer; }.ms-DatePicker-picker { color: rgb(0, 0, 0); font-size: 14px; position: relative; z-index: 0; }html[dir="ltr"] .ms-DatePicker-picker { text-align: left; }html[dir="rtl"] .ms-DatePicker-picker { text-align: right; }.ms-DatePicker-event--with-label { color: rgb(102, 102, 102); font-size: 20px; line-height: 20px; pointer-events: none; position: absolute; z-index: 5; top: 35px; }html[dir="ltr"] .ms-DatePicker-event--with-label { right: 9px; }html[dir="rtl"] .ms-DatePicker-event--with-label { left: 9px; }.ms-DatePicker-event--without-label { color: rgb(102, 102, 102); font-size: 20px; line-height: 20px; pointer-events: none; position: absolute; z-index: 5; top: 7px; }html[dir="ltr"] .ms-DatePicker-event--without-label { right: 9px; }html[dir="rtl"] .ms-DatePicker-event--without-label { left: 9px; }.ms-DatePicker-holder { box-sizing: border-box; background: rgb(255, 255, 255); position: absolute; min-width: 300px; display: none; }.ms-DatePicker-picker.ms-DatePicker-picker--opened .ms-DatePicker-holder { animation-name: fadeIn, slideDownIn10; animation-duration: 167ms; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; box-sizing: border-box; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px; border: 1px solid rgb(234, 234, 234); display: block; }.ms-DatePicker-picker--opened { position: relative; z-index: 10; }.ms-DatePicker-frame { padding: 1px; }.ms-DatePicker-wrap { margin: -1px; padding: 9px; }.ms-DatePicker-dayPicker { display: block; margin-bottom: 30px; }.ms-DatePicker-header { height: 40px; line-height: 44px; }.ms-DatePicker-month, .ms-DatePicker-year { display: inline-block; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 100; color: rgb(51, 51, 51); margin-top: -1px; }.ms-DatePicker-month:hover, .ms-DatePicker-year:hover { color: rgb(0, 90, 158); cursor: pointer; }html[dir="ltr"] .ms-DatePicker-month { margin-left: 15px; }html[dir="rtl"] .ms-DatePicker-month { margin-right: 15px; }html[dir="ltr"] .ms-DatePicker-year { margin-left: 15px; }html[dir="rtl"] .ms-DatePicker-year { margin-right: 15px; }.ms-DatePicker-table { text-align: center; border-collapse: collapse; border-spacing: 0px; table-layout: fixed; font-size: inherit; }.ms-DatePicker-table td { margin: 0px; padding: 0px; }.ms-DatePicker-table td:hover { outline: transparent solid 1px; }.ms-DatePicker-day, .ms-DatePicker-weekday { width: 40px; height: 40px; padding: 0px; line-height: 40px; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 15px; font-weight: 400; color: rgb(51, 51, 51); }.ms-DatePicker-day--today { position: relative; background-color: rgb(199, 224, 244); }.ms-DatePicker-day--disabled::before { border-top-color: rgb(166, 166, 166); }.ms-DatePicker-day--outfocus { color: rgb(166, 166, 166); font-weight: 400; }.ms-DatePicker-day--infocus:hover, .ms-DatePicker-day--outfocus:hover { cursor: pointer; color: rgb(0, 0, 0); background: rgb(234, 234, 234); }.ms-DatePicker-day--highlighted:hover, .ms-DatePicker-picker--focused .ms-DatePicker-day--highlighted { cursor: pointer; color: rgb(255, 255, 255); background: rgb(0, 120, 215); }.ms-DatePicker-day--highlighted.ms-DatePicker-day--disabled, .ms-DatePicker-day--highlighted.ms-DatePicker-day--disabled:hover { background: rgb(166, 166, 166); }.ms-DatePicker-monthPicker, .ms-DatePicker-yearPicker { display: none; }.ms-DatePicker-monthComponents { position: absolute; top: 9px; }html[dir="ltr"] .ms-DatePicker-monthComponents { right: 9px; }html[dir="rtl"] .ms-DatePicker-monthComponents { left: 9px; }html[dir="ltr"] .ms-DatePicker-monthComponents { left: 9px; }html[dir="rtl"] .ms-DatePicker-monthComponents { right: 9px; }.ms-DatePicker-decadeComponents, .ms-DatePicker-yearComponents { position: absolute; top: -2px; }html[dir="ltr"] .ms-DatePicker-decadeComponents, html[dir="ltr"] .ms-DatePicker-yearComponents { right: 10px; }html[dir="rtl"] .ms-DatePicker-decadeComponents, html[dir="rtl"] .ms-DatePicker-yearComponents { left: 10px; }.ms-DatePicker-nextDecade, .ms-DatePicker-nextMonth, .ms-DatePicker-nextYear, .ms-DatePicker-prevDecade, .ms-DatePicker-prevMonth, .ms-DatePicker-prevYear { width: 40px; height: 40px; display: block; line-height: 40px; text-align: center; font-size: 16px; color: rgb(102, 102, 102); position: relative; top: 2px; }html[dir="ltr"] .ms-DatePicker-nextDecade, html[dir="ltr"] .ms-DatePicker-nextMonth, html[dir="ltr"] .ms-DatePicker-nextYear, html[dir="ltr"] .ms-DatePicker-prevDecade, html[dir="ltr"] .ms-DatePicker-prevMonth, html[dir="ltr"] .ms-DatePicker-prevYear { margin-left: 10px; }html[dir="rtl"] .ms-DatePicker-nextDecade, html[dir="rtl"] .ms-DatePicker-nextMonth, html[dir="rtl"] .ms-DatePicker-nextYear, html[dir="rtl"] .ms-DatePicker-prevDecade, html[dir="rtl"] .ms-DatePicker-prevMonth, html[dir="rtl"] .ms-DatePicker-prevYear { margin-right: 10px; }.ms-DatePicker-nextDecade:hover, .ms-DatePicker-nextMonth:hover, .ms-DatePicker-nextYear:hover, .ms-DatePicker-prevDecade:hover, .ms-DatePicker-prevMonth:hover, .ms-DatePicker-prevYear:hover { color: rgb(33, 33, 33); cursor: pointer; outline: transparent solid 1px; }.ms-DatePicker-headerToggleView { height: 40px; position: absolute; top: 0px; width: 140px; z-index: 5; cursor: pointer; }html[dir="ltr"] .ms-DatePicker-headerToggleView { left: 0px; }html[dir="rtl"] .ms-DatePicker-headerToggleView { right: 0px; }.ms-DatePicker-currentDecade, .ms-DatePicker-currentYear { display: block; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 100; color: rgb(51, 51, 51); height: 40px; line-height: 42px; }html[dir="ltr"] .ms-DatePicker-currentDecade, html[dir="ltr"] .ms-DatePicker-currentYear { margin-left: 15px; }html[dir="rtl"] .ms-DatePicker-currentDecade, html[dir="rtl"] .ms-DatePicker-currentYear { margin-right: 15px; }.ms-DatePicker-currentYear { color: rgb(0, 120, 215); }.ms-DatePicker-currentYear:hover { color: rgb(0, 90, 158); cursor: pointer; }.ms-DatePicker-optionGrid { position: relative; height: 210px; width: 280px; margin: 10px 0px 30px 5px; }html[dir="rtl"] .ms-DatePicker-optionGrid { margin: 10px 5px 30px 0px; }.ms-DatePicker-monthOption, .ms-DatePicker-yearOption { background-color: rgb(244, 244, 244); width: 60px; height: 60px; line-height: 60px; cursor: pointer; margin: 0px 10px 10px 0px; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 13px; font-weight: 400; color: rgb(51, 51, 51); text-align: center; }html[dir="ltr"] .ms-DatePicker-monthOption, html[dir="ltr"] .ms-DatePicker-yearOption { float: left; }html[dir="rtl"] .ms-DatePicker-monthOption, html[dir="rtl"] .ms-DatePicker-yearOption { float: right; }html[dir="rtl"] .ms-DatePicker-monthOption, html[dir="rtl"] .ms-DatePicker-yearOption { margin: 0px 0px 10px 10px; }.ms-DatePicker-monthOption:hover, .ms-DatePicker-yearOption:hover { background-color: rgb(200, 200, 200); outline: transparent solid 1px; }.ms-DatePicker-monthOption.is-highlighted, .ms-DatePicker-yearOption.is-highlighted { background-color: rgb(51, 51, 51); color: rgb(255, 255, 255); }.ms-DatePicker-goToday { bottom: 9px; cursor: pointer; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 13px; font-weight: 400; color: rgb(51, 51, 51); height: 30px; line-height: 30px; padding: 0px 10px; position: absolute; }html[dir="ltr"] .ms-DatePicker-goToday { right: 9px; }html[dir="rtl"] .ms-DatePicker-goToday { left: 9px; }.ms-DatePicker-goToday:hover { outline: transparent solid 1px; }.ms-DatePicker.is-pickingYears .ms-DatePicker-dayPicker, .ms-DatePicker.is-pickingYears .ms-DatePicker-monthComponents { display: none; }.ms-DatePicker.is-pickingYears .ms-DatePicker-monthPicker { display: none; }.ms-DatePicker.is-pickingYears .ms-DatePicker-yearPicker { display: block; }@media (min-width: 460px) {<br> .ms-DatePicker-header { height: 30px; line-height: 28px; }<br> .ms-DatePicker-day, .ms-DatePicker-weekday { width: 30px; height: 30px; line-height: 28px; font-weight: 600; font-size: 12px; }<br> .ms-DatePicker-monthComponents { width: 210px; }<br> .ms-DatePicker-nextDecade, .ms-DatePicker-nextMonth, .ms-DatePicker-nextYear, .ms-DatePicker-prevDecade, .ms-DatePicker-prevMonth, .ms-DatePicker-prevYear { font-size: 12px; width: 24px; height: 24px; line-height: 24px; }<br> .ms-DatePicker-holder { min-width: 240px; }<br> .ms-DatePicker-month, .ms-DatePicker-year { font-weight: 300; }<br> .ms-DatePicker-month, .ms-DatePicker-year { font-size: 17px; color: rgb(51, 51, 51); }<br> .ms-DatePicker-month:hover, .ms-DatePicker-year:hover { color: rgb(51, 51, 51); cursor: default; }<br> .is-monthPickerVisible .ms-DatePicker-dayPicker { margin: -10px 0px; padding: 10px 0px; }<br> .is-monthPickerVisible .ms-DatePicker-dayPicker { box-sizing: border-box; width: 220px; }<br> html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-dayPicker { border-right: 1px solid rgb(234, 234, 234); }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-dayPicker { border-left: 1px solid rgb(234, 234, 234); }<br> .is-monthPickerVisible .ms-DatePicker-holder { width: 440px; }<br> .is-monthPickerVisible .ms-DatePicker-monthPicker { display: block; }<br> .is-monthPickerVisible .ms-DatePicker-monthPicker, .is-monthPickerVisible .ms-DatePicker-yearPicker { top: 9px; position: absolute; }<br> html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-monthPicker, html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-yearPicker { left: 238px; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-monthPicker, html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-yearPicker { right: 238px; }<br> html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-month { margin-left: 12px; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-month { margin-right: 12px; }<br> .is-monthPickerVisible .ms-DatePicker-optionGrid { width: 200px; height: auto; margin: 10px 0px 0px; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-optionGrid { margin: 10px 0px 0px; }<br> .is-monthPickerVisible .ms-DatePicker-toggleMonthView { display: none; }<br> .is-monthPickerVisible .ms-DatePicker-currentDecade, .is-monthPickerVisible .ms-DatePicker-currentYear { font-size: 17px; margin: 0px; height: 30px; line-height: 26px; padding: 0px 10px; display: inline-block; }<br> .is-monthPickerVisible .ms-DatePicker-monthOption, .is-monthPickerVisible .ms-DatePicker-yearOption { width: 40px; height: 40px; line-height: 38px; font-size: 12px; margin: 0px 10px 10px 0px; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-monthOption, html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-yearOption { margin: 0px 0px 10px 10px; }<br> .is-monthPickerVisible .ms-DatePicker-monthOption:hover, .is-monthPickerVisible .ms-DatePicker-yearOption:hover { outline: transparent solid 1px; }<br> .is-monthPickerVisible .ms-DatePicker-goToday { box-sizing: border-box; font-size: 12px; height: 30px; line-height: 30px; padding: 0px 10px; top: 199px; width: 210px; }<br> html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-goToday { right: 10px; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-goToday { left: 10px; }<br> html[dir="ltr"] .is-monthPickerVisible .ms-DatePicker-goToday { text-align: right; }<br> html[dir="rtl"] .is-monthPickerVisible .ms-DatePicker-goToday { text-align: left; }<br> .is-monthPickerVisible .ms-DatePicker.is-pickingYears .ms-DatePicker-dayPicker, .is-monthPickerVisible .ms-DatePicker.is-pickingYears .ms-DatePicker-monthComponents { display: block; }<br> .is-monthPickerVisible .ms-DatePicker.is-pickingYears .ms-DatePicker-monthPicker { display: none; }<br> .is-monthPickerVisible .ms-DatePicker.is-pickingYears .ms-DatePicker-yearPicker { display: block; }<br>}@media (max-width: 459px) {<br> .ms-DatePicker.is-pickingMonths .ms-DatePicker-dayPicker, .ms-DatePicker.is-pickingMonths .ms-DatePicker-monthComponents { display: none; }<br> .ms-DatePicker.is-pickingMonths .ms-DatePicker-monthPicker { display: block; }<br>}.ms-DatePicker-wrap div:focus, .ms-DatePicker-wrap span:focus { outline: rgb(0, 120, 215) solid 1px; }.ms-DatePicker-goToday { width: auto; }.ms-DatePicker-nextMonth, .ms-DatePicker-nextYear, .ms-DatePicker-prevMonth, .ms-DatePicker-prevYear { display: inline-block; }html[dir="ltr"] .ms-DatePicker-navContainer { float: right; }html[dir="rtl"] .ms-DatePicker-navContainer { float: left; }</style><style>.ms-Check { line-height: 1; width: 23px; height: 23px; vertical-align: top; position: relative; user-select: none; }.ms-Check.is-checked .ms-Check-background::before { color: rgb(0, 120, 215); }.ms-Check.is-checked .ms-Check-background::after { color: rgb(255, 255, 255); }.ms-Check.is-checked .ms-Check-check { opacity: 1; color: rgb(255, 255, 255); font-weight: 900; font-size: 12px; }.ms-Check:hover .ms-Check-check { opacity: 1; }.ms-Check-check { left: 50%; top: 50%; transform: translate(-50%, -50%); position: absolute; color: rgb(200, 200, 200); opacity: 0; }.ms-Check-background { position: relative; height: 23px; width: 23px; }.ms-Check-background::before { content: ""; color: rgb(255, 255, 255); }.ms-Check-background::after { content: ""; color: rgb(200, 200, 200); }.ms-Check-background::after, .ms-Check-background::before { left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 23px; height: 23px; width: 23px; position: absolute; }</style><style>.ms-GroupSpacer { display: inline-block; }</style><style>.ms-DetailsHeader { display: inline-block; min-width: 100%; height: 36px; line-height: 36px; white-space: nowrap; padding-bottom: 1px; border-bottom: 1px solid rgb(234, 234, 234); cursor: default; user-select: none; }html[dir="ltr"] .ms-DetailsHeader.is-selectAllHidden { padding-left: 36px; }html[dir="rtl"] .ms-DetailsHeader.is-selectAllHidden { padding-right: 36px; }.ms-DetailsHeader-cell.is-check .ms-Check-background { visibility: hidden; }.ms-DetailsHeader-cell.is-check:hover .ms-Check-background, .ms-DetailsHeader.is-allSelected .ms-Check-background { visibility: visible; }.ms-DetailsHeader-cellWrapper { display: inline-block; position: relative; }.ms-DetailsHeader-cellSizeWrapper { display: inline-block; vertical-align: top; }.ms-DetailsHeader-cell { color: rgb(200, 200, 200); font-weight: 400; position: relative; display: inline-block; box-sizing: border-box; padding: 0px 8px; border: none; line-height: inherit; margin: 0px; height: 36px; vertical-align: top; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }.ms-DetailsHeader-cell { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-DetailsHeader-cell:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-DetailsHeader-cell { text-align: left; }html[dir="rtl"] .ms-DetailsHeader-cell { text-align: right; }html[dir="ltr"] .ms-DetailsHeader-cell { text-align: left; }html[dir="rtl"] .ms-DetailsHeader-cell { text-align: right; }.ms-DetailsHeader-cell.is-check { position: relative; padding: 8px; margin: 0px; }.ms-DetailsHeader-cell.is-actionable { color: rgb(102, 102, 102); }.ms-DetailsHeader-cell.is-actionable:hover { color: rgb(51, 51, 51); background: rgb(248, 248, 248); }.ms-DetailsHeader-cell.is-actionable:active { background: rgb(234, 234, 234); }.ms-DetailsHeader-cell.is-sizer { position: absolute; width: 16px; cursor: ew-resize; bottom: 0px; top: 0px; height: inherit; z-index: 99; background: 0px 0px; }html[dir="ltr"] .ms-DetailsHeader-cell.is-sizer { margin-left: -10px; }html[dir="rtl"] .ms-DetailsHeader-cell.is-sizer { margin-right: -10px; }.ms-DetailsHeader-cell.is-empty { text-overflow: clip; }.ms-DetailsHeader-cell.is-sizer::after { content: ""; position: absolute; left: 50%; top: 0px; bottom: 0px; width: 1px; background: rgb(200, 200, 200); opacity: 0; }.ms-DetailsHeader-cell.is-sizer.is-resizing::after, .ms-DetailsHeader-cell.is-sizer:hover::after { opacity: 1; transition: opacity 0.3s linear; }.ms-DetailsHeader-collapseButton { text-align: center; transform: rotate(-180deg); transform-origin: 50% 50% 0px; transition: transform 0.1s linear, -webkit-transform 0.1s linear; width: 20px; outline: 0px; }.ms-DetailsHeader-collapseButton.is-collapsed { transform: rotate(0deg); }.ms-DetailsHeader-isSortedDescending { transform: rotate(-180deg); transform-origin: 50% 50% 0px; }.ms-DetailsHeader-cell .ms-Icon { color: rgb(102, 102, 102); opacity: 1; }.ms-DetailsHeader-cell .ms-DetailsHeader-filterChevron.ms-Icon { color: rgb(166, 166, 166); vertical-align: middle; }html[dir="ltr"] .ms-DetailsHeader-cell .ms-DetailsHeader-filterChevron.ms-Icon { padding-left: 4px; }html[dir="rtl"] .ms-DetailsHeader-cell .ms-DetailsHeader-filterChevron.ms-Icon { padding-right: 4px; }html[dir="ltr"] .ms-DetailsHeader-cell .ms-DetailsHeader-collapseButton.ms-Icon { padding-right: 0px; }html[dir="rtl"] .ms-DetailsHeader-cell .ms-DetailsHeader-collapseButton.ms-Icon { padding-left: 0px; }</style><style>.ms-DetailsRow { display: inline-block; min-width: 100%; min-height: 36px; margin: 1px 0px; white-space: nowrap; padding: 0px; user-select: none; cursor: default; box-sizing: border-box; background: 0px 0px; border: none; vertical-align: top; line-height: 16px; }.ms-DetailsRow { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-DetailsRow:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-DetailsRow { text-align: left; }html[dir="rtl"] .ms-DetailsRow { text-align: right; }.ms-DetailsRow.ms-DetailsRow.is-selected { background: rgb(208, 208, 208); }.ms-DetailsRow:hover { background: rgb(244, 244, 244); }.ms-DetailsRow.is-selected:hover { background: rgb(218, 218, 218); }.ms-DetailsRow-cell { display: inline-block; position: relative; box-sizing: border-box; padding: 10px 0px; margin: 0px 8px; min-height: 36px; vertical-align: top; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.ms-DetailsRow-cell.is-multiline { white-space: normal; word-break: break-word; text-overflow: clip; }.ms-DetailsRow-fields { display: inline-block; }.ms-DetailsRow-check { display: inline-block; cursor: default; padding: 8px; box-sizing: border-box; vertical-align: top; background: 0px 0px; border: none; }.ms-DetailsRow-check { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-DetailsRow-check:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-DetailsRow-check { opacity: 0; }.ms-DetailsRow.is-check-visible .ms-DetailsRow-check, .ms-DetailsRow.is-selected .ms-DetailsRow-check, .ms-DetailsRow:hover .ms-DetailsRow-check { opacity: 1; }.aFileTypeIconRenderer { height: 36px; line-height: 36px; vertical-align: top; }.FileTypeIconRenderer > img { width: 16px; height: 16px; vertical-align: middle; }.ms-DetailsRow-cellMeasurer .ms-DetailsRow-cell { overflow: visible; white-space: nowrap; }.ms-DetailsRow-checkSpacer { display: inline-block; height: 20px; width: 20px; }</style><style>.ms-Link { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; color: rgb(0, 120, 215); text-decoration: none; cursor: pointer; padding: 0px; margin: 0px; background: 0px 0px; display: inline; border: none; width: auto; max-width: 100%; overflow: inherit; text-overflow: inherit; }.ms-Link { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Link:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-Link { text-align: left; }html[dir="rtl"] .ms-Link { text-align: right; }.ms-Link.is-disabled { color: rgb(166, 166, 166); pointer-events: none; cursor: default; }.ms-Link:focus, .ms-Link:hover { color: rgb(0, 69, 120); }.ms-Link:active { color: rgb(0, 120, 215); }button.ms-Link { font-size: inherit; }</style><style>.ms-groupFooter { position: relative; padding: 10px 84px; cursor: pointer; }.ms-groupFooter .ms-Link { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; }</style><style>@-webkit-keyframes ms-Spinner-spin { <br> 0% { transform: rotate(0deg); }<br> 100% { transform: rotate(360deg); }<br>}@keyframes ms-Spinner-spin { <br> 0% { transform: rotate(0deg); }<br> 100% { transform: rotate(360deg); }<br>}.ms-Spinner > .ms-Spinner-circle { margin: auto; box-sizing: border-box; border-radius: 50%; width: 100%; height: 100%; border-width: 1.5px; border-style: solid; border-color: rgb(0, 120, 215) rgb(199, 224, 244) rgb(199, 224, 244); border-image: initial; animation: ms-Spinner-spin 1.3s cubic-bezier(0.53, 0.21, 0.29, 0.67) infinite; }.ms-Spinner > .ms-Spinner-circle.ms-Spinner--normal { width: 20px; height: 20px; }.ms-Spinner > .ms-Spinner-circle.ms-Spinner--large { width: 28px; height: 28px; }.ms-Spinner > .ms-Spinner-label { color: rgb(0, 120, 215); margin-top: 10px; text-align: center; }@media not all {<br> .ms-Spinner > .ms-Spinner-circle { border-top-style: none; }<br>}</style><style>.ms-GroupHeader { cursor: default; user-select: none; }.ms-GroupHeader { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-GroupHeader:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-GroupHeader:hover { background: rgb(239, 246, 252); }.ms-GroupHeader.is-selected { background: rgb(222, 236, 249); }.ms-GroupHeader.is-selected:hover { background: rgb(199, 224, 244); }.ms-GroupHeader-check, .ms-GroupHeader-expand { display: inline-block; cursor: default; padding: 8px; transform: translateY(50%); margin-top: -12px; box-sizing: border-box; vertical-align: top; background: 0px 0px; border: none; font-size: 12px; top: 4px; }.ms-GroupHeader-check, .ms-GroupHeader-expand { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-GroupHeader-check:focus::after, .ms-Fabric.is-focusVisible .ms-GroupHeader-expand:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-GroupHeader-check { opacity: 0; margin-top: -10px; }.ms-GroupHeader-check:focus { opacity: 1; }.ms-GroupHeader.is-selected .ms-GroupHeader-check, .ms-GroupHeader:hover .ms-GroupHeader-check { opacity: 1; }.ms-GroupHeader-title { padding: 14px 6px; display: inline-block; cursor: pointer; outline: 0px; }.ms-GroupHeader-expand { width: 36px; height: 40px; color: rgb(102, 102, 102); }.ms-GroupHeader-expand .ms-Icon { transform: rotate(-180deg); transform-origin: 50% 50% 0px; transition: transform 0.1s linear, -webkit-transform 0.1s linear; }.ms-GroupHeader-expand .ms-Icon.is-collapsed { transform: rotate(0deg); }.ms-GroupHeader-loading { display: inline-block; visibility: hidden; opacity: 0; padding: 0px 16px; vertical-align: middle; transition: visibility 367ms, opacity 367ms; }.ms-GroupHeader-loading.is-loading { visibility: visible; opacity: 1; }.ms-GroupHeader-dropIcon { display: inline-block; position: relative; top: -16px; font-size: 20px; color: rgb(118, 118, 118); transition: transform 267ms cubic-bezier(0.6, -0.28, 0.735, 0.045), opacity 467ms cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 267ms cubic-bezier(0.6, -0.28, 0.735, 0.045); opacity: 0; transform: rotate(0.2deg) scale(0.65); transform-origin: 10px 10px 0px; }html[dir="ltr"] .ms-GroupHeader-dropIcon { left: -26px; }html[dir="rtl"] .ms-GroupHeader-dropIcon { right: -26px; }.ms-GroupHeader-dropIcon .ms-Icon--Tag { position: absolute; }.ms-GroupedList-group.is-dropping > .ms-GroupHeader .ms-GroupHeader-dropIcon { transition: transform 467ms cubic-bezier(0.075, 0.82, 0.165, 1) 367ms, opacity 167ms cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 467ms cubic-bezier(0.075, 0.82, 0.165, 1); opacity: 1; transform: rotate(0.2deg) scale(1); }.ms-GroupedList-group.is-dropping .ms-GroupHeader-check { opacity: 0; }</style><style>.ms-GroupedList { position: relative; font-size: 12px; }.ms-GroupedList button { font-family: inherit; background-color: transparent; }.ms-GroupedList > .ms-FocusZone { display: inline-block; vertical-align: top; min-width: 1px; min-height: 1px; }.ms-GroupedList.is-horizontalConstrained { overflow-x: auto; overflow-y: visible; transform: translateZ(0px); }.ms-GroupedList-cell { word-break: break-word; }.ms-GroupedList-group { transition: background-color 267ms cubic-bezier(0.445, 0.05, 0.55, 0.95); }.ms-GroupedList-group.is-dropping { background-color: rgb(234, 234, 234); }.ms-GroupedList .ms-List-cell { min-height: 38px; }</style><style>.ms-DetailsList { position: relative; font-size: 12px; }.ms-DetailsList button { font-family: inherit; background-color: transparent; }.ms-DetailsList > .ms-FocusZone { display: inline-block; vertical-align: top; min-width: 1px; min-height: 1px; }.ms-DetailsList.is-horizontalConstrained { overflow-x: auto; overflow-y: visible; }.ms-DetailsList-cell { word-break: break-word; }.ms-DetailsList .ms-List-cell { min-height: 38px; }</style><style>.ms-Overlay { background-color: rgba(255, 255, 255, 0.4); position: absolute; bottom: 0px; left: 0px; right: 0px; top: 0px; }.ms-Overlay.ms-Overlay--none { visibility: hidden; }.ms-Overlay.ms-Overlay--dark { background-color: rgba(0, 0, 0, 0.4); }</style><style>.ms-Dialog { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; background-color: transparent; position: fixed; height: 100%; width: 100%; top: 0px; display: block; line-height: 100vh; text-align: center; }html[dir="ltr"] .ms-Dialog { left: 0px; }html[dir="rtl"] .ms-Dialog { right: 0px; }.ms-Dialog::before { vertical-align: middle; display: inline-block; content: ""; height: 100%; width: 0px; }.ms-Dialog .ms-Button.ms-Button--compound { display: block; }html[dir="ltr"] .ms-Dialog .ms-Button.ms-Button--compound { margin-left: 0px; }html[dir="rtl"] .ms-Dialog .ms-Button.ms-Button--compound { margin-right: 0px; }@media not all {<br> .ms-Dialog .ms-Overlay { opacity: 0; }<br>}.ms-Dialog-main { vertical-align: middle; display: inline-block; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px; background-color: rgb(255, 255, 255); box-sizing: border-box; line-height: 1.35; margin: auto; width: 288px; position: relative; outline: transparent solid 3px; max-height: 100%; overflow-y: auto; }html[dir="ltr"] .ms-Dialog-main { text-align: left; }html[dir="rtl"] .ms-Dialog-main { text-align: right; }.ms-Dialog-button.ms-Dialog-button--close { display: none; }.ms-Dialog-button.ms-Dialog-button--close .ms-Icon.ms-Icon--Cancel { color: rgb(102, 102, 102); font-size: 16px; }.ms-Dialog-inner { height: 100%; padding: 0px 28px 20px; }.ms-Dialog-header { position: relative; width: 100%; box-sizing: border-box; }.ms-Dialog-title { margin: 0px; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 100; color: rgb(51, 51, 51); padding: 20px 36px 20px 28px; }html[dir="rtl"] .ms-Dialog-title { padding: 20px 28px 20px 36px; }.ms-Dialog-topButton { position: absolute; top: 0px; padding: 12px 12px 0px 0px; }html[dir="ltr"] .ms-Dialog-topButton { right: 0px; }html[dir="rtl"] .ms-Dialog-topButton { left: 0px; }html[dir="rtl"] .ms-Dialog-topButton { padding: 12px 0px 0px 12px; }.ms-Dialog-content { position: relative; width: 100%; }.ms-Dialog-content .ms-Button.ms-Button--compound { margin-bottom: 20px; }.ms-Dialog-content .ms-Button.ms-Button--compound:last-child { margin-bottom: 0px; }.ms-Dialog-subText { margin: 0px 0px 20px; padding-top: 8px; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; color: rgb(51, 51, 51); font-weight: 300; line-height: 1.5; }.ms-Dialog-actions { position: relative; width: 100%; min-height: 24px; line-height: 24px; margin: 20px 0px 0px; font-size: 0px; }.ms-Dialog-actions .ms-Button { line-height: normal; }.ms-Dialog-actionsRight { font-size: 0px; }html[dir="ltr"] .ms-Dialog-actionsRight { text-align: right; }html[dir="rtl"] .ms-Dialog-actionsRight { text-align: left; }html[dir="ltr"] .ms-Dialog-actionsRight { margin-right: -4px; }html[dir="rtl"] .ms-Dialog-actionsRight { margin-left: -4px; }.ms-Dialog-actionsRight .ms-Dialog-action { margin: 0px 4px; }.ms-Dialog.ms-Dialog--close:not(.ms-Dialog--lgHeader) .ms-Dialog-button.ms-Dialog-button--close { display: block; }.ms-Dialog.ms-Dialog--multiline .ms-Dialog-title { font-size: 28px; }.ms-Dialog.ms-Dialog--multiline .ms-Dialog-inner { padding: 0px 20px 20px; }.ms-Dialog.ms-Dialog--lgHeader .ms-Dialog-header { background-color: rgb(0, 120, 215); }.ms-Dialog.ms-Dialog--lgHeader .ms-Dialog-title { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 28px; font-weight: 100; color: rgb(255, 255, 255); padding: 26px 28px 28px; margin-bottom: 8px; }.ms-Dialog.ms-Dialog--lgHeader .ms-Dialog-subText { font-size: 14px; }@media (min-width: 480px) {<br> .ms-Dialog-main { width: auto; min-width: 288px; max-width: 340px; }<br>}</style><style>.ms-DocumentCard { -webkit-font-smoothing: antialiased; background-color: rgb(255, 255, 255); border: 1px solid rgb(234, 234, 234); box-sizing: border-box; max-width: 320px; min-width: 206px; user-select: none; position: relative; }.ms-DocumentCard--actionable:hover { cursor: pointer; border-color: rgb(200, 200, 200); }.ms-DocumentCard--actionable:hover::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; border: 1px solid rgb(200, 200, 200); pointer-events: none; }.ms-DocumentCardLocation + .ms-DocumentCardTitle { padding-top: 4px; }.ms-DocumentCard--compact { border-bottom: 2px solid rgb(166, 166, 166); display: flex; max-width: 480px; height: 109px; }.ms-DocumentCard--compact .ms-DocumentCardPreview { border-bottom: none; max-height: 106px; max-width: 144px; }.ms-DocumentCard--compact .ms-DocumentCardPreview .ms-DocumentCardPreview-icon .ms-Image-image { max-height: 32px; max-width: 32px; }html[dir="ltr"] .ms-DocumentCard--compact .ms-DocumentCardPreview { border-right: 1px solid rgb(234, 234, 234); }html[dir="rtl"] .ms-DocumentCard--compact .ms-DocumentCardPreview { border-left: 1px solid rgb(234, 234, 234); }.ms-DocumentCard--compact .ms-DocumentCard-details { display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-flex: 1; flex: 1 1 0%; -webkit-box-pack: justify; justify-content: space-between; padding: 12px 0px; }.ms-DocumentCard--compact .ms-DocumentCardTitle { padding: 0px 16px 8px; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; line-height: 16px; }</style><style>.ms-DocumentCardActions { height: 34px; padding: 4px 12px; position: relative; }.ms-DocumentCardActions-actions { position: absolute; top: 4px; }html[dir="ltr"] .ms-DocumentCardActions-actions { left: 12px; }html[dir="rtl"] .ms-DocumentCardActions-actions { right: 12px; }.ms-DocumentCardActions-action { color: rgb(102, 102, 102); cursor: pointer; }html[dir="ltr"] .ms-DocumentCardActions-action { float: left; }html[dir="rtl"] .ms-DocumentCardActions-action { float: right; }html[dir="ltr"] .ms-DocumentCardActions-action { margin-right: 4px; }html[dir="rtl"] .ms-DocumentCardActions-action { margin-left: 4px; }.ms-DocumentCardActions-action .ms-Button { font-size: 16px; height: 34px; width: 34px; }.ms-DocumentCardActions-action .ms-Button:hover .ms-Button-icon { color: rgb(17, 116, 195); cursor: pointer; }.ms-DocumentCardActions-views { line-height: 34px; }html[dir="ltr"] .ms-DocumentCardActions-views { text-align: right; }html[dir="rtl"] .ms-DocumentCardActions-views { text-align: left; }.ms-DocumentCardActions-views .ms-Icon { font-size: 16px; vertical-align: top; }html[dir="ltr"] .ms-DocumentCardActions-views .ms-Icon { margin-right: 4px; }html[dir="rtl"] .ms-DocumentCardActions-views .ms-Icon { margin-left: 4px; }</style><style>.ms-Persona { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; box-sizing: border-box; margin: 0px; padding: 0px; box-shadow: none; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400; line-height: 1; position: relative; height: 48px; display: table; table-layout: fixed; border-collapse: separate; }.ms-Persona .ms-ContextualHost { display: none; }.ms-Persona-imageArea { position: absolute; overflow: hidden; text-align: center; max-width: 48px; height: 48px; border-radius: 50%; z-index: 0; width: 48px; top: 0px; }html[dir="ltr"] .ms-Persona-imageArea { left: 0px; }html[dir="rtl"] .ms-Persona-imageArea { right: 0px; }@media not all {<br> .ms-Persona-imageArea { border: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Persona-imageArea { border: 1px solid rgb(0, 0, 0); }<br>}.ms-Persona-imageArea .ms-Image { border: 0px; }.ms-Persona-placeholder { color: rgb(255, 255, 255); position: absolute; right: 0px; left: 0px; font-size: 47px; top: 9px; z-index: 5; }.ms-Persona-initials { color: rgb(255, 255, 255); font-size: 17px; font-weight: 100; line-height: 48px; }.ms-Persona-initials.ms-Persona-initials--lightBlue { background-color: rgb(107, 165, 231); }.ms-Persona-initials.ms-Persona-initials--blue { background-color: rgb(45, 137, 239); }.ms-Persona-initials.ms-Persona-initials--darkBlue { background-color: rgb(43, 87, 151); }.ms-Persona-initials.ms-Persona-initials--teal { background-color: rgb(0, 171, 169); }.ms-Persona-initials.ms-Persona-initials--lightGreen { background-color: rgb(153, 180, 51); }.ms-Persona-initials.ms-Persona-initials--green { background-color: rgb(0, 163, 0); }.ms-Persona-initials.ms-Persona-initials--darkGreen { background-color: rgb(30, 113, 69); }.ms-Persona-initials.ms-Persona-initials--lightPink { background-color: rgb(231, 115, 189); }.ms-Persona-initials.ms-Persona-initials--pink { background-color: rgb(255, 0, 151); }.ms-Persona-initials.ms-Persona-initials--magenta { background-color: rgb(126, 56, 120); }.ms-Persona-initials.ms-Persona-initials--purple { background-color: rgb(96, 60, 186); }.ms-Persona-initials.ms-Persona-initials--black { background-color: rgb(29, 29, 29); }.ms-Persona-initials.ms-Persona-initials--orange { background-color: rgb(218, 83, 44); }.ms-Persona-initials.ms-Persona-initials--red { background-color: rgb(238, 17, 17); }.ms-Persona-initials.ms-Persona-initials--darkRed { background-color: rgb(185, 29, 71); }.ms-Persona-image { display: table-cell; position: absolute; top: 0px; width: 100%; height: 100%; border-radius: 50%; perspective: 1px; }html[dir="ltr"] .ms-Persona-image { margin-right: 10px; }html[dir="rtl"] .ms-Persona-image { margin-left: 10px; }html[dir="ltr"] .ms-Persona-image { left: 0px; }html[dir="rtl"] .ms-Persona-image { right: 0px; }.ms-Persona-image[src=""] { display: none; }.ms-Persona-presence { background-color: rgb(127, 186, 0); position: absolute; height: 12px; width: 12px; border-radius: 50%; top: auto; bottom: -1px; border: 2px solid rgb(255, 255, 255); text-align: center; box-sizing: content-box; }html[dir="ltr"] .ms-Persona-presence { left: 34px; }html[dir="rtl"] .ms-Persona-presence { right: 34px; }@media not all {<br> .ms-Persona-presence { border-color: rgb(0, 0, 0); box-shadow: rgb(26, 235, 255) 0px 0px 0px 1px inset; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Persona-presence { border-color: rgb(255, 255, 255); box-shadow: rgb(55, 0, 110) 0px 0px 0px 1px inset; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0); }<br>}.ms-Persona-presence .ms-Persona-presenceIcon { color: rgb(255, 255, 255); font-size: 8px; line-height: 12px; vertical-align: top; }.ms-Persona-details { padding: 0px 12px; vertical-align: middle; display: table-cell; width: 100%; }html[dir="ltr"] .ms-Persona-details { text-align: left; }html[dir="rtl"] .ms-Persona-details { text-align: right; }html[dir="ltr"] .ms-Persona-details { padding-left: 60px; }html[dir="rtl"] .ms-Persona-details { padding-right: 60px; }.ms-Persona-optionalText, .ms-Persona-primaryText, .ms-Persona-secondaryText, .ms-Persona-tertiaryText { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }.ms-Persona-primaryText { color: rgb(51, 51, 51); font-weight: 400; font-size: 17px; margin-top: -3px; line-height: 1.4; }.ms-Persona-optionalText, .ms-Persona-secondaryText, .ms-Persona-tertiaryText { color: rgb(102, 102, 102); font-weight: 400; font-size: 12px; white-space: nowrap; line-height: 1.3; }.ms-Persona-secondaryText { padding-top: 3px; }.ms-Persona-optionalText, .ms-Persona-tertiaryText { padding-top: 5px; display: none; }.ms-Persona.ms-Persona--tiny { height: 30px; display: inline-block; }.ms-Persona.ms-Persona--tiny .ms-Persona-imageArea { overflow: visible; background: 0px 0px; height: 0px; width: 0px; }.ms-Persona.ms-Persona--tiny .ms-Persona-presence { top: 10px; border: 0px; }html[dir="ltr"] .ms-Persona.ms-Persona--tiny .ms-Persona-presence { right: auto; }html[dir="rtl"] .ms-Persona.ms-Persona--tiny .ms-Persona-presence { left: auto; }html[dir="ltr"] .ms-Persona.ms-Persona--tiny .ms-Persona-presence { left: 0px; }html[dir="rtl"] .ms-Persona.ms-Persona--tiny .ms-Persona-presence { right: 0px; }@media not all {<br> .ms-Persona.ms-Persona--tiny .ms-Persona-presence { top: 9px; border: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Persona.ms-Persona--tiny .ms-Persona-presence { border: 1px solid rgb(0, 0, 0); }<br>}html[dir="ltr"] .ms-Persona.ms-Persona--tiny .ms-Persona-details { padding-left: 20px; }html[dir="rtl"] .ms-Persona.ms-Persona--tiny .ms-Persona-details { padding-right: 20px; }.ms-Persona.ms-Persona--tiny .ms-Persona-primaryText { font-size: 14px; padding-top: 9px; }.ms-Persona.ms-Persona--tiny .ms-Persona-secondaryText { display: none; }.ms-Persona.ms-Persona--tiny.ms-Persona--readonly { padding: 0px; background-color: transparent; }.ms-Persona.ms-Persona--tiny.ms-Persona--readonly .ms-Persona-primaryText::after { content: ";"; }.ms-Persona.ms-Persona--xs { height: 32px; }.ms-Persona.ms-Persona--xs .ms-Persona-image, .ms-Persona.ms-Persona--xs .ms-Persona-imageArea { max-width: 32px; width: 32px; height: 32px; }.ms-Persona.ms-Persona--xs .ms-Persona-placeholder { font-size: 28px; top: 6px; }.ms-Persona.ms-Persona--xs .ms-Persona-initials { font-size: 12px; line-height: 32px; }html[dir="ltr"] .ms-Persona.ms-Persona--xs .ms-Persona-presence { left: 19px; }html[dir="rtl"] .ms-Persona.ms-Persona--xs .ms-Persona-presence { right: 19px; }html[dir="ltr"] .ms-Persona.ms-Persona--xs .ms-Persona-details { padding-left: 40px; }html[dir="rtl"] .ms-Persona.ms-Persona--xs .ms-Persona-details { padding-right: 40px; }.ms-Persona.ms-Persona--xs .ms-Persona-primaryText { font-size: 14px; padding-top: 3px; }.ms-Persona.ms-Persona--xs .ms-Persona-secondaryText { display: none; }.ms-Persona.ms-Persona--sm { height: 40px; }.ms-Persona.ms-Persona--sm .ms-Persona-image, .ms-Persona.ms-Persona--sm .ms-Persona-imageArea { max-width: 40px; width: 40px; height: 40px; }.ms-Persona.ms-Persona--sm .ms-Persona-placeholder { font-size: 38px; top: 5px; }.ms-Persona.ms-Persona--sm .ms-Persona-initials { font-size: 14px; line-height: 40px; }html[dir="ltr"] .ms-Persona.ms-Persona--sm .ms-Persona-presence { left: 27px; }html[dir="rtl"] .ms-Persona.ms-Persona--sm .ms-Persona-presence { right: 27px; }html[dir="ltr"] .ms-Persona.ms-Persona--sm .ms-Persona-details { padding-left: 48px; }html[dir="rtl"] .ms-Persona.ms-Persona--sm .ms-Persona-details { padding-right: 48px; }.ms-Persona.ms-Persona--sm .ms-Persona-primaryText { font-size: 14px; }.ms-Persona.ms-Persona--sm .ms-Persona-primaryText, .ms-Persona.ms-Persona--sm .ms-Persona-secondaryText { padding-top: 1px; }.ms-Persona.ms-Persona--lg { height: 72px; }.ms-Persona.ms-Persona--lg .ms-Persona-image, .ms-Persona.ms-Persona--lg .ms-Persona-imageArea { max-width: 72px; width: 72px; height: 72px; }.ms-Persona.ms-Persona--lg .ms-Persona-placeholder { font-size: 67px; top: 10px; }.ms-Persona.ms-Persona--lg .ms-Persona-initials { font-size: 28px; line-height: 72px; }.ms-Persona.ms-Persona--lg .ms-Persona-presence { height: 20px; width: 20px; border-width: 3px; }html[dir="ltr"] .ms-Persona.ms-Persona--lg .ms-Persona-presence { left: 49px; }html[dir="rtl"] .ms-Persona.ms-Persona--lg .ms-Persona-presence { right: 49px; }.ms-Persona.ms-Persona--lg .ms-Persona-presenceIcon { line-height: 20px; font-size: 14px; }html[dir="ltr"] .ms-Persona.ms-Persona--lg .ms-Persona-details { padding-left: 84px; }html[dir="rtl"] .ms-Persona.ms-Persona--lg .ms-Persona-details { padding-right: 84px; }.ms-Persona.ms-Persona--lg .ms-Persona-secondaryText { padding-top: 3px; }.ms-Persona.ms-Persona--lg .ms-Persona-tertiaryText { padding-top: 5px; display: block; }.ms-Persona.ms-Persona--xl { height: 100px; }.ms-Persona.ms-Persona--xl .ms-Persona-image, .ms-Persona.ms-Persona--xl .ms-Persona-imageArea { max-width: 100px; width: 100px; height: 100px; }.ms-Persona.ms-Persona--xl .ms-Persona-placeholder { font-size: 95px; top: 12px; }.ms-Persona.ms-Persona--xl .ms-Persona-initials { font-size: 42px; line-height: 100px; }.ms-Persona.ms-Persona--xl .ms-Persona-presence { height: 28px; width: 28px; border-width: 4px; }html[dir="ltr"] .ms-Persona.ms-Persona--xl .ms-Persona-presence { left: 71px; }html[dir="rtl"] .ms-Persona.ms-Persona--xl .ms-Persona-presence { right: 71px; }.ms-Persona.ms-Persona--xl .ms-Persona-presenceIcon { line-height: 28px; font-size: 21px; position: relative; top: 1px; }html[dir="ltr"] .ms-Persona.ms-Persona--xl .ms-Persona-details { padding-left: 120px; }html[dir="rtl"] .ms-Persona.ms-Persona--xl .ms-Persona-details { padding-right: 120px; }.ms-Persona.ms-Persona--xl .ms-Persona-primaryText { font-size: 21px; font-weight: 300; margin-top: 0px; }.ms-Persona.ms-Persona--xl .ms-Persona-secondaryText { padding-top: 2px; }.ms-Persona.ms-Persona--xl .ms-Persona-optionalText, .ms-Persona.ms-Persona--xl .ms-Persona-tertiaryText { padding-top: 5px; display: block; }.ms-Persona.ms-Persona--darkText .ms-Persona-primaryText { color: rgb(33, 33, 33); }.ms-Persona.ms-Persona--darkText .ms-Persona-optionalText, .ms-Persona.ms-Persona--darkText .ms-Persona-secondaryText, .ms-Persona.ms-Persona--darkText .ms-Persona-tertiaryText { color: rgb(51, 51, 51); }.ms-Persona.ms-Persona--selectable { cursor: pointer; padding: 0px 10px; }.ms-Persona.ms-Persona--selectable:not(.ms-Persona--xl):focus, .ms-Persona.ms-Persona--selectable:not(.ms-Persona--xl):hover { background-color: rgb(222, 236, 249); outline: transparent solid 1px; }.ms-Persona.ms-Persona--available .ms-Persona-presence { background-color: rgb(127, 186, 0); }.ms-Persona.ms-Persona--away .ms-Persona-presence { background-color: rgb(252, 209, 22); }.ms-Persona.ms-Persona--away .ms-Persona-presenceIcon { position: relative; }html[dir="ltr"] .ms-Persona.ms-Persona--away .ms-Persona-presenceIcon { left: 1px; }html[dir="rtl"] .ms-Persona.ms-Persona--away .ms-Persona-presenceIcon { right: 1px; }.ms-Persona.ms-Persona--blocked .ms-Persona-presence { background-color: rgb(255, 255, 255); }.ms-Persona.ms-Persona--blocked .ms-Persona-presence::before { content: ""; width: 100%; height: 100%; position: absolute; top: 0px; box-shadow: rgb(217, 59, 59) 0px 0px 0px 2px inset; border-radius: 50%; }html[dir="ltr"] .ms-Persona.ms-Persona--blocked .ms-Persona-presence::before { left: 0px; }html[dir="rtl"] .ms-Persona.ms-Persona--blocked .ms-Persona-presence::before { right: 0px; }.ms-Persona.ms-Persona--blocked .ms-Persona-presence::after { content: ""; width: 100%; height: 2px; background-color: rgb(217, 59, 59); transform: rotate(-45deg); position: absolute; top: 5px; }html[dir="ltr"] .ms-Persona.ms-Persona--blocked .ms-Persona-presence::after { left: 0px; }html[dir="rtl"] .ms-Persona.ms-Persona--blocked .ms-Persona-presence::after { right: 0px; }.ms-Persona.ms-Persona--blocked.ms-Persona--lg .ms-Persona-presence::after { top: 9px; }.ms-Persona.ms-Persona--blocked.ms-Persona--xl .ms-Persona-presence::after { top: 13px; }.ms-Persona.ms-Persona--busy .ms-Persona-presence { background-color: rgb(217, 59, 59); }@media not all {<br> .ms-Persona.ms-Persona--busy .ms-Persona-presence { background-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-Persona.ms-Persona--busy .ms-Persona-presence { background-color: rgb(55, 0, 110); }<br>}.ms-Persona.ms-Persona--dnd .ms-Persona-presence { background-color: rgb(232, 17, 35); }.ms-Persona.ms-Persona--offline .ms-Persona-presence { background-color: rgb(147, 171, 189); }@media not all {<br> .ms-Persona.ms-Persona--offline .ms-Persona-presence { background-color: rgb(0, 0, 0); box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset; }<br>}@media not all {<br> .ms-Persona.ms-Persona--offline .ms-Persona-presence { background-color: rgb(255, 255, 255); box-shadow: rgb(0, 0, 0) 0px 0px 0px 1px inset; }<br>}</style><style>.ms-DocumentCardActivity { padding: 8px 16px; position: relative; }html[dir="ltr"] .ms-DocumentCardActivity--multiplePeople .ms-DocumentCardActivity-avatar:nth-of-type(2) { margin-left: -16px; }html[dir="rtl"] .ms-DocumentCardActivity--multiplePeople .ms-DocumentCardActivity-avatar:nth-of-type(2) { margin-right: -16px; }html[dir="ltr"] .ms-DocumentCardActivity--multiplePeople .ms-DocumentCardActivity-details { left: 61.5px; }html[dir="rtl"] .ms-DocumentCardActivity--multiplePeople .ms-DocumentCardActivity-details { right: 61.5px; }html[dir="ltr"] .ms-DocumentCardActivity-avatars { margin-left: -2px; }html[dir="rtl"] .ms-DocumentCardActivity-avatars { margin-right: -2px; }.ms-DocumentCardActivity-avatar { border: 2px solid rgb(250, 250, 250); border-radius: 50%; height: 25px; width: 25px; display: inline-block; position: relative; overflow: hidden; text-align: center; }.ms-DocumentCardActivity-avatar .ms-Persona-initials { height: 25px; line-height: 25px; font-size: 12px; }.ms-DocumentCardActivity-avatar img { width: 100%; height: 100%; border-radius: 50%; }.ms-DocumentCardActivity-details { height: 25px; position: absolute; top: 8px; width: calc(100% - 65px); }html[dir="ltr"] .ms-DocumentCardActivity-details { left: 49px; }html[dir="rtl"] .ms-DocumentCardActivity-details { right: 49px; }.ms-DocumentCardActivity-activity, .ms-DocumentCardActivity-name { display: block; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; font-weight: 400; color: rgb(118, 118, 118); line-height: 15px; height: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.ms-DocumentCardActivity-name { color: rgb(51, 51, 51); font-weight: 600; }</style><style>.ms-DocumentCardLocation { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; font-weight: 400; color: rgb(51, 51, 51); display: block; padding: 8px 16px; position: relative; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.ms-DocumentCardLocation:hover { color: rgb(42, 141, 212); cursor: pointer; }</style><style>.ms-DocumentCardPreview { border-bottom: 2px solid rgb(166, 166, 166); position: relative; background-color: rgb(248, 248, 248); overflow: hidden; }.ms-DocumentCardPreview.is-fileList { background-color: rgb(255, 255, 255); }.ms-DocumentCardPreview-icon { bottom: 10px; position: absolute; }html[dir="ltr"] .ms-DocumentCardPreview-icon { left: 10px; }html[dir="rtl"] .ms-DocumentCardPreview-icon { right: 10px; }.ms-DocumentCardPreview-fileList { padding: 16px 16px 0px; list-style-type: none; margin: 0px; }html[dir="rtl"] .ms-DocumentCardPreview-fileList { padding: 16px 16px 0px; }.ms-DocumentCardPreview-fileList li { height: 16px; line-height: 16px; margin-bottom: 8px; overflow: hidden; position: relative; text-overflow: ellipsis; white-space: nowrap; }html[dir="ltr"] .ms-DocumentCardPreview-fileList li { padding-left: 24px; }html[dir="rtl"] .ms-DocumentCardPreview-fileList li { padding-right: 24px; }.ms-DocumentCardPreview-fileList a { font-size: 12px; text-decoration: none; color: rgb(33, 33, 33); }.ms-DocumentCardPreview-fileList a:hover { color: rgb(0, 120, 215); }.ms-DocumentCardPreview-fileListIcon { position: absolute; top: 0px; }html[dir="ltr"] .ms-DocumentCardPreview-fileListIcon { left: 0px; }html[dir="rtl"] .ms-DocumentCardPreview-fileListIcon { right: 0px; }.ms-DocumentCardPreview-fileListMore { padding: 0px 16px 8px; display: block; font-size: 12px; }html[dir="rtl"] .ms-DocumentCardPreview-fileListMore { padding: 0px 16px 8px; }</style><style>.ms-DocumentCardTitle { padding: 8px 16px; display: block; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 17px; font-weight: 300; color: rgb(51, 51, 51); height: 38px; line-height: 21px; overflow: hidden; word-wrap: break-word; }</style><style>.ms-Dropdown { box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; box-shadow: none; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(51, 51, 51); position: relative; outline: 0px; user-select: none; }.ms-Dropdown:active .ms-Dropdown-caretDown, .ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:focus .ms-Dropdown-caretDown, .ms-Dropdown:focus .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-caretDown, .ms-Dropdown:hover .ms-Dropdown-title { color: rgb(0, 0, 0); }@media not all {<br> .ms-Dropdown:active .ms-Dropdown-caretDown, .ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:focus .ms-Dropdown-caretDown, .ms-Dropdown:focus .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-caretDown, .ms-Dropdown:hover .ms-Dropdown-title { color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-Dropdown:active .ms-Dropdown-caretDown, .ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:focus .ms-Dropdown-caretDown, .ms-Dropdown:focus .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-caretDown, .ms-Dropdown:hover .ms-Dropdown-title { color: rgb(55, 0, 110); }<br>}.ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-title { border-color: rgb(0, 120, 215); }@media not all {<br> .ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-title { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-Dropdown:active .ms-Dropdown-title, .ms-Dropdown:hover .ms-Dropdown-title { border-color: rgb(55, 0, 110); }<br>}.ms-Dropdown:focus .ms-Dropdown-title { border-color: rgb(0, 120, 215); }@media not all {<br> .ms-Dropdown:focus .ms-Dropdown-title { border-color: rgb(26, 235, 255); }<br>}@media not all {<br> .ms-Dropdown:focus .ms-Dropdown-title { border-color: rgb(55, 0, 110); }<br>}.ms-Dropdown .ms-Label { display: inline-block; margin-bottom: 8px; }.ms-Dropdown.is-disabled .ms-Dropdown-title { background-color: rgb(244, 244, 244); border-color: rgb(244, 244, 244); color: rgb(166, 166, 166); cursor: default; }@media not all {<br> .ms-Dropdown.is-disabled .ms-Dropdown-title { border-color: rgb(0, 255, 0); color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Dropdown.is-disabled .ms-Dropdown-title { border-color: rgb(96, 0, 0); color: rgb(96, 0, 0); }<br>}.ms-Dropdown.is-disabled .ms-Dropdown-caretDown { color: rgb(166, 166, 166); }@media not all {<br> .ms-Dropdown.is-disabled .ms-Dropdown-caretDown { color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Dropdown.is-disabled .ms-Dropdown-caretDown { color: rgb(96, 0, 0); }<br>}.ms-Dropdown-caretDown { color: rgb(33, 33, 33); font-size: 12px; position: absolute; top: 0px; pointer-events: none; line-height: 32px; }html[dir="ltr"] .ms-Dropdown-caretDown { right: 12px; }html[dir="rtl"] .ms-Dropdown-caretDown { left: 12px; }.ms-Dropdown-title { box-sizing: border-box; margin: 0px; box-shadow: none; background: rgb(255, 255, 255); border: 1px solid rgb(200, 200, 200); cursor: pointer; display: block; height: 32px; line-height: 30px; padding: 0px 32px 0px 12px; position: relative; overflow: hidden; }html[dir="rtl"] .ms-Dropdown-title { padding: 0px 12px 0px 32px; }.ms-Dropdown-items { box-sizing: border-box; margin: 0px; padding: 0px; background-color: rgb(255, 255, 255); list-style-type: none; width: 100%; max-height: 200px; z-index: 400; overflow-y: scroll; top: auto; right: auto; bottom: auto; left: auto; max-width: 100%; box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 15px -5px; border: 1px solid rgb(234, 234, 234); }.ms-Dropdown-items::before { content: ""; position: absolute; z-index: -1; top: 0px; left: 0px; right: 0px; bottom: 0px; border: none; }@media not all {<br> .ms-Dropdown-items { border: 1px solid rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Dropdown-items { border: 1px solid rgb(0, 0, 0); }<br>}.ms-Dropdown-item { box-sizing: border-box; cursor: pointer; display: block; height: 36px; line-height: 34px; padding: 0px 12px; position: relative; border: 1px solid transparent; white-space: nowrap; }@media not all {<br> .ms-Dropdown-item { border-color: rgb(0, 0, 0); }<br>}@media not all {<br> .ms-Dropdown-item { border-color: rgb(255, 255, 255); }<br>}.ms-Dropdown-item:hover { background-color: rgb(244, 244, 244); color: rgb(0, 0, 0); }@media not all {<br> .ms-Dropdown-item:hover { background-color: rgb(26, 235, 255); border-color: rgb(26, 235, 255); color: rgb(0, 0, 0); }<br> .ms-Dropdown-item:hover:focus { border-color: rgb(0, 0, 0); }<br>}@media not all {<br> .ms-Dropdown-item:hover { background-color: rgb(55, 0, 110); border-color: rgb(55, 0, 110); color: rgb(255, 255, 255); }<br>}.ms-Dropdown-item { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Dropdown-item:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-Dropdown-item:focus { background-color: rgb(244, 244, 244); }.ms-Dropdown-item:active { background-color: rgb(244, 244, 244); color: rgb(0, 0, 0); }.ms-Dropdown-item.is-disabled { background: rgb(255, 255, 255); color: rgb(166, 166, 166); cursor: default; }.ms-Dropdown-item.is-selected, .ms-Dropdown-item.ms-Dropdown-item--selected { background-color: rgb(218, 218, 218); color: rgb(0, 0, 0); }.ms-Dropdown-item.is-selected:hover, .ms-Dropdown-item.ms-Dropdown-item--selected:hover { background-color: rgb(218, 218, 218); }.ms-Dropdown-item.is-selected, .ms-Dropdown-item.ms-Dropdown-item--selected { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Dropdown-item.is-selected:focus::after, .ms-Fabric.is-focusVisible .ms-Dropdown-item.ms-Dropdown-item--selected:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }@media not all {<br> .ms-Dropdown-item.is-selected, .ms-Dropdown-item.ms-Dropdown-item--selected { background-color: rgb(26, 235, 255); border-color: rgb(26, 235, 255); color: rgb(0, 0, 0); }<br> .ms-Dropdown-item.is-selected:focus, .ms-Dropdown-item.ms-Dropdown-item--selected:focus { border-color: rgb(0, 0, 0); }<br>}@media not all {<br> .ms-Dropdown-item.is-selected, .ms-Dropdown-item.ms-Dropdown-item--selected { background-color: rgb(55, 0, 110); border-color: rgb(55, 0, 110); color: rgb(255, 255, 255); }<br>}</style><style>.ms-Facepile { position: relative; height: 32px; width: auto; }.ms-Facepile-itemBtn { position: relative; height: 32px; width: 32px; line-height: 32px; text-align: center; padding: 0px; outline: transparent; border-radius: 50%; vertical-align: top; }html[dir="ltr"] .ms-Facepile-itemBtn { float: left; }html[dir="rtl"] .ms-Facepile-itemBtn { float: right; }html[dir="ltr"] .ms-Facepile-itemBtn { margin-right: 4px; }html[dir="rtl"] .ms-Facepile-itemBtn { margin-left: 4px; }button.ms-Facepile-itemBtn { display: inline; background: 0px 0px; padding: 0px; cursor: pointer; border: none; }button.ms-Facepile-addBtn { font-size: 12px; color: rgb(255, 255, 255); background-color: rgb(0, 120, 215); }button.ms-Facepile-addBtn:focus, button.ms-Facepile-addBtn:hover { background-color: rgb(0, 90, 158); }button.ms-Facepile-addBtn:active { background-color: rgb(0, 69, 120); }button.ms-Facepile-addBtn.is-disabled, button.ms-Facepile-addBtn:disabled { background-color: rgb(200, 200, 200); }button.ms-Facepile-chevronBtn, button.ms-Facepile-overflowBtn { font-size: 12px; color: rgb(102, 102, 102); background-color: rgb(234, 234, 234); }</style><style>.ms-MessageBar { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; padding: 8px; background-color: rgb(244, 244, 244); color: rgb(51, 51, 51); width: 100%; box-sizing: border-box; display: flex; position: relative; }.ms-MessageBar .ms-MessageBar-icon { color: rgb(118, 118, 118); }.ms-MessageBar .ms-Link { font-size: 12px; }.ms-MessageBar-icon, .ms-MessageBar-text { display: table-cell; vertical-align: top; }.ms-MessageBar-icon { font-size: 16px; min-width: 16px; min-height: 16px; display: flex; }html[dir="ltr"] .ms-MessageBar-icon { padding-right: 8px; }html[dir="rtl"] .ms-MessageBar-icon { padding-left: 8px; }.ms-MessageBar-text { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 12px; font-weight: 400; min-width: 0px; display: flex; }.ms-MessageBar.ms-MessageBar--warning { background-color: rgb(255, 244, 206); color: rgb(51, 51, 51); }.ms-MessageBar.ms-MessageBar--severeWarning { background-color: rgb(254, 217, 204); color: rgb(51, 51, 51); }.ms-MessageBar.ms-MessageBar--severeWarning .ms-MessageBar-icon { color: rgb(216, 59, 1); }.ms-MessageBar.ms-MessageBar--error { background-color: rgb(253, 231, 233); color: rgb(51, 51, 51); }.ms-MessageBar.ms-MessageBar--error .ms-MessageBar-icon { color: rgb(168, 0, 0); }.ms-MessageBar.ms-MessageBar--blocked { background-color: rgb(253, 231, 233); color: rgb(51, 51, 51); }.ms-MessageBar.ms-MessageBar--blocked .ms-MessageBar-icon { color: rgb(168, 0, 0); }.ms-MessageBar.ms-MessageBar--success { background-color: rgb(223, 246, 221); color: rgb(51, 51, 51); }.ms-MessageBar.ms-MessageBar--success .ms-MessageBar-icon { color: rgb(16, 124, 16); }.ms-MessageBar-content { display: flex; width: 100%; box-sizing: border-box; }.ms-MessageBar-actionables { display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; width: 100%; min-width: 0px; }.ms-MessageBar-actionables > .ms-MessageBar-dismissal { right: 0px; top: 0px; position: absolute !important; }.ms-MessageBar-actions, .ms-MessageBar-actionsOneline { display: flex; -webkit-box-flex: 0; flex: 0 0 auto; -webkit-box-orient: horizontal; -webkit-box-direction: reverse; flex-direction: row-reverse; -webkit-box-align: center; align-items: center; }.ms-MessageBar-actionsOneline { position: relative; }.ms-MessageBar-actions { padding-top: 12px; }.ms-MessageBar-dismissal { min-width: 0px; }.ms-MessageBar-dismissal { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-MessageBar-dismissal:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-MessageBar-actionsOneline .ms-MessageBar-dismissal { margin-right: -8px; }html[dir="rtl"] .ms-MessageBar-actionsOneline .ms-MessageBar-dismissal { margin-left: -8px; }.ms-MessageBar + .ms-MessageBar { margin-bottom: 6px; }html[dir="ltr"] .ms-MessageBar-innerTextPadding { padding-right: 24px; }html[dir="rtl"] .ms-MessageBar-innerTextPadding { padding-left: 24px; }html[dir="ltr"] .ms-MessageBar-innerTextPadding .ms-MessageBar-innerText > span, html[dir="ltr"] .ms-MessageBar-innerTextPadding span { padding-right: 4px; }html[dir="rtl"] .ms-MessageBar-innerTextPadding .ms-MessageBar-innerText > span, html[dir="rtl"] .ms-MessageBar-innerTextPadding span { padding-left: 4px; }.ms-MessageBar-multiline > .ms-MessageBar-content > .ms-MessageBar-actionables { -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; }.ms-MessageBar-singleline .ms-MessageBar-content .ms-MessageBar-icon { padding: 16px 8px 16px 0px; -webkit-box-align: center; align-items: center; }html[dir="rtl"] .ms-MessageBar-singleline .ms-MessageBar-content .ms-MessageBar-icon { padding: 16px 0px 16px 8px; }.ms-MessageBar-singleline .ms-MessageBar-content .ms-MessageBar-text { padding: 16px 0px; }.ms-MessageBar-singleline .ms-MessageBar-content .ms-MessageBar-actionables > .ms-MessageBar-text .ms-MessageBar-innerText, .ms-MessageBar-singleline .ms-MessageBar-content .ms-MessageBar-actionables > .ms-MessageBar-text .ms-MessageBar-innerTextPadding { max-height: 1.3em; line-height: 1.3em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.ms-MessageBar-singleline .ms-MessageBar-content > .ms-MessageBar-actionables { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; }.ms-MessageBar .ms-Icon--Cancel { font-size: 14px; }</style><style>.ms-MarqueeSelection { position: relative; cursor: default; }.ms-MarqueeSelection-dragMask { position: absolute; background: rgba(255, 0, 0, 0); left: 0px; top: 0px; right: 0px; bottom: 0px; }.ms-MarqueeSelection-box { position: absolute; box-sizing: border-box; border: 1px solid rgb(0, 120, 215); pointer-events: none; }.ms-MarqueeSelection-boxFill { position: absolute; box-sizing: border-box; background-color: rgb(0, 120, 215); opacity: 0.1; left: 0px; top: 0px; right: 0px; bottom: 0px; }</style><style>.ms-Nav { overflow-y: auto; user-select: none; }.ms-Nav.is-onTop { position: absolute; }.ms-Nav ul { list-style-type: none; }.ms-Nav ul, .ms-Nav ul > li { padding: 0px; }.ms-Nav-groupContent { display: none; margin-bottom: 40px; }.ms-Nav-group.is-expanded .ms-Nav-groupContent { display: block; }.ms-Nav-Icon { padding: 0px; color: rgb(51, 51, 51); background: rgb(244, 244, 244); transition: transform 0.1s linear, -webkit-transform 0.1s linear; }html[dir="ltr"] .ms-Nav-IconLink { margin-right: 4px; }html[dir="rtl"] .ms-Nav-IconLink { margin-left: 4px; }.ms-Nav-chevronButton { display: block; font-weight: 400; font-size: 12px; line-height: 36px; margin: 5px 0px; padding: 0px 20px 0px 28px; border: none; text-transform: uppercase; cursor: pointer; color: rgb(51, 51, 51); background: rgb(255, 255, 255); }html[dir="ltr"] .ms-Nav-chevronButton { text-align: left; }html[dir="rtl"] .ms-Nav-chevronButton { text-align: right; }html[dir="rtl"] .ms-Nav-chevronButton { padding: 0px 28px 0px 20px; }.ms-Nav-chevronButton:visited { color: inherit; }.ms-Nav-chevronButton:hover { color: rgb(51, 51, 51); background: rgb(248, 248, 248); }.ms-Nav-chevronButton.ms-Nav-chevronButton--group { width: 100%; height: 36px; border-bottom: 1px solid rgb(234, 234, 234); }.ms-Nav-chevron.ms-Icon { position: absolute; height: 36px; line-height: 36px; font-size: 12px; transition: transform 0.1s linear, -webkit-transform 0.1s linear; }html[dir="ltr"] .ms-Nav-chevron.ms-Icon { left: 8px; }html[dir="rtl"] .ms-Nav-chevron.ms-Icon { right: 8px; }.ms-Nav-group.is-expanded .ms-Nav-chevronButton--group .ms-Nav-chevron { transform: rotate(-180deg); }.ms-Nav-linkText { vertical-align: middle; }.ms-Nav-compositeLink { display: block; position: relative; color: rgb(51, 51, 51); background: rgb(255, 255, 255); }.ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link { display: block; width: 28px; height: 36px; position: absolute; top: 0px; z-index: 1; padding: 0px; margin: 0px; }html[dir="ltr"] .ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link { left: 0px; }html[dir="rtl"] .ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link { right: 0px; }.ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link .ms-Nav-chevron { position: relative; }.ms-Nav-compositeLink a { color: rgb(51, 51, 51); }.ms-Nav-compositeLink:hover .ms-Nav-chevronButton, .ms-Nav-compositeLink:hover a { background: rgb(248, 248, 248); color: rgb(51, 51, 51); }.ms-Nav-compositeLink.is-expanded .ms-Nav-chevron { transform: rotate(-180deg); }.ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton, .ms-Nav-compositeLink.is-selected a { color: rgb(0, 120, 215); background: rgb(244, 244, 244); }.ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, .ms-Nav-compositeLink.is-selected a::after { content: ""; position: absolute; top: 0px; bottom: 0px; }html[dir="ltr"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="ltr"] .ms-Nav-compositeLink.is-selected a::after { border-left: 2px solid rgb(51, 51, 51); }html[dir="rtl"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="rtl"] .ms-Nav-compositeLink.is-selected a::after { border-right: 2px solid rgb(51, 51, 51); }html[dir="ltr"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="ltr"] .ms-Nav-compositeLink.is-selected a::after { right: 0px; }html[dir="rtl"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="rtl"] .ms-Nav-compositeLink.is-selected a::after { left: 0px; }html[dir="ltr"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="ltr"] .ms-Nav-compositeLink.is-selected a::after { left: 0px; }html[dir="rtl"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton::after, html[dir="rtl"] .ms-Nav-compositeLink.is-selected a::after { right: 0px; }.ms-Nav-link { display: block; position: relative; height: 36px; line-height: 36px; padding: 0px 20px; cursor: pointer; text-overflow: ellipsis; text-decoration: none; white-space: nowrap; overflow: hidden; }.ms-Nav-groupHeaderFontSize { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 17px; font-weight: 300; }.ms-Nav-chevronButton, .ms-Nav-chevronButton--group, .ms-Nav-chevronButton--link, .ms-Nav-link { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Nav-chevronButton--group:focus::after, .ms-Fabric.is-focusVisible .ms-Nav-chevronButton--link:focus::after, .ms-Fabric.is-focusVisible .ms-Nav-chevronButton:focus::after, .ms-Fabric.is-focusVisible .ms-Nav-link:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-Nav-linkButton.ms-Button--command { padding-left: 20px; }html[dir="rtl"] .ms-Nav-linkButton.ms-Button--command { padding-right: 20px; }.ms-Nav-linkButton.ms-Button--command .ms-Button-label { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(0, 120, 215); }html[dir="ltr"] .ms-Nav-linkButton.ms-Button--command.isOnExpanded { padding-left: 28px; }html[dir="rtl"] .ms-Nav-linkButton.ms-Button--command.isOnExpanded { padding-right: 28px; }</style><style>.ms-Panel { pointer-events: inherit; overflow: hidden; }.ms-Panel .ms-Panel-main { position: absolute; overflow-x: hidden; overflow-y: auto; }.ms-Panel { bottom: 0px; left: 0px; position: fixed; right: 0px; top: 0px; display: none; pointer-events: none; }.ms-Panel .ms-Overlay { display: none; pointer-events: none; opacity: 1; cursor: pointer; transition: opacity 367ms cubic-bezier(0.1, 0.9, 0.2, 1); }.ms-Panel-main { background-color: rgb(255, 255, 255); bottom: 0px; position: fixed; top: 0px; display: none; width: 100%; }html[dir="ltr"] .ms-Panel-main { right: 0px; }html[dir="rtl"] .ms-Panel-main { left: 0px; }@media (min-width: 480px) {<br> .ms-Panel-main { border-left: 1px solid rgb(234, 234, 234); border-right: 1px solid rgb(234, 234, 234); pointer-events: auto; width: 340px; box-shadow: rgba(0, 0, 0, 0.2) -30px 0px 30px -30px; }<br> html[dir="ltr"] .ms-Panel-main { left: auto; }<br> html[dir="rtl"] .ms-Panel-main { right: auto; }<br>}.ms-Panel.ms-Panel--sm .ms-Panel-main { width: 272px; }@media (min-width: 480px) {<br> .ms-Panel.ms-Panel--sm .ms-Panel-main { width: 340px; }<br>}.ms-Panel.ms-Panel--smLeft .ms-Panel-main { width: 272px; }html[dir="ltr"] .ms-Panel.ms-Panel--smLeft .ms-Panel-main { right: auto; }html[dir="rtl"] .ms-Panel.ms-Panel--smLeft .ms-Panel-main { left: auto; }html[dir="ltr"] .ms-Panel.ms-Panel--smLeft .ms-Panel-main { left: 0px; }html[dir="rtl"] .ms-Panel.ms-Panel--smLeft .ms-Panel-main { right: 0px; }.ms-Panel.ms-Panel--smFluid .ms-Panel-main { width: 100%; }@media (min-width: 640px) {<br> .ms-Panel.ms-Panel--lg .ms-Panel-main, .ms-Panel.ms-Panel--md .ms-Panel-main, .ms-Panel.ms-Panel--xl .ms-Panel-main { width: auto; }<br> html[dir="ltr"] .ms-Panel.ms-Panel--lg .ms-Panel-main, html[dir="ltr"] .ms-Panel.ms-Panel--md .ms-Panel-main, html[dir="ltr"] .ms-Panel.ms-Panel--xl .ms-Panel-main { left: 48px; }<br> html[dir="rtl"] .ms-Panel.ms-Panel--lg .ms-Panel-main, html[dir="rtl"] .ms-Panel.ms-Panel--md .ms-Panel-main, html[dir="rtl"] .ms-Panel.ms-Panel--xl .ms-Panel-main { right: 48px; }<br>}@media (min-width: 1024px) {<br> .ms-Panel.ms-Panel--md .ms-Panel-main { width: 643px; }<br> html[dir="ltr"] .ms-Panel.ms-Panel--md .ms-Panel-main { left: auto; }<br> html[dir="rtl"] .ms-Panel.ms-Panel--md .ms-Panel-main { right: auto; }<br>}@media (min-width: 1366px) {<br> html[dir="ltr"] .ms-Panel.ms-Panel--lg .ms-Panel-main { left: 428px; }<br> html[dir="rtl"] .ms-Panel.ms-Panel--lg .ms-Panel-main { right: 428px; }<br>}@media (min-width: 1366px) {<br> .ms-Panel.ms-Panel--lg.ms-Panel--fixed .ms-Panel-main { width: 940px; }<br> html[dir="ltr"] .ms-Panel.ms-Panel--lg.ms-Panel--fixed .ms-Panel-main { left: auto; }<br> html[dir="rtl"] .ms-Panel.ms-Panel--lg.ms-Panel--fixed .ms-Panel-main { right: auto; }<br>}@media (min-width: 1366px) {<br> html[dir="ltr"] .ms-Panel.ms-Panel--xl .ms-Panel-main { left: 176px; }<br> html[dir="rtl"] .ms-Panel.ms-Panel--xl .ms-Panel-main { right: 176px; }<br>}.ms-Panel.is-open { display: block; }.ms-Panel.is-open .ms-Panel-main { opacity: 1; pointer-events: auto; display: block; }.ms-Panel.is-open .ms-Overlay { display: block; pointer-events: auto; }@media not all {<br> .ms-Panel.is-open .ms-Overlay { opacity: 0; }<br>}.ms-Panel.is-open.ms-Panel-animateIn .ms-Panel-main { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 167ms; }.ms-Panel.is-open.ms-Panel-animateOut .ms-Panel-main { animation-name: fadeOut; animation-fill-mode: both; animation-duration: 0.1s; }.ms-Panel.is-open.ms-Panel-animateOut .ms-Overlay { display: none; }@media (min-width: 480px) {<br> .ms-Panel.is-open.ms-Panel--openRight.ms-Panel-animateIn .ms-Panel-main { animation-name: fadeIn, slideLeftIn40; animation-duration: 367ms; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }<br> .ms-Panel.is-open.ms-Panel--openRight.ms-Panel-animateIn .ms-Overlay { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 267ms; }<br> .ms-Panel.is-open.ms-Panel--openRight.ms-Panel-animateOut .ms-Panel-main { animation-name: fadeOut, slideRightOut40; animation-duration: 167ms; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }<br> .ms-Panel.is-open.ms-Panel--openRight.ms-Panel-animateOut .ms-Overlay { animation-name: fadeOut; animation-fill-mode: both; animation-duration: 167ms; }<br> .ms-Panel.is-open.ms-Panel--openLeft.ms-Panel-animateIn .ms-Panel-main { animation-name: fadeIn, slideRightIn40; animation-duration: 367ms; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }<br> .ms-Panel.is-open.ms-Panel--openLeft.ms-Panel-animateIn .ms-Overlay { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 267ms; }<br> .ms-Panel.is-open.ms-Panel--openLeft.ms-Panel-animateOut .ms-Panel-main { animation-name: fadeOut, slideLeftOut40; animation-duration: 167ms; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }<br> .ms-Panel.is-open.ms-Panel--openLeft.ms-Panel-animateOut .ms-Overlay { animation-name: fadeOut; animation-fill-mode: both; animation-duration: 167ms; }<br> .ms-Panel.is-open .ms-Overlay { cursor: pointer; opacity: 1; pointer-events: auto; }<br>}@media not all {<br> .ms-Panel.is-open.ms-Panel--openLeft.ms-Panel-animateIn .ms-Overlay, .ms-Panel.is-open.ms-Panel--openRight.ms-Panel-animateIn .ms-Overlay { opacity: 0; animation-name: none; }<br>}.ms-Panel-closeButton { background: 0px 0px; border: 0px; cursor: pointer; position: absolute; top: 0px; height: 40px; width: 40px; line-height: 40px; padding: 0px; color: rgb(102, 102, 102); font-size: 16px; }html[dir="ltr"] .ms-Panel-closeButton { right: 8px; }html[dir="rtl"] .ms-Panel-closeButton { left: 8px; }.ms-Panel-closeButton:hover { color: rgb(51, 51, 51); }.ms-Panel-contentInner { position: absolute; top: 40px; bottom: 0px; left: 0px; right: 0px; padding: 0px 16px 20px; overflow-y: auto; transform: translateZ(0px); }@media (min-width: 640px) {<br> .ms-Panel-contentInner { padding: 0px 32px 20px; }<br>}@media (min-width: 1366px) {<br> .ms-Panel-contentInner { padding: 0px 40px 20px; }<br>}.ms-Panel-headerText { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 21px; font-weight: 100; color: rgb(51, 51, 51); margin: 10px 0px; padding: 4px 0px; line-height: 1; text-overflow: ellipsis; overflow: hidden; }@media (min-width: 1024px) {<br> .ms-Panel-headerText { margin-top: 30px; }<br>}</style><style>.ms-SearchMore-button { background: 0px 0px; border: 0px; cursor: pointer; height: auto; text-align: center; margin: 0px; width: 100%; }.ms-SearchMore-button:hover { background-color: rgb(234, 234, 234); cursor: pointer; }.ms-SearchMore-button:active, .ms-SearchMore-button:focus { background-color: rgb(199, 224, 244); }.ms-Suggestions { min-width: 180px; }.ms-Suggestions .ms-Suggestions-item { height: auto; width: 100%; border: none; }html[dir="ltr"] .ms-Suggestions .ms-Suggestions-item { text-align: left; }html[dir="rtl"] .ms-Suggestions .ms-Suggestions-item { text-align: right; }.ms-Suggestions .ms-Suggestions-item:hover { background: rgb(234, 234, 234); }.ms-Suggestions .ms-Suggestions-item.is-suggested { background: rgb(208, 208, 208); }.ms-Suggestions .ms-Suggestions-item.is-suggested:hover { background: rgb(218, 218, 218); }.ms-Suggestions .ms-Suggestions-title { color: rgb(0, 120, 215); font-size: 12px; text-align: center; text-transform: uppercase; line-height: 40px; border-bottom: 1px solid rgb(234, 234, 234); }.ms-Suggestions .ms-Suggestions-container { overflow-y: auto; overflow-x: hidden; max-height: 300px; border-bottom: 1px solid rgb(234, 234, 234); }.ms-Suggestions .ms-Suggestions-none { text-align: center; color: rgb(118, 118, 118); font-size: 12px; line-height: 30px; }.ms-Suggestions-spinner { margin: 5px; text-align: center; white-space: nowrap; line-height: 20px; }.ms-Suggestions-spinner .ms-Spinner-circle { display: inline-block; vertical-align: middle; }.ms-Suggestions-spinner .ms-Spinner-label { display: inline-block; margin: 0px 10px; vertical-align: middle; }</style><style>.ms-BasePicker-text { display: flex; flex-wrap: wrap; box-sizing: border-box; border: 1px solid rgb(234, 234, 234); min-width: 180px; padding: 1px; }.ms-BasePicker-text:hover { border-color: rgb(199, 224, 244); }.ms-BasePicker-text.inputFocused { border-color: rgb(0, 120, 215); }.ms-BasePicker-input { border: none; min-height: 28px; -webkit-box-flex: 1; flex-grow: 1; outline: 0px; padding: 0px 6px; margin: 1px; }</style><style>.ms-PickerPersona-container { display: inline-block; background: rgb(244, 244, 244); margin: 1px; vertical-align: top; white-space: nowrap; cursor: default; user-select: none; }.ms-PickerPersona-container { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-PickerPersona-container:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-PickerPersona-container:hover { background: rgb(234, 234, 234); }.ms-PickerPersona-container.is-selected { background: rgb(208, 208, 208); }.ms-PickerPersona-container.is-selected:hover { background: rgb(218, 218, 218); }.ms-PickerPersona-container .ms-PickerItem-content { display: inline-block; vertical-align: middle; }</style><style>.ms-PickerPersona-Container { display: inline-block; }.ms-Picker-MenuItem.ms-result-content { display: table-row; }.ms-Picker-MenuItem.ms-result-content .ms-result-item { display: table-cell; vertical-align: bottom; }.ms-PeoplePicker-Persona { width: 180px; }.ms-PeoplePicker .ms-BasePicker-text { min-height: 40px; }</style><style>.ms-TagItem { flex-shrink: 0; background: rgb(244, 244, 244); margin: 1px; height: 28px; line-height: 28px; vertical-align: top; white-space: nowrap; cursor: default; user-select: none; }.ms-TagItem { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-TagItem:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-TagItem:hover { background: rgb(234, 234, 234); }.ms-TagItem.is-selected { background: rgb(208, 208, 208); }.ms-TagItem.is-selected:hover { background: rgb(218, 218, 218); }.ms-TagItem-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; min-width: 100px; margin: 0px 8px; }.ms-TagItem-close { cursor: pointer; color: rgb(102, 102, 102); font-size: 12px; display: inline-block; text-align: center; vertical-align: top; width: 30px; height: 100%; }</style><style>.ms-Pivot { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; box-sizing: border-box; margin: 0px; padding: 0px; box-shadow: none; font-size: 14px; font-weight: 400; position: relative; color: rgb(0, 120, 215); white-space: nowrap; }.ms-Pivot-links { font-size: 0px; height: 40px; list-style-type: none; padding: 0px; white-space: nowrap; }.ms-Pivot-link { color: rgb(51, 51, 51); display: inline-block; font-size: 14px; font-weight: 400; line-height: 40px; padding: 0px 8px; text-align: center; position: relative; }html[dir="ltr"] .ms-Pivot-link { margin-right: 8px; }html[dir="rtl"] .ms-Pivot-link { margin-left: 8px; }.ms-Pivot-link:hover { cursor: pointer; }.ms-Pivot-link:focus { outline: 0px; }.ms-Pivot-link::before { background-color: transparent; bottom: 0px; content: ""; height: 2px; left: 8px; position: absolute; right: 8px; transition: background-color 267ms cubic-bezier(0.1, 0.25, 0.75, 0.9); }.ms-Pivot-link::after { color: transparent; content: attr(title); display: block; font-weight: 700; height: 1px; overflow: hidden; visibility: hidden; }.ms-Pivot-link.is-selected { font-weight: 600; }.ms-Pivot-link.is-selected::before { background-color: rgb(0, 120, 215); }.ms-Pivot-link.is-disabled { color: rgb(166, 166, 166); }.ms-Fabric.is-focusVisible .ms-Pivot-link:focus { outline: rgb(118, 118, 118) solid 1px; }.ms-Pivot-link.ms-Pivot-link--overflow { color: rgb(102, 102, 102); }.ms-Pivot-link.ms-Pivot-link--overflow.is-selected { color: rgb(0, 120, 215); }.ms-Pivot-link.ms-Pivot-link--overflow:focus:not(.is-selected), .ms-Pivot-link.ms-Pivot-link--overflow:hover:not(.is-selected) { color: rgb(33, 33, 33); }.ms-Pivot-link.ms-Pivot-link--overflow:active { color: rgb(0, 120, 215); }.ms-Pivot-ellipsis { font-size: 15px; position: relative; top: 0px; }.ms-Pivot-content { display: none; margin-top: 20px; }.ms-Pivot.ms-Pivot--large .ms-Pivot-link { font-size: 17px; }html[dir="ltr"] .ms-Pivot.ms-Pivot--large .ms-Pivot-link .ms-Pivot-count { margin-left: 4px; }html[dir="rtl"] .ms-Pivot.ms-Pivot--large .ms-Pivot-link .ms-Pivot-count { margin-right: 4px; }.ms-Pivot.ms-Pivot--large .ms-Pivot-link.ms-Pivot-link--overflow::after { font-size: 17px; }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link { height: 40px; line-height: 40px; background-color: rgb(244, 244, 244); padding: 0px 10px; vertical-align: top; }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }html[dir="ltr"] .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link { margin-right: 0px; }html[dir="rtl"] .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link { margin-left: 0px; }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link:focus:not(.is-selected):not(.ms-Pivot-link--overflow), .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link:hover:not(.is-selected):not(.ms-Pivot-link--overflow) { color: rgb(0, 0, 0); }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link:active { color: rgb(255, 255, 255); background-color: rgb(0, 120, 215); }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.is-selected { background-color: rgb(0, 120, 215); color: rgb(255, 255, 255); font-weight: 300; }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.is-selected::before { background-color: transparent; transition: none; }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.ms-Pivot-link--overflow:focus:not(.is-selected), .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.ms-Pivot-link--overflow:hover:not(.is-selected) { background-color: rgb(255, 255, 255); }.ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.ms-Pivot-link--overflow:active { background-color: rgb(0, 120, 215); }.ms-Fabric.is-focusVisible .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link:focus::before { height: auto; background: 0px 0px; transition: none; }@media not all {<br> .ms-Pivot.ms-Pivot--tabs .ms-Pivot-link.is-selected { font-weight: 600; }<br>}</style><style>.ms-ProgressIndicator { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-weight: 400; }.ms-ProgressIndicator-itemName { color: rgb(51, 51, 51); font-size: 14px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; padding-top: 4px; line-height: 20px; }.ms-ProgressIndicator-itemDescription { color: rgb(118, 118, 118); font-size: 11px; line-height: 18px; }.ms-ProgressIndicator-itemProgress { position: relative; height: 2px; padding: 8px 0px; }.ms-ProgressIndicator-progressTrack { position: absolute; width: 100%; height: 2px; background-color: rgb(234, 234, 234); outline: transparent solid 1px; }.ms-ProgressIndicator-progressBar { background-color: rgb(0, 120, 215); height: 2px; position: absolute; transition: width 0.3s ease; width: 0px; }@media not all {<br> .ms-ProgressIndicator-progressBar { background-color: rgb(255, 255, 255); }<br>}@media not all {<br> .ms-ProgressIndicator-progressBar { background-color: rgb(0, 0, 0); }<br>}.ms-ProgressIndicator-progressBar.smoothTransition { transition-property: width; transition-timing-function: linear; transition-duration: 150ms; }</style><style>.ms-SearchBox { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; box-shadow: none; color: rgb(51, 51, 51); position: relative; border: 1px solid rgb(113, 175, 229); }.ms-SearchBox.is-active { border-color: rgb(0, 69, 120); }html[dir="ltr"] .ms-SearchBox.is-active .ms-SearchBox-field { padding-left: 8px; }html[dir="rtl"] .ms-SearchBox.is-active .ms-SearchBox-field { padding-right: 8px; }.ms-SearchBox.is-active .ms-SearchBox-icon { display: none; }.ms-SearchBox.is-disabled { border-color: rgb(244, 244, 244); }.ms-SearchBox.is-disabled .ms-SearchBox-icon { color: rgb(200, 200, 200); }.ms-SearchBox.is-disabled .ms-SearchBox-field { background-color: rgb(244, 244, 244); pointer-events: none; cursor: default; }.ms-SearchBox.can-clear .ms-SearchBox-clearButton { display: block; }.ms-SearchBox:hover .ms-SearchBox-field { border-color: rgb(0, 69, 120); }.ms-SearchBox:hover .ms-SearchBox-label { color: rgb(0, 0, 0); }.ms-SearchBox:hover .ms-SearchBox-label .ms-SearchBox-icon { color: rgb(0, 69, 120); }input.ms-SearchBox-field { position: relative; box-sizing: border-box; margin: 0px; box-shadow: none; border: none; outline: transparent solid 1px; font-weight: inherit; font-family: inherit; font-size: inherit; color: rgb(0, 0, 0); height: 34px; line-height: 34px; padding: 6px 38px 7px 31px; width: 100%; background-color: transparent; transition: padding-left 167ms; }html[dir="rtl"] input.ms-SearchBox-field { padding: 6px 31px 7px 38px; }html[dir="ltr"] input.ms-SearchBox-field:focus { padding-right: 32px; }html[dir="rtl"] input.ms-SearchBox-field:focus { padding-left: 32px; }.ms-SearchBox-clearButton { display: none; border: none; cursor: pointer; position: absolute; top: 0px; width: 40px; height: 36px; line-height: 36px; vertical-align: top; color: rgb(0, 120, 215); text-align: center; font-size: 16px; }html[dir="ltr"] .ms-SearchBox-clearButton { right: 0px; }html[dir="rtl"] .ms-SearchBox-clearButton { left: 0px; }.ms-SearchBox-icon { position: absolute; top: 0px; height: 36px; line-height: 36px; vertical-align: top; font-size: 16px; width: 16px; color: rgb(0, 120, 215); }html[dir="ltr"] .ms-SearchBox-icon { left: 8px; }html[dir="rtl"] .ms-SearchBox-icon { right: 8px; }html[dir="ltr"] .ms-SearchBox-icon { margin-right: 6px; }html[dir="rtl"] .ms-SearchBox-icon { margin-left: 6px; }</style><style>.ms-Slider { user-select: none; margin-bottom: 8px; }.ms-Slider > .ms-Label { padding: 0px; }.ms-Slider-line { position: relative; width: 100%; }.ms-Slider-line span { height: 4px; border-radius: 4px; }html[dir="ltr"] .ms-Slider-line span { float: left; }html[dir="rtl"] .ms-Slider-line span { float: right; }.ms-Slider-active { background: rgb(102, 102, 102); }.ms-Slider-inactive { background: rgb(200, 200, 200); }.ms-Slider-showTransitions .ms-Slider-thumb { transition: left 367ms cubic-bezier(0.1, 0.9, 0.2, 1); }.ms-Slider-showTransitions .ms-Slider-active, .ms-Slider-showTransitions .ms-Slider-inactive { transition: width 367ms cubic-bezier(0.1, 0.9, 0.2, 1); }.ms-Slider-slideBox { background: 0px 0px; border: none; padding: 0px; margin: 0px; }.ms-Slider-slideBox .ms-Slider-thumb { border: 2px solid rgb(102, 102, 102); background: rgb(255, 255, 255); display: block; width: 12px; height: 12px; position: absolute; top: -6px; border-radius: 10px; }html[dir="ltr"] .ms-Slider-slideBox .ms-Slider-thumb { transform: translateX(-50%); }html[dir="rtl"] .ms-Slider-slideBox .ms-Slider-thumb { transform: translateX(50%); }.ms-Slider-container { display: flex; }.ms-Slider-container .ms-Slider-slideBox { -webkit-box-flex: 1; flex-grow: 1; height: 28px; line-height: 28px; padding: 0px 8px; }.ms-Slider-container .ms-Slider-slideBox { outline: transparent; position: relative; }.ms-Fabric.is-focusVisible .ms-Slider-container .ms-Slider-slideBox:focus::after { content: ""; position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; pointer-events: none; border: 1px solid rgb(102, 102, 102); }.ms-Slider-container .ms-Label { flex-shrink: 1; width: 30px; }html[dir="ltr"] .ms-Slider-container .ms-Label { margin-left: 8px; }html[dir="rtl"] .ms-Slider-container .ms-Label { margin-right: 8px; }.ms-Slider-enabled .ms-Slider-slideBox:active .ms-Slider-thumb, .ms-Slider-enabled .ms-Slider-slideBox:hover .ms-Slider-thumb { border: 2px solid rgb(0, 120, 215); }.ms-Slider-enabled .ms-Slider-slideBox:active .ms-Slider-active, .ms-Slider-enabled .ms-Slider-slideBox:hover .ms-Slider-active { background-color: rgb(0, 120, 215); }.ms-Slider-enabled .ms-Slider-slideBox:active .ms-Slider-inactive, .ms-Slider-enabled .ms-Slider-slideBox:hover .ms-Slider-inactive { background-color: rgb(199, 224, 244); }.ms-Slider-enabled .ms-Slider-slideBox:active .ms-Slider-thumb { border: 2px solid rgb(16, 110, 190); }.ms-Slider-enabled .ms-Slider-slideBox:active .ms-Slider-active { background-color: rgb(16, 110, 190); }.ms-Slider-disabled .ms-Slider-thumb { border-color: rgb(200, 200, 200); }.ms-Slider-disabled .ms-Slider-active { background: rgb(200, 200, 200); }.ms-Slider-disabled .ms-Slider-inactive { background: rgb(234, 234, 234); }</style><style>.ms-TeachingBubble { display: block; max-width: 364px; }.ms-TeachingBubble-bodycontent { padding: 20px; }.ms-TeachingBubble-header--large:not(:last-child) { margin-bottom: 14px; }.ms-TeachingBubble-headline { margin: 0px; color: rgb(255, 255, 255); }.ms-TeachingBubble-header--large .ms-TeachingBubble-headline { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 28px; font-weight: 100; }.ms-TeachingBubble-header--small .ms-TeachingBubble-headline { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 600; }html[dir="ltr"] .ms-TeachingBubble-header--small .ms-TeachingBubble-headline { margin-right: 10px; }html[dir="rtl"] .ms-TeachingBubble-header--small .ms-TeachingBubble-headline { margin-left: 10px; }.ms-TeachingBubble-body:not(:last-child) { margin-bottom: 20px; }.ms-TeachingBubble-subText { margin: 0px; font-size: 14px; color: rgb(255, 255, 255); font-weight: 300; }.ms-Button.ms-TeachingBubble-closebutton { position: absolute; top: 0px; }html[dir="ltr"] .ms-Button.ms-TeachingBubble-closebutton { right: 2px; }html[dir="rtl"] .ms-Button.ms-TeachingBubble-closebutton { left: 2px; }.ms-Button.ms-TeachingBubble-closebutton.ms-Button--icon .ms-Icon { color: rgb(255, 255, 255); font-size: 12px; padding: 10px; }html[dir="ltr"] .ms-TeachingBubble-footer .ms-Button:not(:first-child) { margin-left: 20px; }html[dir="rtl"] .ms-TeachingBubble-footer .ms-Button:not(:first-child) { margin-right: 20px; }.ms-TeachingBubble .ms-Callout-beak, .ms-TeachingBubble .ms-Callout-main, .ms-TeachingBubble .ms-Callout-smallbeak { background: rgb(0, 120, 215); }.ms-Button.ms-TeachingBubble-primaryButton { background-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-primaryButton .ms-Button-label { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(0, 120, 215); }.ms-Button.ms-TeachingBubble-primaryButton:hover { background-color: rgb(222, 236, 249); border-color: rgb(222, 236, 249); }.ms-Button.ms-TeachingBubble-primaryButton:focus { background-color: rgb(222, 236, 249); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-primaryButton:active { background-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-secondaryButton { background-color: rgb(0, 120, 215); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-secondaryButton .ms-Button-label { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-secondaryButton:hover { background-color: rgb(16, 110, 190); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-secondaryButton:focus { background-color: rgb(16, 110, 190); border-color: rgb(255, 255, 255); }.ms-Button.ms-TeachingBubble-secondaryButton:active { background-color: rgb(0, 120, 215); border-color: rgb(255, 255, 255); }</style><style>.ms-Toggle { font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; box-sizing: border-box; margin: 0px 0px 8px; padding: 0px; box-shadow: none; color: rgb(51, 51, 51); position: relative; display: block; user-select: none; }.ms-Toggle.is-enabled .ms-Toggle-button { cursor: pointer; }.ms-Toggle.is-enabled .ms-Toggle-background { border: 1px solid rgb(118, 118, 118); }@media not all {<br> .ms-Toggle.is-enabled .ms-Toggle-thumb { background-color: rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Toggle.is-enabled .ms-Toggle-thumb { background-color: rgb(0, 0, 0); }<br>}.ms-Toggle.is-enabled .ms-Toggle-slider:hover .ms-Toggle-background { border: 1px solid rgb(0, 0, 0); }.ms-Toggle.is-enabled .ms-Toggle-slider:hover .ms-Toggle-thumb { background: rgb(0, 0, 0); }.ms-Toggle.is-enabled.is-checked .ms-Toggle-background { background: rgb(0, 120, 215); border: 1px solid rgb(0, 120, 215); }@media not all {<br> .ms-Toggle.is-enabled.is-checked .ms-Toggle-background { background-color: rgb(255, 255, 255); }<br>}@media not all {<br> .ms-Toggle.is-enabled.is-checked .ms-Toggle-background { background-color: rgb(0, 0, 0); }<br>}.ms-Toggle.is-enabled.is-checked .ms-Toggle-thumb { background: rgb(255, 255, 255); }html[dir="ltr"] .ms-Toggle.is-enabled.is-checked .ms-Toggle-thumb { left: 28px; }html[dir="rtl"] .ms-Toggle.is-enabled.is-checked .ms-Toggle-thumb { right: 28px; }@media not all {<br> .ms-Toggle.is-enabled.is-checked .ms-Toggle-thumb { background-color: rgb(0, 0, 0); }<br>}@media not all {<br> .ms-Toggle.is-enabled.is-checked .ms-Toggle-thumb { background-color: rgb(255, 255, 255); }<br>}.ms-Toggle.is-enabled.is-checked .ms-Toggle-slider:hover .ms-Toggle-background { border: 1px solid rgb(0, 120, 215); background: rgb(43, 136, 216); }.ms-Toggle.is-enabled.is-checked .ms-Toggle-slider:hover .ms-Toggle-thumb { background: rgb(255, 255, 255); }.ms-Toggle.is-disabled .ms-Toggle-thumb { background: rgb(200, 200, 200); }@media not all {<br> .ms-Toggle.is-disabled .ms-Toggle-thumb { background-color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Toggle.is-disabled .ms-Toggle-thumb { background-color: rgb(96, 0, 0); }<br>}.ms-Toggle.is-disabled .ms-Toggle-background { border: 1px solid rgb(200, 200, 200); }@media not all {<br> .ms-Toggle.is-disabled .ms-Toggle-background { border-color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Toggle.is-disabled .ms-Toggle-background { border-color: rgb(96, 0, 0); }<br>}.ms-Toggle.is-disabled.is-checked .ms-Toggle-background { background: rgb(200, 200, 200); border: 1px solid transparent; }@media not all {<br> .ms-Toggle.is-disabled.is-checked .ms-Toggle-background { background-color: rgb(0, 255, 0); }<br>}@media not all {<br> .ms-Toggle.is-disabled.is-checked .ms-Toggle-background { background-color: rgb(96, 0, 0); }<br>}.ms-Toggle.is-disabled.is-checked .ms-Toggle-thumb { background: rgb(234, 234, 234); }html[dir="ltr"] .ms-Toggle.is-disabled.is-checked .ms-Toggle-thumb { left: 28px; }html[dir="rtl"] .ms-Toggle.is-disabled.is-checked .ms-Toggle-thumb { right: 28px; }@media not all {<br> .ms-Toggle.is-disabled.is-checked .ms-Toggle-thumb { background-color: rgb(0, 0, 0); }<br>}@media not all {<br> .ms-Toggle.is-disabled.is-checked .ms-Toggle-thumb { background-color: rgb(255, 255, 255); }<br>}.ms-Toggle-innerContainer { display: inline-block; }.ms-Fabric.is-focusVisible .ms-Toggle.is-enabled .ms-Toggle-button:focus + .ms-Toggle-background .ms-Toggle-focus { border: 1px solid rgb(102, 102, 102); }.ms-Toggle-button { position: absolute; opacity: 0; left: 0px; top: 0px; width: 100%; height: 100%; margin: 0px; padding: 0px; }.ms-Toggle-slider { position: relative; }.ms-Toggle-background { display: inline-block; position: absolute; width: 44px; height: 20px; box-sizing: border-box; vertical-align: middle; border-radius: 20px; cursor: pointer; transition: all 0.1s ease; pointer-events: none; }.ms-Toggle-thumb { position: absolute; width: 10px; height: 10px; border-radius: 10px; top: 4px; background: rgb(102, 102, 102); transition: all 0.1s ease; }html[dir="ltr"] .ms-Toggle-thumb { left: 4px; }html[dir="rtl"] .ms-Toggle-thumb { right: 4px; }.ms-Toggle-stateText.ms-Label { display: inline-block; vertical-align: top; line-height: 20px; padding: 0px; }html[dir="ltr"] .ms-Toggle-stateText.ms-Label { margin-left: 54px; }html[dir="rtl"] .ms-Toggle-stateText.ms-Label { margin-right: 54px; }.ms-Toggle-focus { position: absolute; left: -3px; top: -3px; right: -3px; bottom: -3px; box-sizing: border-box; outline: transparent; }</style><style>.ms-Tooltip { max-width: 364px; background: rgb(255, 255, 255); padding: 8px; }.ms-Tooltip-subText { margin: 0px; font-size: 12px; color: rgb(51, 51, 51); }.ms-TooltipHost { display: inline-block; }</style><style>._3DDxOFt0j8Iwb4yb81WJLH { border-style: solid; width: 346px; padding: 10px; border-width: 1px; }._1eGK3COeBJeYUf7DlRqsv- { top: 0px; right: 0px; position: absolute !important; }._1eGK3COeBJeYUf7DlRqsv- ._1WsGvhbqHMuIf7jFGg2-V1 { z-index: 10; background-color: rgb(100, 149, 237) !important; color: rgb(255, 255, 255) !important; font-size: 14px !important; }</style><style>.ms-u-borderBox, .ms-u-borderBox::after, .ms-u-borderBox::before { box-sizing: border-box; }.ms-u-borderBase { border: 1px solid; }.ms-u-clearfix { }.ms-u-clearfix::after, .ms-u-clearfix::before { display: table; content: ""; line-height: 0; }.ms-u-clearfix::after { clear: both; }.ms-u-normalize { box-sizing: border-box; margin: 0px; padding: 0px; box-shadow: none; }.ms-u-textAlignLeft { text-align: left; }.ms-u-textAlignCenter { text-align: center; }.ms-u-textAlignRight { text-align: right; }.ms-u-screenReaderOnly { position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px 0px 0px 0px); border: 0px; }.ms-u-textTruncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-wrap: normal; }.ms-u-noWrap { white-space: nowrap; }.ms-bgColor-themeDark, .ms-bgColor-themeDark--hover:hover { background-color: rgb(0, 90, 158); }.ms-bgColor-themeDarkAlt, .ms-bgColor-themeDarkAlt--hover:hover { background-color: rgb(16, 110, 190); }.ms-bgColor-themeDarker, .ms-bgColor-themeDarker--hover:hover { background-color: rgb(0, 69, 120); }.ms-bgColor-themePrimary, .ms-bgColor-themePrimary--hover:hover { background-color: rgb(0, 120, 215); }.ms-bgColor-themeSecondary, .ms-bgColor-themeSecondary--hover:hover { background-color: rgb(36, 136, 216); }.ms-bgColor-themeTertiary, .ms-bgColor-themeTertiary--hover:hover { background-color: rgb(105, 175, 229); }.ms-bgColor-themeLight, .ms-bgColor-themeLight--hover:hover { background-color: rgb(179, 214, 242); }.ms-bgColor-themeLighter, .ms-bgColor-themeLighter--hover:hover { background-color: rgb(222, 236, 249); }.ms-bgColor-themeLighterAlt, .ms-bgColor-themeLighterAlt--hover:hover { background-color: rgb(239, 246, 252); }.ms-bgColor-black, .ms-bgColor-black--hover:hover { background-color: rgb(0, 0, 0); }.ms-bgColor-neutralDark, .ms-bgColor-neutralDark--hover:hover { background-color: rgb(33, 33, 33); }.ms-bgColor-neutralPrimary, .ms-bgColor-neutralPrimary--hover:hover { background-color: rgb(51, 51, 51); }.ms-bgColor-neutralPrimaryAlt, .ms-bgColor-neutralPrimaryAlt--hover:hover { background-color: rgb(60, 60, 60); }.ms-bgColor-neutralSecondary, .ms-bgColor-neutralSecondary--hover:hover { background-color: rgb(102, 102, 102); }.ms-bgColor-neutralSecondaryAlt, .ms-bgColor-neutralSecondaryAlt--hover:hover { background-color: rgb(118, 118, 118); }.ms-bgColor-neutralTertiary, .ms-bgColor-neutralTertiary--hover:hover { background-color: rgb(166, 166, 166); }.ms-bgColor-neutralTertiaryAlt, .ms-bgColor-neutralTertiaryAlt--hover:hover { background-color: rgb(200, 200, 200); }.ms-bgColor-neutralLight, .ms-bgColor-neutralLight--hover:hover { background-color: rgb(234, 234, 234); }.ms-bgColor-neutralLighter, .ms-bgColor-neutralLighter--hover:hover { background-color: rgb(244, 244, 244); }.ms-bgColor-neutralLighterAlt, .ms-bgColor-neutralLighterAlt--hover:hover { background-color: rgb(248, 248, 248); }.ms-bgColor-white, .ms-bgColor-white--hover:hover { background-color: rgb(255, 255, 255); }.ms-bgColor-yellow { background-color: rgb(255, 185, 0); }.ms-bgColor-yellowLight { background-color: rgb(255, 241, 0); }.ms-bgColor-orange { background-color: rgb(216, 59, 1); }.ms-bgColor-orangeLight { background-color: rgb(234, 67, 0); }.ms-bgColor-orangeLighter { background-color: rgb(255, 140, 0); }.ms-bgColor-redDark { background-color: rgb(168, 0, 0); }.ms-bgColor-red { background-color: rgb(232, 17, 35); }.ms-bgColor-magentaDark { background-color: rgb(92, 0, 92); }.ms-bgColor-magenta { background-color: rgb(180, 0, 158); }.ms-bgColor-magentaLight { background-color: rgb(227, 0, 140); }.ms-bgColor-purpleDark { background-color: rgb(50, 20, 90); }.ms-bgColor-purple { background-color: rgb(92, 45, 145); }.ms-bgColor-purpleLight { background-color: rgb(180, 160, 255); }.ms-bgColor-blueDark { background-color: rgb(0, 32, 80); }.ms-bgColor-blueMid { background-color: rgb(0, 24, 143); }.ms-bgColor-blue { background-color: rgb(0, 120, 215); }.ms-bgColor-blueLight { background-color: rgb(0, 188, 242); }.ms-bgColor-tealDark { background-color: rgb(0, 75, 80); }.ms-bgColor-teal { background-color: rgb(0, 130, 114); }.ms-bgColor-tealLight { background-color: rgb(0, 178, 148); }.ms-bgColor-greenDark { background-color: rgb(0, 75, 28); }.ms-bgColor-green { background-color: rgb(16, 124, 16); }.ms-bgColor-greenLight { background-color: rgb(186, 216, 10); }.ms-bgColor-info { background-color: rgb(244, 244, 244); }.ms-bgColor-success { background-color: rgb(223, 246, 221); }.ms-bgColor-severeWarning { background-color: rgb(254, 217, 204); }.ms-bgColor-warning { background-color: rgb(255, 244, 206); }.ms-bgColor-error { background-color: rgb(253, 231, 233); }.ms-borderColor-themeDark, .ms-borderColor-themeDark--hover:hover { border-color: rgb(0, 90, 158); }.ms-borderColor-themeDarkAlt, .ms-borderColor-themeDarkAlt--hover:hover { border-color: rgb(16, 110, 190); }.ms-borderColor-themeDarker, .ms-borderColor-themeDarker--hover:hover { border-color: rgb(0, 69, 120); }.ms-borderColor-themePrimary, .ms-borderColor-themePrimary--hover:hover { border-color: rgb(0, 120, 215); }.ms-borderColor-themeSecondary, .ms-borderColor-themeSecondary--hover:hover { border-color: rgb(36, 136, 216); }.ms-borderColor-themeTertiary, .ms-borderColor-themeTertiary--hover:hover { border-color: rgb(105, 175, 229); }.ms-borderColor-themeLight, .ms-borderColor-themeLight--hover:hover { border-color: rgb(179, 214, 242); }.ms-borderColor-themeLighter, .ms-borderColor-themeLighter--hover:hover { border-color: rgb(222, 236, 249); }.ms-borderColor-themeLighterAlt, .ms-borderColor-themeLighterAlt--hover:hover { border-color: rgb(239, 246, 252); }.ms-borderColor-black, .ms-borderColor-black--hover:hover { border-color: rgb(0, 0, 0); }.ms-borderColor-neutralDark, .ms-borderColor-neutralDark--hover:hover { border-color: rgb(33, 33, 33); }.ms-borderColor-neutralPrimary, .ms-borderColor-neutralPrimary--hover:hover { border-color: rgb(51, 51, 51); }.ms-borderColor-neutralPrimaryAlt, .ms-borderColor-neutralPrimaryAlt--hover:hover { border-color: rgb(60, 60, 60); }.ms-borderColor-neutralSecondary, .ms-borderColor-neutralSecondary--hover:hover { border-color: rgb(102, 102, 102); }.ms-borderColor-neutralSecondaryAlt, .ms-borderColor-neutralSecondaryAlt--hover:hover { border-color: rgb(118, 118, 118); }.ms-borderColor-neutralTertiary, .ms-borderColor-neutralTertiary--hover:hover { border-color: rgb(166, 166, 166); }.ms-borderColor-neutralTertiaryAlt, .ms-borderColor-neutralTertiaryAlt--hover:hover { border-color: rgb(200, 200, 200); }.ms-borderColor-neutralLight, .ms-borderColor-neutralLight--hover:hover { border-color: rgb(234, 234, 234); }.ms-borderColor-neutralLighter, .ms-borderColor-neutralLighter--hover:hover { border-color: rgb(244, 244, 244); }.ms-borderColor-neutralLighterAlt, .ms-borderColor-neutralLighterAlt--hover:hover { border-color: rgb(248, 248, 248); }.ms-borderColor-white, .ms-borderColor-white--hover:hover { border-color: rgb(255, 255, 255); }.ms-borderColor-yellow { border-color: rgb(255, 185, 0); }.ms-borderColor-yellowLight { border-color: rgb(255, 241, 0); }.ms-borderColor-orange { border-color: rgb(216, 59, 1); }.ms-borderColor-orangeLight { border-color: rgb(234, 67, 0); }.ms-borderColor-orangeLighter { border-color: rgb(255, 140, 0); }.ms-borderColor-redDark { border-color: rgb(168, 0, 0); }.ms-borderColor-red { border-color: rgb(232, 17, 35); }.ms-borderColor-magentaDark { border-color: rgb(92, 0, 92); }.ms-borderColor-magenta { border-color: rgb(180, 0, 158); }.ms-borderColor-magentaLight { border-color: rgb(227, 0, 140); }.ms-borderColor-purpleDark { border-color: rgb(50, 20, 90); }.ms-borderColor-purple { border-color: rgb(92, 45, 145); }.ms-borderColor-purpleLight { border-color: rgb(180, 160, 255); }.ms-borderColor-blueDark { border-color: rgb(0, 32, 80); }.ms-borderColor-blueMid { border-color: rgb(0, 24, 143); }.ms-borderColor-blue { border-color: rgb(0, 120, 215); }.ms-borderColor-blueLight { border-color: rgb(0, 188, 242); }.ms-borderColor-tealDark { border-color: rgb(0, 75, 80); }.ms-borderColor-teal { border-color: rgb(0, 130, 114); }.ms-borderColor-tealLight { border-color: rgb(0, 178, 148); }.ms-borderColor-greenDark { border-color: rgb(0, 75, 28); }.ms-borderColor-green { border-color: rgb(16, 124, 16); }.ms-borderColor-greenLight { border-color: rgb(186, 216, 10); }.ms-borderColorTop-themePrimary, .ms-borderColorTop-themePrimary--hover:hover { border-top-color: rgb(0, 120, 215); }.ms-fontWeight-light, .ms-fontWeight-light--hover:hover { font-weight: 100; }.ms-fontWeight-semilight, .ms-fontWeight-semilight--hover:hover { font-weight: 300; }.ms-fontWeight-regular, .ms-fontWeight-regular--hover:hover { font-weight: 400; }.ms-fontWeight-semibold, .ms-fontWeight-semibold--hover:hover { font-weight: 600; }.ms-fontSize-su { font-size: 42px; }.ms-fontSize-xxl { font-size: 28px; }.ms-fontSize-xl { font-size: 21px; }.ms-fontSize-l { font-size: 17px; }.ms-fontSize-mPlus { font-size: 15px; }.ms-fontSize-m { font-size: 14px; }.ms-fontSize-sPlus { font-size: 13px; }.ms-fontSize-s { font-size: 12px; }.ms-fontSize-xs { font-size: 11px; }.ms-fontSize-mi { font-size: 10px; }.ms-fontColor-themeDarker, .ms-fontColor-themeDarker--hover:hover { color: rgb(0, 69, 120); }.ms-fontColor-themeDark, .ms-fontColor-themeDark--hover:hover { color: rgb(0, 90, 158); }.ms-fontColor-themeDarkAlt, .ms-fontColor-themeDarkAlt--hover:hover { color: rgb(16, 110, 190); }.ms-fontColor-themePrimary, .ms-fontColor-themePrimary--hover:hover { color: rgb(0, 120, 215); }.ms-fontColor-themeSecondary, .ms-fontColor-themeSecondary--hover:hover { color: rgb(36, 136, 216); }.ms-fontColor-themeTertiary, .ms-fontColor-themeTertiary--hover:hover { color: rgb(105, 175, 229); }.ms-fontColor-themeLight, .ms-fontColor-themeLight--hover:hover { color: rgb(179, 214, 242); }.ms-fontColor-themeLighter, .ms-fontColor-themeLighter--hover:hover { color: rgb(222, 236, 249); }.ms-fontColor-themeLighterAlt, .ms-fontColor-themeLighterAlt--hover:hover { color: rgb(239, 246, 252); }.ms-fontColor-black, .ms-fontColor-black--hover:hover { color: rgb(0, 0, 0); }.ms-fontColor-neutralDark, .ms-fontColor-neutralDark--hover:hover { color: rgb(33, 33, 33); }.ms-fontColor-neutralPrimary, .ms-fontColor-neutralPrimary--hover:hover { color: rgb(51, 51, 51); }.ms-fontColor-neutralPrimaryAlt, .ms-fontColor-neutralPrimaryAlt--hover:hover { color: rgb(60, 60, 60); }.ms-fontColor-neutralSecondary, .ms-fontColor-neutralSecondary--hover:hover { color: rgb(102, 102, 102); }.ms-fontColor-neutralSecondaryAlt, .ms-fontColor-neutralSecondaryAlt--hover:hover { color: rgb(118, 118, 118); }.ms-fontColor-neutralTertiary, .ms-fontColor-neutralTertiary--hover:hover { color: rgb(166, 166, 166); }.ms-fontColor-neutralTertiaryAlt, .ms-fontColor-neutralTertiaryAlt--hover:hover { color: rgb(200, 200, 200); }.ms-fontColor-neutralLight, .ms-fontColor-neutralLight--hover:hover { color: rgb(234, 234, 234); }.ms-fontColor-neutralLighter, .ms-fontColor-neutralLighter--hover:hover { color: rgb(244, 244, 244); }.ms-fontColor-neutralLighterAlt, .ms-fontColor-neutralLighterAlt--hover:hover { color: rgb(248, 248, 248); }.ms-fontColor-white, .ms-fontColor-white--hover:hover { color: rgb(255, 255, 255); }.ms-fontColor-yellow, .ms-fontColor-yellow--hover:hover { color: rgb(255, 185, 0); }.ms-fontColor-yellowLight, .ms-fontColor-yellowLight--hover:hover { color: rgb(255, 241, 0); }.ms-fontColor-orange, .ms-fontColor-orange--hover:hover { color: rgb(216, 59, 1); }.ms-fontColor-orangeLight, .ms-fontColor-orangeLight--hover:hover { color: rgb(234, 67, 0); }.ms-fontColor-orangeLighter, .ms-fontColor-orangeLighter--hover:hover { color: rgb(255, 140, 0); }.ms-fontColor-redDark, .ms-fontColor-redDark--hover:hover { color: rgb(168, 0, 0); }.ms-fontColor-red, .ms-fontColor-red--hover:hover { color: rgb(232, 17, 35); }.ms-fontColor-magentaDark, .ms-fontColor-magentaDark--hover:hover { color: rgb(92, 0, 92); }.ms-fontColor-magenta, .ms-fontColor-magenta--hover:hover { color: rgb(180, 0, 158); }.ms-fontColor-magentaLight, .ms-fontColor-magentaLight--hover:hover { color: rgb(227, 0, 140); }.ms-fontColor-purpleDark, .ms-fontColor-purpleDark--hover:hover { color: rgb(50, 20, 90); }.ms-fontColor-purple, .ms-fontColor-purple--hover:hover { color: rgb(92, 45, 145); }.ms-fontColor-purpleLight, .ms-fontColor-purpleLight--hover:hover { color: rgb(180, 160, 255); }.ms-fontColor-blueDark, .ms-fontColor-blueDark--hover:hover { color: rgb(0, 32, 80); }.ms-fontColor-blueMid, .ms-fontColor-blueMid--hover:hover { color: rgb(0, 24, 143); }.ms-fontColor-blue, .ms-fontColor-blue--hover:hover { color: rgb(0, 120, 215); }.ms-fontColor-blueLight, .ms-fontColor-blueLight--hover:hover { color: rgb(0, 188, 242); }.ms-fontColor-tealDark, .ms-fontColor-tealDark--hover:hover { color: rgb(0, 75, 80); }.ms-fontColor-teal, .ms-fontColor-teal--hover:hover { color: rgb(0, 130, 114); }.ms-fontColor-tealLight, .ms-fontColor-tealLight--hover:hover { color: rgb(0, 178, 148); }.ms-fontColor-greenDark, .ms-fontColor-greenDark--hover:hover { color: rgb(0, 75, 28); }.ms-fontColor-green, .ms-fontColor-green--hover:hover { color: rgb(16, 124, 16); }.ms-fontColor-greenLight, .ms-fontColor-greenLight--hover:hover { color: rgb(186, 216, 10); }.ms-fontColor-info, .ms-fontColor-info--hover:hover { color: rgb(118, 118, 118); }.ms-fontColor-success, .ms-fontColor-success--hover:hover { color: rgb(16, 124, 16); }.ms-fontColor-alert, .ms-fontColor-alert--hover:hover { color: rgb(216, 59, 1); }.ms-fontColor-warning, .ms-fontColor-warning--hover:hover { color: rgb(118, 118, 118); }.ms-fontColor-severeWarning, .ms-fontColor-severeWarning--hover:hover { color: rgb(216, 59, 1); }.ms-fontColor-error, .ms-fontColor-error--hover:hover { color: rgb(168, 0, 0); }@font-face { font-family: FabricMDL2Icons; src: url("https://appsforoffice.microsoft.com/fabric/fonts/icons/FabricMDL2Icons.woff") format("woff"), url("https://appsforoffice.microsoft.com/fabric/fonts/icons/FabricMDL2Icons.ttf") format("truetype"); font-weight: 400; font-style: normal; }.ms-Icon, .ms-Icon::before { -webkit-font-smoothing: antialiased; display: inline-block; font-family: FabricMDL2Icons; font-style: normal; font-weight: 400; speak: none; }.ms-Icon--DecreaseIndentLegacy::before { content: ""; }.ms-Icon--IncreaseIndentLegacy::before { content: ""; }.ms-Icon--GlobalNavButton::before { content: ""; }.ms-Icon--InternetSharing::before { content: ""; }.ms-Icon--Brightness::before { content: ""; }.ms-Icon--MapPin::before { content: ""; }.ms-Icon--Airplane::before { content: ""; }.ms-Icon--Tablet::before { content: ""; }.ms-Icon--QuickNote::before { content: ""; }.ms-Icon--ChevronDown::before { content: ""; }.ms-Icon--ChevronUp::before { content: ""; }.ms-Icon--Edit::before { content: ""; }.ms-Icon--Add::before { content: ""; }.ms-Icon--Cancel::before { content: ""; }.ms-Icon--More::before { content: ""; }.ms-Icon--Settings::before { content: ""; }.ms-Icon--Video::before { content: ""; }.ms-Icon--Mail::before { content: ""; }.ms-Icon--People::before { content: ""; }.ms-Icon--Phone::before { content: ""; }.ms-Icon--Pin::before { content: ""; }.ms-Icon--Shop::before { content: ""; }.ms-Icon--Link::before { content: ""; }.ms-Icon--Filter::before { content: ""; }.ms-Icon--Zoom::before { content: ""; }.ms-Icon--ZoomOut::before { content: ""; }.ms-Icon--Microphone::before { content: ""; }.ms-Icon--Search::before { content: ""; }.ms-Icon--Camera::before { content: ""; }.ms-Icon--Attach::before { content: ""; }.ms-Icon--Send::before { content: ""; }.ms-Icon--FavoriteList::before { content: ""; }.ms-Icon--PageSolid::before { content: ""; }.ms-Icon--Forward::before { content: ""; }.ms-Icon--Back::before { content: ""; }.ms-Icon--Refresh::before { content: ""; }.ms-Icon--Share::before { content: ""; }.ms-Icon--Lock::before { content: ""; }.ms-Icon--EMI::before { content: ""; }.ms-Icon--MiniLink::before { content: ""; }.ms-Icon--Blocked::before { content: ""; }.ms-Icon--FavoriteStar::before { content: ""; }.ms-Icon--FavoriteStarFill::before { content: ""; }.ms-Icon--ReadingMode::before { content: ""; }.ms-Icon--Remove::before { content: ""; }.ms-Icon--Checkbox::before { content: ""; }.ms-Icon--CheckboxComposite::before { content: ""; }.ms-Icon--CheckboxIndeterminate::before { content: ""; }.ms-Icon--CheckMark::before { content: ""; }.ms-Icon--BackToWindow::before { content: ""; }.ms-Icon--FullScreen::before { content: ""; }.ms-Icon--Print::before { content: ""; }.ms-Icon--Up::before { content: ""; }.ms-Icon--Down::before { content: ""; }.ms-Icon--Delete::before { content: ""; }.ms-Icon--Save::before { content: ""; }.ms-Icon--Sad::before { content: ""; }.ms-Icon--SIPMove::before { content: ""; }.ms-Icon--EraseTool::before { content: ""; }.ms-Icon--GripperTool::before { content: ""; }.ms-Icon--Dialpad::before { content: ""; }.ms-Icon--PageLeft::before { content: ""; }.ms-Icon--PageRight::before { content: ""; }.ms-Icon--MultiSelect::before { content: ""; }.ms-Icon--Play::before { content: ""; }.ms-Icon--Pause::before { content: ""; }.ms-Icon--ChevronLeft::before { content: ""; }.ms-Icon--ChevronRight::before { content: ""; }.ms-Icon--Emoji2::before { content: ""; }.ms-Icon--System::before { content: ""; }.ms-Icon--Globe::before { content: ""; }.ms-Icon--ContactInfo::before { content: ""; }.ms-Icon--Unpin::before { content: ""; }.ms-Icon--Contact::before { content: ""; }.ms-Icon--Memo::before { content: ""; }.ms-Icon--WindowsLogo::before { content: ""; }.ms-Icon--Error::before { content: ""; }.ms-Icon--Unlock::before { content: ""; }.ms-Icon--Calendar::before { content: ""; }.ms-Icon--Megaphone::before { content: ""; }.ms-Icon--AutoEnhanceOn::before { content: ""; }.ms-Icon--AutoEnhanceOff::before { content: ""; }.ms-Icon--Color::before { content: ""; }.ms-Icon--SaveAs::before { content: ""; }.ms-Icon--Light::before { content: ""; }.ms-Icon--Filters::before { content: ""; }.ms-Icon--Contrast::before { content: ""; }.ms-Icon--Redo::before { content: ""; }.ms-Icon--Undo::before { content: ""; }.ms-Icon--Album::before { content: ""; }.ms-Icon--Rotate::before { content: ""; }.ms-Icon--PanoIndicator::before { content: ""; }.ms-Icon--ThumbnailView::before { content: ""; }.ms-Icon--Package::before { content: ""; }.ms-Icon--Warning::before { content: ""; }.ms-Icon--Financial::before { content: ""; }.ms-Icon--ShoppingCart::before { content: ""; }.ms-Icon--Train::before { content: ""; }.ms-Icon--Flag::before { content: ""; }.ms-Icon--Move::before { content: ""; }.ms-Icon--Page::before { content: ""; }.ms-Icon--TouchPointer::before { content: ""; }.ms-Icon--Merge::before { content: ""; }.ms-Icon--TurnRight::before { content: ""; }.ms-Icon--Ferry::before { content: ""; }.ms-Icon--Tab::before { content: ""; }.ms-Icon--Admin::before { content: ""; }.ms-Icon--TVMonitor::before { content: ""; }.ms-Icon--Speakers::before { content: ""; }.ms-Icon--Car::before { content: ""; }.ms-Icon--EatDrink::before { content: ""; }.ms-Icon--LocationCircle::before { content: ""; }.ms-Icon--Home::before { content: ""; }.ms-Icon--SwitcherStartEnd::before { content: ""; }.ms-Icon--IncidentTriangle::before { content: ""; }.ms-Icon--Touch::before { content: ""; }.ms-Icon--MapDirections::before { content: ""; }.ms-Icon--History::before { content: ""; }.ms-Icon--Location::before { content: ""; }.ms-Icon--Work::before { content: ""; }.ms-Icon--Recent::before { content: ""; }.ms-Icon--Hotel::before { content: ""; }.ms-Icon--LocationDot::before { content: ""; }.ms-Icon--News::before { content: ""; }.ms-Icon--Chat::before { content: ""; }.ms-Icon--Group::before { content: ""; }.ms-Icon--View::before { content: ""; }.ms-Icon--Clear::before { content: ""; }.ms-Icon--Sync::before { content: ""; }.ms-Icon--Download::before { content: ""; }.ms-Icon--Help::before { content: ""; }.ms-Icon--Upload::before { content: ""; }.ms-Icon--Emoji::before { content: ""; }.ms-Icon--MailForward::before { content: ""; }.ms-Icon--ClosePane::before { content: ""; }.ms-Icon--OpenPane::before { content: ""; }.ms-Icon--PreviewLink::before { content: ""; }.ms-Icon--ZoomIn::before { content: ""; }.ms-Icon--Bookmarks::before { content: ""; }.ms-Icon--Document::before { content: ""; }.ms-Icon--ProtectedDocument::before { content: ""; }.ms-Icon--OpenInNewWindow::before { content: ""; }.ms-Icon--MailFill::before { content: ""; }.ms-Icon--ViewAll::before { content: ""; }.ms-Icon--Switch::before { content: ""; }.ms-Icon--Rename::before { content: ""; }.ms-Icon--Folder::before { content: ""; }.ms-Icon--Picture::before { content: ""; }.ms-Icon--ShowResults::before { content: ""; }.ms-Icon--Message::before { content: ""; }.ms-Icon--CalendarDay::before { content: ""; }.ms-Icon--CalendarWeek::before { content: ""; }.ms-Icon--MailReplyAll::before { content: ""; }.ms-Icon--Read::before { content: ""; }.ms-Icon--PaymentCard::before { content: ""; }.ms-Icon--Copy::before { content: ""; }.ms-Icon--Important::before { content: ""; }.ms-Icon--MailReply::before { content: ""; }.ms-Icon--Sort::before { content: ""; }.ms-Icon--GotoToday::before { content: ""; }.ms-Icon--Font::before { content: ""; }.ms-Icon--FontColor::before { content: ""; }.ms-Icon--FolderFill::before { content: ""; }.ms-Icon--Permissions::before { content: ""; }.ms-Icon--DisableUpdates::before { content: ""; }.ms-Icon--Unfavorite::before { content: ""; }.ms-Icon--Italic::before { content: ""; }.ms-Icon--Underline::before { content: ""; }.ms-Icon--Bold::before { content: ""; }.ms-Icon--MoveToFolder::before { content: ""; }.ms-Icon--Dislike::before { content: ""; }.ms-Icon--Like::before { content: ""; }.ms-Icon--AlignRight::before { content: ""; }.ms-Icon--AlignCenter::before { content: ""; }.ms-Icon--AlignLeft::before { content: ""; }.ms-Icon--OpenFile::before { content: ""; }.ms-Icon--FontDecrease::before { content: ""; }.ms-Icon--FontIncrease::before { content: ""; }.ms-Icon--FontSize::before { content: ""; }.ms-Icon--CellPhone::before { content: ""; }.ms-Icon--Tag::before { content: ""; }.ms-Icon--Library::before { content: ""; }.ms-Icon--PostUpdate::before { content: ""; }.ms-Icon--NewFolder::before { content: ""; }.ms-Icon--CalendarReply::before { content: ""; }.ms-Icon--UnsyncFolder::before { content: ""; }.ms-Icon--SyncFolder::before { content: ""; }.ms-Icon--BlockContact::before { content: ""; }.ms-Icon--AddFriend::before { content: ""; }.ms-Icon--BulletedList::before { content: ""; }.ms-Icon--Preview::before { content: ""; }.ms-Icon--DockLeft::before { content: ""; }.ms-Icon--DockRight::before { content: ""; }.ms-Icon--Repair::before { content: ""; }.ms-Icon--Accounts::before { content: ""; }.ms-Icon--RadioBullet::before { content: ""; }.ms-Icon--Stopwatch::before { content: ""; }.ms-Icon--Clock::before { content: ""; }.ms-Icon--AlarmClock::before { content: ""; }.ms-Icon--Hospital::before { content: ""; }.ms-Icon--Timer::before { content: ""; }.ms-Icon--FullCircleMask::before { content: ""; }.ms-Icon--LocationFill::before { content: ""; }.ms-Icon--ChromeMinimize::before { content: ""; }.ms-Icon--Annotation::before { content: ""; }.ms-Icon--ChromeClose::before { content: ""; }.ms-Icon--Accept::before { content: ""; }.ms-Icon--Fingerprint::before { content: ""; }.ms-Icon--Handwriting::before { content: ""; }.ms-Icon--StackIndicator::before { content: ""; }.ms-Icon--Completed::before { content: ""; }.ms-Icon--Label::before { content: ""; }.ms-Icon--FlickDown::before { content: ""; }.ms-Icon--FlickUp::before { content: ""; }.ms-Icon--FlickLeft::before { content: ""; }.ms-Icon--FlickRight::before { content: ""; }.ms-Icon--MusicInCollection::before { content: ""; }.ms-Icon--OneDrive::before { content: ""; }.ms-Icon--CompassNW::before { content: ""; }.ms-Icon--Code::before { content: ""; }.ms-Icon--LightningBolt::before { content: ""; }.ms-Icon--Info::before { content: ""; }.ms-Icon--CalculatorAddition::before { content: ""; }.ms-Icon--CalculatorSubtract::before { content: ""; }.ms-Icon--PrintfaxPrinterFile::before { content: ""; }.ms-Icon--Health::before { content: ""; }.ms-Icon--ChevronUpSmall::before { content: ""; }.ms-Icon--ChevronDownSmall::before { content: ""; }.ms-Icon--ChevronLeftSmall::before { content: ""; }.ms-Icon--ChevronRightSmall::before { content: ""; }.ms-Icon--ChevronUpMed::before { content: ""; }.ms-Icon--ChevronDownMed::before { content: ""; }.ms-Icon--ChevronLeftMed::before { content: ""; }.ms-Icon--ChevronRightMed::before { content: ""; }.ms-Icon--Dictionary::before { content: ""; }.ms-Icon--ChromeBack::before { content: ""; }.ms-Icon--PC1::before { content: ""; }.ms-Icon--PresenceChickletVideo::before { content: ""; }.ms-Icon--Reply::before { content: ""; }.ms-Icon--DoubleChevronLeftMed::before { content: ""; }.ms-Icon--Volume0::before { content: ""; }.ms-Icon--Volume1::before { content: ""; }.ms-Icon--Volume2::before { content: ""; }.ms-Icon--Volume3::before { content: ""; }.ms-Icon--CaretHollow::before { content: ""; }.ms-Icon--CaretSolid::before { content: ""; }.ms-Icon--Pinned::before { content: ""; }.ms-Icon--PinnedFill::before { content: ""; }.ms-Icon--Chart::before { content: ""; }.ms-Icon--BidiLtr::before { content: ""; }.ms-Icon--BidiRtl::before { content: ""; }.ms-Icon--RevToggleKey::before { content: ""; }.ms-Icon--RightDoubleQuote::before { content: ""; }.ms-Icon--Sunny::before { content: ""; }.ms-Icon--CloudWeather::before { content: ""; }.ms-Icon--Cloudy::before { content: ""; }.ms-Icon--PartlyCloudyDay::before { content: ""; }.ms-Icon--PartlyCloudyNight::before { content: ""; }.ms-Icon--ClearNight::before { content: ""; }.ms-Icon--RainShowersDay::before { content: ""; }.ms-Icon--Rain::before { content: ""; }.ms-Icon--Thunderstorms::before { content: ""; }.ms-Icon--RainSnow::before { content: ""; }.ms-Icon--BlowingSnow::before { content: ""; }.ms-Icon--Frigid::before { content: ""; }.ms-Icon--Fog::before { content: ""; }.ms-Icon--Squalls::before { content: ""; }.ms-Icon--Duststorm::before { content: ""; }.ms-Icon--Precipitation::before { content: ""; }.ms-Icon--Ringer::before { content: ""; }.ms-Icon--PDF::before { content: ""; }.ms-Icon--SortLines::before { content: ""; }.ms-Icon--Ribbon::before { content: ""; }.ms-Icon--CheckList::before { content: ""; }.ms-Icon--Generate::before { content: ""; }.ms-Icon--Equalizer::before { content: ""; }.ms-Icon--BarChartHorizontal::before { content: ""; }.ms-Icon--Freezing::before { content: ""; }.ms-Icon--SnowShowerDay::before { content: ""; }.ms-Icon--HailDay::before { content: ""; }.ms-Icon--WorkFlow::before { content: ""; }.ms-Icon--StoreLogoMed::before { content: ""; }.ms-Icon--RainShowersNight::before { content: ""; }.ms-Icon--SnowShowerNight::before { content: ""; }.ms-Icon--HailNight::before { content: ""; }.ms-Icon--Info2::before { content: ""; }.ms-Icon--StoreLogo::before { content: ""; }.ms-Icon--Broom::before { content: ""; }.ms-Icon--MusicInCollectionFill::before { content: ""; }.ms-Icon--List::before { content: ""; }.ms-Icon--Asterisk::before { content: ""; }.ms-Icon--ErrorBadge::before { content: ""; }.ms-Icon--CircleRing::before { content: ""; }.ms-Icon--CircleFill::before { content: ""; }.ms-Icon--Lightbulb::before { content: ""; }.ms-Icon--StatusTriangle::before { content: ""; }.ms-Icon--VolumeDisabled::before { content: ""; }.ms-Icon--Puzzle::before { content: ""; }.ms-Icon--EmojiNeutral::before { content: ""; }.ms-Icon--EmojiDisappointed::before { content: ""; }.ms-Icon--HomeSolid::before { content: ""; }.ms-Icon--Cocktails::before { content: ""; }.ms-Icon--Articles::before { content: ""; }.ms-Icon--Cycling::before { content: ""; }.ms-Icon--DietPlanNotebook::before { content: ""; }.ms-Icon--Pill::before { content: ""; }.ms-Icon--Running::before { content: ""; }.ms-Icon--Weights::before { content: ""; }.ms-Icon--BarChart4::before { content: ""; }.ms-Icon--CirclePlus::before { content: ""; }.ms-Icon--Coffee::before { content: ""; }.ms-Icon--Cotton::before { content: ""; }.ms-Icon--Market::before { content: ""; }.ms-Icon--Money::before { content: ""; }.ms-Icon--PieDouble::before { content: ""; }.ms-Icon--RemoveFilter::before { content: ""; }.ms-Icon--StockDown::before { content: ""; }.ms-Icon--StockUp::before { content: ""; }.ms-Icon--Cricket::before { content: ""; }.ms-Icon--Golf::before { content: ""; }.ms-Icon--Baseball::before { content: ""; }.ms-Icon--Soccer::before { content: ""; }.ms-Icon--MoreSports::before { content: ""; }.ms-Icon--AutoRacing::before { content: ""; }.ms-Icon--CollegeHoops::before { content: ""; }.ms-Icon--CollegeFootball::before { content: ""; }.ms-Icon--ProFootball::before { content: ""; }.ms-Icon--ProHockey::before { content: ""; }.ms-Icon--Rugby::before { content: ""; }.ms-Icon--Tennis::before { content: ""; }.ms-Icon--Arrivals::before { content: ""; }.ms-Icon--Design::before { content: ""; }.ms-Icon--Website::before { content: ""; }.ms-Icon--Drop::before { content: ""; }.ms-Icon--Snow::before { content: ""; }.ms-Icon--BusSolid::before { content: ""; }.ms-Icon--FerrySolid::before { content: ""; }.ms-Icon--TrainSolid::before { content: ""; }.ms-Icon--Heart::before { content: ""; }.ms-Icon--HeartFill::before { content: ""; }.ms-Icon--Ticket::before { content: ""; }.ms-Icon--AzureLogo::before { content: ""; }.ms-Icon--BingLogo::before { content: ""; }.ms-Icon--MSNLogo::before { content: ""; }.ms-Icon--OutlookLogo::before { content: ""; }.ms-Icon--OfficeLogo::before { content: ""; }.ms-Icon--SkypeLogo::before { content: ""; }.ms-Icon--Door::before { content: ""; }.ms-Icon--GiftCard::before { content: ""; }.ms-Icon--DoubleBookmark::before { content: ""; }.ms-Icon--StatusErrorFull::before { content: ""; }.ms-Icon--Certificate::before { content: ""; }.ms-Icon--Photo2::before { content: ""; }.ms-Icon--CloudDownload::before { content: ""; }.ms-Icon--WindDirection::before { content: ""; }.ms-Icon--Family::before { content: ""; }.ms-Icon--CSS::before { content: ""; }.ms-Icon--JS::before { content: ""; }.ms-Icon--ReminderGroup::before { content: ""; }.ms-Icon--Section::before { content: ""; }.ms-Icon--OneNoteLogo::before { content: ""; }.ms-Icon--ToggleFilled::before { content: ""; }.ms-Icon--ToggleBorder::before { content: ""; }.ms-Icon--SliderThumb::before { content: ""; }.ms-Icon--ToggleThumb::before { content: ""; }.ms-Icon--Documentation::before { content: ""; }.ms-Icon--Badge::before { content: ""; }.ms-Icon--Giftbox::before { content: ""; }.ms-Icon--ExcelLogo::before { content: ""; }.ms-Icon--WordLogo::before { content: ""; }.ms-Icon--PowerPointLogo::before { content: ""; }.ms-Icon--Cafe::before { content: ""; }.ms-Icon--SpeedHigh::before { content: ""; }.ms-Icon--MusicNote::before { content: ""; }.ms-Icon--EdgeLogo::before { content: ""; }.ms-Icon--CompletedSolid::before { content: ""; }.ms-Icon--AlbumRemove::before { content: ""; }.ms-Icon--MessageFill::before { content: ""; }.ms-Icon--TabletSelected::before { content: ""; }.ms-Icon--MobileSelected::before { content: ""; }.ms-Icon--LaptopSelected::before { content: ""; }.ms-Icon--TVMonitorSelected::before { content: ""; }.ms-Icon--DeveloperTools::before { content: ""; }.ms-Icon--InsertTextBox::before { content: ""; }.ms-Icon--LowerBrightness::before { content: ""; }.ms-Icon--CloudUpload::before { content: ""; }.ms-Icon--DateTime::before { content: ""; }.ms-Icon--Event::before { content: ""; }.ms-Icon--Cake::before { content: ""; }.ms-Icon--Tiles::before { content: ""; }.ms-Icon--Org::before { content: ""; }.ms-Icon--PartyLeader::before { content: ""; }.ms-Icon--DRM::before { content: ""; }.ms-Icon--CloudAdd::before { content: ""; }.ms-Icon--AppIconDefault::before { content: ""; }.ms-Icon--Photo2Add::before { content: ""; }.ms-Icon--Photo2Remove::before { content: ""; }.ms-Icon--POI::before { content: ""; }.ms-Icon--FacebookLogo::before { content: ""; }.ms-Icon--AddTo::before { content: ""; }.ms-Icon--RadioBtnOn::before { content: ""; }.ms-Icon--Embed::before { content: ""; }.ms-Icon--VideoSolid::before { content: ""; }.ms-Icon--Teamwork::before { content: ""; }.ms-Icon--PeopleAdd::before { content: ""; }.ms-Icon--Glasses::before { content: ""; }.ms-Icon--DateTime2::before { content: ""; }.ms-Icon--Shield::before { content: ""; }.ms-Icon--Header1::before { content: ""; }.ms-Icon--PageAdd::before { content: ""; }.ms-Icon--NumberedList::before { content: ""; }.ms-Icon--PowerBILogo::before { content: ""; }.ms-Icon--Product::before { content: ""; }.ms-Icon--Blocked2::before { content: ""; }.ms-Icon--FangBody::before { content: ""; }.ms-Icon--Glimmer::before { content: ""; }.ms-Icon--ChatInviteFriend::before { content: ""; }.ms-Icon--SharepointLogo::before { content: ""; }.ms-Icon--YammerLogo::before { content: ""; }.ms-Icon--ReturnToSession::before { content: ""; }.ms-Icon--OpenFolderHorizontal::before { content: ""; }.ms-Icon--SwayLogo::before { content: ""; }.ms-Icon--OutOfOffice::before { content: ""; }.ms-Icon--Trophy::before { content: ""; }.ms-Icon--ReopenPages::before { content: ""; }.ms-Icon--AADLogo::before { content: ""; }.ms-Icon--AccessLogo::before { content: ""; }.ms-Icon--AdminALogo::before { content: ""; }.ms-Icon--AdminCLogo::before { content: ""; }.ms-Icon--AdminDLogo::before { content: ""; }.ms-Icon--AdminELogo::before { content: ""; }.ms-Icon--AdminLLogo::before { content: ""; }.ms-Icon--AdminMLogo::before { content: ""; }.ms-Icon--AdminOLogo::before { content: ""; }.ms-Icon--AdminPLogo::before { content: ""; }.ms-Icon--AdminSLogo::before { content: ""; }.ms-Icon--AdminYLogo::before { content: ""; }.ms-Icon--AlchemyLogo::before { content: ""; }.ms-Icon--BoxLogo::before { content: ""; }.ms-Icon--DelveLogo::before { content: ""; }.ms-Icon--DropboxLogo::before { content: ""; }.ms-Icon--ExchangeLogo::before { content: ""; }.ms-Icon--LyncLogo::before { content: ""; }.ms-Icon--OfficeVideoLogo::before { content: ""; }.ms-Icon--ParatureLogo::before { content: ""; }.ms-Icon--SocialListeningLogo::before { content: ""; }.ms-Icon--VisioLogo::before { content: ""; }.ms-Icon--Balloons::before { content: ""; }.ms-Icon--Cat::before { content: ""; }.ms-Icon--MailAlert::before { content: ""; }.ms-Icon--MailCheck::before { content: ""; }.ms-Icon--MailLowImportance::before { content: ""; }.ms-Icon--MailPause::before { content: ""; }.ms-Icon--MailRepeat::before { content: ""; }.ms-Icon--SecurityGroup::before { content: ""; }.ms-Icon--Table::before { content: ""; }.ms-Icon--VoicemailForward::before { content: ""; }.ms-Icon--VoicemailReply::before { content: ""; }.ms-Icon--Waffle::before { content: ""; }.ms-Icon--RemoveEvent::before { content: ""; }.ms-Icon--EventInfo::before { content: ""; }.ms-Icon--ForwardEvent::before { content: ""; }.ms-Icon--WipePhone::before { content: ""; }.ms-Icon--AddOnlineMeeting::before { content: ""; }.ms-Icon--JoinOnlineMeeting::before { content: ""; }.ms-Icon--RemoveLink::before { content: ""; }.ms-Icon--PeopleBlock::before { content: ""; }.ms-Icon--PeopleRepeat::before { content: ""; }.ms-Icon--PeopleAlert::before { content: ""; }.ms-Icon--PeoplePause::before { content: ""; }.ms-Icon--TransferCall::before { content: ""; }.ms-Icon--AddPhone::before { content: ""; }.ms-Icon--UnknownCall::before { content: ""; }.ms-Icon--NoteReply::before { content: ""; }.ms-Icon--NoteForward::before { content: ""; }.ms-Icon--NotePinned::before { content: ""; }.ms-Icon--RemoveOccurrence::before { content: ""; }.ms-Icon--Timeline::before { content: ""; }.ms-Icon--EditNote::before { content: ""; }.ms-Icon--CircleHalfFull::before { content: ""; }.ms-Icon--Room::before { content: ""; }.ms-Icon--Unsubscribe::before { content: ""; }.ms-Icon--Subscribe::before { content: ""; }.ms-Icon--RecurringTask::before { content: ""; }.ms-Icon--TaskManager::before { content: ""; }.ms-Icon--Combine::before { content: ""; }.ms-Icon--Split::before { content: ""; }.ms-Icon--DoubleChevronUp::before { content: ""; }.ms-Icon--DoubleChevronLeft::before { content: ""; }.ms-Icon--DoubleChevronRight::before { content: ""; }.ms-Icon--Ascending::before { content: ""; }.ms-Icon--Descending::before { content: ""; }.ms-Icon--TextBox::before { content: ""; }.ms-Icon--TextField::before { content: ""; }.ms-Icon--NumberField::before { content: ""; }.ms-Icon--Dropdown::before { content: ""; }.ms-Icon--BookingsLogo::before { content: ""; }.ms-Icon--ClassNotebookLogo::before { content: ""; }.ms-Icon--CollabsDBLogo::before { content: ""; }.ms-Icon--DelveAnalyticsLogo::before { content: ""; }.ms-Icon--DocsLogo::before { content: ""; }.ms-Icon--DynamicsCRMLogo::before { content: ""; }.ms-Icon--DynamicSMBLogo::before { content: ""; }.ms-Icon--OfficeAssistantLogo::before { content: ""; }.ms-Icon--OfficeStoreLogo::before { content: ""; }.ms-Icon--OneNoteEduLogo::before { content: ""; }.ms-Icon--Planner::before { content: ""; }.ms-Icon--PowerApps::before { content: ""; }.ms-Icon--Suitcase::before { content: ""; }.ms-Icon--ProjectLogo::before { content: ""; }.ms-Icon--CaretLeft8::before { content: ""; }.ms-Icon--CaretRight8::before { content: ""; }.ms-Icon--CaretUp8::before { content: ""; }.ms-Icon--CaretDown8::before { content: ""; }.ms-Icon--CaretLeftSolid8::before { content: ""; }.ms-Icon--CarotRightSolid8::before { content: ""; }.ms-Icon--CaretUpSolid8::before { content: ""; }.ms-Icon--CaretDownSolid8::before { content: ""; }.ms-Icon--ClearFormatting::before { content: ""; }.ms-Icon--Superscript::before { content: ""; }.ms-Icon--Subscript::before { content: ""; }.ms-Icon--Strikethrough::before { content: ""; }.ms-Icon--SingleBookmark::before { content: ""; }.ms-Icon--DoubleChevronDown::before { content: ""; }.ms-Icon--ReplyAll::before { content: ""; }.ms-Icon--GoogleDriveLogo::before { content: ""; }.ms-Icon--Questionnaire::before { content: ""; }.ms-Icon--AddGroup::before { content: ""; }.ms-Icon--TemporaryUser::before { content: ""; }.ms-Icon--GroupedDescending::before { content: ""; }.ms-Icon--GroupedAscending::before { content: ""; }.ms-Icon--SortUp::before { content: ""; }.ms-Icon--SortDown::before { content: ""; }.ms-Icon--AwayStatus::before { content: ""; }.ms-Icon--SyncToPC::before { content: ""; }.ms-Icon--AustralianRules::before { content: ""; }.ms-Icon--DoubleChevronUp12::before { content: ""; }.ms-Icon--DoubleChevronDown12::before { content: ""; }.ms-Icon--DoubleChevronLeft12::before { content: ""; }.ms-Icon--DoubleChevronRight12::before { content: ""; }.ms-Icon--CalendarAgenda::before { content: ""; }.ms-Icon--AddEvent::before { content: ""; }.ms-Icon--AssetLibrary::before { content: ""; }.ms-Icon--DataConnectionLibrary::before { content: ""; }.ms-Icon--DocLibrary::before { content: ""; }.ms-Icon--FormLibrary::before { content: ""; }.ms-Icon--ReportLibrary::before { content: ""; }.ms-Icon--ContactCard::before { content: ""; }.ms-Icon--CustomList::before { content: ""; }.ms-Icon--IssueTracking::before { content: ""; }.ms-Icon--PictureLibrary::before { content: ""; }.ms-Icon--AppForOfficeLogo::before { content: ""; }.ms-Icon--OfflineOneDriveParachute::before { content: ""; }.ms-Icon--OfflineOneDriveParachuteDisabled::before { content: ""; }.ms-Icon--LargeGrid::before { content: ""; }.ms-Icon--TriangleSolidUp12::before { content: ""; }.ms-Icon--TriangleSolidDown12::before { content: ""; }.ms-Icon--TriangleSolidLeft12::before { content: ""; }.ms-Icon--TriangleSolidRight12::before { content: ""; }.ms-Icon--TriangleUp12::before { content: ""; }.ms-Icon--TriangleDown12::before { content: ""; }.ms-Icon--TriangleLeft12::before { content: ""; }.ms-Icon--TriangleRight12::before { content: ""; }.ms-Icon--ArrowUpRight8::before { content: ""; }.ms-Icon--ArrowDownRight8::before { content: ""; }.ms-Icon--DocumentSet::before { content: ""; }.ms-Icon--DelveAnalytics::before { content: ""; }.ms-Icon--OneDriveAdd::before { content: ""; }.ms-Icon--Header2::before { content: ""; }.ms-Icon--Header3::before { content: ""; }.ms-Icon--Header4::before { content: ""; }.ms-Icon--MarketDown::before { content: ""; }.ms-Icon--CalendarWorkWeek::before { content: ""; }.ms-Icon--SidePanel::before { content: ""; }.ms-Icon--GlobeFavorite::before { content: ""; }.ms-Icon--CaretTopLeftSolid8::before { content: ""; }.ms-Icon--CaretTopRightSolid8::before { content: ""; }.ms-Icon--ViewAll2::before { content: ""; }.ms-Icon--DocumentReply::before { content: ""; }.ms-Icon--PlayerSettings::before { content: ""; }.ms-Icon--ReceiptForward::before { content: ""; }.ms-Icon--ReceiptReply::before { content: ""; }.ms-Icon--ReceiptCheck::before { content: ""; }.ms-Icon--Fax::before { content: ""; }.ms-Icon--RecurringEvent::before { content: ""; }.ms-Icon--ReplyAlt::before { content: ""; }.ms-Icon--ReplyAllAlt::before { content: ""; }.ms-Icon--EditStyle::before { content: ""; }.ms-Icon--EditMail::before { content: ""; }.ms-Icon--Lifesaver::before { content: ""; }.ms-Icon--LifesaverLock::before { content: ""; }.ms-Icon--InboxCheck::before { content: ""; }.ms-Icon--FolderSearch::before { content: ""; }.ms-Icon--CollapseMenu::before { content: ""; }.ms-Icon--ExpandMenu::before { content: ""; }.ms-Icon--Boards::before { content: ""; }.ms-Icon--SunAdd::before { content: ""; }.ms-Icon--SunQuestionMark::before { content: ""; }.ms-Icon--LandscapeOrientation::before { content: ""; }.ms-Icon--DocumentSearch::before { content: ""; }.ms-Icon--PublicCalendar::before { content: ""; }.ms-Icon--PublicContactCard::before { content: ""; }.ms-Icon--PublicEmail::before { content: ""; }.ms-Icon--PublicFolder::before { content: ""; }.ms-Icon--WordDocument::before { content: ""; }.ms-Icon--PowerPointDocument::before { content: ""; }.ms-Icon--ExcelDocument::before { content: ""; }.ms-Icon--GroupedList::before { content: ""; }.ms-Icon--ClassroomLogo::before { content: ""; }.ms-Icon--Sections::before { content: ""; }.ms-Icon--EditPhoto::before { content: ""; }.ms-Icon--Starburst::before { content: ""; }.ms-Icon--ShareiOS::before { content: ""; }.ms-Icon--AirTickets::before { content: ""; }.ms-Icon--PencilReply::before { content: ""; }.ms-Icon--Tiles2::before { content: ""; }.ms-Icon--SkypeCircleCheck::before { content: ""; }.ms-Icon--SkypeCircleClock::before { content: ""; }.ms-Icon--SkypeCircleMinus::before { content: ""; }.ms-Icon--SkypeCheck::before { content: ""; }.ms-Icon--SkypeClock::before { content: ""; }.ms-Icon--SkypeMinus::before { content: ""; }.ms-Icon--SkypeMessage::before { content: ""; }.ms-Icon--ClosedCaption::before { content: ""; }.ms-Icon--ATPLogo::before { content: ""; }.ms-Icon--OfficeFormLogo::before { content: ""; }.ms-Icon--RecycleBin::before { content: ""; }.ms-Icon--EmptyRecycleBin::before { content: ""; }.ms-Icon--Hide2::before { content: ""; }.ms-Icon--iOSAppStoreLogo::before { content: ""; }.ms-Icon--AndroidLogo::before { content: ""; }.ms-Icon--Breadcrumb::before { content: ""; }.ms-Icon--ClearFilter::before { content: ""; }.ms-Icon--Flow::before { content: ""; }.ms-Icon--PowerAppsLogo::before { content: ""; }.ms-Icon--PowerApps2Logo::before { content: ""; }.ms-Icon--circle { position: relative; display: inline-block; font-size: 1rem; width: 1em; height: 1em; margin: 0px 0.5em 0px 0px; padding: 0px; text-align: left; -webkit-font-smoothing: antialiased; }.ms-Icon--circle::after, .ms-Icon--circle::before { line-height: 1; font-size: inherit; }.ms-Icon--circle::before { display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; vertical-align: top; position: absolute; }.ms-Icon--circle::after { content: ""; position: absolute; top: 0px; left: 0px; transform: scale(2); transform-origin: 50% 50% 0px; z-index: 0; }.ms-Icon--xs { font-size: 10px; }.ms-Icon--s { font-size: 12px; }.ms-Icon--m { font-size: 16px; }.ms-Icon--l { font-size: 20px; }.ms-u-slideRightIn10 { animation-name: fadeIn, slideRightIn10; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideRightIn10 { <br> 0% { transform: translate3d(-10px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideRightIn20 { animation-name: fadeIn, slideRightIn20; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideRightIn20 { <br> 0% { transform: translate3d(-20px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideRightIn40 { animation-name: fadeIn, slideRightIn40; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideRightIn40 { <br> 0% { transform: translate3d(-40px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideLeftIn10 { animation-name: fadeIn, slideLeftIn10; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideLeftIn10 { <br> 0% { transform: translate3d(10px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideLeftIn20 { animation-name: fadeIn, slideLeftIn20; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideLeftIn20 { <br> 0% { transform: translate3d(20px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideLeftIn40 { animation-name: fadeIn, slideLeftIn40; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideLeftIn40 { <br> 0% { transform: translate3d(40px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideRightIn400 { animation-name: fadeIn, slideRightIn400; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideRightIn400 { <br> 0% { transform: translate3d(-400px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideLeftIn400 { animation-name: fadeIn, slideLeft400; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideLeft400 { <br> 0% { transform: translate3d(400px, 0px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideUpIn20 { animation-name: fadeIn, slideUpIn20; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideUpIn20 { <br> 0% { transform: translate3d(0px, 20px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideUpIn10 { animation-name: fadeIn, slideUpIn10; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideUpIn10 { <br> 0% { transform: translate3d(0px, 10px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideDownIn20 { animation-name: fadeIn, slideDownIn20; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes slideDownIn20 { <br> 0% { transform: translate3d(0px, -20px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideDownIn10 { animation-name: fadeIn, slideDownIn10; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideDownIn10 { <br> 0% { transform: translate3d(0px, -10px, 0px); }<br> 100% { transform: translateZ(0px); }<br>}.ms-u-slideRightOut40 { animation-name: fadeOut, slideRightOut40; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideRightOut40 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(40px, 0px, 0px); }<br>}.ms-u-slideLeftOut40 { animation-name: fadeOut, slideLeftOut40; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideLeftOut40 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(-40px, 0px, 0px); }<br>}.ms-u-slideRightOut400 { animation-name: fadeOut, slideRightOut400; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideRightOut400 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(400px, 0px, 0px); }<br>}.ms-u-slideLeftOut400 { animation-name: fadeOut, slideLeftOut400; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideLeftOut400 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(-400px, 0px, 0px); }<br>}.ms-u-slideUpOut20 { animation-name: fadeOut, slideUpOut20; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideUpOut20 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(0px, -20px, 0px); }<br>}.ms-u-slideUpOut10 { animation-name: fadeOut, slideUpOut10; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideUpOut10 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(0px, -10px, 0px); }<br>}.ms-u-slideDownOut20 { animation-name: fadeOut, slideDownOut20; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideDownOut20 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(0px, 20px, 0px); }<br>}.ms-u-slideDownOut10 { animation-name: fadeOut, slideDownOut10; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes slideDownOut10 { <br> 0% { transform: translateZ(0px); }<br> 100% { transform: translate3d(0px, 10px, 0px); }<br>}.ms-u-scaleUpIn100 { animation-name: fadeIn, scaleUp100; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes scaleUp100 { <br> 0% { transform: scale3d(0.98, 0.98, 1); }<br> 100% { transform: scaleX(1); }<br>}.ms-u-scaleDownIn100 { animation-name: fadeIn, scaleDown100; animation-duration: 0.367s; animation-timing-function: cubic-bezier(0.1, 0.9, 0.2, 1); animation-fill-mode: both; }@keyframes scaleDown100 { <br> 0% { transform: scale3d(1.03, 1.03, 1); }<br> 100% { transform: scaleX(1); }<br>}.ms-u-scaleUpOut103 { animation-name: fadeOut, scaleUp103; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes scaleUp103 { <br> 0% { transform: scaleX(1); }<br> 100% { transform: scale3d(1.03, 1.03, 1); }<br>}.ms-u-scaleDownOut98 { animation-name: fadeOut, scaleDown98; animation-duration: 0.167s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes scaleDown98 { <br> 0% { transform: scaleX(1); }<br> 100% { transform: scale3d(0.98, 0.98, 1); }<br>}.ms-u-fadeIn100, .ms-u-fadeIn400 { animation-duration: 0.367s; animation-name: fadeIn; animation-fill-mode: both; }.ms-u-fadeIn100 { animation-duration: 0.167s; }.ms-u-fadeIn200 { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 0.267s; }.ms-u-fadeIn500 { animation-name: fadeIn; animation-fill-mode: both; animation-duration: 0.467s; }@keyframes fadeIn { <br> 0% { opacity: 0; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); }<br> 100% { opacity: 1; }<br>}.ms-u-fadeOut100, .ms-u-fadeOut400 { animation-duration: 0.367s; animation-name: fadeOut; animation-fill-mode: both; }.ms-u-fadeOut100 { animation-duration: 0.1s; }.ms-u-fadeOut200 { animation-name: fadeOut; animation-fill-mode: both; animation-duration: 0.167s; }.ms-u-fadeOut500 { animation-name: fadeOut; animation-fill-mode: both; animation-duration: 0.467s; }@keyframes fadeOut { <br> 0% { opacity: 1; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); }<br> 100% { opacity: 0; }<br>}.ms-u-rotate90deg { animation-name: rotate90; animation-duration: 0.1s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes rotate90 { <br> 0% { transform: rotate(0deg); }<br> 100% { transform: rotate(90deg); }<br>}.ms-u-rotateN90deg { animation-name: rotateN90; animation-duration: 0.1s; animation-timing-function: cubic-bezier(0.1, 0.25, 0.75, 0.9); animation-fill-mode: both; }@keyframes rotateN90 { <br> 0% { transform: rotate(90deg); }<br> 100% { transform: rotate(0deg); }<br>}.ms-u-expandCollapse400 { transition: height 0.367s cubic-bezier(0.1, 0.25, 0.75, 0.9); }.ms-u-expandCollapse200 { transition: height 0.167s cubic-bezier(0.1, 0.25, 0.75, 0.9); }.ms-u-expandCollapse100 { transition: height 0.1s cubic-bezier(0.1, 0.25, 0.75, 0.9); }.ms-u-delay100 { animation-delay: 0.167s; }.ms-u-delay200 { animation-delay: 0.267s; }@media (max-width: 479px) {<br> .ms-u-hiddenLgDown, .ms-u-hiddenMdDown, .ms-u-hiddenSm, .ms-u-hiddenXlDown, .ms-u-hiddenXxlDown { display: none !important; }<br>}@media (max-width: 639px) and (min-width: 480px) {<br> .ms-u-hiddenLgDown, .ms-u-hiddenMd, .ms-u-hiddenMdDown, .ms-u-hiddenMdUp, .ms-u-hiddenXlDown, .ms-u-hiddenXxlDown { display: none !important; }<br>}@media (max-width: 1023px) and (min-width: 640px) {<br> .ms-u-hiddenLg, .ms-u-hiddenLgDown, .ms-u-hiddenLgUp, .ms-u-hiddenMdUp, .ms-u-hiddenXlDown, .ms-u-hiddenXxlDown { display: none !important; }<br>}@media (max-width: 1365px) and (min-width: 1024px) {<br> .ms-u-hiddenLgUp, .ms-u-hiddenMdUp, .ms-u-hiddenXl, .ms-u-hiddenXlDown, .ms-u-hiddenXlUp, .ms-u-hiddenXxlDown { display: none !important; }<br>}@media (max-width: 1919px) and (min-width: 1366px) {<br> .ms-u-hiddenLgUp, .ms-u-hiddenMdUp, .ms-u-hiddenXlUp, .ms-u-hiddenXxl, .ms-u-hiddenXxlDown, .ms-u-hiddenXxlUp { display: none !important; }<br>}@media (min-width: 1920px) {<br> .ms-u-hiddenLgUp, .ms-u-hiddenMdUp, .ms-u-hiddenXlUp, .ms-u-hiddenXxlUp, .ms-u-hiddenXxxl { display: none !important; }<br>}.ms-u-sm12 { width: 100%; }.ms-u-sm11 { width: 91.6667%; }.ms-u-sm10 { width: 83.3333%; }.ms-u-sm9 { width: 75%; }.ms-u-sm8 { width: 66.6667%; }.ms-u-sm7 { width: 58.3333%; }.ms-u-sm6 { width: 50%; }.ms-u-sm5 { width: 41.6667%; }.ms-u-sm4 { width: 33.3333%; }.ms-u-sm3 { width: 25%; }.ms-u-sm2 { width: 16.6667%; }.ms-u-sm1 { width: 8.33333%; }.ms-u-smPull12 { right: 100%; }.ms-u-smPull11 { right: 91.6667%; }.ms-u-smPull10 { right: 83.3333%; }.ms-u-smPull9 { right: 75%; }.ms-u-smPull8 { right: 66.6667%; }.ms-u-smPull7 { right: 58.3333%; }.ms-u-smPull6 { right: 50%; }.ms-u-smPull5 { right: 41.6667%; }.ms-u-smPull4 { right: 33.3333%; }.ms-u-smPull3 { right: 25%; }.ms-u-smPull2 { right: 16.6667%; }.ms-u-smPull1 { right: 8.33333%; }.ms-u-smPull0 { right: auto; }.ms-u-smPush12 { left: 100%; }.ms-u-smPush11 { left: 91.6667%; }.ms-u-smPush10 { left: 83.3333%; }.ms-u-smPush9 { left: 75%; }.ms-u-smPush8 { left: 66.6667%; }.ms-u-smPush7 { left: 58.3333%; }.ms-u-smPush6 { left: 50%; }.ms-u-smPush5 { left: 41.6667%; }.ms-u-smPush4 { left: 33.3333%; }.ms-u-smPush3 { left: 25%; }.ms-u-smPush2 { left: 16.6667%; }.ms-u-smPush1 { left: 8.33333%; }.ms-u-smPush0 { left: auto; }.ms-u-smOffset11 { margin-left: 91.6667%; }.ms-u-smOffset10 { margin-left: 83.3333%; }.ms-u-smOffset9 { margin-left: 75%; }.ms-u-smOffset8 { margin-left: 66.6667%; }.ms-u-smOffset7 { margin-left: 58.3333%; }.ms-u-smOffset6 { margin-left: 50%; }.ms-u-smOffset5 { margin-left: 41.6667%; }.ms-u-smOffset4 { margin-left: 33.3333%; }.ms-u-smOffset3 { margin-left: 25%; }.ms-u-smOffset2 { margin-left: 16.6667%; }.ms-u-smOffset1 { margin-left: 8.33333%; }.ms-u-smOffset0 { margin-left: 0px; }@media (min-width: 480px) {<br> .ms-u-md12 { width: 100%; }<br> .ms-u-md11 { width: 91.6667%; }<br> .ms-u-md10 { width: 83.3333%; }<br> .ms-u-md9 { width: 75%; }<br> .ms-u-md8 { width: 66.6667%; }<br> .ms-u-md7 { width: 58.3333%; }<br> .ms-u-md6 { width: 50%; }<br> .ms-u-md5 { width: 41.6667%; }<br> .ms-u-md4 { width: 33.3333%; }<br> .ms-u-md3 { width: 25%; }<br> .ms-u-md2 { width: 16.6667%; }<br> .ms-u-md1 { width: 8.33333%; }<br> .ms-u-mdPull12 { right: 100%; }<br> .ms-u-mdPull11 { right: 91.6667%; }<br> .ms-u-mdPull10 { right: 83.3333%; }<br> .ms-u-mdPull9 { right: 75%; }<br> .ms-u-mdPull8 { right: 66.6667%; }<br> .ms-u-mdPull7 { right: 58.3333%; }<br> .ms-u-mdPull6 { right: 50%; }<br> .ms-u-mdPull5 { right: 41.6667%; }<br> .ms-u-mdPull4 { right: 33.3333%; }<br> .ms-u-mdPull3 { right: 25%; }<br> .ms-u-mdPull2 { right: 16.6667%; }<br> .ms-u-mdPull1 { right: 8.33333%; }<br> .ms-u-mdPull0 { right: auto; }<br> .ms-u-mdPush12 { left: 100%; }<br> .ms-u-mdPush11 { left: 91.6667%; }<br> .ms-u-mdPush10 { left: 83.3333%; }<br> .ms-u-mdPush9 { left: 75%; }<br> .ms-u-mdPush8 { left: 66.6667%; }<br> .ms-u-mdPush7 { left: 58.3333%; }<br> .ms-u-mdPush6 { left: 50%; }<br> .ms-u-mdPush5 { left: 41.6667%; }<br> .ms-u-mdPush4 { left: 33.3333%; }<br> .ms-u-mdPush3 { left: 25%; }<br> .ms-u-mdPush2 { left: 16.6667%; }<br> .ms-u-mdPush1 { left: 8.33333%; }<br> .ms-u-mdPush0 { left: auto; }<br> .ms-u-mdOffset11 { margin-left: 91.6667%; }<br> .ms-u-mdOffset10 { margin-left: 83.3333%; }<br> .ms-u-mdOffset9 { margin-left: 75%; }<br> .ms-u-mdOffset8 { margin-left: 66.6667%; }<br> .ms-u-mdOffset7 { margin-left: 58.3333%; }<br> .ms-u-mdOffset6 { margin-left: 50%; }<br> .ms-u-mdOffset5 { margin-left: 41.6667%; }<br> .ms-u-mdOffset4 { margin-left: 33.3333%; }<br> .ms-u-mdOffset3 { margin-left: 25%; }<br> .ms-u-mdOffset2 { margin-left: 16.6667%; }<br> .ms-u-mdOffset1 { margin-left: 8.33333%; }<br> .ms-u-mdOffset0 { margin-left: 0px; }<br>}@media (min-width: 640px) {<br> .ms-u-lg12 { width: 100%; }<br> .ms-u-lg11 { width: 91.6667%; }<br> .ms-u-lg10 { width: 83.3333%; }<br> .ms-u-lg9 { width: 75%; }<br> .ms-u-lg8 { width: 66.6667%; }<br> .ms-u-lg7 { width: 58.3333%; }<br> .ms-u-lg6 { width: 50%; }<br> .ms-u-lg5 { width: 41.6667%; }<br> .ms-u-lg4 { width: 33.3333%; }<br> .ms-u-lg3 { width: 25%; }<br> .ms-u-lg2 { width: 16.6667%; }<br> .ms-u-lg1 { width: 8.33333%; }<br> .ms-u-lgPull12 { right: 100%; }<br> .ms-u-lgPull11 { right: 91.6667%; }<br> .ms-u-lgPull10 { right: 83.3333%; }<br> .ms-u-lgPull9 { right: 75%; }<br> .ms-u-lgPull8 { right: 66.6667%; }<br> .ms-u-lgPull7 { right: 58.3333%; }<br> .ms-u-lgPull6 { right: 50%; }<br> .ms-u-lgPull5 { right: 41.6667%; }<br> .ms-u-lgPull4 { right: 33.3333%; }<br> .ms-u-lgPull3 { right: 25%; }<br> .ms-u-lgPull2 { right: 16.6667%; }<br> .ms-u-lgPull1 { right: 8.33333%; }<br> .ms-u-lgPull0 { right: auto; }<br> .ms-u-lgPush12 { left: 100%; }<br> .ms-u-lgPush11 { left: 91.6667%; }<br> .ms-u-lgPush10 { left: 83.3333%; }<br> .ms-u-lgPush9 { left: 75%; }<br> .ms-u-lgPush8 { left: 66.6667%; }<br> .ms-u-lgPush7 { left: 58.3333%; }<br> .ms-u-lgPush6 { left: 50%; }<br> .ms-u-lgPush5 { left: 41.6667%; }<br> .ms-u-lgPush4 { left: 33.3333%; }<br> .ms-u-lgPush3 { left: 25%; }<br> .ms-u-lgPush2 { left: 16.6667%; }<br> .ms-u-lgPush1 { left: 8.33333%; }<br> .ms-u-lgPush0 { left: auto; }<br> .ms-u-lgOffset11 { margin-left: 91.6667%; }<br> .ms-u-lgOffset10 { margin-left: 83.3333%; }<br> .ms-u-lgOffset9 { margin-left: 75%; }<br> .ms-u-lgOffset8 { margin-left: 66.6667%; }<br> .ms-u-lgOffset7 { margin-left: 58.3333%; }<br> .ms-u-lgOffset6 { margin-left: 50%; }<br> .ms-u-lgOffset5 { margin-left: 41.6667%; }<br> .ms-u-lgOffset4 { margin-left: 33.3333%; }<br> .ms-u-lgOffset3 { margin-left: 25%; }<br> .ms-u-lgOffset2 { margin-left: 16.6667%; }<br> .ms-u-lgOffset1 { margin-left: 8.33333%; }<br> .ms-u-lgOffset0 { margin-left: 0px; }<br>}@media (min-width: 1024px) {<br> .ms-u-xl12 { width: 100%; }<br> .ms-u-xl11 { width: 91.6667%; }<br> .ms-u-xl10 { width: 83.3333%; }<br> .ms-u-xl9 { width: 75%; }<br> .ms-u-xl8 { width: 66.6667%; }<br> .ms-u-xl7 { width: 58.3333%; }<br> .ms-u-xl6 { width: 50%; }<br> .ms-u-xl5 { width: 41.6667%; }<br> .ms-u-xl4 { width: 33.3333%; }<br> .ms-u-xl3 { width: 25%; }<br> .ms-u-xl2 { width: 16.6667%; }<br> .ms-u-xl1 { width: 8.33333%; }<br> .ms-u-xlPull12 { right: 100%; }<br> .ms-u-xlPull11 { right: 91.6667%; }<br> .ms-u-xlPull10 { right: 83.3333%; }<br> .ms-u-xlPull9 { right: 75%; }<br> .ms-u-xlPull8 { right: 66.6667%; }<br> .ms-u-xlPull7 { right: 58.3333%; }<br> .ms-u-xlPull6 { right: 50%; }<br> .ms-u-xlPull5 { right: 41.6667%; }<br> .ms-u-xlPull4 { right: 33.3333%; }<br> .ms-u-xlPull3 { right: 25%; }<br> .ms-u-xlPull2 { right: 16.6667%; }<br> .ms-u-xlPull1 { right: 8.33333%; }<br> .ms-u-xlPull0 { right: auto; }<br> .ms-u-xlPush12 { left: 100%; }<br> .ms-u-xlPush11 { left: 91.6667%; }<br> .ms-u-xlPush10 { left: 83.3333%; }<br> .ms-u-xlPush9 { left: 75%; }<br> .ms-u-xlPush8 { left: 66.6667%; }<br> .ms-u-xlPush7 { left: 58.3333%; }<br> .ms-u-xlPush6 { left: 50%; }<br> .ms-u-xlPush5 { left: 41.6667%; }<br> .ms-u-xlPush4 { left: 33.3333%; }<br> .ms-u-xlPush3 { left: 25%; }<br> .ms-u-xlPush2 { left: 16.6667%; }<br> .ms-u-xlPush1 { left: 8.33333%; }<br> .ms-u-xlPush0 { left: auto; }<br> .ms-u-xlOffset11 { margin-left: 91.6667%; }<br> .ms-u-xlOffset10 { margin-left: 83.3333%; }<br> .ms-u-xlOffset9 { margin-left: 75%; }<br> .ms-u-xlOffset8 { margin-left: 66.6667%; }<br> .ms-u-xlOffset7 { margin-left: 58.3333%; }<br> .ms-u-xlOffset6 { margin-left: 50%; }<br> .ms-u-xlOffset5 { margin-left: 41.6667%; }<br> .ms-u-xlOffset4 { margin-left: 33.3333%; }<br> .ms-u-xlOffset3 { margin-left: 25%; }<br> .ms-u-xlOffset2 { margin-left: 16.6667%; }<br> .ms-u-xlOffset1 { margin-left: 8.33333%; }<br> .ms-u-xlOffset0 { margin-left: 0px; }<br>}@media (min-width: 1366px) {<br> .ms-u-xxl12 { width: 100%; }<br> .ms-u-xxl11 { width: 91.6667%; }<br> .ms-u-xxl10 { width: 83.3333%; }<br> .ms-u-xxl9 { width: 75%; }<br> .ms-u-xxl8 { width: 66.6667%; }<br> .ms-u-xxl7 { width: 58.3333%; }<br> .ms-u-xxl6 { width: 50%; }<br> .ms-u-xxl5 { width: 41.6667%; }<br> .ms-u-xxl4 { width: 33.3333%; }<br> .ms-u-xxl3 { width: 25%; }<br> .ms-u-xxl2 { width: 16.6667%; }<br> .ms-u-xxl1 { width: 8.33333%; }<br> .ms-u-xxlPull12 { right: 100%; }<br> .ms-u-xxlPull11 { right: 91.6667%; }<br> .ms-u-xxlPull10 { right: 83.3333%; }<br> .ms-u-xxlPull9 { right: 75%; }<br> .ms-u-xxlPull8 { right: 66.6667%; }<br> .ms-u-xxlPull7 { right: 58.3333%; }<br> .ms-u-xxlPull6 { right: 50%; }<br> .ms-u-xxlPull5 { right: 41.6667%; }<br> .ms-u-xxlPull4 { right: 33.3333%; }<br> .ms-u-xxlPull3 { right: 25%; }<br> .ms-u-xxlPull2 { right: 16.6667%; }<br> .ms-u-xxlPull1 { right: 8.33333%; }<br> .ms-u-xxlPull0 { right: auto; }<br> .ms-u-xxlPush12 { left: 100%; }<br> .ms-u-xxlPush11 { left: 91.6667%; }<br> .ms-u-xxlPush10 { left: 83.3333%; }<br> .ms-u-xxlPush9 { left: 75%; }<br> .ms-u-xxlPush8 { left: 66.6667%; }<br> .ms-u-xxlPush7 { left: 58.3333%; }<br> .ms-u-xxlPush6 { left: 50%; }<br> .ms-u-xxlPush5 { left: 41.6667%; }<br> .ms-u-xxlPush4 { left: 33.3333%; }<br> .ms-u-xxlPush3 { left: 25%; }<br> .ms-u-xxlPush2 { left: 16.6667%; }<br> .ms-u-xxlPush1 { left: 8.33333%; }<br> .ms-u-xxlPush0 { left: auto; }<br> .ms-u-xxlOffset11 { margin-left: 91.6667%; }<br> .ms-u-xxlOffset10 { margin-left: 83.3333%; }<br> .ms-u-xxlOffset9 { margin-left: 75%; }<br> .ms-u-xxlOffset8 { margin-left: 66.6667%; }<br> .ms-u-xxlOffset7 { margin-left: 58.3333%; }<br> .ms-u-xxlOffset6 { margin-left: 50%; }<br> .ms-u-xxlOffset5 { margin-left: 41.6667%; }<br> .ms-u-xxlOffset4 { margin-left: 33.3333%; }<br> .ms-u-xxlOffset3 { margin-left: 25%; }<br> .ms-u-xxlOffset2 { margin-left: 16.6667%; }<br> .ms-u-xxlOffset1 { margin-left: 8.33333%; }<br> .ms-u-xxlOffset0 { margin-left: 0px; }<br>}@media (min-width: 1920px) {<br> .ms-u-xxxl12 { width: 100%; }<br> .ms-u-xxxl11 { width: 91.6667%; }<br> .ms-u-xxxl10 { width: 83.3333%; }<br> .ms-u-xxxl9 { width: 75%; }<br> .ms-u-xxxl8 { width: 66.6667%; }<br> .ms-u-xxxl7 { width: 58.3333%; }<br> .ms-u-xxxl6 { width: 50%; }<br> .ms-u-xxxl5 { width: 41.6667%; }<br> .ms-u-xxxl4 { width: 33.3333%; }<br> .ms-u-xxxl3 { width: 25%; }<br> .ms-u-xxxl2 { width: 16.6667%; }<br> .ms-u-xxxl1 { width: 8.33333%; }<br> .ms-u-xxxlPull12 { right: 100%; }<br> .ms-u-xxxlPull11 { right: 91.6667%; }<br> .ms-u-xxxlPull10 { right: 83.3333%; }<br> .ms-u-xxxlPull9 { right: 75%; }<br> .ms-u-xxxlPull8 { right: 66.6667%; }<br> .ms-u-xxxlPull7 { right: 58.3333%; }<br> .ms-u-xxxlPull6 { right: 50%; }<br> .ms-u-xxxlPull5 { right: 41.6667%; }<br> .ms-u-xxxlPull4 { right: 33.3333%; }<br> .ms-u-xxxlPull3 { right: 25%; }<br> .ms-u-xxxlPull2 { right: 16.6667%; }<br> .ms-u-xxxlPull1 { right: 8.33333%; }<br> .ms-u-xxxlPull0 { right: auto; }<br> .ms-u-xxxlPush12 { left: 100%; }<br> .ms-u-xxxlPush11 { left: 91.6667%; }<br> .ms-u-xxxlPush10 { left: 83.3333%; }<br> .ms-u-xxxlPush9 { left: 75%; }<br> .ms-u-xxxlPush8 { left: 66.6667%; }<br> .ms-u-xxxlPush7 { left: 58.3333%; }<br> .ms-u-xxxlPush6 { left: 50%; }<br> .ms-u-xxxlPush5 { left: 41.6667%; }<br> .ms-u-xxxlPush4 { left: 33.3333%; }<br> .ms-u-xxxlPush3 { left: 25%; }<br> .ms-u-xxxlPush2 { left: 16.6667%; }<br> .ms-u-xxxlPush1 { left: 8.33333%; }<br> .ms-u-xxxlPush0 { left: auto; }<br> .ms-u-xxxlOffset11 { margin-left: 91.6667%; }<br> .ms-u-xxxlOffset10 { margin-left: 83.3333%; }<br> .ms-u-xxxlOffset9 { margin-left: 75%; }<br> .ms-u-xxxlOffset8 { margin-left: 66.6667%; }<br> .ms-u-xxxlOffset7 { margin-left: 58.3333%; }<br> .ms-u-xxxlOffset6 { margin-left: 50%; }<br> .ms-u-xxxlOffset5 { margin-left: 41.6667%; }<br> .ms-u-xxxlOffset4 { margin-left: 33.3333%; }<br> .ms-u-xxxlOffset3 { margin-left: 25%; }<br> .ms-u-xxxlOffset2 { margin-left: 16.6667%; }<br> .ms-u-xxxlOffset1 { margin-left: 8.33333%; }<br> .ms-u-xxxlOffset0 { margin-left: 0px; }<br>}.ms-Grid { box-sizing: border-box; padding: 0px 8px; }.ms-Grid::after, .ms-Grid::before { display: table; content: ""; line-height: 0; }.ms-Grid::after { clear: both; }.ms-Grid-row { margin: 0px -8px; box-sizing: border-box; }.ms-Grid-row::after, .ms-Grid-row::before { display: table; content: ""; line-height: 0; }.ms-Grid-row::after { clear: both; }.ms-Grid-col { position: relative; min-height: 1px; padding-left: 8px; padding-right: 8px; box-sizing: border-box; float: left; }.ms-Grid-col .ms-Grid { padding: 0px; }.ms-Fabric { color: rgb(51, 51, 51); }</style><style>._2WH1QnSds8ywBNAxSVkVx9 { overflow-x: hidden; padding: 20px 0px; width: 100%; }.IniWtz-DJhlwZydXnCk3N { overflow-y: hidden; }._26d4R71dXhZrkp6-3-GVNH { overflow-y: auto; }._1DM19itqR26ygnwoUcQzsw { text-align: center; outline: 0px; position: relative; float: left; }.Mk9N7a4TLPOoiNhgH4CJR { position: absolute; left: 2px; top: 2px; right: 2px; bottom: 2px; }._2_SThAWidqlAbequQoBiLs ._2sIfaYa5s1fZxFpM16DA80 { position: relative; }</style><style>.GDV_hdcZOuVQia4x9R8Rf { width: 90%; margin: auto; min-height: 200px; }.ZIiNP0C5_e23bWH871ZV2 { height: 80px; line-height: 80px; }._1lxa6x_Ynwl4tF5g1DavLI { width: 100%; margin-top: 20px; height: 50px; }._19vuwJMJ9aI-tC6FLn760v { display: inline; }.y3jcis3D5CqXZfRFcTiBO { min-width: 200px; float: right; }._1-3WccEND9m0pMvkO0MZo- { text-align: left; }</style><style>.giGE4zqRJKvo6hL6C9PL { display: inline-block; }.giGE4zqRJKvo6hL6C9PL button, .giGE4zqRJKvo6hL6C9PL button:focus { padding: 4px 10px 6px; border-color: rgb(200, 200, 200); background-color: rgb(255, 255, 255); text-align: left; width: 70px; height: 30px; }.giGE4zqRJKvo6hL6C9PL button:hover { border-color: rgb(118, 118, 118); background-color: rgb(255, 255, 255); }.giGE4zqRJKvo6hL6C9PL button:disabled { border-color: rgb(234, 234, 234); color: rgb(166, 166, 166); background-color: rgb(255, 255, 255); }.giGE4zqRJKvo6hL6C9PL button span { font-weight: 400; }.giGE4zqRJKvo6hL6C9PL button .ms-Icon--caretDown { position: absolute; right: 4px; top: 8px; font-size: 16px; color: rgb(102, 102, 102); }.giGE4zqRJKvo6hL6C9PL button:disabled .ms-Icon--caretDown { color: rgb(166, 166, 166); }.giGE4zqRJKvo6hL6C9PL button .ms-Button-label { font-size: 12px; }.giGE4zqRJKvo6hL6C9PL button:active span { color: rgb(166, 166, 166) !important; }._3Vj-KPx_yJ4-MquPQwPrmt { box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 7px; z-index: 1901; }._3Vj-KPx_yJ4-MquPQwPrmt > div { overflow-y: visible; }._3aeWKHiyu3qojuJFqfylYX { height: auto; width: 280px; font-size: 12px; }.F8BCuMb1kdlzsvj5O310t { max-height: 180px; overflow-y: auto; overflow-x: hidden; display: block; }._3qEPZ2iYQjtP_3rO3JxRn- { padding-bottom: 9px; }.McEriEZXvtdEKrYrOX17w { width: 100%; border-collapse: collapse; }.nuZF-09wSH-tDOersW7uc { background-color: rgb(244, 244, 244); padding: 6px 26px 8px; margin-left: 10px; margin-bottom: 9px; line-height: 30px; font-size: 14px; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }._2jxNCpOdERCZc5-39HLQHn { margin-left: 22px; }.nuZF-09wSH-tDOersW7uc:hover { background-color: rgb(234, 234, 234); }._3D4qKz-7M0OMCko7jgvaYU { font-family: "Segoe UI Semibold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; }.agKMI0C6Y5i7gp5-VNw64 { position: relative; margin-left: 10px; }.ZhlO92RxpgXU9iLr548TD { position: absolute; top: 36px; background: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 7px; width: 263px; z-index: 1901; border: 1px solid rgb(234, 234, 234); }.ZhlO92RxpgXU9iLr548TD ._3A8A0AyzzbATR5flQHn_EZ { width: 193px; padding-left: 9px; }._17Ybq9DeotF_0u0shvywla { height: 28px; padding: 0px 3px; }._1mEWwLQMd-a5vDA4-x7530 { font-weight: 700; }._3A8A0AyzzbATR5flQHn_EZ { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }.CF3p5S41MmLTwZFpYeKQ2 { text-align: right; padding: 0px 10px; }._2gb5VjRDmq6SHruhGRIYoe { margin: 10px 6px 15px 0px; }._38ur-vYZvY1BPqhoxRZJkH { font-size: 11px; padding: 0px 3px; }hr { color: rgb(234, 234, 234); background-color: rgb(234, 234, 234); border-color: rgb(234, 234, 234); border-bottom-width: 0px; border-style: solid; margin-bottom: 5px; }._3aeWKHiyu3qojuJFqfylYX { cursor: default; text-align: left; }._3aeWKHiyu3qojuJFqfylYX.ms-Button, ._3aeWKHiyu3qojuJFqfylYX.ms-Button:active, ._3aeWKHiyu3qojuJFqfylYX.ms-Button:focus, ._3aeWKHiyu3qojuJFqfylYX.ms-Button:hover, ._3aeWKHiyu3qojuJFqfylYX.ms-Button:visited, .giGE4zqRJKvo6hL6C9PL, .giGE4zqRJKvo6hL6C9PL.ms-Button:disabled { background-color: transparent; border-color: transparent; }._3aeWKHiyu3qojuJFqfylYX:active > .ms-Button-label, ._3aeWKHiyu3qojuJFqfylYX > .ms-Button-label { font-family: "Segoe UI Semilight", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; font-weight: 400; color: rgb(0, 0, 0); }.ms-SearchBox-closebutton { color: rgb(255, 255, 255); }</style><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.extensibilitynext.mouse.css"><style>.qTztVIOTYPnQNwLC1QIDW { border: none; display: block; box-sizing: border-box; margin: 0px; text-align: left; line-height: 30px; width: 100%; }.qTztVIOTYPnQNwLC1QIDW :first-child { line-height: 30px; height: 30px; }.qTztVIOTYPnQNwLC1QIDW span { font-size: 11px; }.NM2wcz98H-tK-HFINJhdd :first-child { color: rgb(0, 120, 215); cursor: default; background-image: initial; background-position: 0px 0px; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: inherit; }._24yf4I1JU-kv_K4LyyKRE1 { border: none; }._24yf4I1JU-kv_K4LyyKRE1 ul { overflow: hidden; }.tiXhRN6zn6H1nJviwW56Z :first-child { line-height: 30px; height: 30px; }.tiXhRN6zn6H1nJviwW56Z :first-child span { font-size: 12px; }.tiXhRN6zn6H1nJviwW56Z :first-child i { line-height: 30px; height: 30px; }.tiXhRN6zn6H1nJviwW56Z button { background-color: inherit; }.ms-LayerHost-overlay div { z-index: 2000 !important; }.ms-Dialog-button.ms-Dialog-button--close { z-index: 2001 !important; }.ms-Dialog { z-index: 2000 !important; }</style><style>._3PynthIzbNsCWZe1quoGMW { display: block; background: transparent; border: none; margin-right: 5px; }._2JP8pR0YsKc2eH5RB-FmzU { padding: 0px; margin: 7px 0px; border-right-width: 1px; border-right-style: solid; height: 16px; width: 0px; float: left; }._1kSm9qRFhJphal3EOOIhbr { display: inline-block; width: 30px; height: 30px; }.zfcptaVifZctATJQZL-Ev { width: 16px; height: 16px; }</style><style>._1rX_w-a9sMADeJ1ZRu77-f { margin: 0px 5px 0px 0px; display: block; cursor: pointer; }._3zVUB7ukDaITjTxBoqlaoo { padding: 7px; width: 16px; height: 16px; }._3NnY7PIaBvdNN19RaU-eeT { width: 30px; height: 30px; }</style><style>._3ru0NmlQfJr7-rnecyeBpP { display: -webkit-flex; height: 30px; }</style><style>._3CoAn_31UDJt3JOGkpeJl2 { display: -webkit-flex; }</style><style>._3PC-PEFIEYl048NBgmYt3 { width: 100%; height: 100%; }</style><style>.zFd_AhnVnc13lIabsmkDe { max-width: none; }._1UFiwLKD8I8oTk_URzWP4R { height: 190px; }._2pCW6eQzYMamvqWhIKgtoX { width: 550px; height: 400px; }._80quWnUZ6B2NyV3Qu0XQU { display: none; }</style><style>._2iVgf-ZQW2e4NRvKMwxdd { display: none; }._3-wGRQq5JKnJVWffiFo1AR { max-width: none; }</style><style>.Z_HnqZ85VcZvVkzIkjSk8 .ms-Callout-main { overflow: hidden; }._3WUierhryUFTPw9c5sgcPg { height: 32px; color: inherit; background-color: transparent; border-bottom-style: solid; border-bottom-width: 1px; }._3WUierhryUFTPw9c5sgcPg .ms-CommandBar-primaryCommands, ._3WUierhryUFTPw9c5sgcPg .ms-CommandBar-sideCommands { line-height: 32px; height: 32px; margin: 0px; }._3WUierhryUFTPw9c5sgcPg .ms-CommandBarItem { line-height: 32px; height: 100%; }._3WUierhryUFTPw9c5sgcPg .ms-CommandBarItem-link { line-height: 32px; }._3WUierhryUFTPw9c5sgcPg .ms-CommandBar-primaryCommands, ._3WUierhryUFTPw9c5sgcPg .ms-CommandBarItem-link:hover, ._3WUierhryUFTPw9c5sgcPg .ms-CommandBarItem:hover, ._3WUierhryUFTPw9c5sgcPg .ms-FocusZone { color: inherit !important; background-color: inherit !important; }._3WUierhryUFTPw9c5sgcPg .is-expanded .ms-CommandBarItem-overflow, ._3WUierhryUFTPw9c5sgcPg button[id$="selected"] { color: inherit !important; }._3WUierhryUFTPw9c5sgcPg button[id$="overflow"] { line-height: 0; }._2pnjsMumf2rAtDo2_NKCT2 { padding: 8px; float: left; }._2Vi24E68LqwUWhYhf2qlDM { padding: 0px; margin: 8px 0px; border-right-width: 1px; border-right-style: solid; height: 16px; width: 0px; float: left; }</style><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/office.js.download"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/office_strings.js.download"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/outlook_strings.js.download"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/outlook-web-16.00.js.download"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/outlook-web-16.01.js.download"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.connectors.mouse.css"><link rel="stylesheet" type="text/css" href="./RE_ Tableau and javascript_files/microsoft.owa.core.linkpreview.mouse.css"><style>.rps_e8ec p.x_MsoNormal, .rps_e8ec li.x_MsoNormal, .rps_e8ec div.x_MsoNormal { margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; }.rps_e8ec span.x_MsoHyperlink { color: rgb(5, 99, 193); text-decoration: underline; }.rps_e8ec span.x_MsoHyperlinkFollowed { color: rgb(149, 79, 114); text-decoration: underline; }.rps_e8ec span.x_EmailStyle17 { font-family: Calibri, sans-serif; color: windowtext; }.rps_e8ec span.x_EmailStyle18 { font-family: Calibri, sans-serif; color: rgb(31, 73, 125); }.rps_e8ec .x_MsoChpDefault { font-size: 10pt; }</style><style>.rps_e8ec p.x_MsoNormal, .rps_e8ec li.x_MsoNormal, .rps_e8ec div.x_MsoNormal { margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; }.rps_e8ec span.x_MsoHyperlink { color: rgb(5, 99, 193); text-decoration: underline; }.rps_e8ec span.x_MsoHyperlinkFollowed { color: rgb(149, 79, 114); text-decoration: underline; }.rps_e8ec span.x_EmailStyle17 { font-family: Calibri, sans-serif; color: windowtext; }.rps_e8ec span.x_EmailStyle18 { font-family: Calibri, sans-serif; color: rgb(31, 73, 125); }.rps_e8ec .x_MsoChpDefault { font-size: 10pt; }</style><title>RE: Tableau and javascript</title></head>
<body class="popoutBody notIE8 ms-fwt-r" style="display: block;">
<div class="removeFocusOutline"><div class="conductorContent" role="presentation"><div class="_rp_d5 ShowReferenceAttachmentsLinks ShowConsesusSchedulingLink" tabindex="-1" role="region" aria-label="Reading Pane"><div class="_rp_c5" style="display: none;"></div><div class="_rp_x5"><div class="_fce_a ms-bg-color-themeLighterAlt" role="toolbar" tabindex="-1" aria-label="command"><div class="_fce_b" style="margin-left: 0px; margin-right: 0px;"><div class="_fce_c" role="presentation" style="display: inline;"><div class="_fce_e ms-bgc-tlr-h"> <button autoid="_fce_1" type="button" class="_fce_h _fce_f ms-fwt-r ms-fcl-np o365button" tabindex="0" aria-expanded="false" title="Reply (R)" aria-labelledby="_ariaId_732" aria-haspopup="true"><span class="image owaimg ms-Icon--reply ms-icon-font-size-16 ms-fcl-tp-b _fce_t"> </span><span class="label o365buttonLabel _fce_r _fce_n" id="_ariaId_732">Reply</span></button> <span class="_fce_k _fce_f ms-fwt-r ms-fcl-nt ms-font-m" aria-hidden="true">|</span> <button autoid="_fce_2" type="button" class="_fce_l _fce_f commandAdjustPosition o365button ms-fcl-ns" tabindex="-1" title="More ways to reply" aria-label="More"><span class="_fc_3 owaimg _fce_r ms-Icon--chevronDown ms-icon-font-size-17"> </span><span class="_fc_4 o365buttonLabel _fc_2" style="display: none;"></span></button> </div></div><div class="_fce_c" role="presentation" style="display: inline;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Delete (Del)" title="Delete (Del)"><span class="image owaimg _fce_p ms-Icon--trash ms-icon-font-size-18 ms-fcl-tp-b _fce_t"> </span><span class="label o365buttonLabel _fce_r _fce_n">Delete</span></button> </div></div><div class="_fce_c" role="presentation" style="display: inline;"><div class="_fce_e ms-bgc-tlr-h"> <button autoid="_fce_1" type="button" class="_fce_h _fce_f ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-expanded="false" title="Mark the sender as unsafe and delete the message (J)" aria-labelledby="_ariaId_733" aria-haspopup="true"><span class="image owaimg _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r" id="_ariaId_733">Junk</span></button> <span class="_fce_k _fce_f ms-fwt-r ms-fcl-nt ms-font-m" aria-hidden="true">|</span> <button autoid="_fce_2" type="button" class="_fce_l _fce_f commandAdjustPosition o365button ms-fcl-ns" tabindex="-1" title="More Junk Commands" aria-label="More"><span class="_fc_3 owaimg _fce_r ms-Icon--chevronDown ms-icon-font-size-17"> </span><span class="_fc_4 o365buttonLabel _fc_2" style="display: none;"></span></button> </div></div><div class="_fce_c" role="presentation" style="display: none;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Mark as unread (U)" title="Mark as unread (U)"><span class="image owaimg _fce_p _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r">Mark as unread</span></button> </div></div><div class="_fce_c" role="presentation" style="display: none;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Mark as read (Q)" title="Mark as read (Q)"><span class="image owaimg _fce_p _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r">Mark as read</span></button> </div></div><div class="_fce_c" role="presentation" style="display: none;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Flag for follow-up (Insert)" title="Flag for follow-up (Insert)"><span class="image owaimg _fce_p _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r">Flag</span></button> </div></div><div class="_fce_c" role="presentation" style="display: none;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Remove flag (Insert)" title="Remove flag (Insert)"><span class="image owaimg _fce_p _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r">Remove flag</span></button> </div></div><div class="_fce_c" role="presentation" style="display: none;"></div><div class="_fce_c" role="presentation" style="display: none;"><div class="_fce_e"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Print" title="Print"><span class="image owaimg _fce_p _fce_t" style="display: none;"> </span><span class="label o365buttonLabel _fce_r">Print</span></button> </div></div><div class="_fce_c" role="presentation" style="display: inline;"><div class="_fce_e"> <button autoid="_fce_3" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-expanded="false" title="More commands" aria-label="More" aria-haspopup="false"><span class="_fce_t owaimg _fce_j"> </span><span class="_fce_m _fce_j"></span><span class="ms-fcl-ns _fce_r owaimg ms-Icon--ellipsis ms-icon-wide-glyph ms-icon-tall-glyph ms-icon-font-size-14 ms-fcl-np-b"> </span></button> <div class="_fce_s ms-bg-color-white ms-border-color-themeLighter" ispopup="1" style="display: none;"></div> <div class="_fce_u" style="display: none;"></div> </div></div><div class="_fce_c" role="presentation" style="display: inline;"><div class="_fce_e _fce_g"> <button autoid="_fce_0" type="button" class="_fce_i ms-fwt-r ms-fcl-np o365button" tabindex="-1" aria-label="Close" title="Close"><span class="image owaimg _fce_p ms-Icon--x ms-icon-font-size-16 ms-fcl-tp-b"> </span><span class="label o365buttonLabel _fce_r _fce_n" style="display: none;"></span></button> </div></div></div></div></div><div class="_rp_y5"></div><div class="_rp_d5 disableTextSelection" style="position: relative;"> <div style="display: none;"></div><div class="_rp_C5" style="display: none;"></div><div class="_rp_g5 disableTextSelection _rp_i5 _rp_j5 customScrollBar scrollContainer" style="position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; height: auto; width: auto;"> <div class="_rp_e5"> <div class="_rp_f5 ms-font-color-neutralPrimary ms-font-xl ms-fwt-r"> <div class="allowTextSelection"> <span autoid="_rp_B" class="rpHighlightAllClass rpHighlightSubjectClass" role="heading" tabindex="-1">RE: Tableau and javascript</span> <span role="heading" tabindex="-1" style="display: none;">(No subject)</span> <span class="owaimg" role="heading" tabindex="-1" style="display: none;"> </span> </div> </div> </div> <div class="_rp_q5 ms-font-weight-regular" tabindex="-1" style="display: none;"></div> <div class="_rp_A5 ms-border-color-neutralLight" style="display: none;"></div> <div class="_rp_p5"> <div style="display: none;"></div> <div><div class="_rp_l5"><div class="_rp_j1"> <div class="_rp_l2 disableTextSelection" role="region" tabindex="-1" aria-label="Message header"><div class="_rp_B2"><div><button autoid="_rp_g" type="button" class="_rp_z1 ms-font-s ms-fwt-sb o365button" role="button" tabindex="0" style="display: none;"></button><div><div class="_rp_02"><span class="_rp_f1 PersonaPaneLauncher" role="presentation"><div class="_pe_d _pe_12 _pe_I _pe_i" role="button" tabindex="0" aria-expanded="false" aria-label="Persona card" aria-haspopup="true"> <span class="_pe_j"> <div class="_pe_g2"> <span class="_pe_s _pe_L1 owaimg presenceJellyBeanBase presenceJellyBeanSmallBase presenceJellyBeanUnknownSmall _pe_d2 _pe_i2" style="display: none;"> </span> </div> </span> <span class="_pe_n"> <div class="_pe_x1"><div style="display: none;"></div><div><div><div class="nonDraftPart _pe_V1 _pe_b2 _pe_n2" style="background-size: cover; background-position: center center; background-color: rgb(185, 29, 71);">SB</div></div><div style="display: none;"></div></div></div> </span> <div style="display: none;"></div> </div></span></div><div class="_rp_02" style="display: none;"></div></div><div class="_rp_12"> <div class="_rp_g1 rpHighlightAllClass rpHighlightFromClass _rp_x2 ms-font-l ms-fwt-r _rp_R1 allowTextSelection ms-fcl-np"><div><div style="display: none;"></div><div><div class="_rp_O7 _rp_P7"><span class="_pe_A2 PersonaPaneLauncher" role="presentation"><div class="_pe_d _pe_w1 _pe_12 _pe_i" role="button" tabindex="0" aria-expanded="false" aria-label="Persona card" aria-haspopup="true"> <span class="_pe_l"> <span class="bidi allowTextSelection" aria-label="From Sterling, Bonnie <BSterling@gaf.com>. Press the Enter key to open the contact card.">Sterling, Bonnie <BSterling@gaf.com></span> </span> <div style="display: none;"></div> </div></span></div></div></div><span class="_rp_O7 _rp_P7" style="display: none;"></span></div> <div class="_rp_k1 _rp_l1" tabindex="-1" aria-label="Mail Actions"><div> <div class="_rp_n2" style="display: none;"></div> <div class="_rp_u1"><div><div style="display: none;"></div></div><div><div><div><div data-reactroot=""><div class="_3CoAn_31UDJt3JOGkpeJl2"><div class="_3ru0NmlQfJr7-rnecyeBpP"><div class="_1rX_w-a9sMADeJ1ZRu77-f _3NnY7PIaBvdNN19RaU-eeT"><button class="o365button _3NnY7PIaBvdNN19RaU-eeT ms-bg-color-themeLight-hover" title="Boomerang - Open Boomerang" tabindex="0" aria-label="Boomerang - Open Boomerang"><div><img src="./RE_ Tableau and javascript_files/boomerang_64_blue.png" class="_3zVUB7ukDaITjTxBoqlaoo"></div></button><div></div></div><div class="_1rX_w-a9sMADeJ1ZRu77-f _3NnY7PIaBvdNN19RaU-eeT"><button class="o365button _3NnY7PIaBvdNN19RaU-eeT ms-bg-color-themeLight-hover" title="Evernote - Save to Evernote" tabindex="0" aria-label="Evernote - Save to Evernote"><div><img src="./RE_ Tableau and javascript_files/app-icon.png" class="_3zVUB7ukDaITjTxBoqlaoo"></div></button><div></div></div><div class="_1rX_w-a9sMADeJ1ZRu77-f _3NnY7PIaBvdNN19RaU-eeT"><button class="o365button _3NnY7PIaBvdNN19RaU-eeT ms-bg-color-themeLight-hover" title="Wunderlist" tabindex="0" aria-label="Wunderlist"><div><img src="./RE_ Tableau and javascript_files/wl_icon_standalone.png" class="_3zVUB7ukDaITjTxBoqlaoo"></div></button><div></div></div></div></div><div></div><div class="_2iVgf-ZQW2e4NRvKMwxdd"></div></div></div></div></div></div> <div class="_rp_s1 ms-bgc-tl-h ms-bgc-tlra" style="display: none;"> <button type="button" class="_rp_q1 ms-font-xs ms-fwt-r o365button" role="button" tabindex="0" aria-label="Like this message" style="display: none;"></button> <button type="button" class="_rp_q1 ms-font-xs ms-fwt-r o365button" role="button" tabindex="0" aria-label="Unlike this message" style="display: none;"></button> </div> <div class="_rp_r1 ms-bgc-tlr ms-bgc-tlra"> <button type="button" class="_rp_n1 ms-font-m ms-fwt-r o365button" role="button" tabindex="0" title="Post reply" style="display: none;"></button> <button autoid="_rp_b" type="button" class="_rp_n1 ms-font-m ms-fwt-r o365button" role="button" tabindex="0" title="Reply all" style="display: none;"></button> <button autoid="_rp_c" type="button" class="_rp_n1 ms-font-m ms-fwt-r o365button ms-fcl-np" role="button" tabindex="0" title="Reply" aria-labelledby="_ariaId_731"><span class="owaimg _rp_x1 ms-Icon--reply ms-icon-font-size-16 ms-fcl-ns-b"> </span><span class="_rp_F1 _rp_w1" id="_ariaId_731">Reply</span></button> <span class="_rp_p1 ms-fwt-r ms-fcl-nt ms-font-m" aria-hidden="true">|</span> <button autoid="_rp_d" type="button" class="_rp_o1 ms-font-m ms-fwt-r ms-fcl-np o365button" role="button" tabindex="0" aria-expanded="false" title="More actions" aria-label="More Actions" aria-haspopup="true"><span class="_fc_3 owaimg ms-Icon--chevronDown ms-icon-font-size-18 ms-fcl-ns-b"> </span><span class="_fc_4 o365buttonLabel _fc_2" style="display: none;"></span></button> </div> </div><div class="hidden"> <div class="_rp_t1 _rp_v2 ms-bgc-tl-h ms-bgc-tlra"> <button autoid="_rp_e" type="button" class="ms-font-xs _rp_y2 o365button ms-fcl-ns" title="Continue editing"><span class="_rp_I1 owaimg _rp_E1 ms-Icon--pencil ms-fcl-ns-b ms-icon-font-size-16"> </span></button> </div> <div class="_rp_t1 ms-bgc-tl-h ms-bgc-tlra"> <button autoid="_rp_f" type="button" class="ms-font-xs _rp_y2 o365button ms-fcl-ns" title="Discard"><span class="_rp_H1 owaimg _rp_E1 ms-Icon--trash ms-fcl-ns-b ms-icon-font-size-16"> </span></button> </div> </div></div> <div class="_rp_Y1"><div class="ms-font-color-neutralSecondary ms-font-weight-semilight ms-font-s _rp_68"><div class="_rp_78"><div><span class="allowTextSelection" title="Tue 2/28/2017 1:56 PM">Tue 2/28, 1:56 PM</span></div><div style="display: none;"></div></div><div><div><div class="_rp_78"><div class="_rw_2" id="ItemHeader.ToContainer" role="heading" tabindex="-1" style="max-width: calc(100% - 200px);"> <div class="rpHighlightAllClass rpHighlightAllRecipientsClass rpHighlightToClass recipientWellWrapping _rw_3"><div class="_rw_a" tabindex="0" aria-label="To recipients. Use the Arrow keys to navigate the list, and the Enter key to open a contact card."><div class="_rw_9"><span tabindex="-1" class="_rw_b"><span class="_rw_8 PersonaPaneLauncher" tabindex="-1"><div class="_pe_d _pe_E _pe_i" tabindex="-1" aria-expanded="false" aria-haspopup="true"> <span class="_pe_k _pe_E _pe_T owaimg presenceJellyBeanBase presenceJellyBeanSmallBase presenceJellyBeanUnknownSmall _pe_f2 _pe_i2 _pe_d2 _pe_c2" style="display: none;"> </span> <span autoid="_pe_b" class="_pe_l _pe_E _pe_S1 bidi _pe_j1 ms-font-s _pe_Q allowTextSelection">You</span> <div style="display: none;"></div> </div></span></span></div><span class="_rw_c ms-font-weight-regular ms-font-color-black hidden">...</span><button type="button" class="ms-font-s _rw_d o365button" role="button" title="Show less" style="display: none;"></button></div></div> </div><button type="button" class="ms-font-s _rw_4 o365button ms-font-color-neutralPrimary" role="button" aria-label="Other recipients" title="Show more"><span class="_fc_4 _rw_6 _fc_2" style="display: none;"></span><span class="_fc_3 owaimg _rw_5 ms-Icon--chevronsDown ms-icon-font-size-12 ms-fcl-ns-b"> </span></button><button type="button" class="ms-font-s _rw_4 o365button" role="button" aria-label="Other recipients" title="Show more" style="display: none;"></button></div></div><div class="_rp_58" style="display: none;"></div></div></div></div> <div class="_rp_32 ms-fcl-ns _rp_72 ms-font-s"><div><span class="allowTextSelection" tabindex="0" id="ItemHeader.FoldersLabel" role="heading">Inbox</span></div></div> </div><div class="_rp_Y1"></div></div></div><div autoid="_rp_a" class="_rp_r2" tabindex="0" role="heading" style="display: none;"></div><div class="_rp_A2" style="display: none;"></div><div aria-hidden="true" tabindex="-1" style="display: none;"></div></div> <div> <div style="display: none;"></div> <div class="_rp_Y1"></div> <div class="_rp_M1" id="ItemHeader.PostedToContainer" role="heading" tabindex="0" style="display: none;"></div> <div class="ms-font-s ms-fwt-sl ms-fcl-ns _rp_82"><div><span tabindex="0" id="ItemHeader.FoldersLabel" role="heading">Inbox</span></div></div> <div class="_rp_e1" style="display: none;"></div> <div style="display: none;"></div> <div><div style="display: none;"></div><div class="_rp_g2 ms-font-s" role="heading" tabindex="0" style="display: none;"></div><div class="_rp_f2 ms-font-s" role="heading" tabindex="0" style="display: none;"></div></div> <div class="_rp_e1" style="display: none;"></div> </div> <div style="display: none;"></div> </div><div class="popupShadow" ispopup="1" ismodal="true" role="dialog" aria-labelledby="_ariaId_729" aria-describedby="_ariaId_730" style="display: none;"></div><div class="popupShadow" ispopup="1" ismodal="true" role="dialog" aria-labelledby="_ariaId_727" aria-describedby="_ariaId_728" style="display: none;"></div></div><div class="_rp_w5" style="display: none;"></div><div><div style="display: none;"></div><div><div aria-expanded="false" style="display: none;"></div></div></div><div class="_rp_B5 ms-border-color-neutralLight" style="display: none;"></div><div style="display: none;"></div><div autoid="_rp_D" class="_rp_m5"> <div class="itemPartBody _rp_o5 ms-font-weight-regular ms-font-color-neutralDark" style="display: none;"></div> <div autoid="_rp_E" class="_rp_n5" style="display: none;"></div> <div><div autoid="_rp_F" class="_rp_n5 rpHighlightAllClass rpHighlightBodyClass allowTextSelection" role="region" aria-label="Message body"> <div style="display: none;"></div> <div style="display: none;"></div> <div> <div class="_rp_o5 ms-font-weight-regular ms-font-color-neutralDark isMessageBodyInPopout" role="presentation" tabindex="-1" id="Item.MessageNormalizedBody"><div class="rps_e8ec"><style type="text/css"><!-- .rps_e8ec p.x_MsoNormal, .rps_e8ec li.x_MsoNormal, .rps_e8ec div.x_MsoNormal
{ margin: 0in; margin-bottom: .0001pt; font-size: 11.0pt; font-family: "Calibri",sans-serif; }
.rps_e8ec span.x_MsoHyperlink
{ color: #0563C1; text-decoration: underline; }
.rps_e8ec span.x_MsoHyperlinkFollowed
{ color: #954F72; text-decoration: underline; }
.rps_e8ec span.x_EmailStyle17
{ font-family: "Calibri",sans-serif; color: windowtext; }
.rps_e8ec span.x_EmailStyle18
{ font-family: "Calibri",sans-serif; color: #1F497D; }
.rps_e8ec .x_MsoChpDefault
{ font-size: 10.0pt; }
--></style>
<div>
<div lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="x_WordSection1">
<p class="x_MsoNormal"><span style="color:#1F497D">Practice by embedding these public tableau workbooks</span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"><a href="http://unilytics.com/tableau-dashboard-gallery/" target="_blank" id="LPlnk237262" previewinformation="1">http://unilytics.com/tableau-dashboard-gallery/</a></span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"> </span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"><a href="https://onlinehelp.tableau.com/current/api/js_api/en-us/JavaScriptAPI/js_api_sample_basic_embed.html" target="_blank">https://onlinehelp.tableau.com/current/api/js_api/en-us/JavaScriptAPI/js_api_sample_basic_embed.html</a></span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"> </span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"> </span></p>
<p class="x_MsoNormal"><span style="color:#1F497D"> </span></p>
<div>
<div style="border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in">
<p class="x_MsoNormal"><b>From:</b> Sterling, Bonnie <br>
<b>Sent:</b> Tuesday, February 28, 2017 12:03 PM<br>
<b>To:</b> Bonnie Sterling <bonnie_sterling@hotmail.com><br>
<b>Cc:</b> Sterling, Bonnie <BSterling@gaf.com><br>
<b>Subject:</b> Tableau and javascript</p>
</div>
</div>
<p class="x_MsoNormal"> </p>
<p class="x_MsoNormal"><a href="http://onlinehelp.tableau.com/samples/en-us/js_api/tutorial.htm" target="_blank">http://onlinehelp.tableau.com/samples/en-us/js_api/tutorial.htm</a></p>
<p class="x_MsoNormal"> </p>
<p class="x_MsoNormal"> </p>
</div>
<p>This email, including any attachments, is for the sole use of the intended recipient(s), and may contain information that is confidential or legally protected. If you are not the intended recipient, any disclosure, copying, distribution, or use of the contents of this information or any attachments is prohibited and may be unlawful. If you have received this electronic transmission in error, please reply immediately to the sender by return e-mail that you have received the message in error and delete it along with any attachments. </p>
</div>
</div>
</div></div> <div style="display: none;"></div> </div> </div></div> <div style="display: none;"></div> </div></div> </div> </div></div></div><div autoid="_rp_G" class="popupShadow" ispopup="1" ismodal="true" style="display: none;"></div><div autoid="_rp_H" class="popupShadow" ispopup="1" ismodal="true" style="display: none;"></div></div></div></body></html>