-
Notifications
You must be signed in to change notification settings - Fork 0
/
kickstarter.html
3009 lines (2846 loc) · 391 KB
/
kickstarter.html
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0062)https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline -->
<html lang="en-us" class=" js flexbox flexboxlegacy canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers no-applicationcache svg inlinesvg smil svgclippaths" dir="ltr" has-applied-locale-text-direction=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style>@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\:form{display:block;}.ng-animate-shim{visibility:hidden;}.ng-anchor{position:absolute;}</style><link href="https://blackboard.valpo.edu/favicon.ico" rel="icon" type="image/x-icon"><meta name="viewport" content="width=device-width,initial-scale=1,minimal-ui,user-scalable=yes"><!--<base href="//ultra.content.blackboardcdn.com/ultra/uiv3900.74.0-rel.27_c21d73a">--><base href="."><title ng-bind="index.title">Content</title><meta name="author" bb-translate-attrs="{'content':'global.meta.author'}" content="Blackboard"><meta name="copyright" bb-translate-attrs="{'content':'global.meta.copyright'}" content="&copy; 1997-2015 Blackboard Inc. All Rights Reserved. U.S. Patent No. 7,493,396 and 7,558,853. Additional Patents Pending."><meta name="keywords" bb-translate-attrs="{'content':'global.meta.keywords'}" content="Blackboard"><script type="text/javascript" src="./kickstarter_files/232bf20b67"></script><script src="./kickstarter_files/nr-spa-1216.min.js.download"></script><script async="" src="./kickstarter_files/aptrinsic.js.download"></script><script>window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(31),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,s){try{l?l-=1:o(s||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:c.now();i("err",[t,n])}var i=t("handle"),a=t(32),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError";if(!c.disabled){var l=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(14),t(13),"addEventListener"in window&&t(7),c.xhrWrappable&&t(15),d=!0)}s.on("fn-start",function(t,e,n){d&&(l+=1)}),s.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),s.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})}},{}],3:[function(t,e,n){var r=t("loader");r.disabled||(r.features.ins=!0)},{}],4:[function(t,e,n){function r(){U++,L=g.hash,this[u]=y.now()}function o(){U--,g.hash!==L&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var s="-start",c="-end",f="-body",u="fn"+s,d="fn"+c,p="cb"+s,l="cb"+c,h="jsTime",m="fetch",v="addEventListener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrWrappable&&!y.disabled){var x=t(11),b=t(12),E=t(9),R=t(7),O=t(14),T=t(8),S=t(15),P=t(10),M=t("ee"),C=M.get("tracer"),N=t(23);t(17),y.features.spa=!0;var L,U=0;M.on(u,r),b.on(p,r),P.on(p,r),M.on(d,o),b.on(l,o),P.on(l,o),M.buffer([u,d,"xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+c,"clearTimeout"+s,u]),S.buffer([u,"new-xhr","send-xhr"+s]),T.buffer([m+s,m+"-done",m+f+s,m+f+c]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+s]),C.buffer([u,"no-"+u]),P.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(T,m+s),a(T,m+"-done"),a(P,"new-jsonp"),a(P,"jsonp-end"),a(P,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,N(!0)),w[v]("load",i,N(!0)),w[v]("popstate",function(){i(0,U>1)},N(!0))}},{}],5:[function(t,e,n){function r(){var t=new PerformanceObserver(function(t,e){var n=t.getEntries();s(v,[n])});try{t.observe({entryTypes:["resource"]})}catch(e){}}function o(t){if(s(v,[window.performance.getEntriesByType(w)]),window.performance["c"+p])try{window.performance[h](m,o,!1)}catch(t){}else try{window.performance[h]("webkit"+m,o,!1)}catch(t){}}function i(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var a=t("ee"),s=t("handle"),c=t(14),f=t(13),u=t(6),d=t(23),p="learResourceTimings",l="addEventListener",h="removeEventListener",m="resourcetimingbufferfull",v="bstResource",w="resource",g="-start",y="-end",x="fn"+g,b="fn"+y,E="bstTimer",R="pushState",O=t("loader");if(!O.disabled){O.features.stn=!0,t(9),"addEventListener"in window&&t(7);var T=NREUM.o.EV;a.on(x,function(t,e){var n=t[0];n instanceof T&&(this.bstStart=O.now())}),a.on(b,function(t,e){var n=t[0];n instanceof T&&s("bst",[n,e,this.bstStart,O.now()])}),c.on(x,function(t,e,n){this.bstStart=O.now(),this.bstType=n}),c.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),this.bstType])}),f.on(x,function(){this.bstStart=O.now()}),f.on(b,function(t,e){s(E,[e,this.bstStart,O.now(),"requestAnimationFrame"])}),a.on(R+g,function(t){this.time=O.now(),this.startPath=location.pathname+location.hash}),a.on(R+y,function(t){s("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),u()?(s(v,[window.performance.getEntriesByType("resource")]),r()):l in window.performance&&(window.performance["c"+p]?window.performance[l](m,o,d(!1)):window.performance[l]("webkit"+m,o,d(!1))),document[l]("scroll",i,d(!1)),document[l]("keypress",i,d(!1)),document[l]("click",i,d(!1))}}},{}],6:[function(t,e,n){e.exports=function(){return"PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver}},{}],7:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t("wrap-function")(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var r=c(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?s(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],8:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var s=r.apply(this,t);return o.emit(n+"start",[t,a],s),s.then(function(t){return o.emit(n+"end",[null,t],s),t},function(t){throw o.emit(n+"end",[t],s),t})})}var o=t("ee").get("fetch"),i=t(32),a=t(31);e.exports=o;var s=window,c="fetch-",f=c+"body-",u=["arrayBuffer","blob","json","text","formData"],d=s.Request,p=s.Response,l=s.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(s,"fetch",c),o.on(c+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(c+"done",[null,e],n)}else o.emit(c+"done",[t],n)}))},{}],9:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],10:[function(t,e,n){function r(t){function e(){f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}function n(){f.emit("jsonp-error",[],l),f.emit("jsonp-end",[],l),t.removeEventListener("load",e,c(!1)),t.removeEventListener("error",n,c(!1))}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var d=s(a),p="function"==typeof d.parent[d.key];if(p){var l={};u.inPlace(d.parent,[d.key],"cb-",l),t.addEventListener("load",e,c(!1)),t.addEventListener("error",n,c(!1)),f.emit("new-jsonp",[t.src],l)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(d);return e?e[1]:null}function a(t,e){var n=t.match(l),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function s(t){var e=t.match(p);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var c=t(23),f=t("ee").get("jsonp"),u=t("wrap-function")(f);if(e.exports=f,o()){var d=/[?&](?:callback|cb)=([^&#]+)/,p=/(.*)\.([^.]+)/,l=/^(\w+)(\.|$)(.*)$/,h=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?u.inPlace(Node.prototype,h,"dom-"):(u.inPlace(HTMLElement.prototype,h,"dom-"),u.inPlace(HTMLHeadElement.prototype,h,"dom-"),u.inPlace(HTMLBodyElement.prototype,h,"dom-")),f.on("dom-start",function(t){r(t[0])})}},{}],11:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],12:[function(t,e,n){function r(t){var e=i.context(),n=s(t,"executor-",e,null,!1),r=new f(n);return i.context(r).getCtx=function(){return e},r}var o=t("wrap-function"),i=t("ee").get("promise"),a=t("ee").getOrSetContext,s=o(i),c=t(31),f=NREUM.o.PR;e.exports=i,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){i.emit("propagate",[null,!o],a,!1,!1),o=o||!t}}var o=!1;c(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var a=e.apply(f,arguments),s=f.resolve(a);return s}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&i.emit("propagate",[t,!0],n,!1,!1),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),c(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),o.wrapInPlace(f.prototype,"then",function(t){return function(){var e=this,n=o.argsToArray.apply(this,arguments),r=a(e);r.promise=e,n[0]=s(n[0],"cb-",r,null,!1),n[1]=s(n[1],"cb-",r,null,!1);var c=t.apply(this,n);return r.nextPromise=c,i.emit("propagate",[e,!0],c,!1,!1),c}}),i.on("executor-start",function(t){t[0]=s(t[0],"resolve-",this,null,!1),t[1]=s(t[1],"resolve-",this,null,!1)}),i.on("executor-err",function(t,e,n){t[1](n)}),i.on("cb-end",function(t,e,n){i.emit("propagate",[n,!0],this.nextPromise,!1,!1)}),i.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=i.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],13:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],14:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],15:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){x.push(t),m&&(E?E.then(a):w?w(a):(R=-R,O.data=R))}function a(){for(var t=0;t<x.length;t++)r([],x[t]);x.length&&(x=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(7);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=t(23),l=NREUM.o,h=l.XHR,m=l.MO,v=l.PR,w=l.SI,g="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],x=[];e.exports=u;var b=window.XMLHttpRequest=function(t){var e=new h(t);try{u.emit("new-xhr",[e],e),e.addEventListener(g,o,p(!1))}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(h,b),b.prototype=h.prototype,d.inPlace(b.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),m){var E=v&&v.resolve();if(!w&&!v){var R=1,O=document.createTextNode(R);new m(a).observe(O,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===g||a()})},{}],16:[function(t,e,n){function r(t){if(!s(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||c(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&c(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",s=1,c="",f="";return o+"@nr="+i+"-"+s+"-"+n+"-"+r+"-"+t+"-"+a+"-"+c+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var s={v:[0,1],d:{ty:"Browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(s.d.tk=i),btoa(JSON.stringify(s))}function s(t){return f()&&c(t)}function c(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(28),h=t(18);e.exports={generateTracePayload:r,shouldGenerateTrace:s}},{}],17:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);return e.protocol&&"data"===e.protocol?void g("Ajax/DataUrl/Excluded"):void(e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,s("xhr",[e,n,this.startTime,this.endTime,"xhr"],this)))}}function o(t,e){var n=c(e),r=t.params;r.hostname=n.hostname,r.port=n.port,r.protocol=n.protocol,r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=n,t.sameOrigin=n.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable&&!a.disabled){var s=t("handle"),c=t(18),f=t(16).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(24),m=t(22),v=t(19),w=t(23),g=t(25).recordSupportability,y=NREUM.o.REQ,x=window.XMLHttpRequest;a.features.xhr=!0,t(15),t(8),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,e.params=this.params||{},e.metrics=this.metrics||{},t.addEventListener("load",function(n){i(e,t)},w(!1)),h&&(h>34||h<10)||t.addEventListener("progress",function(t){e.lastSize=t.loaded},w(!1))}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var s=0;s<p;s++)e.addEventListener(d[s],this.listener,w(!1))}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("xhr-resolved",function(){this.endTime=a.now()}),u.on("addEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof x&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof x&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=c(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)}),u.on("fetch-start",function(t,e){this.params={},this.metrics={},this.startTime=a.now(),this.dt=e,t.length>=1&&(this.target=t[0]),t.length>=2&&(this.opts=t[1]);var n,r=this.opts||{},i=this.target;if("string"==typeof i?n=i:"object"==typeof i&&i instanceof y?n=i.url:window.URL&&"object"==typeof i&&i instanceof URL&&(n=i.href),o(this,n),"data"!==this.params.protocol){var s=(""+(i&&i instanceof y&&i.method||r.method||"GET")).toUpperCase();this.params.method=s,this.txSize=m(r.body)||0}}),u.on("fetch-done",function(t,e){if(this.endTime=a.now(),this.params||(this.params={}),"data"===this.params.protocol)return void g("Ajax/DataUrl/Excluded");this.params.status=e?e.status:0;var n;"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);var r={txSize:this.txSize,rxSize:n,duration:a.now()-this.startTime};s("xhr",[this.params,r,this.startTime,this.endTime,"fetch"],this)})}},{}],18:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];if(0===(t||"").indexOf("data:"))return{protocol:"data"};var e=document.createElement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,s=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||s),"/"===o.pathname&&(r[t]=o),o}},{}],19:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responseText):void 0}var o=t(22);e.exports=r},{}],20:[function(t,e,n){function r(){}function o(t,e,n,r){return function(){return u.recordSupportability("API/"+e+"/called"),i(t+e,[f.now()].concat(s(arguments)),n?null:this,r),n?void 0:this}}var i=t("handle"),a=t(31),s=t(32),c=t("ee").get("tracer"),f=t("loader"),u=t(25),d=NREUM;"undefined"==typeof window.newrelic&&(newrelic=d);var p=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",h=l+"ixn-";a(p,function(t,e){d[e]=o(l,e,!0,"api")}),d.addPageAction=o(l,"addPageAction",!0),d.setCurrentRouteName=o(l,"routeName",!0),e.exports=newrelic,d.interaction=function(){return(new r).get()};var m=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(h+"tracer",[f.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],n),t}finally{c.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){m[e]=o(h,e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),u.recordSupportability("API/noticeError/called"),i("err",[t,f.now(),!1,e])}},{}],21:[function(t,e,n){function r(t){if(NREUM.init){for(var e=NREUM.init,n=t.split("."),r=0;r<n.length-1;r++)if(e=e[n[r]],"object"!=typeof e)return;return e=e[n[n.length-1]]}}e.exports={getConfiguration:r}},{}],22:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],23:[function(t,e,n){var r=!1;try{var o=Object.defineProperty({},"passive",{get:function(){r=!0}});window.addEventListener("testPassive",null,o),window.removeEventListener("testPassive",null,o)}catch(i){}e.exports=function(t){return r?{passive:!0,capture:!!t}:!!t}},{}],24:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],25:[function(t,e,n){function r(t,e){var n=[a,t,{name:t},e];return i("storeMetric",n,null,"api"),n}function o(t,e){var n=[s,t,{name:t},e];return i("storeEventMetrics",n,null,"api"),n}var i=t("handle"),a="sm",s="cm";e.exports={constants:{SUPPORTABILITY_METRIC:a,CUSTOM_METRIC:s},recordSupportability:r,recordCustom:o}},{}],26:[function(t,e,n){function r(){return s.exists&&performance.now?Math.round(performance.now()):(i=Math.max((new Date).getTime(),i))-a}function o(){return i}var i=(new Date).getTime(),a=i,s=t(33);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=o},{}],27:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?l("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&l("timing",["fcp",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();if(n.length>0){var r=n[n.length-1];if(f&&f<r.startTime)return;var o=[r],i=a({});i&&o.push(i),l("lcp",o)}}function i(t){t.getEntries().forEach(function(t){t.hadRecentInput||l("cls",[t])})}function a(t){var e=navigator.connection||navigator.mozConnection||navigator.webkitConnection;if(e)return e.type&&(t["net-type"]=e.type),e.effectiveType&&(t["net-etype"]=e.effectiveType),e.rtt&&(t["net-rtt"]=e.rtt),e.downlink&&(t["net-dlink"]=e.downlink),t}function s(t){if(t instanceof w&&!y){var e=Math.round(t.timeStamp),n={type:t.type};a(n),e<=h.now()?n.fid=h.now()-e:e>h.offset&&e<=Date.now()?(e-=h.offset,n.fid=h.now()-e):e=h.now(),y=!0,l("timing",["fi",e,n])}}function c(t){"hidden"===t&&(f=h.now(),l("pageHide",[f]))}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var f,u,d,p,l=t("handle"),h=t("loader"),m=t(30),v=t(23),w=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){u=new PerformanceObserver(r);try{u.observe({entryTypes:["paint"]})}catch(g){}d=new PerformanceObserver(o);try{d.observe({entryTypes:["largest-contentful-paint"]})}catch(g){}p=new PerformanceObserver(i);try{p.observe({type:"layout-shift",buffered:!0})}catch(g){}}if("addEventListener"in document){var y=!1,x=["click","keydown","mousedown","pointerdown","touchstart"];x.forEach(function(t){document.addEventListener(t,s,v(!1))})}m(c)}},{}],28:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(t)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join("")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],29:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}e.exports={agent:o,version:i,match:r}},{}],30:[function(t,e,n){function r(t){function e(){t(s&&document[s]?document[s]:document[i]?"hidden":"visible")}"addEventListener"in document&&a&&document.addEventListener(a,e,o(!1))}var o=t(23);e.exports=r;var i,a,s;"undefined"!=typeof document.hidden?(i="hidden",a="visibilitychange",s="visibilityState"):"undefined"!=typeof document.msHidden?(i="msHidden",a="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(i="webkitHidden",a="webkitvisibilitychange",s="webkitVisibilityState")},{}],31:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],32:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],33:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?f(t,c,a):a()}function n(n,r,o,i,a){if(a!==!1&&(a=!0),!l.aborted||i){t&&a&&t(n,r,o);for(var s=e(o),c=m(n),f=c.length,u=0;u<f;u++)c[u].apply(s,r);var p=d[y[n]];return p&&p.push([x,n,r,s]),s}}function i(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return p[t]=p[t]||o(n)}function w(t,e){l.aborted||u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:i,addEventListener:i,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:s,aborted:!1};return x}function i(t){return f(t,c,a)}function a(){return new r}function s(){(d.api||d.feature)&&(l.aborted=!0,d=l.backlog={})}var c="nr@context",f=t("gos"),u=t(31),d={},p={},l=e.exports=o();e.exports.getOrSetContext=i,l.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!T++){var t=O.info=NREUM.info,e=m.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();c(E,function(e,n){t[e]||(t[e]=n)});var n=a();s("mark",["onload",n+O.offset],null,"api"),s("timing",["load",n]);var r=m.createElement("script");0===t.agent.indexOf("http://")||0===t.agent.indexOf("https://")?r.src=t.agent:r.src=l+"://"+t.agent,e.parentNode.insertBefore(r,e)}}function o(){"complete"===m.readyState&&i()}function i(){s("mark",["domContent",a()+O.offset],null,"api")}var a=t(26),s=t("handle"),c=t(31),f=t("ee"),u=t(29),d=t(21),p=t(23),l=d.getConfiguration("ssl")===!1?"http":"https",h=window,m=h.document,v="addEventListener",w="attachEvent",g=h.XMLHttpRequest,y=g&&g.prototype,x=!1;NREUM.o={ST:setTimeout,SI:h.setImmediate,CT:clearTimeout,XHR:g,REQ:h.Request,EV:h.Event,PR:h.Promise,MO:h.MutationObserver};var b=""+location,E={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1216.min.js"},R=g&&y&&y[v]&&!/CriOS/.test(navigator.userAgent),O=e.exports={offset:a.getLastTimestamp(),now:a,origin:b,features:{},xhrWrappable:R,userAgent:u,disabled:x};if(!x){t(20),t(27),m[v]?(m[v]("DOMContentLoaded",i,p(!1)),h[v]("load",r,p(!1))):(m[w]("onreadystatechange",o),h[w]("onload",r)),s("mark",["firstbyte",a.getLastTimestamp()],null,"api");var T=0}},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,c,f){function nrWrapper(){var i,a,u,p;try{a=this,i=d(arguments),u="function"==typeof r?r(i,a):r||{}}catch(l){o([l,"",[i,a,c],u],t)}s(n+"start",[i,a,c],u,f);try{return p=e.apply(a,i)}catch(h){throw s(n+"err",[i,a,h],u,f),h}finally{s(n+"end",[i,a,p],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[p]=e,i(e,nrWrapper,t),nrWrapper)}function r(t,e,r,o,i){r||(r="");var s,c,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)c=e[f],s=t[c],a(s)||(t[c]=n(s,u?c+r:r,o,c,i))}function s(n,r,i,a){if(!h||e){var s=h;h=!0;try{t.emit(n,r,i,e,a)}catch(c){o([c,n,r,i],t)}h=s}}return t||(t=u),n.inPlace=r,n.flag=p,n}function o(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function i(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(i){o([i],n)}for(var a in t)l.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[p])}function s(t,e){var n=e(t);return n[p]=t,i(t,n,u),n}function c(t,e,n){var r=t[e];t[e]=s(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(32),p="nr@original",l=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=s,e.exports.wrapInPlace=c,e.exports.argsToArray=f},{}]},{},["loader",2,17,5,3,4]);
;NREUM.info={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",licenseKey:"232bf20b67",applicationID:"1296996626",sa:1}</script><script>var gainsightKey="AP-PQQY5YJEHTTA-2";
(function(n,t,a,e,co){ if (gainsightKey!= "" && !gainsightKey.includes("GAINSIGHT_KEY")) {var i="aptrinsic";n[i]=n[i]||function(){
(n[i].q=n[i].q||[]).push(arguments)},n[i].p=e;n[i].c=co;
var r=t.createElement("script");r.async=!0,r.src=a+"?a="+e;
var c=t.getElementsByTagName("script")[0];c.parentNode.insertBefore(r,c)}
})(window,document,"https://web-sdk.aptrinsic.com/api/aptrinsic.js", gainsightKey);</script><script>var pendoKey="";
// This code installs the Pendo tracking script by dynamically injecting it into the page.
// The Pendo API key is set using the variable "pendoKey", which is passed into the function as "apiKey".
(function(apiKey){
// The script will only be installed if pendoKey is not an empty string and does not include the string "PENDO_KEY".
if (pendoKey!= "" && !pendoKey.includes("PENDO_KEY")) {
// The Pendo install scripts available here https://app.pendo.io -> Settings -> Subscription Settings -> view âLearnâ App details -> select âInstall Settingsâ tab
// -> Copy the JS snippet for SPA. Mostly the changes not required, if anything needs to be changed in this snippet, the Pendo team will notify us.
(function(p,e,n,d,o){var v,w,x,y,z;o=p[d]=p[d]||{};o._q=o._q||[];
v=['initialize','identify','updateOptions','pageLoad','track'];for(w=0,x=v.length;w<x;++w)(function(m){
o[m]=o[m]||function(){o._q[m===v[0]?'unshift':'push']([m].concat([].slice.call(arguments,0)));};})(v[w]);
y=e.createElement(n);y.async=!0;y.src='https://cdn.pendo.io/agent/static/'+apiKey+'/pendo.js';
z=e.getElementsByTagName(n)[0];z.parentNode.insertBefore(y,z);})(window,document,'script','pendo');
}
})(pendoKey);</script><script>window.publicPath = 'https://ultra.content.blackboardcdn.com/ultra/uiv3900.74.0-rel.27_c21d73a/';
window.FabricConfig = {
fontBaseUrl: 'https://ultra.content.blackboardcdn.com/ultra/uiv3900.74.0-rel.27_c21d73a',
};</script><link class="initial-css-link" href="./kickstarter_files/25711-4ddd52ae2503ef18.css" rel="stylesheet"><link class="initial-css-link" href="./kickstarter_files/app-4ddd52ae2503ef18.css" rel="stylesheet"><style>.ngf-hide{display:none !important}</style><meta class="foundation-data-attribute-namespace"><meta class="foundation-mq-xxlarge"><meta class="foundation-mq-xlarge-only"><meta class="foundation-mq-xlarge"><meta class="foundation-mq-large-only"><meta class="foundation-mq-large"><meta class="foundation-mq-medium-only"><meta class="foundation-mq-medium"><meta class="foundation-mq-small-only"><meta class="foundation-mq-small"><style></style><style type="text/css">.scrollDisabled_ea3b4f38{position:relative;height:100%;overflow:hidden !important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
</style><style data-merge-styles="true" type="text/css"></style><style type="text/css">.rootIsFixed_604b1c86{position:fixed;z-index:1000000;top:0;left:0;width:100%;height:100%;visibility:hidden}.content_604b1c86{visibility:visible}
</style><style type="text/css">.root_591a162e{background-color:rgba(255,255,255,.4);position:absolute;bottom:0;left:0;right:0;top:0}.root_591a162e.rootIsNone_591a162e{visibility:hidden}.root_591a162e.rootIsDark_591a162e{background-color:rgba(0,0,0,.4)}@media screen and (-ms-high-contrast: active){.root_591a162e{border:1px solid WindowText}}
</style><style type="text/css">.root_3353f7ac{background-color:transparent;position:fixed;height:100%;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0;pointer-events:none;-webkit-transition:opacity .267s;transition:opacity .267s}.root_3353f7ac .ms-Button.ms-Button--compound{display:block}[dir='ltr'] .root_3353f7ac .ms-Button.ms-Button--compound{margin-left:0}[dir='rtl'] .root_3353f7ac .ms-Button.ms-Button--compound{margin-right:0}@media screen and (-ms-high-contrast: active){.root_3353f7ac .ms-Overlay{opacity:0}}.rootIsVisible_3353f7ac{opacity:1;pointer-events:auto}.main_3353f7ac{background-color:#ffffff;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;outline:3px solid transparent;max-height:100%;overflow-y:auto}[dir='ltr'] .main_3353f7ac{-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.4);box-shadow:0 0 5px 0 rgba(0,0,0,0.4)}[dir='rtl'] .main_3353f7ac{-webkit-box-shadow:0 0 5px 0 rgba(0,0,0,0.4);box-shadow:0 0 5px 0 rgba(0,0,0,0.4)}[dir='ltr'] .main_3353f7ac{text-align:left}[dir='rtl'] .main_3353f7ac{text-align:right}
</style><style type="text/css">.main_66b67232{border-radius:0.125rem;width:calc(100% - 2rem)}@media (min-width: 30.125rem){.main_66b67232{width:auto}}@media (min-width: 30.125rem){.isMainLarge_66b67232{width:calc(100% - 2rem)}}@media (min-width: 52rem){.isMainLarge_66b67232{width:auto}}@media (min-width: 30.125rem){.isMainSmall_66b67232{width:auto}}.isOpen_66b67232{display:-webkit-box;display:-ms-flexbox;display:flex}.contentMain_66b67232{width:100%;max-width:none}@media (min-width: 30.125rem){.contentMain_66b67232{width:28.125rem;max-width:28.125rem}}.inner_66b67232{padding:0 1rem 1rem;min-height:6.25rem}.header_66b67232{position:relative;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:0.75rem 0.375rem 1rem 1rem}.title_66b67232{padding-top:0.25rem;margin:0;font-size:1.5rem;font-weight:400;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}html[dir='ltr'] .title_66b67232{text-align:left}html[dir='rtl'] .title_66b67232{text-align:right}.title_66b67232::-moz-focus-inner{border:0}.title_66b67232{outline:transparent}.title_66b67232{position:relative}.ms-Fabric.is-focusVisible .title_66b67232:focus{outline:none}.ms-Fabric.is-focusVisible .title_66b67232:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.title_66b67232.titleFoundationOverrides_66b67232{font-family:inherit}.topButton_66b67232{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.topButton_66b67232>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.content_66b67232{position:relative;width:100%}.content_66b67232 .ms-Button.ms-Button--compound{margin-bottom:1.25rem}.content_66b67232 .ms-Button.ms-Button--compound:last-child{margin-bottom:0}.subText_66b67232{margin:0;line-height:1.5;word-wrap:break-word}.footer_66b67232{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:0.5rem 0.5rem 1rem;margin:0;font-size:0;background-color:#f8f8f8;border-top:0.0625rem solid #cdcdcd}.helpLink_66b67232{font-size:0.875rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0.5rem 0.5rem 0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.actions_66b67232{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.action_66b67232{min-width:5.5rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:0.5rem 0.5rem 0}.action_66b67232 button{width:100%}@media (min-width: 30.125rem){.isLarge_66b67232{width:100%;max-width:none}}@media (min-width: 52rem){.isLarge_66b67232{width:50rem;max-width:50rem}}.isLarge_66b67232 .header_66b67232{border-bottom:0.0625rem solid #cdcdcd;padding-bottom:0.75rem}.isLarge_66b67232 .inner_66b67232{padding-top:1rem;min-height:12.5rem}@media (min-width: 30.125rem){.isSmall_66b67232{width:18.75rem;max-width:18.75rem}}.isSmall_66b67232 .inner_66b67232{min-height:3.125rem}.isActionConfirmation_66b67232{max-width:17.1875rem;min-width:17.1875rem}@media (min-width: 30rem){.isActionConfirmation_66b67232{width:17.1875rem}}.isActionConfirmation_66b67232 .title_66b67232{margin:0;font-size:0.875rem;font-weight:600}html[dir='ltr'] .isActionConfirmation_66b67232 .title_66b67232{text-align:left}html[dir='rtl'] .isActionConfirmation_66b67232 .title_66b67232{text-align:right}html[dir='ltr'] .isActionConfirmation_66b67232 .subText_66b67232{text-align:left}html[dir='rtl'] .isActionConfirmation_66b67232 .subText_66b67232{text-align:right}.isActionConfirmation_66b67232 .inner_66b67232{padding:0 0.9375rem;min-height:0}.isActionConfirmation_66b67232 .footer_66b67232{padding:0.375rem 0.6875rem 0.3125rem;margin:0;border-top:none;background-color:#ffffff;border-top:0}.isActionConfirmation_66b67232 .footer_66b67232::before{content:'';width:100%;max-width:15.125rem;margin:0 auto;border-top:0.0625rem solid #cdcdcd;margin-bottom:0.25rem}.isActionConfirmation_66b67232 .actions_66b67232{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-bottom:0.4375rem}.isActionConfirmation_66b67232 .action_66b67232{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;min-width:5.5rem}
</style><style type="text/css">.root_2f0b1a7f{pointer-events:none;position:absolute;top:0;left:0;right:0;bottom:0}.root_2f0b1a7f .overlay_2f0b1a7f{pointer-events:none;opacity:1;cursor:pointer;-webkit-transition:opacity .367s cubic-bezier(0.1, 0.9, 0.2, 1);transition:opacity .367s cubic-bezier(0.1, 0.9, 0.2, 1)}.main_2f0b1a7f{background-color:#ffffff;position:absolute;width:100%;bottom:0;top:0;-webkit-overflow-scrolling:touch;-webkit-user-select:auto}[dir='ltr'] .main_2f0b1a7f{right:0}[dir='rtl'] .main_2f0b1a7f{left:0}@media only screen and (min-width: 40.0625em){.main_2f0b1a7f{pointer-events:auto;width:26.25rem;-webkit-box-shadow:0 0 0 5px rgba(0,0,0,0.1),0 0 0 1px rgba(0,0,0,0.1);box-shadow:0 0 0 5px rgba(0,0,0,0.1),0 0 0 1px rgba(0,0,0,0.1)}[dir='ltr'] .main_2f0b1a7f{left:auto}[dir='rtl'] .main_2f0b1a7f{right:auto}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .main_2f0b1a7f{width:100%}@media only screen and (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .main_2f0b1a7f{width:26.25rem}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .main_2f0b1a7f{width:100%}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f.stackIndex1_2f0b1a7f .main_2f0b1a7f{max-width:calc(100% - 1.875rem)}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f.stackIndex2_2f0b1a7f .main_2f0b1a7f{max-width:calc(100% - 4.5rem)}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f.stackIndex3_2f0b1a7f .main_2f0b1a7f{max-width:calc(100% - 7.125rem)}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f.stackIndex4_2f0b1a7f .main_2f0b1a7f{max-width:calc(100% - 9.75rem)}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f.stackIndex5_2f0b1a7f .main_2f0b1a7f{max-width:calc(100% - 12.375rem)}}.root_2f0b1a7f.rootIsOpen_2f0b1a7f .main_2f0b1a7f{pointer-events:auto}.root_2f0b1a7f.rootIsOpen_2f0b1a7f .overlay_2f0b1a7f{cursor:pointer;pointer-events:auto}@media screen and (-ms-high-contrast: active){.root_2f0b1a7f.rootIsOpen_2f0b1a7f .overlay_2f0b1a7f{opacity:0}}.closeButton_2f0b1a7f{background-color:transparent;margin:0;line-height:1rem;font-weight:300;font-size:2rem;-webkit-box-shadow:none;box-shadow:none;border-radius:0;-webkit-transition:none;transition:none;z-index:2}[dir='ltr'] .closeButton_2f0b1a7f{left:2.875rem}[dir='rtl'] .closeButton_2f0b1a7f{right:2.875rem}.menuToggle_2f0b1a7f{z-index:2}@media only screen and (min-width: 64.0625em){.menuToggle_2f0b1a7f{display:none !important}}.panelContentRight_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width: 0em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{-webkit-transition:background-color 250ms, color 250ms, -webkit-transform 300ms;transition:background-color 250ms, color 250ms, -webkit-transform 300ms;transition:transform 300ms, background-color 250ms, color 250ms;transition:transform 300ms, background-color 250ms, color 250ms, -webkit-transform 300ms;-webkit-transform-origin:0.75rem 0;transform-origin:0.75rem 0}}@media (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{background-color:#c56fd5 !important;color:#ffffff !important;top:1.875rem;z-index:910;font-weight:400;font-size:2.25rem;padding:0;border:0}[dir='ltr'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{right:auto}[dir='rtl'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{left:auto}[dir='ltr'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{left:-1.875rem}[dir='rtl'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{right:-1.875rem}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f:after{position:absolute;content:"";top:100%;border-style:solid;border-width:0 24px 17px 0;border-color:transparent #8d4a99 transparent transparent}[dir='ltr'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f:after{left:0}[dir='rtl'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f:after{right:0}[dir='rtl'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f:after{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f:hover{background-color:#b13dc6 !important}}@media only screen and (min-width: 40.0625em) and (min-width: 120.0625em){[dir='ltr'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{left:-1.5rem}[dir='rtl'] .root_2f0b1a7f.rootIsPeek_2f0b1a7f .closeButton_2f0b1a7f{right:-1.5rem}}@media (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .menuToggle_2f0b1a7f{display:none !important}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .commands_2f0b1a7f{background-color:#262626;position:absolute;width:100%}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:absolute;-webkit-box-flex:1;-ms-flex:1;flex:1}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:none}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-family:"Open Sans",sans-serif}@media (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .commands_2f0b1a7f{background-color:transparent}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:relative}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:block}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-size:1.875rem;font-family:"Noto Serif",serif;color:#262626;line-height:2.5rem}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .headerActions_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0;flex:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;margin:0 0.375rem}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .headerActions_2f0b1a7f button{color:#cdcdcd}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .headerActions_2f0b1a7f button:hover{color:#ffffff}@media only screen and (min-width: 120.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .headerActions_2f0b1a7f{margin:inherit}}@media (max-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .headerActions_2f0b1a7f{-webkit-box-flex:1;-ms-flex:1;flex:1}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f{top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0}@media (max-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .commands_2f0b1a7f{height:3rem}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f{height:3rem}}@media (min-width: 40.0625em) and (max-width: 64.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .commands_2f0b1a7f{height:3.5rem}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f{height:3.5rem}}@media (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f{-webkit-box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;position:relative;min-height:6.6875rem;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .footer_2f0b1a7f{padding-left:1rem;padding-right:1rem}@media only screen and (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .footer_2f0b1a7f{padding-left:1.875rem;padding-right:1.875rem}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsPeek_2f0b1a7f .footer_2f0b1a7f{padding-left:1.875rem;padding-right:1.875rem}}@media (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{-webkit-transition:background-color 250ms, color 250ms, -webkit-transform 300ms;transition:background-color 250ms, color 250ms, -webkit-transform 300ms;transition:transform 300ms, background-color 250ms, color 250ms;transition:transform 300ms, background-color 250ms, color 250ms, -webkit-transform 300ms;-webkit-transform-origin:0.75rem 0;transform-origin:0.75rem 0}}@media (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{background-color:#c56fd5 !important;color:#ffffff !important;top:1.875rem;z-index:910;font-weight:400;font-size:2.25rem;padding:0;border:0}[dir='ltr'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{right:auto}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{left:auto}[dir='ltr'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{left:-1.875rem}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{right:-1.875rem}.root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f:after{position:absolute;content:"";top:100%;border-style:solid;border-width:0 24px 17px 0;border-color:transparent #8d4a99 transparent transparent}[dir='ltr'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f:after{left:0}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f:after{right:0}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f:after{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f:hover{background-color:#b13dc6 !important}}@media only screen and (min-width: 64.0625em) and (min-width: 120.0625em){[dir='ltr'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{left:-1.5rem}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .closeButton_2f0b1a7f{right:-1.5rem}}@media (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .menuToggle_2f0b1a7f{display:none !important}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .commands_2f0b1a7f{background-color:#262626;position:absolute;width:100%}.root_2f0b1a7f.rootIsFull_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:absolute;-webkit-box-flex:1;-ms-flex:1;flex:1}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:none}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-family:"Open Sans",sans-serif}@media (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .commands_2f0b1a7f{background-color:transparent}.root_2f0b1a7f.rootIsFull_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:relative}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:block}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-size:1.875rem;font-family:"Noto Serif",serif;color:#262626;line-height:2.5rem}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .headerActions_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0;flex:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;margin:0 0.375rem}.root_2f0b1a7f.rootIsFull_2f0b1a7f .headerActions_2f0b1a7f button{color:#cdcdcd}.root_2f0b1a7f.rootIsFull_2f0b1a7f .headerActions_2f0b1a7f button:hover{color:#ffffff}@media only screen and (min-width: 120.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .headerActions_2f0b1a7f{margin:inherit}}@media (max-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .headerActions_2f0b1a7f{-webkit-box-flex:1;-ms-flex:1;flex:1}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f{top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0}@media (max-width: 40.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .commands_2f0b1a7f{height:3rem}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f{height:3rem}}@media (min-width: 40.0625em) and (max-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .commands_2f0b1a7f{height:3.5rem}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f{height:3.5rem}}@media (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f{-webkit-box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;position:relative;min-height:6.6875rem;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .footer_2f0b1a7f{padding-left:1rem;padding-right:1rem}@media only screen and (min-width: 40.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .footer_2f0b1a7f{padding-left:1.5rem;padding-right:1.5rem}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .header_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f,.root_2f0b1a7f.rootIsFull_2f0b1a7f .footer_2f0b1a7f{padding-left:1.875rem;padding-right:1.875rem}}.headerIsPeek_2f0b1a7f{width:100%}@media (min-width: 64.0625em){.headerIsPeek_2f0b1a7f .menuToggle_2f0b1a7f{display:none !important}}.headerIsPeek_2f0b1a7f .commands_2f0b1a7f{background-color:#262626;position:absolute;width:100%}.headerIsPeek_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:absolute;-webkit-box-flex:1;-ms-flex:1;flex:1}.headerIsPeek_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:none}.headerIsPeek_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-family:"Open Sans",sans-serif}@media (min-width: 40.0625em){.headerIsPeek_2f0b1a7f .commands_2f0b1a7f{background-color:transparent}.headerIsPeek_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:relative}.headerIsPeek_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:block}.headerIsPeek_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-size:1.875rem;font-family:"Noto Serif",serif;color:#262626;line-height:2.5rem}}.headerIsPeek_2f0b1a7f .headerActions_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0;flex:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;margin:0 0.375rem}.headerIsPeek_2f0b1a7f .headerActions_2f0b1a7f button{color:#cdcdcd}.headerIsPeek_2f0b1a7f .headerActions_2f0b1a7f button:hover{color:#ffffff}@media only screen and (min-width: 120.0625em){.headerIsPeek_2f0b1a7f .headerActions_2f0b1a7f{margin:inherit}}@media (max-width: 40.0625em){.headerIsPeek_2f0b1a7f .headerActions_2f0b1a7f{-webkit-box-flex:1;-ms-flex:1;flex:1}}.headerIsPeek_2f0b1a7f .header_2f0b1a7f{top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0}@media (max-width: 40.0625em){.headerIsPeek_2f0b1a7f .commands_2f0b1a7f{height:3rem}.headerIsPeek_2f0b1a7f .header_2f0b1a7f{height:3rem}}@media (min-width: 40.0625em) and (max-width: 64.0625em){.headerIsPeek_2f0b1a7f .commands_2f0b1a7f{height:3.5rem}.headerIsPeek_2f0b1a7f .header_2f0b1a7f{height:3.5rem}}@media (min-width: 40.0625em){.headerIsPeek_2f0b1a7f .header_2f0b1a7f{-webkit-box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;position:relative;min-height:6.6875rem;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.headerIsFull_2f0b1a7f{width:100%}@media (min-width: 64.0625em){.headerIsFull_2f0b1a7f .menuToggle_2f0b1a7f{display:none !important}}.headerIsFull_2f0b1a7f .commands_2f0b1a7f{background-color:#262626;position:absolute;width:100%}.headerIsFull_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:absolute;-webkit-box-flex:1;-ms-flex:1;flex:1}.headerIsFull_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:none}.headerIsFull_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-family:"Open Sans",sans-serif}@media (min-width: 64.0625em){.headerIsFull_2f0b1a7f .commands_2f0b1a7f{background-color:transparent}.headerIsFull_2f0b1a7f .titlesContainer_2f0b1a7f{z-index:1;position:relative}.headerIsFull_2f0b1a7f .header_2f0b1a7f .subTitle_2f0b1a7f{display:block}.headerIsFull_2f0b1a7f .header_2f0b1a7f .headerText_2f0b1a7f{font-size:1.875rem;font-family:"Noto Serif",serif;color:#262626;line-height:2.5rem}}.headerIsFull_2f0b1a7f .headerActions_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0;flex:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;margin:0 0.375rem}.headerIsFull_2f0b1a7f .headerActions_2f0b1a7f button{color:#cdcdcd}.headerIsFull_2f0b1a7f .headerActions_2f0b1a7f button:hover{color:#ffffff}@media only screen and (min-width: 120.0625em){.headerIsFull_2f0b1a7f .headerActions_2f0b1a7f{margin:inherit}}@media (max-width: 64.0625em){.headerIsFull_2f0b1a7f .headerActions_2f0b1a7f{-webkit-box-flex:1;-ms-flex:1;flex:1}}.headerIsFull_2f0b1a7f .header_2f0b1a7f{top:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0}@media (max-width: 40.0625em){.headerIsFull_2f0b1a7f .commands_2f0b1a7f{height:3rem}.headerIsFull_2f0b1a7f .header_2f0b1a7f{height:3rem}}@media (min-width: 40.0625em) and (max-width: 64.0625em){.headerIsFull_2f0b1a7f .commands_2f0b1a7f{height:3.5rem}.headerIsFull_2f0b1a7f .header_2f0b1a7f{height:3.5rem}}@media (min-width: 64.0625em){.headerIsFull_2f0b1a7f .header_2f0b1a7f{-webkit-box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;box-shadow:0 5px 0 0 rgba(0,0,0,0.05),0 1px 0 0 #cdcdcd;position:relative;min-height:6.6875rem;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.contentInner_2f0b1a7f{position:absolute;top:0;bottom:0;left:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-overflow-scrolling:touch;-webkit-transform:translateZ(0);transform:translateZ(0)}.contentInner_2f0b1a7f .scrollContainer_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto;-webkit-box-flex:1;-ms-flex:1;flex:1}@media only screen and (min-width: 64.0625em){.contentInner_2f0b1a7f .scrollContainer_2f0b1a7f.fixedLargeHeader_2f0b1a7f{overflow-y:hidden}}.content_2f0b1a7f{margin-bottom:0;overflow-y:auto;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (min-width: 64.0625em){.content_2f0b1a7f{overflow-y:visible}.fixedLargeHeader_2f0b1a7f .content_2f0b1a7f{overflow-y:auto}}.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f{padding-top:1.25rem;padding-bottom:1.25rem}@media only screen and (min-width: 40.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f{padding-top:1.5rem;padding-bottom:1.5rem}}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f{padding-top:1.875rem;padding-bottom:1.875rem}}.root_2f0b1a7f.rootIsPeek_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f{padding-top:1.25rem;padding-bottom:1.25rem}@media only screen and (min-width: 40.0625em){.root_2f0b1a7f.rootIsPeek_2f0b1a7f .content_2f0b1a7f.contentIsPadded_2f0b1a7f{padding-top:1.875rem;padding-bottom:1.875rem}}.header_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0;z-index:1}.headerText_2f0b1a7f{font-size:1rem;font-family:"Open Sans",sans-serif;font-weight:600;color:#ffffff;margin:0;line-height:2.5rem}@media only screen and (min-width: 40.0625em){.headerText_2f0b1a7f{font-weight:400}}.footer_2f0b1a7f{-ms-flex-negative:0;flex-shrink:0;min-height:4.25rem;padding:0.5625rem 0.625rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#f8f8f8;border-top:0.0625rem solid #cdcdcd;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media only screen and (min-width: 64.0625em){.footer_2f0b1a7f{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.footerIsPeek_2f0b1a7f{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (max-width: 40.0625em){.footerIsFull_2f0b1a7f{-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.footerContent_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0.375rem 0.3125rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}@media only screen and (min-width: 40.0625em){.footerContent_2f0b1a7f{-webkit-box-flex:3;-ms-flex-positive:3;flex-grow:3}}@media only screen and (min-width: 64.0625em){.footerContent_2f0b1a7f{-webkit-box-flex:4;-ms-flex-positive:4;flex-grow:4}}.footerButtonWrapper_2f0b1a7f{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0.1875rem 0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:100%}@media only screen and (min-width: 64.0625em){.footerButtonWrapper_2f0b1a7f{min-width:22.5rem;-webkit-box-flex:initial;-ms-flex-positive:initial;flex-grow:initial}}.footerButtonWrapper_2f0b1a7f button{margin:0.1875rem 0.3125rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;min-width:calc(50% - 0.625rem)}@media only screen and (min-width: 64.0625em){.footerButtonWrapper_2f0b1a7f button{min-width:10.625rem}}.pageHelp_2f0b1a7f{position:relative;z-index:9999;top:0.25rem;margin-top:-2.375rem;-webkit-transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);width:2.375rem}html[dir='ltr'] .pageHelp_2f0b1a7f{text-align:right}html[dir='rtl'] .pageHelp_2f0b1a7f{text-align:left}[dir='ltr'] .pageHelp_2f0b1a7f{right:0.75rem}[dir='rtl'] .pageHelp_2f0b1a7f{left:0.75rem}[dir='ltr'] .pageHelp_2f0b1a7f{margin-left:auto}[dir='rtl'] .pageHelp_2f0b1a7f{margin-right:auto}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .pageHelp_2f0b1a7f{top:-0.625rem;-webkit-transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1)}[dir='ltr'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .pageHelp_2f0b1a7f{right:2rem}[dir='rtl'] .root_2f0b1a7f.rootIsFull_2f0b1a7f .pageHelp_2f0b1a7f{left:2rem}}.footer_2f0b1a7f ~ .pageHelpContainer_2f0b1a7f>.pageHelp_2f0b1a7f{top:-6.5rem;-webkit-transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1)}.ms-Panel-footer-hasContent ~ .pageHelpContainer_2f0b1a7f>.pageHelp_2f0b1a7f{top:-8.5rem;-webkit-transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1)}@media only screen and (min-width: 64.0625em){.root_2f0b1a7f.rootIsFull_2f0b1a7f .ms-Panel-footer-hasContent ~ .pageHelpContainer_2f0b1a7f>.pageHelp_2f0b1a7f{top:-6.5rem;-webkit-transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1);transition:top 250ms cubic-bezier(0.55, 0, 0.1, 1)}}.isOpen_2f0b1a7f .off-canvas-wrap .bb-close{-webkit-transform:rotateY(-90deg) !important;transform:rotateY(-90deg) !important}.smallIcon_2f0b1a7f.MuiSvgIcon-root{width:1.25rem;height:1.25rem}
</style><style type="text/css">.root_ecd47c46{display:block;position:relative}.measured_ecd47c46{position:fixed;visibility:hidden}
</style><style type="text/css">.root_d4b7a9da{color:#2073a1;margin:0;overflow:inherit;padding:0;text-overflow:inherit;text-decoration:underline}.isEnabled_d4b7a9da:active,.isEnabled_d4b7a9da:hover,.isEnabled_d4b7a9da:active:hover{color:#004270}.isEnabled_d4b7a9da:focus{color:#2073a1}.isDisabled_d4b7a9da{color:#666666;pointer-events:none;cursor:default;text-decoration:none}.onDarkBg_d4b7a9da{color:#2c9ede}.onDarkBg_d4b7a9da.isEnabled_d4b7a9da:hover,.onDarkBg_d4b7a9da.isEnabled_d4b7a9da:focus{color:#5fd1ff}.onDarkBg_d4b7a9da.isEnabled_d4b7a9da:active{color:#2c9ede}.onDarkBg_d4b7a9da.isDisabled_d4b7a9da{color:#8c8c8c}button.root_d4b7a9da{background:none;border:none;cursor:pointer;display:inline;font-size:inherit}button.root_d4b7a9da::-moz-focus-inner{border:0}button.root_d4b7a9da{outline:transparent}button.root_d4b7a9da{position:relative}.ms-Fabric.is-focusVisible button.root_d4b7a9da:focus{outline:none}.ms-Fabric.is-focusVisible button.root_d4b7a9da:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}html[dir='ltr'] button.root_d4b7a9da{text-align:left}html[dir='rtl'] button.root_d4b7a9da{text-align:right}@media screen and (-ms-high-contrast: active){button.root_d4b7a9da{color:Highlight}}.ms-Fabric.is-focusVisible a.root_d4b7a9da:focus{outline:2px solid #006dc7;-webkit-box-shadow:none !important;box-shadow:none !important}
</style><style type="text/css">.root_4f9d084e{background:#ffffff;padding:0.5rem;pointer-events:none}.root_4f9d084e.hasMediumDelay_4f9d084e{-webkit-animation-delay:300ms;animation-delay:300ms}.content_4f9d084e{font-size:0.75rem;color:#262626;word-wrap:break-word;overflow-wrap:break-word}.subText_4f9d084e{margin:0}
</style><style type="text/css">.host_2e23d7d6{display:inline-block}
</style><style type="text/css">.root_162b142b{padding:1rem 0rem;margin:0rem 1.875rem}.list_162b142b{white-space:nowrap;padding:0;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.chevron_162b142b{font-size:0.5rem;color:#666666;padding:0rem;margin:0rem 1rem}@media screen and (-ms-high-contrast: active){.chevron_162b142b{color:WindowText;-ms-high-contrast-adjust:none}}.listItem_162b142b{list-style-type:none;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.listItem_162b142b .tooltipHost_162b142b{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b{font-size:1.3125rem;font-weight:100;width:100%;color:#666666;padding:0rem;font-size:1.0625rem;font-weight:600;text-decoration:underline}.listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b::-moz-focus-inner{border:0}.listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b{outline:transparent}.listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b{position:relative}.ms-Fabric.is-focusVisible .listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b:focus{outline:none}.ms-Fabric.is-focusVisible .listItem_162b142b .tooltipHost_162b142b .itemLink_162b142b:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.listItem_162b142b .tooltipHost_162b142b .currentItemLink_162b142b{text-decoration:none;color:#262626;cursor:default !important}.listItem_162b142b:last-of-type .chevron_162b142b{display:none}.overflow_162b142b{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.root_162b142b .itemLink_162b142b:hover{color:#262626;cursor:pointer}.root_162b142b .itemLink_162b142b:focus{color:#262626}.root_162b142b .itemLink_162b142b:active{outline:transparent;background-color:#cdcdcd;color:#262626}.itemLink_162b142b{outline:transparent}.lastBreadcrumb_162b142b{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lastBreadcrumb_162b142b .linkWrapper_162b142b{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media screen and (max-width: 29.9375rem){.listItem_162b142b .linkWrapper_162b142b{max-width:7.5rem}.listItem_162b142b .linkWrapper_162b142b.breakSmLg_162b142b{max-width:18.75rem}.listItem_162b142b .linkWrapper_162b142b.breakSmMd_162b142b{max-width:16.25rem}.listItem_162b142b .linkWrapper_162b142b.breakSmSm_162b142b{max-width:12.5rem}.root_162b142b{margin:0rem 1rem}}@media screen and (min-width: 30rem){.listItem_162b142b .linkWrapper_162b142b{max-width:7.5rem}.listItem_162b142b .linkWrapper_162b142b.breakMdLg_162b142b{max-width:18.75rem}.listItem_162b142b .linkWrapper_162b142b.breakMdMd_162b142b{max-width:16.25rem}.listItem_162b142b .linkWrapper_162b142b.breakMdSm_162b142b{max-width:12.5rem}.root_162b142b{margin:0rem 1.5rem}}@media screen and (min-width: 40rem){.listItem_162b142b .linkWrapper_162b142b{max-width:7.5rem}.listItem_162b142b .linkWrapper_162b142b.breakLgLg_162b142b{max-width:18.75rem}.listItem_162b142b .linkWrapper_162b142b.breakLgMd_162b142b{max-width:16.25rem}.listItem_162b142b .linkWrapper_162b142b.breakLgSm_162b142b{max-width:12.5rem}.root_162b142b{margin:0rem 1.875rem}}
</style><style type="text/css">.root_2a446d0b{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0}.picker_2a446d0b{color:#000000;font-size:0.875rem;position:relative}html[dir='ltr'] .picker_2a446d0b{text-align:left}html[dir='rtl'] .picker_2a446d0b{text-align:right}.holder_2a446d0b{-webkit-overflow-scrolling:touch;-webkit-box-sizing:border-box;box-sizing:border-box;display:none}.picker_2a446d0b.pickerIsOpened_2a446d0b .holder_2a446d0b{-webkit-box-sizing:border-box;box-sizing:border-box;display:block}.pickerIsOpened_2a446d0b{position:relative}.frame_2a446d0b{padding:0.0625rem;position:relative}.wrap_2a446d0b{margin:-0.0625rem;padding:0.625rem;display:-webkit-box;display:-ms-flexbox;display:flex}.dayPicker_2a446d0b{display:block}.header_2a446d0b{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:1.5rem;line-height:2.75rem}.month_2a446d0b,.year_2a446d0b{display:inline-block;color:#262626}.month_2a446d0b:hover,.year_2a446d0b:hover{color:#005a9e;cursor:pointer}html[dir='ltr'] .year_2a446d0b{margin-left:0.625rem}html[dir='rtl'] .year_2a446d0b{margin-right:0.625rem}.table_2a446d0b{text-align:center;border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:inherit;margin-top:0.3125rem;border-top:0.0625rem solid #cdcdcd}.table_2a446d0b td{margin:0;padding:0;border:1px solid transparent;background:transparent;text-align:center}.table_2a446d0b td:hover{outline:1px solid transparent}.day_2a446d0b,.weekday_2a446d0b{width:1.75rem;height:1.5rem;padding:0;line-height:1.5rem;font-weight:400;font-size:0.875rem;color:#262626}.day_2a446d0b{border-radius:0.125rem}.weekday_2a446d0b{font-weight:700;height:1.875rem}.weekday_2a446d0b>abbr[title]{text-decoration:none}.dayIsToday_2a446d0b{font-weight:700;background-color:inherit;color:#000000;border:transparent}@media screen and (-ms-high-contrast: active){.dayIsToday_2a446d0b{border:1px solid WindowText}}.dayIsDisabled_2a446d0b:before{border-top-color:#8c8c8c}.dayIsUnfocused_2a446d0b{color:#8c8c8c;font-weight:400}.dayIsFocused_2a446d0b:hover,.dayIsUnfocused_2a446d0b:hover{cursor:pointer;background:#e5e5e5}.day_2a446d0b.dayIsHighlighted_2a446d0b.dayIsFocused_2a446d0b::-moz-focus-inner{border:0}.day_2a446d0b.dayIsHighlighted_2a446d0b.dayIsFocused_2a446d0b{outline:transparent}.day_2a446d0b.dayIsHighlighted_2a446d0b.dayIsFocused_2a446d0b{position:relative}.ms-Fabric.is-focusVisible .day_2a446d0b.dayIsHighlighted_2a446d0b.dayIsFocused_2a446d0b:focus{outline:none}.ms-Fabric.is-focusVisible .day_2a446d0b.dayIsHighlighted_2a446d0b.dayIsFocused_2a446d0b:focus:after{content:'';position:absolute;top:0.0625rem;right:0.0625rem;bottom:0.0625rem;left:0.0625rem;pointer-events:none;border:2px solid #000000}.dayIsHighlighted_2a446d0b:hover,.pickerIsFocused_2a446d0b .dayIsHighlighted_2a446d0b{cursor:pointer}.dayIsHighlighted_2a446d0b:hover:hover,.pickerIsFocused_2a446d0b .dayIsHighlighted_2a446d0b:hover{background-color:#767676}@media screen and (-ms-high-contrast: active){.dayIsHighlighted_2a446d0b:hover,.pickerIsFocused_2a446d0b .dayIsHighlighted_2a446d0b{border:1px solid Highlight}}.dayIsUnfocused_2a446d0b:active,.dayIsFocused_2a446d0b:active,.dayIsHighlighted_2a446d0b{background-color:#a234b5;border:2px solid #000000;color:#ffffff;font-weight:700}.dayIsHighlighted_2a446d0b.dayDisabled_2a446d0b,.dayIsHighlighted_2a446d0b.dayDisabled_2a446d0b:hover{background:#8c8c8c}.dayIsToday_2a446d0b.dayIsHighlighted_2a446d0b[aria-selected=true],.pickerIsFocused_2a446d0b .dayIsToday_2a446d0b.dayIsHighlighted_2a446d0b[aria-selected=true]{color:#ffffff;background-color:#000000;font-weight:600;border:2px solid #000000}.monthComponents_2a446d0b,.yearComponents_2a446d0b,.decadeComponents_2a446d0b{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-left:0.1875rem}.prevMonth_2a446d0b,.nextMonth_2a446d0b,.prevYear_2a446d0b,.nextYear_2a446d0b,.prevDecade_2a446d0b,.nextDecade_2a446d0b{width:1.5rem;height:1.5rem;display:block;text-align:center;line-height:1.5rem;text-align:center;font-size:1rem;color:#262626;position:relative}.prevMonth_2a446d0b:hover,.nextMonth_2a446d0b:hover,.prevYear_2a446d0b:hover,.nextYear_2a446d0b:hover,.prevDecade_2a446d0b:hover,.nextDecade_2a446d0b:hover{color:#262626;cursor:pointer;outline:1px solid transparent}.headerToggleView_2a446d0b{height:1.5rem;position:absolute;width:8.125rem;cursor:pointer;background-color:transparent;color:#262626;font-size:1.25rem;left:auto;top:auto}.headerToggleView_2a446d0b:focus,.headerToggleView_2a446d0b:hover{background-color:transparent}.wrap_2a446d0b div.headerToggleView_2a446d0b:focus{position:absolute}.navContainer_2a446d0b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 0.625rem}.currentYear_2a446d0b,.currentDecade_2a446d0b{display:block;font-size:0.875rem;color:#262626;line-height:0.875rem;margin-bottom:0.125rem;text-align:center}.monthPickerCurrentYear_2a446d0b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:1.125rem;line-height:1.4;margin-bottom:0}.optionGrid_2a446d0b{position:relative;height:13.125rem;margin:0.75rem 0 0 0}html[dir='rtl'] .optionGrid_2a446d0b{margin:0.75rem 0 0 0}.monthOption_2a446d0b,.yearOption_2a446d0b{width:3.75rem;height:3.75rem;line-height:3.75rem;cursor:pointer;margin:0 0.625rem 0.625rem 0;font-size:0.8125rem;font-weight:400;color:#262626;text-align:center}html[dir='ltr'] .monthOption_2a446d0b,html[dir='ltr'] .yearOption_2a446d0b{float:left}html[dir='rtl'] .monthOption_2a446d0b,html[dir='rtl'] .yearOption_2a446d0b{float:right}html[dir='rtl'] .monthOption_2a446d0b,html[dir='rtl'] .yearOption_2a446d0b{margin:0 0 0.625rem 0.625rem}.monthOption_2a446d0b:hover,.yearOption_2a446d0b:hover{color:#000000;outline:1px solid transparent}.monthOption_2a446d0b.isHighlighted_2a446d0b,.yearOption_2a446d0b.isHighlighted_2a446d0b{background-color:#262626;color:#ffffff}.goToday_2a446d0b{bottom:0.5625rem;color:#a234b5;cursor:pointer;font-size:0.75rem;font-weight:400;color:#262626;height:1.875rem;line-height:1.875rem;padding:0 0.625rem;position:absolute !important}[dir='ltr'] .goToday_2a446d0b{right:0.8125rem}[dir='rtl'] .goToday_2a446d0b{left:0.8125rem}.goToday_2a446d0b:hover{color:#a234b5;outline:1px solid transparent}.goToday_2a446d0b:active{color:#005a9e}.wrap_2a446d0b.goTodaySpacing_2a446d0b{margin-bottom:1.875rem}.root_2a446d0b.isPickingYears_2a446d0b .dayPicker_2a446d0b,.root_2a446d0b.isPickingYears_2a446d0b .monthComponents_2a446d0b{display:none}.root_2a446d0b.isPickingYears_2a446d0b .monthPicker_2a446d0b{display:none}.root_2a446d0b.isPickingYears_2a446d0b .yearPicker_2a446d0b{display:block}@media (min-device-width: 28.75rem){.header_2a446d0b{height:1.5rem;line-height:1.5rem;-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.headerAxContainer_2a446d0b{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.prevMonth_2a446d0b,.nextMonth_2a446d0b,.prevYear_2a446d0b,.nextYear_2a446d0b,.prevDecade_2a446d0b,.nextDecade_2a446d0b{font-size:0.875rem;width:1.5rem;height:1.5rem;line-height:1.5rem}.holder_2a446d0b{width:14rem}.month_2a446d0b,.year_2a446d0b{font-size:1.125rem;color:#262626}.month_2a446d0b:hover,.year_2a446d0b:hover{color:#262626;cursor:default}.headerToggleView_2a446d0b{height:1.5rem;text-align:center}.monthPickerVisible_2a446d0b .dayPicker_2a446d0b{margin:-0.625rem 0;padding:0.625rem 0}.monthPickerVisible_2a446d0b .dayPicker_2a446d0b{-webkit-box-sizing:border-box;box-sizing:border-box;width:13.375rem}html[dir='ltr'] .monthPickerVisible_2a446d0b .dayPicker_2a446d0b{border-right:0.0625rem solid #e5e5e5}html[dir='rtl'] .monthPickerVisible_2a446d0b .dayPicker_2a446d0b{border-left:0.0625rem solid #e5e5e5}.monthPickerVisible_2a446d0b .monthPicker_2a446d0b{display:block}.monthPickerVisible_2a446d0b .optionGrid_2a446d0b{height:9.375rem}.monthPickerVisible_2a446d0b .toggleMonthView_2a446d0b{display:none}.monthPickerVisible_2a446d0b .monthOption_2a446d0b,.monthPickerVisible_2a446d0b .yearOption_2a446d0b{width:2.5rem;height:2.5rem;line-height:2.5rem;font-size:0.75rem;margin:0 0.6875rem 0.6875rem 0}html[dir='rtl'] .monthPickerVisible_2a446d0b .monthOption_2a446d0b,html[dir='rtl'] .monthPickerVisible_2a446d0b .yearOption_2a446d0b{margin:0 0 0.6875rem 0.6875rem}.monthPickerVisible_2a446d0b .monthOption_2a446d0b:hover,.monthPickerVisible_2a446d0b .yearOption_2a446d0b:hover{outline:1px solid transparent}.monthPickerVisible_2a446d0b .monthOption_2a446d0b:nth-child(4n+4),.monthPickerVisible_2a446d0b .yearOption_2a446d0b:nth-child(4n+4){margin:0 0rem 0.6875rem 0}html[dir='rtl'] .monthPickerVisible_2a446d0b .monthOption_2a446d0b:nth-child(4n+4),html[dir='rtl'] .monthPickerVisible_2a446d0b .yearOption_2a446d0b:nth-child(4n+4){margin:0 0 0.6875rem 0rem}.monthPickerVisible_2a446d0b .goToday_2a446d0b{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:0.75rem;height:1.5rem;line-height:1.5rem;padding:0 0.625rem;top:12.4375rem}[dir='ltr'] .monthPickerVisible_2a446d0b .goToday_2a446d0b{right:0.625rem}[dir='rtl'] .monthPickerVisible_2a446d0b .goToday_2a446d0b{left:0.625rem}html[dir='ltr'] .monthPickerVisible_2a446d0b .goToday_2a446d0b{text-align:right}html[dir='rtl'] .monthPickerVisible_2a446d0b .goToday_2a446d0b{text-align:left}.monthPickerVisible_2a446d0b .wrap_2a446d0b.goTodaySpacing_2a446d0b{margin-bottom:0rem}.monthPickerVisible_2a446d0b .root_2a446d0b.isPickingYears_2a446d0b .dayPicker_2a446d0b,.monthPickerVisible_2a446d0b .root_2a446d0b.isPickingYears_2a446d0b .monthComponents_2a446d0b{display:block}.monthPickerVisible_2a446d0b .root_2a446d0b.isPickingYears_2a446d0b .monthPicker_2a446d0b{display:none}.monthPickerVisible_2a446d0b .root_2a446d0b.isPickingYears_2a446d0b .yearPicker_2a446d0b{display:block}.calendarsInline_2a446d0b .wrap_2a446d0b{padding:0.625rem}.calendarsInline_2a446d0b .holder_2a446d0b{width:27.5rem;height:auto}.calendarsInline_2a446d0b .table_2a446d0b{margin-right:0.625rem}.calendarsInline_2a446d0b .monthPicker_2a446d0b{margin-left:0.625rem}[dir='ltr'] .calendarsInline_2a446d0b .goToday_2a446d0b{right:0.8125rem}[dir='rtl'] .calendarsInline_2a446d0b .goToday_2a446d0b{left:0.8125rem}}@media (max-device-width: 28.6875rem){.holder_2a446d0b{width:18.75rem}.calendarsInline_2a446d0b .monthPicker_2a446d0b,.calendarsInline_2a446d0b .yearPicker_2a446d0b{display:none}.headerToggleView_2a446d0b{left:6.25rem}.yearComponents_2a446d0b{margin-top:0.125rem}}.wrap_2a446d0b span:focus::-moz-focus-inner,.wrap_2a446d0b div:focus::-moz-focus-inner{border:0}.wrap_2a446d0b span:focus,.wrap_2a446d0b div:focus{outline:transparent}.wrap_2a446d0b span:focus,.wrap_2a446d0b div:focus{position:relative}.ms-Fabric.is-focusVisible .wrap_2a446d0b span:focus:focus,.ms-Fabric.is-focusVisible .wrap_2a446d0b div:focus:focus{outline:none}.ms-Fabric.is-focusVisible .wrap_2a446d0b span:focus:focus:after,.ms-Fabric.is-focusVisible .wrap_2a446d0b div:focus:focus:after{content:'';position:absolute;top:0.0625rem;right:0.0625rem;bottom:0.0625rem;left:0.0625rem;pointer-events:none;border:2px solid #006dc7}.goToday_2a446d0b{width:auto}.nextMonth_2a446d0b,.prevMonth_2a446d0b,.nextYear_2a446d0b,.prevYear_2a446d0b{display:inline-block}.monthIsHighlighted_2a446d0b{background-color:#262626;color:#ffffff;font-weight:700}.monthIsHighlighted_2a446d0b.monthOption_2a446d0b:hover{background-color:#262626;color:#ffffff;font-weight:700}.monthIsCurrentMonth_2a446d0b{font-weight:600;color:#ffffff;background-color:#a234b5}.monthIsCurrentMonth_2a446d0b.monthIsHighlighted_2a446d0b{font-weight:700}.monthIsCurrentMonth_2a446d0b.monthOption_2a446d0b:hover{color:#ffffff;background-color:#a234b5}.monthOption_2a446d0b:active{background-color:#262626;color:#ffffff;font-weight:700}.topLeftCornerDate_2a446d0b{border-radius:0}.topRightCornerDate_2a446d0b{border-radius:0}.bottomLeftCornerDate_2a446d0b{border-radius:0}.bottomRightCornerDate_2a446d0b{border-radius:0}.singleTopDate_2a446d0b{border-radius:0}.singleBottomDate_2a446d0b{border-radius:0}
</style><style type="text/css">.root_2ed55242{overflow:hidden}.rootIsMaximizeFrame_2ed55242{height:100%;width:100%}.image_2ed55242{display:block;opacity:0}.image_2ed55242.imageIsLoaded_2ed55242{opacity:1}.imageIsCenter_2ed55242,.imageIsContain_2ed55242,.imageIsCover_2ed55242{position:relative;top:50%}[dir='ltr'] .imageIsCenter_2ed55242,[dir='ltr'] .imageIsContain_2ed55242,[dir='ltr'] .imageIsCover_2ed55242{left:50%}[dir='rtl'] .imageIsCenter_2ed55242,[dir='rtl'] .imageIsContain_2ed55242,[dir='rtl'] .imageIsCover_2ed55242{right:50%}html[dir='ltr'] .imageIsCenter_2ed55242,html[dir='ltr'] .imageIsContain_2ed55242,html[dir='ltr'] .imageIsCover_2ed55242{-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}html[dir='rtl'] .imageIsCenter_2ed55242,html[dir='rtl'] .imageIsContain_2ed55242,html[dir='rtl'] .imageIsCover_2ed55242{-webkit-transform:translate(50%, -50%);transform:translate(50%, -50%)}.imageIsContain_2ed55242.imageIsLandscape_2ed55242{width:100%;height:auto}.imageIsContain_2ed55242.imageIsPortrait_2ed55242{height:100%;width:auto}.imageIsCover_2ed55242.imageIsLandscape_2ed55242{height:100%;width:auto}.imageIsCover_2ed55242.imageIsPortrait_2ed55242{width:100%;height:auto}.imageIsNone_2ed55242{height:auto;width:auto}.imageIsScaleWidthHeight_2ed55242{height:100%;width:100%}.imageIsScaleWidth_2ed55242{height:auto;width:100%}.imageIsScaleHeight_2ed55242{height:100%;width:auto}
</style><style type="text/css">.root_0b47ec8c{display:block}.choiceField_0b47ec8c{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;color:#333333;font-size:0.875rem;font-weight:400;min-height:1.625rem;border:none;position:relative}.choiceField_0b47ec8c .ms-Label{font-size:0.875rem;padding:0 0 0 1.625rem;display:inline-block}[dir='rtl'] .choiceField_0b47ec8c .ms-Label{padding:0 1.625rem 0 0}.choicegroupFieldset_0b47ec8c{border:0;margin:0;padding:0}.choicegroupLegend_0b47ec8c{font-weight:bold;padding:0.3125rem 0}.requiredLabel_0b47ec8c{font-weight:400}.input_0b47ec8c{position:absolute;opacity:0;top:0}.field_0b47ec8c::before{content:'';display:inline-block;background-color:#ffffff;border:1px solid #767676;width:1rem;height:1rem;font-weight:normal;position:absolute;top:0.125rem;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:50%}[dir='ltr'] .field_0b47ec8c::before{left:0}[dir='rtl'] .field_0b47ec8c::before{right:0}.field_0b47ec8c::after{content:'';border:3px solid #262626;top:0.4375rem;width:0.375rem;height:0.375rem;opacity:0;border-radius:50%;position:absolute;-webkit-transition:opacity 200ms linear;transition:opacity 200ms linear;-webkit-box-sizing:border-box;box-sizing:border-box}[dir='ltr'] .field_0b47ec8c::after{left:0.3125rem}[dir='rtl'] .field_0b47ec8c::after{right:0.3125rem}[dir='ltr'] .field_0b47ec8c::after{right:0}[dir='rtl'] .field_0b47ec8c::after{left:0}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c{margin-bottom:0;top:0.375rem}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c:hover+.field_0b47ec8c::after{opacity:1}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c[type='radio']:checked+label.fieldFoundationOverrides_0b47ec8c::before{background-color:#ffffff;border-color:#767676}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c[type='radio']:checked+label.fieldFoundationOverrides_0b47ec8c.fieldIsChecked_0b47ec8c::before{background-color:#2edc91;border-color:#12b957}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c[type='radio']:checked+label.fieldFoundationOverrides_0b47ec8c::after{opacity:0}.input_0b47ec8c.inputFoundationOverrides_0b47ec8c[type='radio']:checked+label.fieldFoundationOverrides_0b47ec8c.fieldIsChecked_0b47ec8c::after{opacity:1}.field_0b47ec8c.fieldFoundationOverrides_0b47ec8c{margin-bottom:0;padding-left:0;line-height:1.4;opacity:1}.field_0b47ec8c.fieldFoundationOverrides_0b47ec8c::after{top:0.4375rem;height:0.375rem;width:0.375rem;border-radius:50%;background:none;margin:0}.field_0b47ec8c.fieldFoundationOverrides_0b47ec8c::before{left:0;top:0.125rem;outline:transparent !important}.field_0b47ec8c.fieldFoundationOverrides_0b47ec8c.fieldIsDisabled_0b47ec8c{opacity:1}.field_0b47ec8c{display:inline-block;cursor:pointer;margin-top:0;position:relative;vertical-align:top;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;min-height:1.25rem;color:#333333}.field_0b47ec8c:hover::before,.field_0b47ec8c:focus::before{border-color:#767676}.field_0b47ec8c:hover::after,.field_0b47ec8c:focus::after{opacity:1;border-color:#8c8c8c}.field_0b47ec8c:hover .ms-Label,.field_0b47ec8c:focus .ms-Label{color:#000000}.field_0b47ec8c.fieldIsChecked_0b47ec8c::before{background-color:#2edc91;border:1px solid #12b957}@media screen and (-ms-high-contrast: active){.field_0b47ec8c.fieldIsChecked_0b47ec8c::before{border-color:Highlight}}.field_0b47ec8c.fieldIsChecked_0b47ec8c::after{opacity:1}@media screen and (-ms-high-contrast: active){.field_0b47ec8c.fieldIsChecked_0b47ec8c::after{border-color:Highlight}}.field_0b47ec8c.fieldIsChecked_0b47ec8c:hover::after,.field_0b47ec8c.fieldIsChecked_0b47ec8c:focus::after{border-color:#262626}.field_0b47ec8c.fieldIsDisabled_0b47ec8c{cursor:default}.field_0b47ec8c.fieldIsDisabled_0b47ec8c::before{background-color:#e5e5e5;border-color:#e5e5e5}@media screen and (-ms-high-contrast: active){.field_0b47ec8c.fieldIsDisabled_0b47ec8c::before{border-color:GrayText}}.field_0b47ec8c.fieldIsDisabled_0b47ec8c::after{opacity:0}.field_0b47ec8c.fieldIsDisabled_0b47ec8c .ms-Label{color:#c8c8c8}@media screen and (-ms-high-contrast: active){.field_0b47ec8c.fieldIsDisabled_0b47ec8c .ms-Label{color:GrayText}}.field_0b47ec8c.fieldIsChecked_0b47ec8c.fieldIsDisabled_0b47ec8c::before{background-color:#ffffff;border-color:#e5e5e5}.field_0b47ec8c.fieldIsChecked_0b47ec8c.fieldIsDisabled_0b47ec8c::after{opacity:1;border-color:#8c8c8c}.choiceFieldIsImage_0b47ec8c,.choiceFieldIsIcon_0b47ec8c{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:0;margin:0 0.25rem 0.25rem 0;background-color:#f0f0f0;height:6rem;width:6rem}[dir='rtl'] .choiceFieldIsImage_0b47ec8c,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c{margin:0 0 0.25rem 0.25rem}[dir='ltr'] .choiceFieldIsImage_0b47ec8c,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c{padding-left:0rem}[dir='rtl'] .choiceFieldIsImage_0b47ec8c,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c{padding-right:0rem}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:6rem;cursor:pointer;padding-top:1.375rem;margin:0;text-align:center;-webkit-transition:all 200ms ease;transition:all 200ms ease;border:2px solid transparent;height:6rem;width:6rem}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c{cursor:default}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c{opacity:0.25}@media screen and (-ms-high-contrast: active){.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c.fieldIsDisabled_0b47ec8c .innerField_0b47ec8c{color:GrayText;opacity:1}}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c{position:relative;padding:0 1.75rem;height:2rem;width:2rem}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c{padding-bottom:0.125rem;-webkit-transition:opacity 200ms ease;transition:opacity 200ms ease}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c.imageWrapperIsHidden_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c.imageWrapperIsHidden_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c.imageWrapperIsHidden_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c.imageWrapperIsHidden_0b47ec8c{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;opacity:0}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c .ms-Image,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c .ms-Image,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c .ms-Image,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .innerField_0b47ec8c .imageWrapper_0b47ec8c .ms-Image{display:inline-block;border-style:none}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .labelWrapper_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .labelWrapper_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .labelWrapper_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .labelWrapper_0b47ec8c{display:block;position:relative;margin:0.25rem 0 0.125rem 0;height:2rem;line-height:0.9375rem;overflow:hidden;white-space:pre-wrap;text-overflow:ellipsis;font-size:0.875rem;font-weight:400}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c .labelWrapper_0b47ec8c .ms-Label,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c .labelWrapper_0b47ec8c .ms-Label,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c .labelWrapper_0b47ec8c .ms-Label,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c .labelWrapper_0b47ec8c .ms-Label{padding:0}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::before{top:0.1875rem;opacity:0}[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::before,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::before{right:0.1875rem}[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::before,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::before{left:0.1875rem}[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::before,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::before{left:auto}[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::before,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::before,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::before{right:auto}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::after,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::after,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::after,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::after{top:0.5rem}[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::after,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::after{right:0.5rem}[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::after,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::after{left:0.5rem}[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='ltr'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::after,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='ltr'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::after{left:auto}[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='rtl'] .choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c::after,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c::after,[dir='rtl'] .choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c::after{right:auto}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover,.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus{border-color:#cdcdcd}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover::before,.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):hover::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c):focus::before{opacity:1}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c{border-color:#262626}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c::before{opacity:1}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover,.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus{border-color:#005a9e}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::before,.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::before,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::before,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::before,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::before{border-color:#005a9e}.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::after,.choiceFieldIsImage_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::after,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::after,.choiceFieldIsImage_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::after,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::after,.choiceFieldIsIcon_0b47ec8c .fieldIsImage_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::after,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:hover::after,.choiceFieldIsIcon_0b47ec8c .fieldIsIcon_0b47ec8c:not(.fieldIsDisabled_0b47ec8c).fieldIsChecked_0b47ec8c:focus::after{background-color:#005a9e}.choiceFieldIsImage_0b47ec8c .inputHasImage_0b47ec8c,.choiceFieldIsImage_0b47ec8c .inputHasIcon_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .inputHasImage_0b47ec8c,.choiceFieldIsIcon_0b47ec8c .inputHasIcon_0b47ec8c{top:0;right:0;opacity:0;width:100%;height:100%;margin:0}.choiceFieldIsIcon_0b47ec8c .iconWrapper_0b47ec8c{font-size:2rem;line-height:2rem;height:2rem}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:none}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner{border:0}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:transparent}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{position:relative}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}@media screen and (-ms-high-contrast: active){.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:none}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner{border:0}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:transparent}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c{position:relative}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c .choiceFieldWrapper_0b47ec8c:after{content:'';position:absolute;top:-0.125rem;right:-0.125rem;bottom:-0.125rem;left:-0.125rem;pointer-events:none;border:2px solid WindowText}}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:none}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner{border:0}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:transparent}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{position:relative}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c:after,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c:after{content:'';position:absolute;top:0.125rem;right:0.125rem;bottom:0.125rem;left:0.125rem;pointer-events:none;border:2px solid #006dc7}@media screen and (-ms-high-contrast: active){.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:none}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c::-moz-focus-inner{border:0}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{outline:transparent}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c{position:relative}.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsImage_0b47ec8c .choiceFieldWrapper_0b47ec8c:after,.ms-Fabric.is-focusVisible .choiceFieldIsInFocus_0b47ec8c.choiceFieldIsIcon_0b47ec8c .choiceFieldWrapper_0b47ec8c:after{content:'';position:absolute;top:0.0625rem;right:0.0625rem;bottom:0.0625rem;left:0.0625rem;pointer-events:none;border:2px solid WindowText}}
</style><style type="text/css">.root_5e588b60{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;margin-bottom:0.5rem;position:relative}.root_5e588b60 svg.errorIcon_5e588b60,.root_5e588b60 svg.validIcon_5e588b60{width:1rem;height:1rem}.screenReaderOnly_5e588b60{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fieldGroup_5e588b60{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;border:1px solid #767676;border-radius:0.125rem;background:#ffffff;height:2.375rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;position:relative}.fieldGroup_5e588b60:focus{border-color:#006dc7}.ms-Fabric.is-focusVisible .fieldGroup_5e588b60.fieldGroupIsFocused_5e588b60{-webkit-box-shadow:inset 0 0 0 1px #006dc7;box-shadow:inset 0 0 0 1px #006dc7}.fieldGroup_5e588b60.fieldGroupIsFocused_5e588b60.invalid_5e588b60{border-color:#ff4a36}.rootIsDisabled_5e588b60 .fieldGroup_5e588b60{background-color:#f0f0f0;border-color:#cdcdcd;pointer-events:none;cursor:default}@media screen and (-ms-high-contrast: active){.fieldGroup_5e588b60:focus,.fieldGroup_5e588b60:hover,.fieldGroup_5e588b60.fieldGroupIsFocused_5e588b60{border-color:Highlight}}.fieldGroup_5e588b60::-ms-clear{display:none}.fieldGroup_5e588b60 ::-ms-input-placeholder,.fieldGroup_5e588b60 :-ms-input-placeholder{color:#666666;opacity:1}.fieldGroup ::-ms-input-placeholder,.fieldGroup :-ms-input-placeholder{color:#666666;opacity:1}.fieldGroup_5e588b60 ::placeholder,.fieldGroup_5e588b60 :-ms-input-placeholder{color:#666666;opacity:1}.root_5e588b60.rootIsDisabled_5e588b60 .field{background-color:#f0f0f0;border-color:#cdcdcd;pointer-events:none;cursor:default}.fieldPrefixSuffix_5e588b60{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#f0f0f0;color:#666666;display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1;padding:0 0.625rem;white-space:nowrap}.field_5e588b60{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;font-size:0.875rem;border-radius:0;border:none;background:none;color:#333333;padding:0 0.625rem 0 0.625rem;width:100%;text-overflow:ellipsis;outline:0}[dir='rtl'] .field_5e588b60{padding:0 0.625rem 0 0.625rem}.field_5e588b60:active,.field_5e588b60:focus,.field_5e588b60:hover{outline:0}[dir='ltr'] .field_5e588b60.hasIcon_5e588b60{padding-right:1.5rem}[dir='rtl'] .field_5e588b60.hasIcon_5e588b60{padding-left:1.5rem}.field_5e588b60[disabled]{background-color:transparent;border-color:transparent;pointer-events:none;cursor:default}.field_5e588b60::-webkit-input-placeholder{color:#666666;opacity:1}.field_5e588b60::-moz-placeholder{color:#666666;opacity:1}.field_5e588b60::-ms-input-placeholder{color:#666666;opacity:1}.field::-webkit-input-placeholder{color:#666666;opacity:1}.field::-moz-placeholder{color:#666666;opacity:1}.field::-ms-input-placeholder{color:#666666;opacity:1}.field_5e588b60::placeholder{color:#666666;opacity:1}.field_5e588b60.fieldFoundationOverride_5e588b60,.field_5e588b60.fieldFoundationOverride_5e588b60:focus{background:transparent;height:auto;border:none;-webkit-box-shadow:none;box-shadow:none;min-height:2.125rem;outline:none}.root_5e588b60.rootIsRequiredLabel_5e588b60 .ms-Label::before{content:'* ';color:#a80000}.root_5e588b60.rootIsRequiredPlaceholderOnly_5e588b60 .ms-TextField-fieldGroup::after{content:'*';color:#a80000;position:absolute;top:-0.3125rem}[dir='ltr'] .root_5e588b60.rootIsRequiredPlaceholderOnly_5e588b60 .ms-TextField-fieldGroup::after{right:-0.625rem}[dir='rtl'] .root_5e588b60.rootIsRequiredPlaceholderOnly_5e588b60 .ms-TextField-fieldGroup::after{left:-0.625rem}.icon_5e588b60{pointer-events:none;position:absolute;bottom:0.5625rem;top:auto;font-size:1rem;line-height:1.125rem}html[dir='ltr'] .icon_5e588b60{right:0.5rem}html[dir='rtl'] .icon_5e588b60{left:0.5rem}.iconButton_5e588b60{position:absolute;bottom:-0.125rem;top:auto}html[dir='ltr'] .iconButton_5e588b60{right:-0.125rem}html[dir='rtl'] .iconButton_5e588b60{left:-0.125rem}.description_5e588b60{color:#666666;font-size:0.6875rem}.rootIsBorderless_5e588b60 .fieldGroup_5e588b60{border-color:transparent;border-width:0}.root_5e588b60.rootIsUnderlined_5e588b60{border:0px solid #767676}.root_5e588b60.rootIsUnderlined_5e588b60 .wrapper_5e588b60{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom-width:0.0625rem;border-bottom-style:solid;border-bottom-color:inherit;width:100%}.root_5e588b60.rootIsUnderlined_5e588b60 .wrapper_5e588b60.invalid_5e588b60,.root_5e588b60.rootIsUnderlined_5e588b60 .wrapper_5e588b60.invalid_5e588b60:focus,.root_5e588b60.rootIsUnderlined_5e588b60 .wrapper_5e588b60.invalid_5e588b60:hover{border-bottom:0.0625rem solid #ff4a36}.root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{font-size:0.875rem;line-height:1.375rem;height:2rem}[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{margin-right:0.5rem}[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{margin-left:0.5rem}[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-left:0.75rem}[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-right:0.75rem}.root_5e588b60.rootIsUnderlined_5e588b60 .fieldGroup_5e588b60{-webkit-box-flex:1;-ms-flex:1 1 0rem;flex:1 1 0rem;border-width:0}[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .fieldGroup_5e588b60{text-align:left}[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .fieldGroup_5e588b60{text-align:right}.root_5e588b60.rootIsUnderlined_5e588b60.rootIsDisabled_5e588b60{border-color:#cdcdcd}.root_5e588b60.rootIsUnderlined_5e588b60.rootIsDisabled_5e588b60 .ms-Label{color:#666666}.root_5e588b60.rootIsUnderlined_5e588b60.rootIsDisabled_5e588b60 .field_5e588b60{background-color:transparent;color:#a6a6a6}.root_5e588b60.rootIsUnderlined_5e588b60.rootIsDisabled_5e588b60 .fieldGroup_5e588b60{background-color:transparent}.root_5e588b60.rootIsUnderlined_5e588b60.rootIsActive_5e588b60{border-color:#006dc7}@media screen and (-ms-high-contrast: active){.root_5e588b60.rootIsUnderlined_5e588b60:focus:not(.rootIsDisabled_5e588b60) .wrapper_5e588b60,.root_5e588b60.rootIsUnderlined_5e588b60:hover:not(.rootIsDisabled_5e588b60) .wrapper_5e588b60,.root_5e588b60.rootIsUnderlined_5e588b60.rootIsActive_5e588b60 .wrapper_5e588b60{border-color:Highlight}}.root_5e588b60.rootIsMultiline_5e588b60 .fieldGroup_5e588b60{min-height:3.75rem;height:auto;display:-webkit-box;display:-ms-flexbox;display:flex}.root_5e588b60.rootIsMultiline_5e588b60 .field_5e588b60{line-height:1.0625rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding-top:0.625rem;overflow:auto;width:100%}[dir='ltr'] .root_5e588b60.rootIsMultiline_5e588b60 .field_5e588b60.hasIcon_5e588b60{padding-right:2.5rem}[dir='rtl'] .root_5e588b60.rootIsMultiline_5e588b60 .field_5e588b60.hasIcon_5e588b60{padding-left:2.5rem}.root_5e588b60.rootIsInline_5e588b60{padding-top:0.3125rem}.root_5e588b60.rootIsInline_5e588b60 .wrapper_5e588b60{display:-webkit-box;display:-ms-flexbox;display:flex}.root_5e588b60.rootIsInline_5e588b60 .ms-Label{padding:0;height:2.375rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[dir='ltr'] .root_5e588b60.rootIsInline_5e588b60 .ms-Label{margin-right:0.625rem}[dir='rtl'] .root_5e588b60.rootIsInline_5e588b60 .ms-Label{margin-left:0.625rem}.root_5e588b60.rootIsInline_5e588b60 .inputWrapper_5e588b60{-webkit-box-flex:1;-ms-flex:1;flex:1}.errorMessage_5e588b60{font-size:0.75rem;font-weight:400;color:#a80000;margin:0;padding-top:0.3125rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}[dir='ltr'] .errorIcon_5e588b60{margin-right:0.3125rem}[dir='rtl'] .errorIcon_5e588b60{margin-left:0.3125rem}.fieldGroupIsFocused_5e588b60,.fieldGroupIsFocused_5e588b60:focus,.fieldGroupIsFocused_5e588b60:hover{border-color:#006dc7;-webkit-box-shadow:inset 0 0 0 4px rgba(0,109,199,.1);box-shadow:inset 0 0 0 4px rgba(0,109,199,.1)}.ms-Fabric.is-focusVisible .fieldGroupIsFocused_5e588b60,.ms-Fabric.is-focusVisible .fieldGroupIsFocused_5e588b60:focus,.ms-Fabric.is-focusVisible .fieldGroupIsFocused_5e588b60:hover{-webkit-box-shadow:inset 0 0 0 1px #006dc7;box-shadow:inset 0 0 0 1px #006dc7}.invalid_5e588b60,.invalid_5e588b60:focus,.invalid_5e588b60:hover{border-color:#ff4a36;-webkit-box-shadow:inset 0 0 0 4px rgba(255,59,48,0.1);box-shadow:inset 0 0 0 4px rgba(255,59,48,0.1)}.valid_5e588b60,.valid_5e588b60:focus,.valid_5e588b60:hover{border-color:#007d2c;-webkit-box-shadow:inset 0 0 0 4px rgba(0,125,44,0.1);box-shadow:inset 0 0 0 4px rgba(0,125,44,0.1)}.validIcon_5e588b60{color:#007d2c}[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-left:0.75rem}[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-right:0.75rem}[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-right:0}[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .ms-Label{padding-left:0}html[dir='ltr'] .root_5e588b60.rootIsUnderlined_5e588b60 .field_5e588b60{text-align:left}html[dir='rtl'] .root_5e588b60.rootIsUnderlined_5e588b60 .field_5e588b60{text-align:right}.root_5e588b60.rootIsMultiline_5e588b60 .icon_5e588b60{padding-bottom:0.5rem;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}[dir='ltr'] .root_5e588b60.rootIsMultiline_5e588b60 .icon_5e588b60{padding-right:1.5rem}[dir='rtl'] .root_5e588b60.rootIsMultiline_5e588b60 .icon_5e588b60{padding-left:1.5rem}.root_5e588b60.rootIsMultiline_5e588b60 .field_5e588b60.fieldIsUnresizable_5e588b60{resize:none}.hidden_5e588b60{display:none}
</style><style type="text/css">.root_23c5f952{position:relative}.panel_23c5f952{padding:1rem}.colorRect_23c5f952{position:relative;margin-bottom:0.625rem}@media screen and (-ms-high-contrast: active){.colorRect_23c5f952{-ms-high-contrast-adjust:none}}.rectContainer_23c5f952{position:relative}.capture_23c5f952{position:absolute;left:0;top:0;bottom:0;right:0;background:rgba(255,0,0,0.1)}.rectContainer_23c5f952.rectContainerIsAdjusting_23c5f952 .capture_23c5f952{position:fixed}.pickerInputContainer_23c5f952{margin:0;padding:0;width:100%}.colorLabels_23c5f952{display:block;font-weight:bold}.colorContainer_23c5f952{display:inline-block;width:18%}.hexCellContainer_23c5f952{width:25%}.thumb_23c5f952{position:absolute;width:1.25rem;height:1.25rem;background:white;border:1px solid rgba(255,255,255,0.8);border-radius:50%;-webkit-box-shadow:0 0 15px -5px black;box-shadow:0 0 15px -5px black;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.thumb_23c5f952.thumbIsSlider_23c5f952{top:50%}.light_23c5f952{position:absolute;left:0;right:0;top:0;bottom:0;background:-webkit-gradient(linear, left top, right top, from(white), to(transparent));background:linear-gradient(to right, white 0%, transparent 100%)}.dark_23c5f952{position:absolute;left:0;right:0;top:0;bottom:0;background:-webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), to(#000));background:linear-gradient(to bottom, transparent 0, #000 100%)}.slider_23c5f952{position:relative;height:1.25rem;margin-bottom:0.3125rem;border:1px solid #e5e5e5;-webkit-box-sizing:border-box;box-sizing:border-box}.slider_23c5f952.colorSliderIsHue_23c5f952{background:-webkit-gradient(linear, right top, left top, color-stop(0, red), color-stop(10%, #f09), color-stop(20%, #cd00ff), color-stop(30%, #3200ff), color-stop(40%, #06f), color-stop(50%, #00fffd), color-stop(60%, #0f6), color-stop(70%, #35ff00), color-stop(80%, #cdff00), color-stop(90%, #f90), to(red));background:linear-gradient(to left, red 0, #f09 10%, #cd00ff 20%, #3200ff 30%, #06f 40%, #00fffd 50%, #0f6 60%, #35ff00 70%, #cdff00 80%, #f90 90%, red 100%)}.slider_23c5f952.colorSliderIsAlpha_23c5f952{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAJUlEQVQYV2N89erVfwY0ICYmxoguxjgUFKI7GsTH5m4M3w1ChQC1/Ca8i2n1WgAAAABJRU5ErkJggg==)}.sliderOverlay_23c5f952{content:'';position:absolute;left:0;right:0;top:0;bottom:0}.input_23c5f952{width:100%;border:none;-webkit-box-sizing:border-box;box-sizing:border-box;height:1.875rem}.input_23c5f952.ms-TextField{padding-right:0.125rem}.input_23c5f952 .ms-TextField-field{min-width:auto;padding:0.3125rem;text-overflow:clip}
</style><style type="text/css">.root_c9f3e0d8{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;font-size:0.875rem;font-weight:400;color:#262626;position:relative;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.root_c9f3e0d8:hover .title_c9f3e0d8,.root_c9f3e0d8:hover .caretDown_c9f3e0d8,.root_c9f3e0d8:focus .title_c9f3e0d8,.root_c9f3e0d8:focus .caretDown_c9f3e0d8,.root_c9f3e0d8:active .title_c9f3e0d8,.root_c9f3e0d8:active .caretDown_c9f3e0d8{color:#262626}@media screen and (-ms-high-contrast: active){.root_c9f3e0d8:hover .title_c9f3e0d8,.root_c9f3e0d8:hover .caretDown_c9f3e0d8,.root_c9f3e0d8:focus .title_c9f3e0d8,.root_c9f3e0d8:focus .caretDown_c9f3e0d8,.root_c9f3e0d8:active .title_c9f3e0d8,.root_c9f3e0d8:active .caretDown_c9f3e0d8{color:Highlight}}.root_c9f3e0d8:hover .titleIsPlaceHolder_c9f3e0d8,.root_c9f3e0d8:focus .titleIsPlaceHolder_c9f3e0d8,.root_c9f3e0d8:active .titleIsPlaceHolder_c9f3e0d8{color:#666666}.root_c9f3e0d8:hover .titleIsError_c9f3e0d8,.root_c9f3e0d8:active .titleIsError_c9f3e0d8{border-color:#a80000}.root_c9f3e0d8:focus .titleIsError_c9f3e0d8{border-color:#a80000}.root_c9f3e0d8 .titleIsError_c9f3e0d8{border-color:#a80000}.root_c9f3e0d8 .ms-Label{display:inline-block;margin-bottom:0.5rem}.root_c9f3e0d8.rootIsDisabled_c9f3e0d8 .title_c9f3e0d8{background-color:#f0f0f0;border-color:#e5e5e5;color:#666666;cursor:default}@media screen and (-ms-high-contrast: active){.root_c9f3e0d8.rootIsDisabled_c9f3e0d8 .title_c9f3e0d8{border:1px solid GrayText;color:GrayText}}.root_c9f3e0d8.rootIsDisabled_c9f3e0d8 .title_c9f3e0d8.titleIsError_c9f3e0d8{border-color:#a80000}.root_c9f3e0d8.rootIsDisabled_c9f3e0d8 .caretDown_c9f3e0d8{color:#cdcdcd}@media screen and (-ms-high-contrast: active){.root_c9f3e0d8.rootIsDisabled_c9f3e0d8 .caretDown_c9f3e0d8{color:GrayText}}.root_c9f3e0d8.rootInlineLabel_c9f3e0d8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.root_c9f3e0d8.rootInlineLabel_c9f3e0d8 .label_c9f3e0d8{margin-bottom:0}[dir='ltr'] .root_c9f3e0d8.rootInlineLabel_c9f3e0d8 .label_c9f3e0d8{margin-right:0.9375rem}[dir='rtl'] .root_c9f3e0d8.rootInlineLabel_c9f3e0d8 .label_c9f3e0d8{margin-left:0.9375rem}.root_c9f3e0d8.rootInlineLabel_c9f3e0d8 .titleWrapper_c9f3e0d8{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8{width:13.75rem}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8{padding:0 0.5625rem 0 0.5625rem}html[dir='rtl'] .root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8{padding:0 0.5625rem 0 0.5625rem}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8{display:-webkit-box;display:-ms-flexbox;display:flex}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8 .titleWithIcon_c9f3e0d8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:11.4375rem;height:2.25rem}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8 .titleWithIcon_c9f3e0d8 .titleIcon_c9f3e0d8{margin:0 0.625rem 0 0}html[dir='rtl'] .root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8 .titleWithIcon_c9f3e0d8 .titleIcon_c9f3e0d8{margin:0 0 0 0.625rem}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8 .titleWithIcon_c9f3e0d8 .titleIcon_c9f3e0d8 svg{display:-webkit-box;display:-ms-flexbox;display:flex}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8 .title_c9f3e0d8 .titleContent_c9f3e0d8 .titleWithIcon_c9f3e0d8 .titleText_c9f3e0d8{-webkit-box-sizing:content-box;box-sizing:content-box;height:1.25rem;line-height:1.25rem;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8.rootHasHiddenBorders_c9f3e0d8{width:inherit;margin-bottom:0}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8.rootHasHiddenBorders_c9f3e0d8 .title_c9f3e0d8{background-color:transparent;height:1.5rem;border:none;padding:0}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8.rootHasHiddenBorders_c9f3e0d8 .title_c9f3e0d8 .titleTextContainer_c9f3e0d8{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8.rootHasHiddenBorders_c9f3e0d8 .title_c9f3e0d8 .titleTextContainer_c9f3e0d8 .titleWithIcon_c9f3e0d8{width:inherit;height:1.5rem}.root_c9f3e0d8.rootIsIconDropdown_c9f3e0d8.rootHasHiddenBorders_c9f3e0d8 .caretDown_c9f3e0d8{position:static;height:inherit}.listWrapper_c9f3e0d8:focus{outline:0}.caretDown_c9f3e0d8{pointer-events:none;color:#262626;position:absolute;top:calc(50% - 0.5rem);display:-webkit-box;display:-ms-flexbox;display:flex}[dir='ltr'] .caretDown_c9f3e0d8{right:0.75rem}[dir='rtl'] .caretDown_c9f3e0d8{left:0.75rem}.caretDown_c9f3e0d8 svg{height:0.3125rem;width:0.4375rem}.caretDown_c9f3e0d8 svg path{stroke:none}.title_c9f3e0d8{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;background:#ffffff;border:1px solid #cdcdcd;border-radius:0.125rem;cursor:pointer;display:block;height:2.375rem;line-height:2.25rem;padding:0 2.375rem 0 0.75rem;position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%;font-size:0.875rem;color:#262626}html[dir='rtl'] .title_c9f3e0d8{padding:0 0.75rem 0 2.375rem}html[dir='ltr'] .title_c9f3e0d8{text-align:left}html[dir='rtl'] .title_c9f3e0d8{text-align:right}.title_c9f3e0d8::-moz-focus-inner{border:0}.title_c9f3e0d8{outline:transparent}.title_c9f3e0d8{position:relative}.ms-Fabric.is-focusVisible .title_c9f3e0d8:focus{outline:none}.ms-Fabric.is-focusVisible .title_c9f3e0d8:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.title_c9f3e0d8.titleIsPlaceHolder_c9f3e0d8{color:#666666}[dir='ltr'] .panel_c9f3e0d8 .ms-Panel-main{-webkit-box-shadow:-30px 0px 30px -30px rgba(0,0,0,0.2);box-shadow:-30px 0px 30px -30px rgba(0,0,0,0.2)}[dir='rtl'] .panel_c9f3e0d8 .ms-Panel-main{-webkit-box-shadow:30px 0px 30px -30px rgba(0,0,0,0.2);box-shadow:30px 0px 30px -30px rgba(0,0,0,0.2)}.panel_c9f3e0d8 .ms-Panel-contentInner{padding:0 0 1.25rem}.errorMessage_c9f3e0d8{color:#a80000;font-size:0.75rem;font-weight:400;padding-top:0.3125rem}.items_c9f3e0d8{display:block;padding:0.25rem 0}.item_c9f3e0d8{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:block;width:100%;height:auto;min-height:2.3125rem;line-height:1.25rem;padding:0 0.625rem;position:relative;border:1px solid transparent;word-wrap:break-word;overflow-wrap:break-word;text-align:left;border-radius:0}@media screen and (-ms-high-contrast: active){.item_c9f3e0d8{border-color:Window}}.item_c9f3e0d8:hover{background-color:#f0f0f0;color:inherit;text-decoration:underline}.ms-Fabric.is-focusVisible .item_c9f3e0d8:focus{background-color:#f0f0f0;text-decoration:underline}.ms-Fabric.is-focusVisible .item_c9f3e0d8:focus.itemIsSelected_c9f3e0d8{background-color:#262626}@media screen and (-ms-high-contrast: active){.ms-Fabric.is-focusVisible .item_c9f3e0d8:focus{background-color:Highlight;border-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: black-on-white){.ms-Fabric.is-focusVisible .item_c9f3e0d8:focus{-ms-high-contrast-adjust:none}}.item_c9f3e0d8:active{background-color:#f0f0f0;color:#000000}.item_c9f3e0d8.itemIsDisabled_c9f3e0d8{color:#8c8c8c;cursor:default}.item_c9f3e0d8 .ms-Button-flexContainer{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.item_c9f3e0d8.itemIsSelected_c9f3e0d8{background-color:#262626;color:#ffffff}.item_c9f3e0d8.itemIsSelected_c9f3e0d8:focus::-moz-focus-inner{border:0}.item_c9f3e0d8.itemIsSelected_c9f3e0d8:focus{outline:transparent}.item_c9f3e0d8.itemIsSelected_c9f3e0d8:focus{position:relative}.ms-Fabric.is-focusVisible .item_c9f3e0d8.itemIsSelected_c9f3e0d8:focus:focus{outline:none}.ms-Fabric.is-focusVisible .item_c9f3e0d8.itemIsSelected_c9f3e0d8:focus:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #2f8df7}@media screen and (-ms-high-contrast: active){.item_c9f3e0d8.itemIsSelected_c9f3e0d8{background-color:Highlight;border-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: black-on-white){.item_c9f3e0d8.itemIsSelected_c9f3e0d8{-ms-high-contrast-adjust:none}}.item_c9f3e0d8.itemIsSelected_c9f3e0d8.itemIsDisabled_c9f3e0d8{color:#8c8c8c;background-color:transparent}.header_c9f3e0d8{font-size:0.875rem;font-weight:400;font-weight:600;color:#262626;background:none;border:none;height:2.3125rem;line-height:2.3125rem;cursor:default;padding:0rem 1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir='ltr'] .header_c9f3e0d8{text-align:left}html[dir='rtl'] .header_c9f3e0d8{text-align:right}.divider_c9f3e0d8{height:0.0625rem;background-color:#c8c8c8}.optionText_c9f3e0d8{overflow:hidden;min-width:0rem;max-width:100%;word-wrap:break-word;overflow-wrap:break-word;margin:0.0625rem}.callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8{padding:0 0.5625rem 0 0.5625rem;min-height:2.3125rem}html[dir='rtl'] .callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8{padding:0 0.5625rem 0 0.5625rem}.ms-Fabric.is-focusVisible .callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8:focus.itemIsSelected_c9f3e0d8{background-color:#262626}.callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8.itemIsSelected_c9f3e0d8{background-color:#262626}.callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8.itemIsSelected_c9f3e0d8:hover{background-color:#262626}.callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8 .optionWithIcon_c9f3e0d8{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden}.callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8 .optionWithIcon_c9f3e0d8 .optionIcon_c9f3e0d8{margin:0 0.625rem 0 0}html[dir='rtl'] .callout_c9f3e0d8.calloutIsIconDropdown_c9f3e0d8 .item_c9f3e0d8 .optionWithIcon_c9f3e0d8 .optionIcon_c9f3e0d8{margin:0 0 0 0.625rem}.callout_c9f3e0d8.calloutHasHiddenBorders_c9f3e0d8{max-width:25rem}.callout_c9f3e0d8 .ms-Callout-main{max-width:100%}.iconSpacer_c9f3e0d8{height:1.5rem;width:1.5rem}
</style><style type="text/css">.root_c103b18e{margin-top:0.5rem}.selectionContainer_c103b18e{padding-top:0.625rem;position:relative}.pickerText_c103b18e{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:11.25rem;min-height:1.875rem}.pickerList_c103b18e{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #cdcdcd;margin:0;margin-bottom:0.5rem;min-width:11.25rem;list-style:none;padding:0;min-height:2rem;max-height:8.9375rem;overflow:auto}.pickerList_c103b18e.pickerListHorizontal_c103b18e{border:0;margin-bottom:0}.pickerListItem_c103b18e{width:100%}.pickerListItemHorizontal_c103b18e{max-width:9.375rem;padding-bottom:0.5rem;margin:0 0.5rem 0 0}.pickerInput_c103b18e{height:2.125rem;border:1px solid #767676;border-radius:0.125rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:0 0.375rem 0rem}.pickerInput_c103b18e:focus{border-color:#006dc7;-webkit-box-shadow:inset 0 0 0 4px rgba(0,109,199,.1);box-shadow:inset 0 0 0 4px rgba(0,109,199,.1)}.ms-Fabric.is-focusVisible .pickerInput_c103b18e:focus{-webkit-box-shadow:inset 0 0 0 1px #006dc7;box-shadow:inset 0 0 0 1px #006dc7}.pickerInput_c103b18e::-webkit-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput_c103b18e::-moz-placeholder{color:#666666;font-size:0.875rem}.pickerInput_c103b18e::-ms-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-webkit-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-moz-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-ms-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput_c103b18e::placeholder{color:#666666;font-size:0.875rem}.label_c103b18e{top:0;z-index:1;color:#666666;background:transparent;cursor:text;font-size:0.875rem;font-weight:400;padding:0;line-height:2.25rem;position:absolute;-webkit-transition:color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);transition:color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);transition:transform .167s cubic-bezier(0.55, 0, 0.1, 1),color .167s,background .267s,line-height .167s,padding .167s;transition:transform .167s cubic-bezier(0.55, 0, 0.1, 1),color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);-webkit-transform:translate(0.4375rem, 0.625rem) scale(1);transform:translate(0.4375rem, 0.625rem) scale(1);-webkit-transform-origin:bottom;transform-origin:bottom}html[dir='ltr'] .label_c103b18e{left:0}html[dir='rtl'] .label_c103b18e{right:0}[dir='rtl'] .label_c103b18e{padding:0 0.875rem 0 0}html[dir='ltr'] .label_c103b18e{text-align:left}html[dir='rtl'] .label_c103b18e{text-align:right}.label_c103b18e.floatAbove_c103b18e{padding:0 0.1875rem;line-height:0.875rem;font-weight:600;color:initial;-webkit-transform:translate(0, 0.125rem) scale(0.85);transform:translate(0, 0.125rem) scale(0.85);background:#ffffff}.suggestionAdded_c103b18e{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.screenReaderOnly_c103b18e{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.pickerList_c103b18e{max-height:none}
</style><style type="text/css">.root_fd753c3c{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;font-size:0.875rem;font-weight:400;position:relative;color:#262626;white-space:nowrap}.root_fd753c3c .link_fd753c3c{color:#262626;display:inline-block;font-size:0.875rem;font-weight:400;line-height:2.5rem;padding:0 0.5rem;text-align:center;position:relative;background-color:transparent;border:0}[dir='ltr'] .root_fd753c3c .link_fd753c3c{margin-right:0.5rem}[dir='rtl'] .root_fd753c3c .link_fd753c3c{margin-left:0.5rem}.root_fd753c3c .link_fd753c3c:hover{cursor:pointer}.root_fd753c3c .link_fd753c3c:focus{outline:none}.root_fd753c3c .link_fd753c3c::before{background-color:transparent;bottom:0;content:'';height:0.125rem;left:0.5rem;position:absolute;right:0.5rem;-webkit-transition:background-color .267s cubic-bezier(0.1, 0.25, 0.75, 0.9);transition:background-color .267s cubic-bezier(0.1, 0.25, 0.75, 0.9)}.root_fd753c3c .link_fd753c3c::after{color:transparent;content:attr(title);display:block;font-weight:bold;height:0.0625rem;overflow:hidden;visibility:hidden}.root_fd753c3c .link_fd753c3c .text_fd753c3c{display:inline-block;vertical-align:top}.root_fd753c3c .link_fd753c3c.linkIsSelected_fd753c3c{font-weight:600}.root_fd753c3c .link_fd753c3c.linkIsSelected_fd753c3c::before{-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:0.125rem solid #262626}@media screen and (-ms-high-contrast: active){.root_fd753c3c .link_fd753c3c.linkIsSelected_fd753c3c::before{border-bottom-color:WindowText}}.ms-Fabric.is-focusVisible .link_fd753c3c:focus{outline:1px solid #767676}
</style><style type="text/css">.richDropdownItemInput_e301fde3{position:absolute}[dir='ltr'] .richDropdownItemInput_e301fde3{left:-624.9375rem}[dir='rtl'] .richDropdownItemInput_e301fde3{right:-624.9375rem}.root_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;font-size:0.875rem;font-weight:400;color:#262626;position:relative;outline:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.root_e301fde3:hover .title_e301fde3,.root_e301fde3:hover .caretDown_e301fde3,.root_e301fde3:focus .title_e301fde3,.root_e301fde3:focus .caretDown_e301fde3,.root_e301fde3:active .title_e301fde3,.root_e301fde3:active .caretDown_e301fde3{color:#262626}@media screen and (-ms-high-contrast: active){.root_e301fde3:hover .title_e301fde3,.root_e301fde3:hover .caretDown_e301fde3,.root_e301fde3:focus .title_e301fde3,.root_e301fde3:focus .caretDown_e301fde3,.root_e301fde3:active .title_e301fde3,.root_e301fde3:active .caretDown_e301fde3{color:Highlight}}.root_e301fde3:hover .titleIsPlaceHolder_e301fde3,.root_e301fde3:focus .titleIsPlaceHolder_e301fde3,.root_e301fde3:active .titleIsPlaceHolder_e301fde3{color:#666666}.root_e301fde3:hover .titleIsError_e301fde3,.root_e301fde3:active .titleIsError_e301fde3{border-color:#a80000}.root_e301fde3:focus .titleIsError_e301fde3{border-color:#a80000}.root_e301fde3 .titleIsError_e301fde3{border-color:#a80000}.root_e301fde3 .ms-Label{display:inline-block;margin-bottom:0.5rem}.root_e301fde3.rootIsDisabled_e301fde3 .title_e301fde3{background-color:#f0f0f0;border-color:#e5e5e5;color:#666666;cursor:default}@media screen and (-ms-high-contrast: active){.root_e301fde3.rootIsDisabled_e301fde3 .title_e301fde3{border:1px solid GrayText;color:GrayText}}.root_e301fde3.rootIsDisabled_e301fde3 .title_e301fde3.titleIsError_e301fde3{border-color:#a80000}.root_e301fde3.rootIsDisabled_e301fde3 .caretDown_e301fde3{color:#cdcdcd}@media screen and (-ms-high-contrast: active){.root_e301fde3.rootIsDisabled_e301fde3 .caretDown_e301fde3{color:GrayText}}.root_e301fde3.rootInlineLabel_e301fde3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.root_e301fde3.rootInlineLabel_e301fde3 .label_e301fde3{margin-bottom:0}[dir='ltr'] .root_e301fde3.rootInlineLabel_e301fde3 .label_e301fde3{margin-right:0.9375rem}[dir='rtl'] .root_e301fde3.rootInlineLabel_e301fde3 .label_e301fde3{margin-left:0.9375rem}.root_e301fde3.rootInlineLabel_e301fde3 .titleWrapper_e301fde3{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.root_e301fde3.rootIsIconDropdown_e301fde3{width:13.75rem}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3{padding:0 0.125rem 0 0.5625rem}html[dir='rtl'] .root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3{padding:0 0.5625rem 0 0.125rem}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .titleContent_e301fde3{display:-webkit-box;display:-ms-flexbox;display:flex}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .titleContent_e301fde3 .titleWithIcon_e301fde3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:11.4375rem;height:2.25rem}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .titleContent_e301fde3 .titleWithIcon_e301fde3 .titleIcon_e301fde3{margin:0 0.625rem 0 0}html[dir='rtl'] .root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .titleContent_e301fde3 .titleWithIcon_e301fde3 .titleIcon_e301fde3{margin:0 0 0 0.625rem}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .titleContent_e301fde3 .titleWithIcon_e301fde3 .titleText_e301fde3{-webkit-box-sizing:content-box;box-sizing:content-box;height:1.25rem;line-height:1.25rem;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}.root_e301fde3.rootIsIconDropdown_e301fde3 .title_e301fde3 .caretDown_e301fde3{width:1.625rem;-webkit-box-sizing:border-box;box-sizing:border-box}.root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3{width:inherit;margin-bottom:0}.root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3 .title_e301fde3{background-color:transparent;height:1.5rem;border:none;padding:0}.root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3 .title_e301fde3 .titleTextContainer_e301fde3{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word}.root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3 .title_e301fde3 .titleTextContainer_e301fde3 .titleWithIcon_e301fde3{width:inherit;height:1.5rem}.root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3 .caretDown_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;width:1.6875rem;height:inherit;padding:0 0.625rem 0 0.625rem}html[dir='rtl'] .root_e301fde3.rootIsIconDropdown_e301fde3.rootHasHiddenBorders_e301fde3 .caretDown_e301fde3{padding:0 0.625rem 0 0.625rem}.listWrapper_e301fde3:focus{outline:0}.caretDown_e301fde3{pointer-events:none;color:#262626}.caretDown_e301fde3 svg{height:0.3125rem;width:0.4375rem}.title_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none;margin:0;padding:0;background:#ffffff;border:1px solid #cdcdcd;border-radius:0.125rem;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:2.25rem;height:auto;line-height:2.25rem;padding:0 0.125rem 0 0.75rem;position:relative;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;width:100%;text-align:left;font-size:0.875rem;color:#262626}html[dir='rtl'] .title_e301fde3{padding:0 0.75rem 0 0.125rem}.title_e301fde3::-moz-focus-inner{border:0}.title_e301fde3{outline:transparent}.title_e301fde3{position:relative}.ms-Fabric.is-focusVisible .title_e301fde3:focus{outline:none}.ms-Fabric.is-focusVisible .title_e301fde3:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.title_e301fde3.titleIsPlaceHolder_e301fde3{color:#666666}.title_e301fde3 .titleContent_e301fde3{-webkit-box-flex:1;-ms-flex:1;flex:1}.title_e301fde3 .dropdownOpen_e301fde3{cursor:pointer;background-color:#ffffff;border:none;width:2rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.title_e301fde3 .dropdownOpen_e301fde3:hover{background-color:#f0f0f0}[dir='ltr'] .panel_e301fde3 .ms-Panel-main{-webkit-box-shadow:-30px 0px 30px -30px rgba(0,0,0,0.2);box-shadow:-30px 0px 30px -30px rgba(0,0,0,0.2)}[dir='rtl'] .panel_e301fde3 .ms-Panel-main{-webkit-box-shadow:30px 0px 30px -30px rgba(0,0,0,0.2);box-shadow:30px 0px 30px -30px rgba(0,0,0,0.2)}.panel_e301fde3 .ms-Panel-contentInner{padding:0 0 1.25rem}.errorMessage_e301fde3{color:#a80000;font-size:0.75rem;font-weight:400;padding-top:0.3125rem}.items_e301fde3{display:block}.item_e301fde3{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:auto;min-height:1.625rem;line-height:1.25rem;padding:0 1rem;position:relative;border:1px solid transparent;word-wrap:break-word;overflow-wrap:break-word;text-align:left;border-radius:0}@media screen and (-ms-high-contrast: active){.item_e301fde3{border-color:Window}}.item_e301fde3:hover{background-color:#f0f0f0;color:inherit}.item_e301fde3:hover .richDropdownSelect_e301fde3{background-color:#e5e5e5}.ms-Fabric.is-focusVisible .item_e301fde3:focus{background-color:#f0f0f0}.ms-Fabric.is-focusVisible .item_e301fde3:focus.itemIsSelected_e301fde3{background-color:rgba(0,0,0,0)}@media screen and (-ms-high-contrast: active){.ms-Fabric.is-focusVisible .item_e301fde3:focus{background-color:Highlight;border-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: black-on-white){.ms-Fabric.is-focusVisible .item_e301fde3:focus{-ms-high-contrast-adjust:none}}.item_e301fde3:active{background-color:#f0f0f0;color:#000000}.item_e301fde3.itemIsDisabled_e301fde3{color:#8c8c8c;cursor:default}.item_e301fde3 .ms-Button-flexContainer{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.item_e301fde3 .richDropdownSelect_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;width:2rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.item_e301fde3 .richDropdownSelect_e301fde3 .richDropdownRadio_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;width:0.9375rem;height:0.9375rem;border-radius:100%;background-color:#ffffff;border:1px solid #cdcdcd}.item_e301fde3 .richDropdownSelect_e301fde3:hover .richDropdownRadio_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#cdcdcd;-webkit-box-shadow:inset 0 0 0 4px #ffffff;box-shadow:inset 0 0 0 4px #ffffff;border:1px solid #cdcdcd}.item_e301fde3 .richDropdownItemContainer_e301fde3{-webkit-box-flex:1;-ms-flex:1;flex:1}[dir='ltr'] .item_e301fde3 .richDropdownItemContainer_e301fde3{margin-left:0.625rem}[dir='rtl'] .item_e301fde3 .richDropdownItemContainer_e301fde3{margin-right:0.625rem}.item_e301fde3.itemIsSelected_e301fde3{background-color:rgba(0,0,0,0);color:#000000}.item_e301fde3.itemIsSelected_e301fde3 .richDropdownSelect_e301fde3:hover .richDropdownRadio_e301fde3{-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#000000;-webkit-box-shadow:none;box-shadow:none;border:5px solid #12b957}.item_e301fde3.itemIsSelected_e301fde3 .richDropdownRadio_e301fde3{background-color:#000000;border:5px solid #12b957}.item_e301fde3.itemIsSelected_e301fde3:focus::-moz-focus-inner{border:0}.item_e301fde3.itemIsSelected_e301fde3:focus{outline:transparent}.item_e301fde3.itemIsSelected_e301fde3:focus{position:relative}.ms-Fabric.is-focusVisible .item_e301fde3.itemIsSelected_e301fde3:focus:focus{outline:none}.ms-Fabric.is-focusVisible .item_e301fde3.itemIsSelected_e301fde3:focus:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #2f8df7}@media screen and (-ms-high-contrast: active){.item_e301fde3.itemIsSelected_e301fde3{background-color:Highlight;border-color:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: black-on-white){.item_e301fde3.itemIsSelected_e301fde3{-ms-high-contrast-adjust:none}}.item_e301fde3.itemIsSelected_e301fde3.itemIsDisabled_e301fde3{color:#8c8c8c;background-color:transparent}.header_e301fde3{font-size:0.875rem;font-weight:400;font-weight:600;color:#262626;background:none;border:none;height:1.625rem;line-height:1.625rem;cursor:default;padding:0rem 1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}html[dir='ltr'] .header_e301fde3{text-align:left}html[dir='rtl'] .header_e301fde3{text-align:right}.divider_e301fde3{height:0.0625rem;background-color:#c8c8c8}.optionText_e301fde3{min-width:0rem;max-width:100%;overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;margin:0.625rem 0.0625rem}.callout_e301fde3.calloutIsIconDropdown_e301fde3{background-color:#ffffff;padding:0.25rem 0 0.25rem 0}html[dir='rtl'] .callout_e301fde3.calloutIsIconDropdown_e301fde3{padding:0.25rem 0 0.25rem 0}.callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3{padding:0 0.5625rem 0 0.5625rem;min-height:2.5rem}html[dir='rtl'] .callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3{padding:0 0.5625rem 0 0.5625rem}.ms-Fabric.is-focusVisible .callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3:focus.itemIsSelected_e301fde3{background-color:#262626}.callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3.itemIsSelected_e301fde3{background-color:#262626}.callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3.itemIsSelected_e301fde3:hover{background-color:#262626}.callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3 .optionWithIcon_e301fde3{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:hidden}.callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3 .optionWithIcon_e301fde3 .optionIcon_e301fde3{margin:0 0.625rem 0 0}html[dir='rtl'] .callout_e301fde3.calloutIsIconDropdown_e301fde3 .item_e301fde3 .optionWithIcon_e301fde3 .optionIcon_e301fde3{margin:0 0 0 0.625rem}.callout_e301fde3.calloutHasHiddenBorders_e301fde3{max-width:25rem}.callout_e301fde3 .ms-Callout-main{max-width:100%}.iconSpacer_e301fde3{height:1.5rem;width:1.5rem}
</style><style type="text/css">@-webkit-keyframes spinAnimation_e221e635{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinAnimation_e221e635{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.root_e221e635>.circle_e221e635{margin:auto;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:50%;width:100%;height:100%;border:1.5px solid #e5e5e5;border-top-color:#a234b5;-webkit-animation:spinAnimation_e221e635 1.3s infinite cubic-bezier(0.53, 0.21, 0.29, 0.67);animation:spinAnimation_e221e635 1.3s infinite cubic-bezier(0.53, 0.21, 0.29, 0.67)}.root_e221e635>.circle_e221e635.circleIsXSmall_e221e635{width:0.75rem;height:0.75rem}.root_e221e635>.circle_e221e635.circleIsSmall_e221e635{width:1rem;height:1rem}.root_e221e635>.circle_e221e635.circleIsTypeMedium_e221e635,.root_e221e635>.circle_e221e635.circleIsMedium_e221e635{width:1.25rem;height:1.25rem}.root_e221e635>.circle_e221e635.circleIsTypeLarge_e221e635,.root_e221e635>.circle_e221e635.circleIsLarge_e221e635{width:1.75rem;height:1.75rem}.root_e221e635>.circle_e221e635.circleIsxLarge_e221e635{width:3.125rem;height:3.125rem}.root_e221e635 .label_e221e635{color:#262626;margin-top:0.625rem;text-align:center}.root_e221e635 .screenReaderOnly_e221e635{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}@media screen and (-ms-high-contrast: active){.root_e221e635>.circle_e221e635{border-top-color:Highlight}}
</style><style type="text/css">.root_78cccc93{min-width:16.25rem}.suggestionsItem_78cccc93{cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;position:relative}.suggestionsItem_78cccc93::-moz-focus-inner{border:0}.suggestionsItem_78cccc93{outline:transparent}.suggestionsItem_78cccc93{position:relative}.ms-Fabric.is-focusVisible .suggestionsItem_78cccc93:focus{outline:none}.ms-Fabric.is-focusVisible .suggestionsItem_78cccc93:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.suggestionsItem_78cccc93:hover{background:#f0f0f0}.suggestionsItem_78cccc93:hover .closeButton_78cccc93{display:block}.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93{background:#e5e5e5}.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93:hover{background:#cdcdcd}@media screen and (-ms-high-contrast: active){.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93:hover{background:Highlight;color:HighlightText}}@media screen and (-ms-high-contrast: active){.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93{background:Highlight;color:HighlightText;-ms-high-contrast-adjust:none}}.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93 .closeButton_78cccc93:hover{background:#8c8c8c;color:#262626}@media screen and (-ms-high-contrast: active){.suggestionsItem_78cccc93.suggestionsItemIsSuggested_78cccc93 .itemButton_78cccc93{color:HighlightText}}.suggestionsItem_78cccc93 .closeButton_78cccc93{display:none;color:#666666}.suggestionsItem_78cccc93 .closeButton_78cccc93:hover{background:#e5e5e5}.searchMoreButton_78cccc93{background:none;border:0;cursor:pointer;margin:0;position:relative;border-top:0.0625rem solid #e5e5e5;height:2.5rem;width:100%;font-size:0.75rem}[dir='ltr'] .searchMoreButton_78cccc93{padding-left:0.5rem}[dir='rtl'] .searchMoreButton_78cccc93{padding-right:0.5rem}[dir='ltr'] .searchMoreButton_78cccc93{text-align:left}[dir='rtl'] .searchMoreButton_78cccc93{text-align:right}.searchMoreButton_78cccc93:hover{background-color:#e5e5e5;cursor:pointer}.searchMoreButton_78cccc93:focus,.searchMoreButton_78cccc93:active{background-color:#c7e0f4}.searchMoreButton_78cccc93 .ms-Button-icon{font-size:1rem;width:1.5625rem}.searchMoreButton_78cccc93 .ms-Button-label{margin:0 0.25rem 0 0.5625rem}html[dir='rtl'] .searchMoreButton_78cccc93 .ms-Button-label{margin:0 0.5625rem 0 0.25rem}.suggestionsTitle_78cccc93{padding:0 0.75rem;color:#262626;font-size:0.75rem;line-height:2.5rem;border-bottom:0.0625rem solid #e5e5e5}.suggestionsContainer_78cccc93{overflow-y:auto;overflow-x:hidden;max-height:18.75rem;border-bottom:0.0625rem solid #e5e5e5}.suggestionsNone_78cccc93{text-align:center;color:#767676;font-size:0.75rem;line-height:1.875rem}.suggestionsSpinner_78cccc93{margin:0.3125rem 0;white-space:nowrap;line-height:1.25rem;font-size:0.75rem}html[dir='ltr'] .suggestionsSpinner_78cccc93{padding-left:0.875rem}html[dir='rtl'] .suggestionsSpinner_78cccc93{padding-right:0.875rem}html[dir='ltr'] .suggestionsSpinner_78cccc93{text-align:left}html[dir='rtl'] .suggestionsSpinner_78cccc93{text-align:right}.suggestionsSpinner_78cccc93 .ms-Spinner-circle{display:inline-block;vertical-align:middle}.suggestionsSpinner_78cccc93 .ms-Spinner-label{display:inline-block;margin:0rem 0.625rem 0 1rem;vertical-align:middle}html[dir='rtl'] .suggestionsSpinner_78cccc93 .ms-Spinner-label{margin:0rem 1rem 0 0.625rem}.itemButton_78cccc93{height:100%;width:100%;padding:0.5rem 0.75rem;line-height:1.3125rem}@media screen and (-ms-high-contrast: active){.itemButton_78cccc93{color:WindowText}}.closeButton_78cccc93{padding:0 0.25rem;height:auto;width:2rem}@media screen and (-ms-high-contrast: active){.closeButton_78cccc93{color:WindowText}}.closeButton_78cccc93:hover{background:#cdcdcd;color:#262626}.suggestionsAvailable_78cccc93{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
</style><style type="text/css">.root_fe730df6{margin-top:0.5rem}.selectionContainer_fe730df6{padding-top:0.625rem;position:relative}.pickerText_fe730df6{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:11.25rem;min-height:1.875rem}.pickerList_fe730df6{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #cdcdcd;margin:0;margin-bottom:0.5rem;min-width:11.25rem;list-style:none;padding:0;min-height:2rem;max-height:8.9375rem;overflow:auto}.pickerList_fe730df6.pickerListHorizontal_fe730df6{border:0;margin-bottom:0}.pickerListItem_fe730df6{width:100%}.pickerListItemHorizontal_fe730df6{max-width:9.375rem;padding-bottom:0.5rem;margin:0 0.5rem 0 0}.pickerInput_fe730df6{height:2.125rem;border:1px solid #767676;border-radius:0.125rem;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:0 0.375rem 0rem}.pickerInput_fe730df6:focus{border-color:#006dc7;-webkit-box-shadow:inset 0 0 0 4px rgba(0,109,199,.1);box-shadow:inset 0 0 0 4px rgba(0,109,199,.1)}.ms-Fabric.is-focusVisible .pickerInput_fe730df6:focus{-webkit-box-shadow:inset 0 0 0 1px #006dc7;box-shadow:inset 0 0 0 1px #006dc7}.pickerInput_fe730df6::-webkit-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput_fe730df6::-moz-placeholder{color:#666666;font-size:0.875rem}.pickerInput_fe730df6::-ms-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-webkit-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-moz-placeholder{color:#666666;font-size:0.875rem}.pickerInput::-ms-input-placeholder{color:#666666;font-size:0.875rem}.pickerInput_fe730df6::placeholder{color:#666666;font-size:0.875rem}.label_fe730df6{top:0;z-index:1;color:#666666;background:transparent;cursor:text;font-size:0.875rem;font-weight:400;padding:0;line-height:2.25rem;position:absolute;-webkit-transition:color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);transition:color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);transition:transform .167s cubic-bezier(0.55, 0, 0.1, 1),color .167s,background .267s,line-height .167s,padding .167s;transition:transform .167s cubic-bezier(0.55, 0, 0.1, 1),color .167s,background .267s,line-height .167s,padding .167s,-webkit-transform .167s cubic-bezier(0.55, 0, 0.1, 1);-webkit-transform:translate(0.4375rem, 0.625rem) scale(1);transform:translate(0.4375rem, 0.625rem) scale(1);-webkit-transform-origin:bottom;transform-origin:bottom}html[dir='ltr'] .label_fe730df6{left:0}html[dir='rtl'] .label_fe730df6{right:0}[dir='rtl'] .label_fe730df6{padding:0 0.875rem 0 0}html[dir='ltr'] .label_fe730df6{text-align:left}html[dir='rtl'] .label_fe730df6{text-align:right}.label_fe730df6.floatAbove_fe730df6{padding:0 0.1875rem;line-height:0.875rem;font-weight:600;color:initial;-webkit-transform:translate(0, 0.125rem) scale(0.85);transform:translate(0, 0.125rem) scale(0.85);background:#ffffff}.suggestionAdded_fe730df6{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.screenReaderOnly_fe730df6{position:absolute;width:0.0625rem;height:0.0625rem;padding:0;margin:-0.0625rem;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}
</style><style type="text/css">.root_c9104dbe{-webkit-box-sizing:content-box;box-sizing:content-box;-ms-flex-negative:1;flex-shrink:1;background:#fbf4fc;border-radius:1.875rem;margin:0.125rem;height:1.625rem;line-height:1.625rem;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.root_c9104dbe::-moz-focus-inner{border:0}.root_c9104dbe{outline:transparent}.root_c9104dbe{position:relative}.ms-Fabric.is-focusVisible .root_c9104dbe:focus{outline:none}.ms-Fabric.is-focusVisible .root_c9104dbe:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.root_c9104dbe.isSelected_c9104dbe{background:#d0d0d0}@media screen and (-ms-high-contrast: active){.root_c9104dbe.isSelected_c9104dbe{border:1px solid WindowFrame}}.root_c9104dbe.isSelected_c9104dbe:hover{background:#dadada}@media screen and (-ms-high-contrast: active){.root_c9104dbe{border:1px solid WindowText}}.tagItemText_c9104dbe{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:1.875rem;margin:0 0.5rem}.tagItemClose_c9104dbe{background-color:transparent;border:0;cursor:pointer;color:#666666;font-size:0.75rem;display:inline-block;text-align:center;vertical-align:top;height:100%;-ms-flex-negative:0;flex-shrink:0;padding:0.0625rem 0.375rem 0.0625rem 0.5rem}[dir='ltr'] .tagItemClose_c9104dbe{margin-left:auto}[dir='rtl'] .tagItemClose_c9104dbe{margin-right:auto}.tagItemClose_c9104dbe::-moz-focus-inner{border:0}.tagItemClose_c9104dbe{outline:transparent}.tagItemClose_c9104dbe{position:relative}.ms-Fabric.is-focusVisible .tagItemClose_c9104dbe:focus{outline:none}.ms-Fabric.is-focusVisible .tagItemClose_c9104dbe:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:2px solid #006dc7}.tagItemButton_c9104dbe{width:100%;height:100%}.tagItemTextOverflow_c9104dbe{overflow:hidden;text-overflow:ellipsis;max-width:60vw}
</style><style type="text/css">.root_3474fe08{display:block;max-width:15.625rem;border:transparent}.bodyContent_3474fe08{padding:1.75rem 1rem}.headerIsLarge_3474fe08:not(:last-child){margin-bottom:1.25rem}.headline_3474fe08{margin:0;color:#ffffff}.headerIsLarge_3474fe08 .headline_3474fe08{font-size:1.0625rem;font-weight:300;font-weight:600;font-family:inherit}.headerIsSmall_3474fe08 .headline_3474fe08{font-size:0.875rem;font-weight:400;font-weight:600;font-family:inherit}[dir='ltr'] .headerIsSmall_3474fe08 .headline_3474fe08{margin-right:0.625rem}[dir='rtl'] .headerIsSmall_3474fe08 .headline_3474fe08{margin-left:0.625rem}.body_3474fe08:not(:last-child){margin-bottom:1.25rem}.subText_3474fe08{margin:0;font-size:0.875rem;color:#ffffff;font-weight:400}.subText_3474fe08:not(:last-child){margin-bottom:1.375rem}.root_3474fe08 .closeButton_3474fe08{position:absolute;top:0;color:#ffffff;font-size:0.75rem}[dir='ltr'] .root_3474fe08 .closeButton_3474fe08{right:0}[dir='rtl'] .root_3474fe08 .closeButton_3474fe08{left:0}.footer_3474fe08{display:-webkit-box;display:-ms-flexbox;display:flex}html[dir='ltr'] .footer_3474fe08 .ms-Button{margin-left:auto}html[dir='rtl'] .footer_3474fe08 .ms-Button{margin-right:auto}html[dir='ltr'] .footer_3474fe08 .ms-Button:not(:first-child){margin-left:1.25rem}html[dir='rtl'] .footer_3474fe08 .ms-Button:not(:first-child){margin-right:1.25rem}.root_3474fe08{pointer-events:none}.root_3474fe08 .ms-Callout-main,.root_3474fe08 .ms-Callout-beak,.root_3474fe08 .ms-Callout-smallbeak{background:#262626}.ms-Fabric.is-focusVisible .root_3474fe08 .ms-Callout-main:focus{outline:2px solid #006dc7;-webkit-box-shadow:none !important;box-shadow:none !important}.root_3474fe08 .ms-TeachingBubble-closebutton{pointer-events:auto}
</style><style id="css-bb-user-avatar"></style><link rel="stylesheet" type="text/css" href="./kickstarter_files/style.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/22258-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/19338-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/19620-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/67400-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/15025-4ddd52ae2503ef18.css"><style data-jss="" data-meta="makeStyles">
.makeStyleshideOffScreen-0-2-116 {
clip: rect(0 0 0 0);
width: 0.0625rem;
border: 0;
height: 0.0625rem;
margin: -0.0625rem;
padding: 0;
overflow: hidden;
position: absolute;
}
</style><style data-jss="" data-meta="MuiSvgIcon">
.MuiSvgIconroot-0-2-58 {
fill: currentColor;
width: 1em;
height: 1em;
display: inline-block;
font-size: 1.5rem;
transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
flex-shrink: 0;
user-select: none;
}
.MuiSvgIconcolorPrimary-0-2-59 {
color: #262626;
}
.MuiSvgIconcolorSecondary-0-2-60 {
color: #cdcdcd;
}
.MuiSvgIconcolorAction-0-2-61 {
color: #262626;
}
.MuiSvgIconcolorError-0-2-62 {
color: #c23e37;
}
.MuiSvgIconcolorDisabled-0-2-63 {
color: #8c8c8c;
}
.MuiSvgIconfontSizeInherit-0-2-64 {
font-size: inherit;
}
.MuiSvgIconfontSizeSmall-0-2-65 {
font-size: 1rem;
}
.MuiSvgIconfontSizeLarge-0-2-66 {
font-size: 2.375rem;
}
</style><style data-jss="" data-meta="MuiButtonBase">
.MuiButtonBaseroot-0-2-113 {
color: inherit;
border: 0;
cursor: pointer;
margin: 0;
display: inline-flex;
outline: 0;
padding: 0;
position: relative;
align-items: center;
user-select: none;
border-radius: 0;
vertical-align: middle;
-moz-appearance: none;
justify-content: center;
text-decoration: none;
background-color: transparent;
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent;
}
.MuiButtonBaseroot-0-2-113::-moz-focus-inner {
border-style: none;
}
.MuiButtonBaseroot-0-2-113.MuiButtonBasedisabled-0-2-114 {
cursor: default;
pointer-events: none;
}
@media print {
.MuiButtonBaseroot-0-2-113 {
-webkit-print-color-adjust: exact;
}
}
.MuiButtonBaseroot-0-2-113.MuiButtonBasefocusVisible-0-2-115::before {
top: 0.0625rem;
left: 0.0625rem;
right: 0.0625rem;
border: 2px solid rgba(0,0,0, 0.001);
bottom: 0.0625rem;
content: "";
position: absolute;
box-shadow: 0 0 0 1px #2f8df7, 0 0 0 2px #006dc7, 0 0 0 3px #ffffff;
border-radius: inherit;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylesstrokeIcon-0-2-56 {
fill: none;
}
</style><style data-jss="" data-meta="MuiFormLabel">
.MuiFormLabelroot-0-2-129 {
padding: 0;
font-size: 0.875rem;
font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
font-weight: 600;
line-height: 1.5;
margin-bottom: 0.375rem;
}
.MuiFormLabelroot-0-2-129.MuiFormLabelfocused-0-2-131 {
color: #262626;
}
.MuiFormLabelroot-0-2-129.MuiFormLabeldisabled-0-2-132 {
color: currentColor;
}
.MuiFormLabelroot-0-2-129.MuiFormLabelerror-0-2-133 {
color: #262626;
}
.MuiFormLabelcolorSecondary-0-2-130.MuiFormLabelfocused-0-2-131 {
color: #cdcdcd;
}
.MuiFormLabelasterisk-0-2-136 {
color: #c23e37;
}
.MuiFormLabelasterisk-0-2-136.MuiFormLabelerror-0-2-133 {
color: #c23e37;
}
</style><style data-jss="" data-meta="MuiInputLabel">
.MuiInputLabelroot-0-2-117 {
display: block;
transform-origin: top left;
}
.MuiInputLabelasterisk-0-2-122 {
float: left;
padding-left: 0;
padding-right: 0.25rem;
}
.MuiInputLabelmarginDense-0-2-124 {
transform: translate(0, 1.3125rem) scale(1);
}
.MuiInputLabelshrink-0-2-125 {
transform-origin: top left;
}
.MuiInputLabelanimated-0-2-126 {
transition: color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms,transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
}
.MuiInputLabelfilled-0-2-127 {
z-index: 1;
transform: translate(0.75rem, 1.25rem) scale(1);
pointer-events: none;
}
.MuiInputLabelfilled-0-2-127.MuiInputLabelmarginDense-0-2-124 {
transform: translate(0.75rem, 1.0625rem) scale(1);
}
.MuiInputLabelfilled-0-2-127.MuiInputLabelshrink-0-2-125 {
transform: translate(0.75rem, 0.625rem) scale(0.75);
}
.MuiInputLabelfilled-0-2-127.MuiInputLabelshrink-0-2-125.MuiInputLabelmarginDense-0-2-124 {
transform: translate(0.75rem, 0.4375rem) scale(0.75);
}
.MuiInputLabeloutlined-0-2-128 {
top: -0.0625rem;
left: 0;
z-index: 1;
position: absolute;
font-size: 1rem;
transform: translate(0.75rem, 0.5625rem) scale(.875);
font-weight: 400;
pointer-events: none;
}
.MuiInputLabeloutlined-0-2-128.MuiInputLabelmarginDense-0-2-124 {
transform: translate(0.875rem, 0.75rem) scale(1);
}
.MuiInputLabeloutlined-0-2-128.MuiInputLabelshrink-0-2-125 {
transform: translate(0.75rem, -0.5625rem) scale(.75);
}
.MuiInputLabeloutlined-0-2-128 + div > input::-webkit-input-placeholder {
opacity: 0;
}
.MuiInputLabeloutlined-0-2-128 + div > input::-moz-placeholder {
opacity: 0;
}
.MuiInputLabeloutlined-0-2-128 + div > input::-ms-input-placeholder {
opacity: 0;
}
.MuiInputLabeloutlined-0-2-128 + div > input:focus::-webkit-input-placeholder {
opacity: 0.6;
}
.MuiInputLabeloutlined-0-2-128 + div > input:focus::-moz-placeholder {
opacity: 0.6;
}
.MuiInputLabeloutlined-0-2-128 + div > input:focus::-ms-input-placeholder {
opacity: 0.6;
}
.MuiInputLabeloutlined-0-2-128.MuiInputLabelshrink-0-2-125::before {
top: 0;
left: -0.25rem;
right: -0.375rem;
bottom: 0;
content: "";
display: block;
z-index: -1;
position: absolute;
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0) 49%,
rgba(255, 255, 255, 1) 50%,
rgba(255, 255, 255, 1) 100%);
border-radius: 0.125rem;
}
.MuiInputLabeloutlined-0-2-128.MuiInputLabelshrink-0-2-125.MuiInputLabeldisabled-0-2-119::before {
background: linear-gradient(to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0) 49%,
rgba(240, 240, 240, 1) 50%,
rgba(240, 240, 240, 1) 100%);
}
</style><style data-jss="" data-meta="MuiButton">
.MuiButtonroot-0-2-84 {
color: #262626;
border: 1px solid rgba(0,0,0, 0.001);
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
min-width: 4rem;
box-sizing: border-box;
min-height: 2.375rem;
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
font-weight: 600;
line-height: 1.4;
border-radius: 0.125rem;
}
.MuiButtonroot-0-2-84:hover {
text-decoration: none;
background-color: rgba(38, 38, 38, 1);
}
.MuiButtonroot-0-2-84.MuiButtondisabled-0-2-97 {
color: #8c8c8c;
}
@media (hover: none) {
.MuiButtonroot-0-2-84:hover {
background-color: transparent;
}
}
.MuiButtonroot-0-2-84:hover.MuiButtondisabled-0-2-97 {
background-color: transparent;
}
.MuiButtonlabel-0-2-85 {
width: 100%;
display: inherit;
align-items: inherit;
justify-content: inherit;
}
.MuiButtontext-0-2-86 {
padding: 0.375rem 0.5rem;
}
.MuiButtontextPrimary-0-2-87 {
color: #262626;
}
.MuiButtontextPrimary-0-2-87:hover {
background-color: rgba(38, 38, 38, 1);
}
@media (hover: none) {
.MuiButtontextPrimary-0-2-87:hover {
background-color: transparent;
}
}
.MuiButtontextSecondary-0-2-88 {
color: #cdcdcd;
}
.MuiButtontextSecondary-0-2-88:hover {
background-color: rgba(205, 205, 205, 1);
}
@media (hover: none) {
.MuiButtontextSecondary-0-2-88:hover {
background-color: transparent;
}
}
.MuiButtonoutlined-0-2-89 {
padding: 0.3125rem 0.9375rem;
background-color: transparent;
}
.MuiButtonoutlined-0-2-89::before {
top: 0.0625rem;
left: 0.0625rem;
right: 0.0625rem;
bottom: 0.0625rem;
content: "";
position: absolute;
box-shadow: 0 0 0 1px #262626;
border-radius: inherit;
}
.MuiButtonoutlined-0-2-89:hover, .MuiButtonoutlined-0-2-89:focus, .MuiButtonoutlined-0-2-89:active {
color: #262626;
background-color: transparent;
}
.MuiButtonoutlined-0-2-89:disabled::before {
box-shadow: 0 0 0 2px #cdcdcd;
}
.MuiButtonoutlinedPrimary-0-2-90 {
color: #262626;
border: 1px solid rgba(38, 38, 38, 0.5);
}
.MuiButtonoutlinedPrimary-0-2-90:hover {
border: 1px solid #262626;
background-color: rgba(38, 38, 38, 1);
}
@media (hover: none) {
.MuiButtonoutlinedPrimary-0-2-90:hover {
background-color: transparent;
}
}
.MuiButtonoutlinedSecondary-0-2-91 {
color: #cdcdcd;
border: 1px solid rgba(205, 205, 205, 0.5);
}
.MuiButtonoutlinedSecondary-0-2-91:hover {
border: 1px solid #cdcdcd;
background-color: rgba(205, 205, 205, 1);
}
.MuiButtonoutlinedSecondary-0-2-91.MuiButtondisabled-0-2-97 {
border: 1px solid #8c8c8c;
}
@media (hover: none) {
.MuiButtonoutlinedSecondary-0-2-91:hover {
background-color: transparent;
}
}
.MuiButtoncontained-0-2-92:hover {
box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
}
.MuiButtoncontained-0-2-92.MuiButtondisabled-0-2-97 {
color: #8c8c8c;
border: 1px solid transparent;
background-color: #e5e5e5;
}
@media (hover: none) {
.MuiButtoncontained-0-2-92:hover {
box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
background-color: #e0e0e0;
}
}
.MuiButtoncontained-0-2-92:hover.MuiButtondisabled-0-2-97 {
background-color: #e5e5e5;
}
.MuiButtoncontainedPrimary-0-2-93 {
color: #ffffff;
background-color: #262626;
}
.MuiButtoncontainedPrimary-0-2-93:hover {
background-color: #000000;
}
@media (hover: none) {
.MuiButtoncontainedPrimary-0-2-93:hover {
background-color: #262626;
}
}
.MuiButtoncontainedPrimary-0-2-93:hover:active {
color: #ffffff;
background-color: #262626;
}
.MuiButtoncontainedPrimary-0-2-93:hover:disabled {
color: #767676;
}
.MuiButtoncontainedSecondary-0-2-94 {
color: #262626;
background-color: #e5e5e5;
}
.MuiButtoncontainedSecondary-0-2-94:hover {
color: #262626;
background-color: #cdcdcd;
}
@media (hover: none) {
.MuiButtoncontainedSecondary-0-2-94:hover {
background-color: #cdcdcd;
}
}
.MuiButtoncontainedSecondary-0-2-94:hover:active {
color: #262626;
background-color: #cdcdcd;
}
.MuiButtoncontainedSecondary-0-2-94:hover:disabled {
color: #767676;
}
.MuiButtondisableElevation-0-2-95 {
box-shadow: none;
}
.MuiButtondisableElevation-0-2-95:hover {
box-shadow: none;
}
.MuiButtondisableElevation-0-2-95.MuiButtonfocusVisible-0-2-96 {
box-shadow: none;
}
.MuiButtondisableElevation-0-2-95:active {
box-shadow: none;
}
.MuiButtondisableElevation-0-2-95.MuiButtondisabled-0-2-97 {
box-shadow: none;
}
.MuiButtoncolorInherit-0-2-98 {
color: inherit;
border-color: currentColor;
}
.MuiButtontextSizeSmall-0-2-99 {
padding: 0.25rem 0.3125rem;
font-size: 0.8125rem;
}
.MuiButtontextSizeLarge-0-2-100 {
padding: 0.5rem 0.6875rem;
font-size: 0.9375rem;
}
.MuiButtonoutlinedSizeSmall-0-2-101 {
padding: 0.1875rem 0.5625rem;
font-size: 0.8125rem;
}
.MuiButtonoutlinedSizeLarge-0-2-102 {
padding: 0.4375rem 1.3125rem;
font-size: 0.9375rem;
}
.MuiButtoncontainedSizeSmall-0-2-103 {
padding: 0.25rem 0.625rem;
font-size: 0.8125rem;
}
.MuiButtoncontainedSizeLarge-0-2-104 {
padding: 0.5rem 1.375rem;
font-size: 0.9375rem;
}
.MuiButtonfullWidth-0-2-107 {
width: 100%;
}
.MuiButtonstartIcon-0-2-108 {
display: inherit;
margin-left: -0.25rem;
margin-right: 0.5rem;
}
.MuiButtonstartIcon-0-2-108.MuiButtoniconSizeSmall-0-2-110 {
margin-left: -0.125rem;
}
.MuiButtonendIcon-0-2-109 {
display: inherit;
margin-left: 0.5rem;
margin-right: -0.25rem;
}
.MuiButtonendIcon-0-2-109.MuiButtoniconSizeSmall-0-2-110 {
margin-right: -0.125rem;
}
.MuiButtoniconSizeSmall-0-2-110 > *:first-child {
font-size: 1.125rem;
}
.MuiButtoniconSizeLarge-0-2-112 > *:first-child {
font-size: 1.375rem;
}
</style><style data-jss="" data-meta="MuiDialog">
.MuiDialogroot-0-2-2 {
overflow-y: auto;
}
@media print {
.MuiDialogroot-0-2-2 {
position: absolute !important;
}
}
.MuiDialogscrollPaper-0-2-3 {
display: flex;
align-items: center;
justify-content: center;
}
.MuiDialogscrollBody-0-2-4 {
overflow-x: hidden;
overflow-y: auto;
text-align: center;
}
.MuiDialogscrollBody-0-2-4:after {
width: 0;
height: 100%;
content: "";
display: inline-block;
vertical-align: middle;
}
.MuiDialogcontainer-0-2-5 {
display: flex;
outline: 0;
min-height: 100%;
align-items: center;
flex-direction: column;
justify-content: center;
}
@media print {
.MuiDialogcontainer-0-2-5 {
height: auto;
}
}
.MuiDialogpaper-0-2-6 {
width: 100%;
border: 1px solid #cdcdcd;
margin: 2rem;
position: relative;
box-shadow: rgba(38, 38, 38, 0.075) 0px 0px 0px 4px;
overflow-y: auto;
}
@media print {
.MuiDialogpaper-0-2-6 {
box-shadow: none;
overflow-y: visible;
}
}
.MuiDialogpaperScrollPaper-0-2-7 {
display: flex;
max-height: calc(100% - 4rem);
flex-direction: column;
}
.MuiDialogpaperScrollBody-0-2-8 {
display: inline-block;
text-align: left;
vertical-align: middle;
}
.MuiDialogpaperWidthFalse-0-2-9 {
max-width: calc(100% - 4rem);
}
.MuiDialogpaperWidthXs-0-2-10 {
max-width: 27.75rem;
}
@media (max-width:507.9375em) {
.MuiDialogpaperWidthXs-0-2-10.MuiDialogpaperScrollBody-0-2-8 {
max-width: calc(100% - 4rem);
}
}
.MuiDialogpaperWidthSm-0-2-11 {
max-width: 18.75rem;
}
.MuiDialogpaperWidthSm-0-2-11 .bb-dialog-content {
min-height: 3.125rem;
}
@media (max-width:103.9375em) {
.MuiDialogpaperWidthSm-0-2-11.MuiDialogpaperScrollBody-0-2-8 {
max-width: calc(100% - 4rem);
}
}
@media (min-width:0em) {
.MuiDialogpaperWidthSm-0-2-11.MuiDialogpaperScrollBody-0-2-8 {
margin: 1.875rem 0.75rem;
max-width: 18.75rem;
}
}
.MuiDialogpaperWidthMd-0-2-12 {
max-width: 28.125rem;
}
.MuiDialogpaperWidthMd-0-2-12 .bb-dialog-content {
min-height: 6.25rem;
}
@media (max-width:127.9375em) {
.MuiDialogpaperWidthMd-0-2-12.MuiDialogpaperScrollBody-0-2-8 {
max-width: calc(100% - 4rem);
}
}
@media (min-width:0em) {
.MuiDialogpaperWidthMd-0-2-12.MuiDialogpaperScrollBody-0-2-8 {
margin: 1.875rem 0.75rem;
max-width: 28.125rem;
}
}
.MuiDialogpaperWidthLg-0-2-13 {
max-width: 50rem;
}
.MuiDialogpaperWidthLg-0-2-13 .bb-dialog-title {
border-bottom: 0.0625rem solid #cdcdcd;
padding-bottom: 0.75rem;
}
.MuiDialogpaperWidthLg-0-2-13 .bb-dialog-content {
min-height: 12.5rem;
}
@media (max-width:153.9375em) {
.MuiDialogpaperWidthLg-0-2-13.MuiDialogpaperScrollBody-0-2-8 {
max-width: calc(100% - 4rem);
}
}
@media (min-width:0em) {
.MuiDialogpaperWidthLg-0-2-13.MuiDialogpaperScrollBody-0-2-8 {
margin: 1.875rem 0.75rem;
max-width: 50rem;
}
}
.MuiDialogpaperWidthXl-0-2-14 {
max-width: 7.5rem;
}
@media (max-width:183.9375em) {
.MuiDialogpaperWidthXl-0-2-14.MuiDialogpaperScrollBody-0-2-8 {
max-width: calc(100% - 4rem);
}
}
.MuiDialogpaperFullWidth-0-2-15 {
width: calc(100% - 4rem);
}
.MuiDialogpaperFullScreen-0-2-16 {
width: 100%;
height: 100%;
margin: 0;
max-width: 100%;
max-height: none;
border-radius: 0;
}
.MuiDialogpaperFullScreen-0-2-16.MuiDialogpaperScrollBody-0-2-8 {
margin: 0;
max-width: 100%;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylescontainer-0-2-1 {
padding-left: 0.9375rem;
padding-right: 0.9375rem;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylessnackbarContentRoot-0-2-17 {
background-color: #000000;
}
.makeStylesactionLink-0-2-18 {
flex: 1;
text-align: end;
}
.makeStyleslinkMessage-0-2-19 {
font-weight: 600;
margin-left: 1rem;
text-transform: capitalize;
}
.makeStylescontent-0-2-20 {
display: inline-flex;
}
.makeStylesmessageIcon-0-2-21 {
align-self: center;
margin-right: 0.5rem;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylesroot-0-2-80 {
margin: 0;
padding: 0;
}
.makeStylesroot-0-2-80 div[x-placement="top"] {
border-top: 0.0625rem solid #cdcdcd;
border-bottom: none;
}
.makeStylesroot-0-2-80 div[x-placement="bottom"] {
border-top: none;
border-bottom: 0.0625rem solid #cdcdcd;
}
.makeStylespageDropdownButton-0-2-81 {
border: 1px solid #cdcdcd;
margin: 0 0.5rem;
padding: 0.4375rem 0.1875rem;
min-width: 0.625rem;
background: #fff;
box-shadow: none;
font-weight: 400;
border-radius: 0.125rem;
}
.makeStylespageDropdownButton-0-2-81::after {
top: 0.125rem;
width: 0;
border: 7px solid transparent;
height: 0.75rem;
margin: 0 0.625rem;
content: "";
display: inline-block;
position: relative;
border-width: 6px 4px 0 4px;
vertical-align: middle;
border-top-color: #262626;
}
.makeStylespageDropdownButton-0-2-81:hover {
border: 1px solid #767676;
background: none;
}
.makeStylespageDropdownButton-0-2-81 span {
padding: 0 0 0 0.625rem;
}
.makeStylespageDropdownButton-0-2-81 span::after {
width: 0.625rem;
height: 1.5625rem;
content: "";
border-right: 0.0625rem solid #cdcdcd;
}
.makeStylespageDropdownPopper-0-2-82 {
z-index: 10;
border-left: 0.0625rem solid #cdcdcd;
border-right: 0.0625rem solid #cdcdcd;
}
.makeStylespageDropdownMenuList-0-2-83 {
width: 3.875rem;
overflow: scroll;
max-height: 13.5rem;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylespageSizeContainer-0-2-78 {
display: flex;
align-items: center;
}
.makeStylesinputLabel-0-2-79 {
margin: 0;
display: inline-block;
font-weight: 400;
}
</style><style data-jss="" data-meta="makeStyles">
.makeStylesroot-0-2-67 {
width: 100%;
display: flex;
flex-direction: column;
}
.makeStylesbaseText-0-2-68 {
display: block;
overflow: hidden;
direction: ltr;
white-space: nowrap;
text-overflow: ellipsis;
}
.makeStylesuserFlex-0-2-69 {
display: flex;
align-items: center;
}
.makeStylesuserAccommodation-0-2-70 {
color: #a234b5;
margin-inline-end: 0.3125rem;
}
.makeStylesuserName-0-2-71 {
color: inherit;
text-decoration: none;
}
.makeStylesuserName-0-2-71:hover, .makeStylesuserName-0-2-71:focus, .makeStylesuserName-0-2-71:active {
color: inherit;
text-decoration: underline;
}
.makeStylesuserPronunciation-0-2-72 {
width: 100%;
display: flex;
}
.makeStylesuserPronunciationAudio-0-2-73 {
flex-direction: row;
}
.makeStylesuserPronunciationAudio-0-2-73 .makeStylespronunciationAudio-0-2-76 button {
padding: 0 0.3125rem;
min-width: 0;
min-height: 0;
}
.makeStylespronouns-0-2-74.makeStylespronouns-0-2-74.makeStylespronouns-0-2-74 {
display: block;
font-weight: 400;
}
.makeStylespronunciation-0-2-75.makeStylespronunciation-0-2-75.makeStylespronunciation-0-2-75 {
margin: 0 -0.3125rem;
display: flex;
align-items: center;
}
.makeStylespronunciation-0-2-75.makeStylespronunciation-0-2-75.makeStylespronunciation-0-2-75 > span {
padding: 0 0.3125rem;
font-weight: 400;
}
.makeStylessubtext-0-2-77 {
color: #666666;
font-size: 0.75rem;
font-weight: 400;
line-height: 1.125rem;
}
</style><link rel="stylesheet" type="text/css" href="./kickstarter_files/79069-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/71103-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/54769-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/83670-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/62194-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/42953-4ddd52ae2503ef18.css"><link rel="stylesheet" type="text/css" href="./kickstarter_files/87383-4ddd52ae2503ef18.css"></head><body class="default ms-Fabric hide-focus-outline panel-has-focus bb-offcanvas-active bb-offcanvas-has-overlay" bb-keyboard-click="" bb-focus-helper="" bb-foundation-dropdown-close="" bb-has-footer="" bb-prevent-drag="" bb-read-info="" bb-hover-menu-opacity="" bb-live-region="" draggable="false" bb-offcanvas-depth="1"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position: absolute; width: 0; height: 0" aria-hidden="true" id="__SVG_SPRITE_NODE__"><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-close"><path d="M15 1L1 15M1 1l14 14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-attention"><rect x="1" y="1" width="14" height="14" rx="7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><path d="M8 4v5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="8" cy="12" r=".5"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-calendar"><path d="M1 15h14V2H1v13zM5 1v1h6V1H5zM5 12h1M1 6h14M5 9h1M10 12h1M10 9h1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" id="icon-custom-toggle-table"><path fill="none" stroke-width="2" stroke-miterlimit="10" d="M0 1h12M0 6h12M0 11h12"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" id="icon-custom-toggle-grid"><path fill="none" stroke-width="2" stroke-miterlimit="10" d="M0 1h12M0 6h12M0 11h12M1 12V0M6 12V0M11 12V0"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-settings"><path fill-rule="evenodd" clip-rule="evenodd" d="M21.4277 6.2062l-2.779.674a8.3399 8.3399 0 00-1.7651-1.7008l.5771-2.8038a.4939.4939 0 00-.3024-.5594l-1.9855-.7817a.4933.4933 0 00-.6028.2026l-1.4904 2.444a8.2935 8.2935 0 00-2.4509.0405L9.0563 1.333a.4956.4956 0 00-.6098-.1818l-1.9568.8509a.4934.4934 0 00-.2827.5703l.674 2.778a8.3417 8.3417 0 00-1.7018 1.7651l-2.8038-.5761a.4946.4946 0 00-.5594.3024l-.7817 1.9855a.495.495 0 00.2026.6028l2.444 1.4894a8.3611 8.3611 0 00.0406 2.4509l-2.3887 1.5734a.4952.4952 0 00-.1809.6098l.851 1.9568a.4938.4938 0 00.5692.2827l2.779-.6741a8.3178 8.3178 0 001.7652 1.7019l-.5772 2.8028a.4936.4936 0 00.3034.5594l1.9845.7827a.4946.4946 0 00.6029-.2026l1.4903-2.4441a8.3594 8.3594 0 002.451-.0405l1.5724 2.3877a.4943.4943 0 00.6097.1819l1.9569-.8509a.4953.4953 0 00.2836-.5703l-.674-2.7791a8.3321 8.3321 0 001.7008-1.7641l2.8038.5772a.4948.4948 0 00.5594-.3034l.7817-1.9855a.4938.4938 0 00-.2026-.6029l-2.444-1.4893a8.298 8.298 0 00-.0405-2.451l2.3887-1.5733a.4936.4936 0 00.1808-.6098l-.8509-1.9559a.4944.4944 0 00-.5693-.2836z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M12 16c-2.2057 0-4-1.7943-4-4s1.7943-4 4-4 4 1.7943 4 4-1.7943 4-4 4z" stroke-width="2"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-download"><path d="M12 15V1M8 11l4 4 4-4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1 7v16h22V7h-4M1 7h4-4z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-upload"><path d="M12 1v14M1 7v16h22V7h-4M1 7h4-4zM8 5l4-4 4 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-filter-options"><path d="M1 1h8M1 5h8M1 9h8M1 13h5M13 1v14M11 13l2 2 2-2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-attendance"><path d="M15 15V2H1v13h14zM4.5 1v1h7V1h-7z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5 9l2 2 4-5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-add"><path d="M1 8c0-3.866 3.134-7 7-7v0c3.866 0 7 3.134 7 7v0c0 3.866-3.134 7-7 7v0c-3.866 0-7-3.134-7-7v0zM11 8H5M8 5v6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-add-plus"><path d="M8 5v6M11 8H5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-code"><path d="M4 3L1 8l3 5M12 3l3 5-3 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-content-collection"><path d="M14 15H2V9h3v1h6V9h3v6zM13 9V4H3v5M4 4V1h8v3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-content-market"><path d="M2 2h13l-1 8H4" stroke-width="2" stroke-linejoin="round"></path><circle cx="13" cy="14" r="1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><circle cx="4" cy="14" r="1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M3 6h11.5M7 2v8M11 2v8M1 1h1l2 12h9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-duplicate"><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M1 4h11v11H1z"></path><path d="M12 12h3V1H4v3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-upload"><path d="M14 5h1v9H1V5h1M6 4l2-2 2 2M8 10V2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-discussion"><path d="M8 21.4025a10.4446 10.4446 0 01-1.75-.8072L1 22l1.4318-5.2034C1.5217 15.2417 1 13.4318 1 11.5 1 5.701 5.701 1 11.5 1c4.5718 0 8.4611 2.9218 9.9025 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M9 16c0 3.866 3.134 7 7 7 1.3878 0 2.6812-.3803 3.7692-1.0769L23 23l-1.0769-3.2308C22.6197 18.6812 23 17.3878 23 16c0-3.866-3.134-7-7-7s-7 3.134-7 7z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="13" cy="16" r=".5"></circle><circle cx="16" cy="16" r=".5"></circle><circle cx="19" cy="16" r=".5"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-complete"><rect x="1" y="1" width="14" height="14" rx="7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><path d="M5 8l2 3 4-6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-move-item-up-down"><path d="M5 11V3M7 4L5 2 3 4M11 5v8M9 12l2 2 2-2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-question-analysis"><path d="M11 1H5l1 2v4l-5 8h14l-5-8V3l1-2zM4.125 10h7.75" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-groups"><g clip-path="url(#icon-medium-groups_clip0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 23.0644C17.3246 21.1155 14.8704 20 12 20s-5.3246 1.1155-7 3.0644M12 20c2.7614 0 5-2.2386 5-5s-2.2386-5-5-5-5 2.2386-5 5 2.2386 5 5 5zM18.5 8C20.433 8 22 6.433 22 4.5S20.433 1 18.5 1 15 2.567 15 4.5 16.567 8 18.5 8z"></path><path d="M23 11s-1-3-4.5-3c-2.1456 0-3.3517 1.1274-3.9639 2M5.5 8C3.567 8 2 6.433 2 4.5S3.567 1 5.5 1 9 2.567 9 4.5 7.433 8 5.5 8zM1 11s1-3 4.5-3c2.1456 0 3.3517 1.1274 3.9639 2"></path></g><defs><clippath id="icon-medium-groups_clip0"><path d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-beast-analytics"><rect x="1" y="1" width="14" height="14" rx="7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><path d="M8 8V1M8 8l5-4M8 8l4.5 4.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-chat"><path d="M15 8c0 3.866-3.134 7-7 7a6.983 6.983 0 01-2.528-.4704L1 15l.5-4.3969C1.1775 9.7984 1 8.9199 1 8c0-3.866 3.134-7 7-7s7 3.134 7 7z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-class-pulse-future"><path d="M9 14c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1zM11 6.5a.5.5 0 11-1 0 .5.5 0 011 0zM5.5 9.5a.5.5 0 11-1 0 .5.5 0 011 0z"></path><path d="M15 11l-4.5-4.5-5.5 3-4-2.357M9 2c0 .5523-.4477 1-1 1s-1-.4477-1-1 .4477-1 1-1 1 .4477 1 1z"></path><path d="M15 2H1v12h14V2z"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-lock"><path d="M3 8h10v7H3V8zM5 8V4c0-1.5 1-3 3-3m0 0c.5 0-.5 0 0 0zm0 0c2 0 3 1.5 3 3v4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-conversation"><path d="M15 4.5C15 6.433 13.433 8 11.5 8c-.4457 0-.872-.0833-1.264-.2352L8 8l.25-2.1985A3.4905 3.4905 0 018 4.5C8 2.567 9.567 1 11.5 1S15 2.567 15 4.5zM7 15c0-2-2-4-4-4M3 11c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-discussion"><path d="M15 8c0 3.866-3.134 7-7 7a6.983 6.983 0 01-2.528-.4704L1 15l.5-4.3969C1.1775 9.7984 1 8.9199 1 8c0-3.866 3.134-7 7-7s7 3.134 7 7z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="5" cy="8" r=".5"></circle><circle cx="8" cy="8" r=".5"></circle><circle cx="11" cy="8" r=".5"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-documents"><path d="M1 4h7.0084L11 7v8H1V4z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8.0005 4v3h3.0015M4 8h1M4 11h3.9722" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 1h11v12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-export"><path d="M7 9l8-8M12 1h3v3M15 9.091V15H1V1h5.909" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-groups"><path d="M12 15s-1-2-4-2M4 15s1-2 4-2M8 13c1.6569 0 3-1.3431 3-3S9.6569 7 8 7s-3 1.3431-3 3 1.3431 3 3 3zM12 5c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2zM1 7s1-2 3-2 3 2 3 2M9 7s1-2 3-2 3 2 3 2M4 5c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-activity-indicator"><path d="M15 8c0 3.866-3.134 7-7 7a6.983 6.983 0 01-2.528-.4704L1 15l.5-4.3969C1.1775 9.7984 1 8.9199 1 8c0-3.866 3.134-7 7-7s7 3.134 7 7z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="8" cy="8" r="2" stroke-width="4"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-information"><circle cx="8" cy="8" r="7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M7 7h1v4M6 11h4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="8" cy="4" r=".5"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-peer-review"><path d="M6.5 10C7.8807 10 9 8.8807 9 7.5S7.8807 5 6.5 5 4 6.1193 4 7.5 5.1193 10 6.5 10zM6.5 10C3.2288 10 1 12.5 1 15M11.5 6C12.8807 6 14 4.8807 14 3.5S12.8807 1 11.5 1 9 2.1193 9 3.5 10.1193 6 11.5 6zM12 6c.7226 0 1.4451.464 2 1.0569M10 13l2 2 3-5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-lock-circle"><g stroke-width="2"><circle cx="8" cy="8" r="7" transform="rotate(-90 8 8)" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M5 8h6v3H5V8z" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 9h4v1H6z"></path><path d="M6 8V5.7143C6 4.857 6.6667 4 8 4m0 0c.3333 0-.3333 0 0 0zm0 0c1.3333 0 2 .8571 2 1.7143V8" stroke-linecap="round" stroke-linejoin="round"></path></g></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-feedback"><path d="M1 1h14v12h-4l-3 2-3-2H1V1zM4 4h8M4 7h8M4 10h4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-replies"><path d="M1 5h14v10H1v-4" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M3 3L1 5l2 2" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-menu"><circle cx="2" cy="8" r="1" stroke-width="2"></circle><circle cx="8" cy="8" r="1" stroke-width="2"></circle><circle cx="14" cy="8" r="1" stroke-width="2"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-messages"><path d="M1 3h14v10H1V3z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1 3l7 7 7-7M1 13l5-5M15 13l-5-5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-accommodation"><circle cx="8" cy="8" r="7" stroke-width="2"></circle><path d="M4 6l1 2 5-3M12 10l-1-2-5 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-main-menu"><path d="M1 3h14M15 8H1M1 13h14" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-draw"><path d="M15 4l-3-3L2 11l-1 4 4-1L15 4zM12 6l-2-2M6 12l-2-2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-trash"><path d="M4 4l2-3h4l2 3M2 5l1 10h10l1-10M1 4h14M8 7v5M11 7l-.5 5M5 7l.5 5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-visible"><path d="M8 3C4.6406 3 1 8 1 8s3.6406 5 7 5 7-5 7-5-3.6406-5-7-5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="8" cy="8" r="1" stroke-width="2"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-invisible"><path d="M8 3C4.6406 3 1 8 1 8s3.6406 5 7 5 7-5 7-5-3.6406-5-7-5zM1 13L15 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="8" cy="8" r="1" stroke-width="2"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-download"><path d="M4 4H1v11h14V4h-3M8 1v11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 10l2 2 2-2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-import-export"><path d="M15 9.091V15H1V1h5.909" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 7v3h3M12 1h3v3M6 10l9-9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-accessibility"><path d="M8 5c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2zM3 6l5 1 5-1M3 15l5-5 5 5M8 7v3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 17" id="icon-small-ally-indicator-unscored"><path d="M7 11.6667c0 .4602.4477.8333 1 .8333s1-.3731 1-.8333L8 7.5l-1 4.1667z" stroke-width="2" stroke-linejoin="round"></path><path d="M2 11.5H1v-1c0-3.866 3.134-7 7-7s7 3.134 7 7v1h-1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 3.5v1M13.25 6l-1 1M3.75 7l-1-1" stroke-width="2" stroke-linecap="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 17" id="icon-small-ally-alt-formats"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 16.5l8-13 8 13h-4s-.5-3-4-3-4 3-4 3H0zm8-4c1.1046 0 2-.8954 2-2s-.8954-2-2-2-2 .8954-2 2 .8954 2 2 2z" fill="#262626"></path><path d="M16 3.5l-3 5-3-5h2v-3h2v3h2z" fill="#262626"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-rubric"><path d="M11 12h4v3h-4v-3zM4 12h4v3H4v-3zM1 12v3M1 5v3M11 5h4v3h-4V5zM4 5h4v3H4V5zM8 1H4M15 1h-4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-time"><path d="M15 8c0 3.866-3.134 7-7 7s-7-3.134-7-7 3.134-7 7-7 7 3.134 7 7zM5 11l1-1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 4v4l3 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-time"><circle cx="12" cy="12" r="11" stroke-width="2"></circle><path d="M12 5v7l4 4M10 14l-3 3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-visible"><circle cx="12" cy="12" r="2" stroke-width="2"></circle><path d="M12 6C7.1067 6 1 12 1 12s6.1067 6 11 6 11-6 11-6-6.1067-6-11-6z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-invisible"><circle cx="12" cy="12" r="2" stroke-width="2"></circle><path d="M12 6C7.1067 6 1 12 1 12s6.1067 6 11 6 11-6 11-6-6.1067-6-11-6zM1 23L23 1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-lock"><path d="M11 16c0-.5523.4477-1 1-1v0c.5523 0 1 .4477 1 1v2c0 .5523-.4477 1-1 1v0c-.5523 0-1-.4477-1-1v-2z" stroke-width="2"></path><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 11h18v12H3z"></path><path d="M6 11V6s0-5 6-5 6 5 6 5v5" stroke-width="2"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-arrow-down"><path d="M1 4l7 7 7-7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-started"><circle cx="8" cy="8" r="7" transform="rotate(-90 8 8)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M12 8H4s0 4 4 4 4-4 4-4z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.8247 9a3.594 3.594 0 01-.2191.5528c-.1907.3814-.461.7323-.8478.9901C9.3773 10.7966 8.825 11 8 11c-.825 0-1.3773-.2034-1.7578-.4571-.3868-.2578-.657-.6087-.8478-.9901A3.5857 3.5857 0 015.1754 9h5.6493z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-conversation"><path d="M4.5 18C6.433 18 8 16.433 8 14.5S6.433 11 4.5 11 1 12.567 1 14.5 2.567 18 4.5 18zM9 23c.2624-2.4862-1.873-5-4.5-5M23 7.5c0 3.5899-2.9101 6.5-6.5 6.5-1.0821 0-2.1025-.2644-3-.7322L11 15l.5-3.3464C10.5633 10.5273 10 9.0794 10 7.5 10 3.9101 12.9101 1 16.5 1S23 3.9101 23 7.5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-information"><path d="M12 23c6.0751 0 11-4.9249 11-11S18.0751 1 12 1 1 5.9249 1 12s4.9249 11 11 11z" stroke-width="2"></path><path d="M12 6.5a.5.5 0 100-1 .5.5 0 000 1z" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10 9h2v9M10 18h4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-people"><path d="M1 23c1.096-4.3157 4.5473-7 9-7s7.904 2.6843 9 7M10 16c2.7614 0 5-2.2386 5-5s-2.2386-5-5-5-5 2.2386-5 5 2.2386 5 5 5zM18.5 8C20.433 8 22 6.433 22 4.5S20.433 1 18.5 1 15 2.567 15 4.5 16.567 8 18.5 8zM23 12c-.2345-1.9862-2.5-4-4.5-4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-calculation"><path d="M4 2v4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="10" cy="10" r=".5"></circle><circle cx="14" cy="14" r=".5"></circle><path d="M2 10l4 4M2 14l4-4M14 10l-4 4M14 4h-4M6 4H2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-post"><path d="M9 15L1 9l14-8-6 14zM5 12L15 1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5 12v3l1.5-1.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-feedback"><path d="M1 1h22v19h-8l-3 3-3-3H1V1zM6 6h12M6 9h12M6 12h12M6 15h7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-add-feedback"><path d="M1 1h22v19h-8l-3 3-3-3H1V1zM12 6v10M7 11h10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-search"><circle cx="6.5" cy="6.5" r="5.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M15 15l-4.5-4.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-undo"><path d="M3 3L1 5l2 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1 5h11c2 0 3 2.0474 3 4s-1 4-3 4H4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-clear"><path d="M1 8c0-3.866 3.134-7 7-7v0c3.866 0 7 3.134 7 7v0c0 3.866-3.134 7-7 7v0c-3.866 0-7-3.134-7-7v0zM10 6l-4 4M6 6l4 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-collab-session"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 5h17v4l5-3.9583V19l-5-4v4H1V5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18 8v8M6 8l2 4-2 4M11 8l2 4-2 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-collab"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 3h10v3l4-1.974V12l-4-2v3H1V3z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4 6l1 2-1 2M7.5 6l1 2-1 2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-course_catalog_default"><path d="M5 14.5c-2 1.0446-4 0-4 0v-13c2-1 4 0 4 0v13zM15 14.5c-2 1.125-4 0-4 0v-13s2-1 4 0v13zM8 11v1m0-7v1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 14.5357c-3 1.0447-6 0-6 0V1.5s3-1 6 0v13.0357z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-programs"><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M17 3h6v20h-6zM9 7h8v16H9zM1 1h8v22H1zM1 19h8M1 5h8M12 11h2M12 19h2M17 19h6M20 7v3"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-admin-menu"><path d="M12 13c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6zM1 23c0-5 5-10 11-10M18.5 14l1.0774 1.54 1.8151-.4872-.1645 1.8722 1.7036.7936-1.3295 1.3284.795 1.703-1.8723.163-.4857 1.8156L18.5 21.65l-1.5391 1.0786-.4857-1.8156-1.8723-.163.795-1.703-1.3295-1.3284 1.7036-.7936-.1645-1.8722 1.8151.4872L18.5 14z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-app"><rect x="1" y="1" width="22" height="22" rx="2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><path d="M1 7h22" stroke-width="2"></path><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M5 11h14v8H5z"></path><circle cx="4" cy="4" r=".5"></circle><circle cx="7" cy="4" r=".5"></circle><circle cx="10" cy="4" r=".5"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-calendar"><path d="M4 3H1v20h22V3h-3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M4 1h5v4H4zM15 1h5v4h-5z"></path><path d="M1 9h22" stroke-width="2"></path><path d="M5 14v-1h2v1H5zM11 14v-1h2v1h-2zM17 14v-1h2v1h-2zM5 19v-1h2v1H5zM11 19v-1h2v1h-2zM17 19v-1h2v1h-2zM9 3h6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-courses"><path d="M8 5v18M21 1H3v22h18V5H3.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 1v4" stroke-width="2"></path><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 11h5v3h-5z"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-grades"><path d="M21 11V1H3v22h11M7 5h8M7 9h10M7 13h9M7 17h3M18 21v2l2-1 3-6-2-1-3 6z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 21.2361l2.4472-4.8945.2112.1056-2.4038 4.8074L19 21.382v-.1459z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-institution"><path d="M12 1L1 5h22L12 1zM3 5v3h18V5M3 17h18v3H3zM1 20h22v3H1z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M5 8v9M19 8v9M8 8v9M16 8v9M12 8v9" stroke-width="2"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-logout"><path d="M1 12h14M6 21.2211C7.7256 22.3462 9.7864 23 12 23c6.0751 0 11-4.9249 11-11S18.0751 1 12 1c-2.2136 0-4.2744.6538-6 1.779M5 16l-4-4 4-4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-messages"><path d="M1 4v16h22V4H1z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1 4l8.4419 7.6744L12 14l2.5581-2.3256L23 4M23 20c-3.3676-3.5207-5.5754-5.3288-8.4418-8.3256M1 20l8.4419-8.3256" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-profile-user"><path d="M12 13c3.3137 0 6-2.6863 6-6s-2.6863-6-6-6-6 2.6863-6 6 2.6863 6 6 6zM23 23c-.5-5-4.5-10-11-10S1.5 18 1 23" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-stream"><circle cx="12" cy="12" r="11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></circle><path d="M2 12h20M3 7c4.5 1.3333 13.5 1.3333 18 0M3 17c4.5-1.3333 13.5-1.3333 18 0M12 2v20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 1c-5.3334 4.125-5.3333 17.875 0 22M13 1c5.3333 4.125 5.3333 17.875 0 22" stroke-width="2" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-tools"><path d="M19 14.5V23H1V5h12.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M23 6l-7 7-4.5 1.5L13 10l7-7 3 3z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-settings"><path d="M7.5977 1.5453c.1998-.2709.6048-.2709.8046 0l.9644 1.307a.5.5 0 00.5534.1798l1.5484-.4906c.3209-.1016.6485.1364.651.473l.0119 1.6242a.5001.5001 0 00.342.4707l1.5411.5133c.3193.1064.4445.4916.2486.7653l-.945 1.321a.5002.5002 0 000 .582l.945 1.321c.1959.2737.0707.6589-.2486.7653l-1.5411.5133a.5.5 0 00-.342.4706l-.0119 1.6243c-.0025.3366-.3301.5746-.651.473L9.92 12.9679a.5.5 0 00-.5533.1798l-.9644 1.307c-.1998.2709-.6048.2709-.8046 0l-.9644-1.307a.5.5 0 00-.5534-.1798l-1.5484.4906c-.3209.1016-.6485-.1364-.651-.473l-.012-1.6243a.4999.4999 0 00-.342-.4706l-1.541-.5133c-.3193-.1064-.4445-.4916-.2486-.7653l.945-1.321a.5.5 0 000-.582l-.945-1.321c-.1959-.2737-.0707-.6589.2486-.7653l1.541-.5133a.5.5 0 00.342-.4707l.012-1.6242c.0025-.3366.3301-.5746.651-.473l1.5484.4906a.5.5 0 00.5534-.1798l.9644-1.307z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10 8c0 1.1046-.8954 2-2 2s-2-.8954-2-2 .8954-2 2-2 2 .8954 2 2z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-add-circle"><circle cx="12" cy="12" r="11" stroke-width="2"></circle><path d="M12 7v10M7 12h10" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-back-arrow"><path d="M11 23L1 12 11 1M1 12h22" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-forward-arrow"><path d="M13 1l10 11-10 11M23 12H1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-arrow-up"><path d="M15 11L8 4l-7 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-arrow-right"><path d="M5 1l7 7-7 7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9" id="icon-custom-arrow-up"><path fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M8 6.09L4.476 2.91 1 6.09"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9" id="icon-custom-arrow-down"><path fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M1 3.41l3.524 3.18L8 3.41"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-unlocked"><path d="M3 8h10v7H3V8zM5 8V4c0-1.5 1-3 3-3m0 0c.5 0-.5 0 0 0zm0 0c1.0366 0 1.8046.403 2.3039 1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-star"><path d="M8 1.5l2.3864 3.7154 4.271 1.1215-2.7961 3.4177.2532 4.4085L8 12.56l-4.1145 1.6031.2532-4.4085L1.3426 6.337l4.271-1.1215L8 1.5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-small-star-press"><path fill="#C56FD5" stroke="#C56FD5" d="M10.384 4.84a.549.549 0 00.411.314l4.237.645c.448.068.626.644.303.974l-3.067 3.13a.59.59 0 00-.157.507l.724 4.42c.077.468-.39.824-.79.603l-3.79-2.087a.522.522 0 00-.509 0l-3.79 2.087c-.4.22-.868-.135-.79-.602l.722-4.421a.585.585 0 00-.157-.506L.665 6.773c-.324-.33-.145-.906.302-.974l4.238-.645a.55.55 0 00.411-.313L7.511.819a.534.534 0 01.978 0l1.895 4.022z" fill-rule="evenodd"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-attention"><circle cx="12" cy="12" r="11" stroke-width="2"></circle><path d="M12.75 18.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0z" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"></path><path d="M12 15l-.5-10h1L12 15z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-grade"><path d="M21 11V1H3v22h8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17.5 12l1.2348 3.8004h3.996l-3.2328 2.3488 1.2348 3.8004L17.5 19.6008l-3.2328 2.3488 1.2348-3.8004-3.2328-2.3488h3.996L17.5 12zM7 5h8M7 9h10M7 13h3M7 17h2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-search"><g clip-path="url(#icon-medium-search_clip0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="10" cy="10" r="9"></circle><path d="M17 17l6 6"></path></g><defs><clippath id="icon-medium-search_clip0"><path d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-beast-analytics"><path d="M12 23c6.0751 0 11-4.9249 11-11S18.0751 1 12 1 1 5.9249 1 12s4.9249 11 11 11z" stroke-width="2" stroke-miterlimit="10"></path><path d="M15.3 1.1L12 12l10.3-4.9M12 12l8.3 8" stroke-width="2" stroke-miterlimit="10" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32" id="icon-custom-preview-user-avatar"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 32c8.8366 0 16-7.1634 16-16S24.8366 0 16 0 0 7.1634 0 16s7.1634 16 16 16z" fill="#262626"></path><mask id="icon-custom-preview-user-avatar_a" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 32c8.8366 0 16-7.1634 16-16S24.8366 0 16 0 0 7.1634 0 16s7.1634 16 16 16z" fill="#fff"></path></mask><g mask="url(#icon-custom-preview-user-avatar_a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M29.4646 30.5387c-3.0097-1.5321-7.4116-3.3031-7.4116-3.3031s-2.623-.9978-2.4683-3.4905a.1503.1503 0 01.055-.1062c1.4104-1.1554 2.3973-2.9592 2.6358-5.0377a.1383.1383 0 01.0154-.0493 3.2863 3.2863 0 00.0424-.0821c.0045-.0088.0087-.0182.0131-.0271.5819.0993 1.2652-.7788 1.614-1.9925.3603-1.254.3187-2.2582-.3563-2.2582a1.387 1.387 0 00-.0498.0009c-.091.0035-.1631-.0756-.1537-.1661.1532-1.4719.1515-2.6399.1514-2.6457v-.0003c0-4.1815-3.3917-7.5712-7.5756-7.5712-4.1839 0-7.5756 3.3897-7.5756 7.5712 0 0-.0022 1.1699.1513 2.6451.0095.0908-.0633.1662-.1547.1661h-.0017c-.675 0-.7167 1.0043-.3563 2.2582.3401 1.1836.9986 2.0499 1.5707 2.0001.0033.0065.0063.0131.0096.0197.014.0278.028.0548.0422.0814a.1388.1388 0 01.0156.0505c.2415 2.1016 1.2473 3.9228 2.683 5.0765a.1506.1506 0 01.0565.1092c.1223 2.4613-2.47 3.4481-2.47 3.4481s-4.402 1.771-7.4116 3.3031C-.1307 31.896-.0376 34.985.0183 35.6724a.1496.1496 0 00.1496.1372h31.6643a.1494.1494 0 00.1495-.1373c.056-.6874.149-3.7764-2.5171-5.1336" fill="#666"></path></g></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-link"><rect x=".224" y="3.534" width="4.681" height="7.022" rx="2" transform="rotate(-45 .224 3.534)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><rect x="7.5" y="10.81" width="4.681" height="7.022" rx="2" transform="rotate(-45 7.5 10.81)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></rect><path d="M5 5l6 6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-video"><g clip-path="url(#icon-small-video_clip0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 1h14v14H1zM4 1v14M12 1v14M0 4h4M12 4h4M0 8h4M12 8h4M0 12h4M12 12h4"></path><path d="M7 7v2l2-1-2-1z"></path></g><defs><clippath id="icon-small-video_clip0"><path fill="#fff" d="M0 0h16v16H0z"></path></clippath></defs></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-disable"><path d="M1 8c0-3.866 3.134-7 7-7v0c3.866 0 7 3.134 7 7v0c0 3.866-3.134 7-7 7v0c-3.866 0-7-3.134-7-7v0zM12.5 3.5l-9 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-import"><path d="M15 9.091V15H1V1h5.909M15 1l-9 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M6 7v3h3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-reports"><path d="M5 7v5h6V7H5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M2 1h9l3 3v11H2V1z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M11 1v3h3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-bulk-edit"><path d="M7 15H1V4h11v1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15 5V1H4v3M15 8l-2-1-3 6v2l2-1 3-6z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-attendance"><path d="M14 3h7v20H3V3h7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="12" cy="3" r="2" stroke-width="2"></circle><path d="M7 16l3 3M7 19l3-3M7 12l1 1 2-2M10 3C6 3 6 8 6 8h12s0-5-4-5M13 12h5M13 17h5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-collab"><path fill-rule="evenodd" clip-rule="evenodd" d="M1 5h17v4l5-3.9583V19l-5-4v4H1V5z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18 8v8M6 8l2 4-2 4M11 8l2 4-2 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-announcements"><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M5 5h12v9H5z"></path><path stroke-width="2" stroke-linejoin="round" d="M1 5h4v9H1z"></path><path d="M8 14l3 8h4l-3-8M17 14l6 4V1l-6 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-unlock"><path d="M11 16c0-.5523.4477-1 1-1v0c.5523 0 1 .4477 1 1v2c0 .5523-.4477 1-1 1v0c-.5523 0-1-.4477-1-1v-2z" stroke-width="2"></path><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 11h18v12H3zM6 11V6s0-5 6-5c2.6981 0 4.1829 1.011 5 2.1239"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="icon-small-upload-cloud"><path d="M1 10c0 3 2 4 4 4h7c2 0 3-1.3431 3-3 0-2-2-3-2-3s1-6-5-6C3 2 3 7 3 7s-2 .5-2 3zM8 6v4M10 8H6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-default-conversion-exceptions"><path d="M12.75 18.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0z" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 15l-.5-10h1L12 15zM12 23C5.9249 23 1 18.0751 1 12c0-2.923 1.1402-5.5799 3-7.5499M12 1c6.0751 0 11 4.9249 11 11 0 2.8985-1.121 5.5351-2.9532 7.5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M1 5l3-1v3M23 19l-3 1v-3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-edit-tool"><path d="M22.4282 4.0556c.366.7363.5717 1.5663.5717 2.4444 0 4.0963-3.02 6.4691-7 5.5l-10 10s-2 2-4 0 0-4 0-4L12 8c-.9691-3.98 1.4038-7 5.5-7 .8781 0 1.7081.2058 2.4445.5717l-3.0556 3.095S15.6666 5.8889 15.6666 6.5c0 1.0125.8208 1.8333 1.8333 1.8333.6112 0 1.8334-1.2222 1.8334-1.2222l3.0949-3.0555z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-question-bank"><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M1 13h22v10H1zM8 5h2v2H8zM8 10h2v2H8zM8 18h8"></path><path d="M4 13V1h16v12M13 5h4M13 10h4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-check-circle"><circle cx="12" cy="12" r="11" stroke-width="2"></circle><path d="M7 12l4 4 7-8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-export"><g clip-path="url(#icon-medium-export_clip0)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 1L9 15M17 1h6v6M23 14v9H1V1h10"></path></g><defs><clippath id="icon-medium-export_clip0"><path fill="#fff" d="M0 0h24v24H0z"></path></clippath></defs></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-away"><path d="M23 12c0 6.0751-4.9249 11-11 11S1 18.0751 1 12 5.9249 1 12 1s11 4.9249 11 11z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M12 5v7l4 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-location"><path d="M20 9c0 4.4183-8 14-8 14S4 13.4183 4 9s3.5817-8 8-8 8 3.5817 8 8z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><circle cx="12" cy="9" r="4" stroke-width="2"></circle></symbol><symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="icon-medium-goal"><path stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M1 1h22v4H1zM6 20h12v3H6z"></path><path d="M10 14v6M14 14v6" stroke-width="2"></path><path d="M4 5c0 6 3 9 8 9s8-3 8-9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path><path d="M4 8H1c0 9.5 9 9 9 9M20 8h3c0 9.5-9 9-9 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></symbol></svg><div id="site-wrap" class="off-canvas-wrap" data-offcanvas=""><div class="row" style="height: 0"></div><!----><div class="inner-wrap" ui-view=""><!----><bb-theme-css-injector ng-if="::base.theme" theme="base.theme" instance-id="_1_1" class-name=".color-selection-live-mode"><style type="text/css">
.color-selection-live-mode .themed-background-primary,
.color-selection-live-mode .bb-close,
.color-selection-live-mode .bb-offcanvas-panel .bb-close,
.color-selection-live-mode .active .base-navigation-button-content,
.color-selection-live-mode .active .integration-navigation-button-content {
background-color: #ffcc00 !important;
color: #000000 !important;
}
.color-selection-live-mode .base-navigation-button-content .base-navigation-button-badge {
background-color: #ffffff !important;
color: #000000 !important;
border: solid 2px #262626 !important;
}
.color-selection-live-mode .base-navigation-button-content:hover .base-navigation-button-badge {
border solid 2px #1b1b1b !important;
}
.color-selection-live-mode .active .base-navigation-button-content .base-navigation-button-badge {
background-color: #000000 !important;
color: #ffffff !important;
border: solid 2px #ffcc00 !important;
}
.color-selection-live-mode .active .theme-border-left-active {
border-color: #000000 !important;
}
.color-selection-live-mode .themed-background-primary-alt, .color-selection-live-mode .bb-close:hover, .color-selection-live-mode .bb-offcanvas-panel .bb-close:hover {
background-color: #bf9900 !important;
color: #000000 !important;
}
.color-selection-live-mode .bb-close:hover, .color-selection-live-mode .bb-offcanvas-panel .bb-close:hover {
background-color: #e5b700 !important;
color: #000000 !important;
}
.color-selection-live-mode button.bb-close::after {
border-color: transparent #bf9900 transparent transparent !important;
}
.color-selection-live-mode .bb-close, .color-selection-live-mode .bb-offcanvas-panel .bb-close {
border: 1px solid #bf9900 !important;
}
@media screen and (max-width: 63.9375em) {
.color-selection-live-mode.themed-background-primary-medium-down, .color-selection-live-mode .themed-background-primary-medium-down,
.color-selection-live-mode .themed-background-primary-medium-down bb-svg-icon, .color-selection-live-mode.themed-background-primary-medium-down bb-svg-icon,
.color-selection-live-mode .themed-background-primary-medium-down button, .color-selection-live-mode.themed-background-primary-medium-down button {
background-color: #ffcc00 !important;
color: #000000 !important;
} .color-selection-live-mode.themed-background-primary-medium-down h1 {
background-color: #ffcc00 !important;
color: #000000 !important;
}.color-selection-live-mode .themed-background-primary-medium-down .select-value::after, .color-selection-live-mode.themed-background-primary-medium-down .select-value::after{
border-color: #000000 transparent transparent transparent;
}
}
@supports
((-webkit-text-stroke-color: #bf9900) and (-webkit-text-fill-color: #000000))
or ((-moz-text-stroke-color: #bf9900) and (-moz-text-fill-color: #000000)) {
.color-selection-live-mode .bb-close, .color-selection-live-mode .bb-offcanvas-panel .bb-close {
-moz-text-fill-color: #000000;
-webkit-text-fill-color: #000000;
-moz-text-stroke-color: #bf9900;
-webkit-text-stroke-color: #bf9900;
-moz-text-stroke-width: 1px;
-webkit-text-stroke-width: 1px;
font-weight: 600 !important;
}
}
.color-selection-live-mode .bb-close, .color-selection-live-mode .bb-offcanvas-panel .bb-close {
border: none !important;
}
.bb-close, .bb-offcanvas-panel .bb-close {
background-color: transparent;
}@media screen and (min-width: 40em) {
.bb-close, .bb-offcanvas-panel .bb-close {
background-color: #ffcc00 !important;
color: #000000 !important;
}
}
@media screen and (min-width: 63.9375em) {
.screen .bb-offcanvas-panel-wrap .bb-close {
background-color: #ffcc00 !important;
color: #000000 !important;
}
}
button.bb-close::after {
border-color: transparent #bf9900 transparent transparent !important;
}
.bb-close:hover, .bb-offcanvas-panel .bb-close:hover {
background-color: #e5b700 !important;
color: #000000 !important;
}
@media screen and (max-width: 63.9375em) and (min-width: 1em) {
.panel-wrap .panel-title,
.panel-wrap .menu-toggle,
.panel-wrap > .panel-header,.panel-wrap > .black-panel-header,.panel-wrap .panel-header.simple-header,.panel-header.simple-header .ms-Panel-commands,.panel-header.simple-header .ms-Panel-header button,.panel-header.simple-header .ms-Panel-header h1,.attendance-app .header-medium, .attendance-app .header-medium button, .attendance-app .header-medium h1, .attendance-app .header-medium a, .brand-detail-header .ms-Panel-commands, .brand-detail-header .ms-Panel-header button, .brand-detail-header .ms-Panel-header h1 {
background-color: #ffcc00;
color: #000000 !important;
}
}
@supports
((-webkit-text-stroke-color: #bf9900) and (-webkit-text-fill-color: #000000))
or ((-moz-text-stroke-color: #bf9900) and (-moz-text-fill-color: #000000)) {
.bb-close, .bb-offcanvas-panel .bb-close, .screen .bb-offcanvas-panel-wrap .bb-close {
-moz-text-fill-color: #000000;
-webkit-text-fill-color: #000000;
-moz-text-stroke-color: #bf9900;
-webkit-text-stroke-color: #bf9900;
-moz-text-stroke-width: 1px;
-webkit-text-stroke-width: 1px;
font-weight: 600 !important;
}
}.color-selection-live-mode .themed-logo-background-primary-fill {
background-color: #ffcc00 !important;
}.color-selection-live-mode .themed-logo-background-primary-fill button {
color: #000000 !important;
}
</style></bb-theme-css-injector><!---->
<bb-base-layout links="base.tools" brand="base.brand" build-info="base.getBuildInfoText()" counts="base.counts" user="base.contextUser.userModel" page-help-config="base.pageHelpConfig" get-logo-alt-text="base.getLogoAltText"><div class="base" bb-dir="" ng-attr-aria-hidden="{{ (previewMode ? 'true' : 'false') }}" aria-hidden="false" dir="ltr">
<a href="javascript:void(0);" role="button" class="exit-off-canvas" analytics-id="exit.off.canvas.link"></a>
<aside ng-attr-id="{{ ::(previewMode ? '' : 'side-menu') }}" ng-class="::{'color-selection-preview-mode': previewMode, 'left-off-canvas-menu': !previewMode, 'color-selection-live-mode': !previewMode }" class="hide-in-background themed-background-primary-fill-only left-off-canvas-menu color-selection-live-mode" ng-show="::!disableSideMenu" tabindex="-1" id="side-menu" aria-hidden="true">
<div class="bb-inner-wrap">
<!----><bb-skip-link ng-if="::!previewMode" bb-skip-link-target=".js-base-page-skip-link-target" class="base-skip-link"><a href="javascript:void(0);" class="skip-link" bb-focus-next="" bb-translate="" bb-load-bundle="components/directives/skip-link" analytics-id="components.directives.skip-link.message">Skip to main content</a>
</bb-skip-link><!---->
<!--LOGO HEADER-->
<header ng-attr-role="{{ ::(previewMode ? 'presentation' : 'banner')}}" role="banner">
<span class="branding themed-logo-background-primary-fill">
<button class="exit-off-canvas menu-toggle standard-button left-off-canvas-toggle dark-background" analytics-id="exit.off.canvas.toggle.button" aria-expanded="true">
<bb-svg-icon size="small" icon="main-menu">
<svg class="svg-icon svg-icon-directive small-icon default directional-icon" focusable="false" aria-hidden="true" bb-cache-compilation="svg-icon">
<use xlink:href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-small-main-menu" ng-href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-small-main-menu"></use>
</svg>
</bb-svg-icon>
<span class="sr-only" bb-translate="">Close</span>
</button>
<a ng-href="https://blackboard.valpo.edu/" target="_blank" rel="noopener noreferrer" analytics-id="baseLayout.logo.link" href="https://blackboard.valpo.edu/">
<img class="site-logo" alt="Blackboard Learn" ng-src="./static/images/brand/blackboard_logo_white.svg" src="./kickstarter_files/blackboard_logo_white.svg">
</a>
</span>
</header>
<!--NAVIGATION-->
<nav ng-attr-role="{{ ::(previewMode ? 'presentation' : 'navigation')}}" bb-translate-attrs="{'aria-label': 'base.nav.title'}" role="navigation" aria-label="Main">
<ul ng-attr-id="{{ ::(previewMode ? '' : 'base_tools') }}" class="off-canvas-list" role="list" id="base_tools">
<!----><bb-base-navigation-button ng-repeat="link in links" link="link" user="user" role="listitem" preview-mode="previewMode"><div ng-switch="$ctrl.link.type">
<!-- Static -->
<!----><li ng-switch-when="static" role="presentation" class="base-navigation-button" ui-sref-active="active" ng-attr-aria-hidden="{{ ($ctrl.previewMode ? 'true' : 'false') }}" aria-hidden="false">
<!---->
<!----><a ng-if="!$ctrl.link.disabled" class="base-navigation-button-content themed-background-primary-alt-fill-only theme-border-left-active" ui-sref="base.institution-page" bb-enter-key-up-focus=".base-skip-link .skip-link" bb-trigger-enter-keydown="true" ng-click="$ctrl.handleBaseLinkClick($event)" ng-attr-aria-label="{{ $ctrl.link.titleAriaLabel ? $ctrl.link.titleAriaLabel() : undefined }}" ng-attr-tabindex="{{ ($ctrl.previewMode ? '-1' : '') }}" analytics-id="institution.base.navigation.handleBase.link" href="https://blackboard.valpo.edu/ultra/institution-page" tabindex="">
<ng-switch on="$ctrl.link.id">
<!---->
<!---->
<!----><div ng-switch-default="">
<bb-svg-icon icon="institution" size="medium" aria-hidden="true">
<svg class="svg-icon svg-icon-directive medium-icon default directional-icon" focusable="false" aria-hidden="true" bb-cache-compilation="svg-icon">
<use xlink:href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-medium-institution" ng-href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-medium-institution"></use>
</svg>
</bb-svg-icon>
<span class="link-text" bb-translate="">Institution Page</span>
</div><!---->
</ng-switch>
<span class="round alert label ng-hide" ng-show="counts[$ctrl.link.id]"></span>
</a><!---->
</li><!---->
<!-- Integration -->
<!---->
</div>
</bb-base-navigation-button><!----><bb-base-navigation-button ng-repeat="link in links" link="link" user="user" role="listitem" preview-mode="previewMode"><div ng-switch="$ctrl.link.type">
<!-- Static -->
<!----><li ng-switch-when="static" role="presentation" class="base-navigation-button" ui-sref-active="active" ng-attr-aria-hidden="{{ ($ctrl.previewMode ? 'true' : 'false') }}" aria-hidden="false">
<!---->
<!----><a ng-if="!$ctrl.link.disabled" class="base-navigation-button-content themed-background-primary-alt-fill-only theme-border-left-active" ui-sref="base.profile" bb-enter-key-up-focus=".base-skip-link .skip-link" bb-trigger-enter-keydown="true" ng-click="$ctrl.handleBaseLinkClick($event)" ng-attr-aria-label="{{ $ctrl.link.titleAriaLabel ? $ctrl.link.titleAriaLabel() : undefined }}" ng-attr-tabindex="{{ ($ctrl.previewMode ? '-1' : '') }}" analytics-id="profile.base.navigation.handleBase.link" href="https://blackboard.valpo.edu/ultra/profile" tabindex="">
<ng-switch on="$ctrl.link.id">
<!----><div class="ellipsis" ng-switch-when="profile">
<bb-svg-icon icon="profile-user" size="medium" aria-hidden="true">
<svg class="svg-icon svg-icon-directive medium-icon default directional-icon" focusable="false" aria-hidden="true" bb-cache-compilation="svg-icon">
<use xlink:href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-medium-profile-user" ng-href="https://blackboard.valpo.edu/ultra/courses/_28844_1/cl/outline#icon-medium-profile-user"></use>
</svg>
</bb-svg-icon>
<bb-username id="sidebar-user-name" class="link-text username course_user_27202_1" user="$ctrl.user" auto-update="true"><!----><bb-ui-username ng-if="un.user" class="bb-ui-username" user="un.user" format="un.format" show-pronouns="un.showPronouns" show-pronunciation="un.showPronunciation" subtext="" on-username-click="onUsernameClick"><div class="makeStylesroot-0-2-67"><div class="makeStylesuserPronunciation-0-2-72"><bdi class="makeStylesbaseText-0-2-68">Mohan Venkata Krishna Namburi</bdi></div></div></bb-ui-username><!---->
<!----><span ng-if="un.user" class="sr-only username-accommodation-content">
<span class="username-has-accommodation">Has accommodations</span>
</span><!---->
</bb-username>
</div><!---->
<!---->
<!---->
</ng-switch>
<span class="round alert label ng-hide" ng-show="counts[$ctrl.link.id]"></span>
</a><!---->
</li><!---->