-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1493 lines (1336 loc) · 91.2 KB
/
index.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=(0058)https://player.cloud.wowza.com/hosted/gbwbchgr/player.html -->
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta content="https://player.cloud.wowza.com/hosted/gbwbchgr/player.html" property="og:url">
<meta content="Hội Thánh Tin Lành Việt Nam - Nhóm Lễ Online" property="og:title">
<meta content="https://player.cloud.wowza.com/FCPlayer.swf?video_id=" property="og:video">
<meta content="application/x-shockwave-flash" property="og:video:type">
<meta content="640" property="og:video:width">
<meta content="360" property="og:video:height">
<link href="./httlvn-wowza_files/player.css" rel="stylesheet" type="text/css">
<title>
Hội Thánh Tin Lành Việt Nam - Nhóm Lễ Online
</title>
<script type="text/javascript" async="" src="./httlvn-wowza_files/wowzaplayer.js"></script><script type="text/javascript" async="" src="./httlvn-wowza_files/wowzaplayer.min.js"></script><style>#wowza_player-CountdownTimer .wowza_player-Position-Center {
height: 95px !important;
width: 280px !important;
font-size: 18px !important;
top: 70px !important;
left: 0 !important;
font-weight: bold;
line-height: 25px;
padding-left: 40px;
padding-top: 10px;
border-radius: 0px 20px 20px 0px;
background: rgba(0,0,0,0.5);
color: #FFFFFF;
z-index: 1000;
}
#wowza_player-CountdownTimer #wowza_player-CountdownTimerGroup {
background: none;
border: none;
border-radius: none;
top: 12px !important;
left: -70px !important;
}
</style><style id="wowza_player-PlayerCSS">
@font-face {
font-family: wowza_player-font;
src: url('https://s3.amazonaws.com/wcl-wowza-player/prod/latest/js//Roboto-Light.ttf') format("ttf");
}
@font-face {
font-family: wowza_player-font;
src: url('https://s3.amazonaws.com/wcl-wowza-player/prod/latest/js//Roboto-Regular.ttf') format("ttf");
font-weight: bold;
}
.wowza_player-Asset {
background-image: url('https://s3.amazonaws.com/wcl-wowza-player/prod/latest/js/wowzaplayer.png');
background-size: 100%;
background-position: 0 0;
overflow: hidden;
}
.wowza_player-Asset.wowza_player-Stub { background-position: 0 100%; }
.wowza_player-Asset.wowza_player-About { background-position: 0 -100%; }
.wowza_player-Asset.wowza_player-ClosedCaptions { background-position: 0 -200%; }
.wowza_player-Asset.wowza_player-Buffering { background-position: 0 -300%; }
.wowza_player-Asset.wowza_player-Live { background-position: 0 -400%; }
.wowza_player-Asset.wowza_player-Error { background-position: 0 -500%; }
.wowza_player-Asset.wowza_player-FullScreen { background-position: 0 -600%; }
.wowza_player-Asset.wowza_player-Pause { background-position: 0 -700%; }
.wowza_player-Asset.wowza_player-Play { background-position: 0 -800%; }
.wowza_player-Asset.wowza_player-Replay { background-position: 0 -900%; }
.wowza_player-Asset.wowza_player-ReturnFromFullScreen { background-position: 0 -1000%; }
.wowza_player-Asset.wowza_player-Scrubber { background-position: 0 -1100%; }
.wowza_player-Asset.wowza_player-Share { background-position: 0 -1200%; }
.wowza_player-Asset.wowza_player-Spinner { background-position: 0 -1300%; }
.wowza_player-Asset.wowza_player-Stop { background-position: 0 -1400%; }
.wowza_player-Asset.wowza_player-VolumeMuted { background-position: 0 -1500%; }
.wowza_player-Asset.wowza_player-VolumeOn { background-position: 0 -1600%; }
.wowza_player-Asset.wowza_player-EventEnd { background-position: 0 -1700%; }
.wowza_player-SVGAsset, .wowza_player-SVGAssetNoHover {
-webkit-filter: opacity(80%);
filter: opacity(80%);
}
.wowza_player-SVGAsset:hover {
-webkit-filter: opacity(100%);
filter: opacity(100%);
}
/* Info Circle */
.wowza_player-SVGAsset.wowza_player-InfoCircle {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2050%2050%22%20xml%3Aspace%3D%22preserve%22%20enable-background%3D%22new%200%200%2050%2050%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M31.3%2037.5c0%200.7-0.6%201.3-1.3%201.3H20c-0.7%200-1.3-0.6-1.3-1.3V35c0-0.7%200.6-1.3%201.3-1.3h1.3v-7.5H20c-0.7%200-1.3-0.6-1.3-1.3v-2.5c0-0.7%200.6-1.3%201.3-1.3h7.5c0.7%200%201.3%200.6%201.3%201.3v11.3H30c0.7%200%201.3%200.6%201.3%201.3V37.5zM28.8%2016.3c0%200.7-0.6%201.3-1.3%201.3h-5c-0.7%200-1.3-0.6-1.3-1.3v-3.8c0-0.7%200.6-1.3%201.3-1.3h5c0.7%200%201.3%200.6%201.3%201.3V16.3z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M25%205.2c10.9%200%2019.8%208.9%2019.8%2019.8S35.9%2044.8%2025%2044.8%205.2%2035.9%205.2%2025%2014.1%205.2%2025%205.2M25%201C11.7%201%201%2011.7%201%2025s10.7%2024%2024%2024%2024-10.7%2024-24S38.3%201%2025%201L25%201z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%;
}
/* Wowza Logo */
.wowza_player-SVGAsset.wowza_player-WowzaLogo {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20473%20150%22%3E%3Ctitle%3Eic_wowza_logo%3C%2Ftitle%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M153.46%2C131.18V96.34h4.48v3.22a10.7%2C10.7%2C0%2C0%2C1%2C8.11-4%2C7.07%2C7.07%2C0%2C0%2C1%2C6.15%2C4%2C11.44%2C11.44%2C0%2C0%2C1%2C7.84-4c3.53%2C0%2C7%2C2.71%2C7%2C6.52v29.12h-4.45V103c0-3.06-1.81-4.19-3.86-4.19a9.18%2C9.18%2C0%2C0%2C0-5.85%2C2.82v29.58h-4.45V102.94c0-3.06-1.81-4.16-4-4.16s-4.6%2C1.34-6.53%2C3.46v28.94h-4.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M193.53%2C115.13l0-4.86c0.09-12.42%2C4.16-14.72%2C9.8-14.72%2C6.44%2C0%2C9%2C4.39%2C9%2C13.79%2C0%2C1.43%2C0%2C2.18-.06%2C3.58H198v5.32c0%2C9.39%2C2%2C10.79%2C5.31%2C10.79%2C2.29%2C0%2C4.66-1.63%2C4.72-8.29v-0.23h4.16v0.17c-0.53%2C6-2.17%2C11.29-8.82%2C11.29C196.11%2C132%2C193.41%2C128.28%2C193.53%2C115.13Zm4.51-4.37h9.86v-0.06c-0.09-5.32.59-12.22-4.33-12.22-5.49%2C0-5.52%2C4.22-5.52%2C12.19v0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M231.69%2C131.18V127.9A8.45%2C8.45%2C0%2C0%2C1%2C224.5%2C132c-3.3%2C0-7.51-1.6-7.51-16.67v-2.76c0-15.62%2C4.22-17%2C7.84-17%2C2.43%2C0%2C5%2C1.34%2C6.86%2C4.07V81.12h4.45v50.06h-4.45Zm0-6v-23c-1.84-2-3.86-3.46-6-3.46s-4.28.61-4.28%2C13.79v2.77c0%2C13.06%2C2.17%2C13.41%2C4.42%2C13.41C227.68%2C128.74%2C229.94%2C127.29%2C231.69%2C125.22Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M245.61%2C88.37V83.16h4.45v5.21h-4.45Zm0%2C42.82V96.34h4.45v34.85h-4.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M271.34%2C131.18L270.79%2C127c-2%2C3.46-5.15%2C5-7.44%2C5-3.41%2C0-7-2.88-7-7.74%2C0-4.51.21-8.73%2C14.08-14.37v-0.29c0-10.21-2.18-11.08-4.32-11.08-1.73%2C0-4.15.67-4.5%2C6.63v0.2h-4.59c0.47-6.08%2C3.79-9.78%2C8.94-9.78%2C7.47%2C0%2C8.94%2C6.05%2C8.94%2C10.85v16.75a68.22%2C68.22%2C0%2C0%2C0%2C.53%2C8h-4.12Zm-0.88-7.1V111.81c-6.09%2C4.16-9.64%2C6.84-9.64%2C11.61%2C0%2C3.64%2C1.91%2C4.92%2C3.56%2C4.92C266.61%2C128.34%2C269.17%2C126.59%2C270.46%2C124.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M292.18%2C122.46l3.41-1.13c1%2C3%2C3.38%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.58-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.47-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.33%2C2-4.33%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C296.84%2C132%2C293.46%2C127.52%2C292.18%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M315.75%2C139.88v-3.57c4.84-.32%2C6.86-1.58%2C6.86-3.78a28%2C28%2C0%2C0%2C0-.33-4.13l-7.72-32h4.81l5.88%2C30%2C5.76-30h4.81l-8.91%2C37.26c-1.25%2C4.71-5%2C6.11-11.08%2C6.28h-0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M338.1%2C122.46l3.42-1.13c1%2C3%2C3.39%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.58-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.48-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.34%2C2-4.34%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C342.76%2C132%2C339.37%2C127.52%2C338.1%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M365%2C123V98.78h-4.84V96.34H365V84h4.45V96.34h5.7v2.44h-5.7v24c0%2C3.52.12%2C5.7%2C3%2C5.7a12.93%2C12.93%2C0%2C0%2C0%2C2.61-.24v3a15.3%2C15.3%2C0%2C0%2C1-3.86.5C365.49%2C131.71%2C365%2C127.4%2C365%2C123Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M379.26%2C115.13l0-4.86c0.09-12.42%2C4.07-14.72%2C9.6-14.72%2C6.31%2C0%2C8.79%2C4.39%2C8.79%2C13.79%2C0%2C1.43%2C0%2C2.18-.06%2C3.58h-14v5.32c0%2C9.39%2C2%2C10.79%2C5.21%2C10.79%2C2.24%2C0%2C4.57-1.63%2C4.63-8.29v-0.23h4.07v0.17c-0.52%2C6-2.12%2C11.29-8.64%2C11.29C381.79%2C132%2C379.14%2C128.28%2C379.26%2C115.13Zm4.42-4.37h9.66v-0.06c-0.09-5.32.58-12.22-4.25-12.22-5.38%2C0-5.41%2C4.22-5.41%2C12.19v0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M405.18%2C131.18V96.34h4.39v3.22a10.4%2C10.4%2C0%2C0%2C1%2C7.94-4%2C6.92%2C6.92%2C0%2C0%2C1%2C6%2C4%2C11.13%2C11.13%2C0%2C0%2C1%2C7.68-4%2C6.77%2C6.77%2C0%2C0%2C1%2C6.86%2C6.52v29.12h-4.36V103c0-3.06-1.77-4.19-3.78-4.19a8.91%2C8.91%2C0%2C0%2C0-5.73%2C2.82v29.58h-4.36V102.94c0-3.06-1.78-4.16-3.9-4.16s-4.51%2C1.34-6.4%2C3.46v28.94h-4.36Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M444.2%2C122.46l3.41-1.13c1%2C3%2C3.39%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.59-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.47-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.34%2C2-4.34%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C448.86%2C132%2C445.47%2C127.52%2C444.2%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M199.44%2C47.6a44.85%2C44.85%2C0%2C0%2C1%2C1%2C5.87h0.15a49.93%2C49.93%2C0%2C0%2C1%2C.92-5.87l9-38.43H220.7l-14%2C55.57H195.22l-8.36-32.87a67.45%2C67.45%2C0%2C0%2C1-1.38-7.28h-0.15a67.28%2C67.28%2C0%2C0%2C1-1.38%2C7.28l-8.36%2C32.87H164.14L150.48%2C9.17h10.21l8.59%2C38.43a49.94%2C49.94%2C0%2C0%2C1%2C.92%2C5.87h0.15a44.7%2C44.7%2C0%2C0%2C1%2C1-5.87l9.82-38.43h8.59Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M255.22%2C8.23c16%2C0%2C28.16%2C12.45%2C28.16%2C28.34%2C0%2C16.36-12.12%2C29.12-28.16%2C29.12s-28.16-12.76-28.16-29.12C227.06%2C20.68%2C239.18%2C8.23%2C255.22%2C8.23Zm0%2C48.22c10%2C0%2C18-8.45%2C18-19.88%2C0-11-8-19.1-18-19.1s-18%2C8.14-18%2C19.1C237.26%2C48%2C245.24%2C56.45%2C255.22%2C56.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M338.77%2C47.6a44.37%2C44.37%2C0%2C0%2C1%2C1%2C5.87h0.15a50.59%2C50.59%2C0%2C0%2C1%2C.92-5.87l9-38.43H360L346%2C64.75H334.55l-8.36-32.87a67.13%2C67.13%2C0%2C0%2C1-1.38-7.28h-0.15a68%2C68%2C0%2C0%2C1-1.38%2C7.28l-8.36%2C32.87H303.47L289.82%2C9.17H300l8.6%2C38.43a50.59%2C50.59%2C0%2C0%2C1%2C.92%2C5.87h0.15a44.25%2C44.25%2C0%2C0%2C1%2C1-5.87l9.82-38.43h8.59Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M366.39%2C58.25l24.17-35.38a34.23%2C34.23%2C0%2C0%2C1%2C4-5V17.7s-1.53.16-4.07%2C0.16H367.62V9.17H407v6.42L382.81%2C51a34%2C34%2C0%2C0%2C1-4%2C5v0.16s1.53-.16%2C4.07-0.16h24.4v8.69h-40.9v-6.5Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M446.11%2C50.5H427l-4.6%2C14.25H412.2L431.38%2C9.17h10.36l19.18%2C55.57h-10.2Zm-9.59-31.7s-1.23%2C5.48-2.3%2C8.61l-4.84%2C14.87h14.27l-4.83-14.87c-1-3.13-2.15-8.61-2.15-8.61h-0.15Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M453.3%2C10.26h-2.67V9h6.82v1.27h-2.67v6.87H453.3V10.26Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M458.22%2C9h1.58l1.59%2C4c0.19%2C0.48.41%2C1.19%2C0.41%2C1.19h0s0.22-.71.4-1.19l1.6-4h1.58l0.65%2C8.14h-1.47l-0.34-4.55c0-.54%2C0-1.26%2C0-1.26h0s-0.24.79-.44%2C1.26l-1.32%2C3.15h-1.3l-1.31-3.15c-0.19-.47-0.45-1.27-0.45-1.27h0s0%2C0.73%2C0%2C1.27L459%2C17.12h-1.48Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M134.23%2C70.44A64%2C64%2C0%2C1%2C1%2C50.91%2C9.1l0%2C0c-1.58.5-3.15%2C1-4.72%2C1.68a64.16%2C64.16%2C0%2C1%2C0%2C88.23%2C59.58Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M6.32%2C70.07a64%2C64%2C0%2C0%2C0%2C127.91.37c-28.52%2C15.44-79.55%2C43-81.3%2C43.71-2.89%2C1.13-6.25%2C3.83-9.34%2C1.26s-0.42-7.93-.42-7.93%2C23-53.82%2C24.3-59.74c1.1-5-1.66-4.53-4.8-1.78C60.86%2C47.52%2C36.58%2C68.64%2C33%2C70.45c-2.46%2C1.25-5.5%2C2.43-7.56.37s0.27-7%2C.27-7L50.91%2C9.1A64%2C64%2C0%2C0%2C0%2C6.32%2C70.07Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M117%2C26.4l0.09-.08A64.3%2C64.3%2C0%2C0%2C0%2C65.86%2C6.2l0%2C0.08c1.47-.1%2C3-0.17%2C4.46-0.17A63.77%2C63.77%2C0%2C0%2C1%2C117%2C26.4Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M52.93%2C36.6c0.51%2C3.08%2C4%2C.34%2C4%2C0.34S79.7%2C17.52%2C84%2C15s5.59%2C1%2C4.95%2C3.28c-0.49%2C1.68-14%2C36.18-13.39%2C40.05%2C0.65%2C4.34%2C5.41.71%2C7.13-.58%2C1.3-1%2C32.44-29.61%2C34.31-31.33A63.77%2C63.77%2C0%2C0%2C0%2C70.28%2C6.11c-1.5%2C0-3%2C.07-4.46.17C60.14%2C18.29%2C52.61%2C34.67%2C52.93%2C36.6Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%;
}
.wowza_player-SVGAsset.wowza_player-WowzaLogo:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20473%20150%22%3E%3Ctitle%3Eic_wowza_logo%3C%2Ftitle%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M153.46%2C131.18V96.34h4.48v3.22a10.7%2C10.7%2C0%2C0%2C1%2C8.11-4%2C7.07%2C7.07%2C0%2C0%2C1%2C6.15%2C4%2C11.44%2C11.44%2C0%2C0%2C1%2C7.84-4c3.53%2C0%2C7%2C2.71%2C7%2C6.52v29.12h-4.45V103c0-3.06-1.81-4.19-3.86-4.19a9.18%2C9.18%2C0%2C0%2C0-5.85%2C2.82v29.58h-4.45V102.94c0-3.06-1.81-4.16-4-4.16s-4.6%2C1.34-6.53%2C3.46v28.94h-4.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M193.53%2C115.13l0-4.86c0.09-12.42%2C4.16-14.72%2C9.8-14.72%2C6.44%2C0%2C9%2C4.39%2C9%2C13.79%2C0%2C1.43%2C0%2C2.18-.06%2C3.58H198v5.32c0%2C9.39%2C2%2C10.79%2C5.31%2C10.79%2C2.29%2C0%2C4.66-1.63%2C4.72-8.29v-0.23h4.16v0.17c-0.53%2C6-2.17%2C11.29-8.82%2C11.29C196.11%2C132%2C193.41%2C128.28%2C193.53%2C115.13Zm4.51-4.37h9.86v-0.06c-0.09-5.32.59-12.22-4.33-12.22-5.49%2C0-5.52%2C4.22-5.52%2C12.19v0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M231.69%2C131.18V127.9A8.45%2C8.45%2C0%2C0%2C1%2C224.5%2C132c-3.3%2C0-7.51-1.6-7.51-16.67v-2.76c0-15.62%2C4.22-17%2C7.84-17%2C2.43%2C0%2C5%2C1.34%2C6.86%2C4.07V81.12h4.45v50.06h-4.45Zm0-6v-23c-1.84-2-3.86-3.46-6-3.46s-4.28.61-4.28%2C13.79v2.77c0%2C13.06%2C2.17%2C13.41%2C4.42%2C13.41C227.68%2C128.74%2C229.94%2C127.29%2C231.69%2C125.22Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M245.61%2C88.37V83.16h4.45v5.21h-4.45Zm0%2C42.82V96.34h4.45v34.85h-4.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M271.34%2C131.18L270.79%2C127c-2%2C3.46-5.15%2C5-7.44%2C5-3.41%2C0-7-2.88-7-7.74%2C0-4.51.21-8.73%2C14.08-14.37v-0.29c0-10.21-2.18-11.08-4.32-11.08-1.73%2C0-4.15.67-4.5%2C6.63v0.2h-4.59c0.47-6.08%2C3.79-9.78%2C8.94-9.78%2C7.47%2C0%2C8.94%2C6.05%2C8.94%2C10.85v16.75a68.22%2C68.22%2C0%2C0%2C0%2C.53%2C8h-4.12Zm-0.88-7.1V111.81c-6.09%2C4.16-9.64%2C6.84-9.64%2C11.61%2C0%2C3.64%2C1.91%2C4.92%2C3.56%2C4.92C266.61%2C128.34%2C269.17%2C126.59%2C270.46%2C124.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M292.18%2C122.46l3.41-1.13c1%2C3%2C3.38%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.58-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.47-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.33%2C2-4.33%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C296.84%2C132%2C293.46%2C127.52%2C292.18%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M315.75%2C139.88v-3.57c4.84-.32%2C6.86-1.58%2C6.86-3.78a28%2C28%2C0%2C0%2C0-.33-4.13l-7.72-32h4.81l5.88%2C30%2C5.76-30h4.81l-8.91%2C37.26c-1.25%2C4.71-5%2C6.11-11.08%2C6.28h-0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M338.1%2C122.46l3.42-1.13c1%2C3%2C3.39%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.58-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.48-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.34%2C2-4.34%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C342.76%2C132%2C339.37%2C127.52%2C338.1%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M365%2C123V98.78h-4.84V96.34H365V84h4.45V96.34h5.7v2.44h-5.7v24c0%2C3.52.12%2C5.7%2C3%2C5.7a12.93%2C12.93%2C0%2C0%2C0%2C2.61-.24v3a15.3%2C15.3%2C0%2C0%2C1-3.86.5C365.49%2C131.71%2C365%2C127.4%2C365%2C123Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M379.26%2C115.13l0-4.86c0.09-12.42%2C4.07-14.72%2C9.6-14.72%2C6.31%2C0%2C8.79%2C4.39%2C8.79%2C13.79%2C0%2C1.43%2C0%2C2.18-.06%2C3.58h-14v5.32c0%2C9.39%2C2%2C10.79%2C5.21%2C10.79%2C2.24%2C0%2C4.57-1.63%2C4.63-8.29v-0.23h4.07v0.17c-0.52%2C6-2.12%2C11.29-8.64%2C11.29C381.79%2C132%2C379.14%2C128.28%2C379.26%2C115.13Zm4.42-4.37h9.66v-0.06c-0.09-5.32.58-12.22-4.25-12.22-5.38%2C0-5.41%2C4.22-5.41%2C12.19v0.09Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M405.18%2C131.18V96.34h4.39v3.22a10.4%2C10.4%2C0%2C0%2C1%2C7.94-4%2C6.92%2C6.92%2C0%2C0%2C1%2C6%2C4%2C11.13%2C11.13%2C0%2C0%2C1%2C7.68-4%2C6.77%2C6.77%2C0%2C0%2C1%2C6.86%2C6.52v29.12h-4.36V103c0-3.06-1.77-4.19-3.78-4.19a8.91%2C8.91%2C0%2C0%2C0-5.73%2C2.82v29.58h-4.36V102.94c0-3.06-1.78-4.16-3.9-4.16s-4.51%2C1.34-6.4%2C3.46v28.94h-4.36Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M444.2%2C122.46l3.41-1.13c1%2C3%2C3.39%2C7.5%2C7%2C7.5%2C3.24%2C0%2C4.69-2.16%2C4.69-5.18%2C0-2.79-3.12-6-6.09-8.58l-2.59-2.21c-3.18-2.73-5.94-5.35-5.94-9%2C0-5.35%2C3.62-8.26%2C8.94-8.26s8%2C4.34%2C9.12%2C8.84l-4%2C1.19c-0.47-2.88-2.08-6.89-5.37-6.89-2.7%2C0-4.34%2C2-4.34%2C4.74%2C0%2C2.53%2C2%2C4.6%2C4.45%2C6.69l2.82%2C2.38c3.44%2C2.94%2C7%2C6%2C7.13%2C11%2C0%2C5.29-3.8%2C8.41-9.06%2C8.41C448.86%2C132%2C445.47%2C127.52%2C444.2%2C122.46Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M199.44%2C47.6a44.85%2C44.85%2C0%2C0%2C1%2C1%2C5.87h0.15a49.93%2C49.93%2C0%2C0%2C1%2C.92-5.87l9-38.43H220.7l-14%2C55.57H195.22l-8.36-32.87a67.45%2C67.45%2C0%2C0%2C1-1.38-7.28h-0.15a67.28%2C67.28%2C0%2C0%2C1-1.38%2C7.28l-8.36%2C32.87H164.14L150.48%2C9.17h10.21l8.59%2C38.43a49.94%2C49.94%2C0%2C0%2C1%2C.92%2C5.87h0.15a44.7%2C44.7%2C0%2C0%2C1%2C1-5.87l9.82-38.43h8.59Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M255.22%2C8.23c16%2C0%2C28.16%2C12.45%2C28.16%2C28.34%2C0%2C16.36-12.12%2C29.12-28.16%2C29.12s-28.16-12.76-28.16-29.12C227.06%2C20.68%2C239.18%2C8.23%2C255.22%2C8.23Zm0%2C48.22c10%2C0%2C18-8.45%2C18-19.88%2C0-11-8-19.1-18-19.1s-18%2C8.14-18%2C19.1C237.26%2C48%2C245.24%2C56.45%2C255.22%2C56.45Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M338.77%2C47.6a44.37%2C44.37%2C0%2C0%2C1%2C1%2C5.87h0.15a50.59%2C50.59%2C0%2C0%2C1%2C.92-5.87l9-38.43H360L346%2C64.75H334.55l-8.36-32.87a67.13%2C67.13%2C0%2C0%2C1-1.38-7.28h-0.15a68%2C68%2C0%2C0%2C1-1.38%2C7.28l-8.36%2C32.87H303.47L289.82%2C9.17H300l8.6%2C38.43a50.59%2C50.59%2C0%2C0%2C1%2C.92%2C5.87h0.15a44.25%2C44.25%2C0%2C0%2C1%2C1-5.87l9.82-38.43h8.59Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M366.39%2C58.25l24.17-35.38a34.23%2C34.23%2C0%2C0%2C1%2C4-5V17.7s-1.53.16-4.07%2C0.16H367.62V9.17H407v6.42L382.81%2C51a34%2C34%2C0%2C0%2C1-4%2C5v0.16s1.53-.16%2C4.07-0.16h24.4v8.69h-40.9v-6.5Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M446.11%2C50.5H427l-4.6%2C14.25H412.2L431.38%2C9.17h10.36l19.18%2C55.57h-10.2Zm-9.59-31.7s-1.23%2C5.48-2.3%2C8.61l-4.84%2C14.87h14.27l-4.83-14.87c-1-3.13-2.15-8.61-2.15-8.61h-0.15Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M453.3%2C10.26h-2.67V9h6.82v1.27h-2.67v6.87H453.3V10.26Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M458.22%2C9h1.58l1.59%2C4c0.19%2C0.48.41%2C1.19%2C0.41%2C1.19h0s0.22-.71.4-1.19l1.6-4h1.58l0.65%2C8.14h-1.47l-0.34-4.55c0-.54%2C0-1.26%2C0-1.26h0s-0.24.79-.44%2C1.26l-1.32%2C3.15h-1.3l-1.31-3.15c-0.19-.47-0.45-1.27-0.45-1.27h0s0%2C0.73%2C0%2C1.27L459%2C17.12h-1.48Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M134.23%2C70.44A64%2C64%2C0%2C1%2C1%2C50.91%2C9.1l0%2C0c-1.58.5-3.15%2C1-4.72%2C1.68a64.16%2C64.16%2C0%2C1%2C0%2C88.23%2C59.58Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M6.32%2C70.07a64%2C64%2C0%2C0%2C0%2C127.91.37c-28.52%2C15.44-79.55%2C43-81.3%2C43.71-2.89%2C1.13-6.25%2C3.83-9.34%2C1.26s-0.42-7.93-.42-7.93%2C23-53.82%2C24.3-59.74c1.1-5-1.66-4.53-4.8-1.78C60.86%2C47.52%2C36.58%2C68.64%2C33%2C70.45c-2.46%2C1.25-5.5%2C2.43-7.56.37s0.27-7%2C.27-7L50.91%2C9.1A64%2C64%2C0%2C0%2C0%2C6.32%2C70.07Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M117%2C26.4l0.09-.08A64.3%2C64.3%2C0%2C0%2C0%2C65.86%2C6.2l0%2C0.08c1.47-.1%2C3-0.17%2C4.46-0.17A63.77%2C63.77%2C0%2C0%2C1%2C117%2C26.4Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M52.93%2C36.6c0.51%2C3.08%2C4%2C.34%2C4%2C0.34S79.7%2C17.52%2C84%2C15s5.59%2C1%2C4.95%2C3.28c-0.49%2C1.68-14%2C36.18-13.39%2C40.05%2C0.65%2C4.34%2C5.41.71%2C7.13-.58%2C1.3-1%2C32.44-29.61%2C34.31-31.33A63.77%2C63.77%2C0%2C0%2C0%2C70.28%2C6.11c-1.5%2C0-3%2C.07-4.46.17C60.14%2C18.29%2C52.61%2C34.67%2C52.93%2C36.6Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%;
}
/* Player Logo */
.wowza_player-SVGAsset.wowza_player-PlayerLogo {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20100%20100%22%20xml%3Aspace%3D%22preserve%22%20enable-background%3D%22new%200%200%20100%20100%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M23.1%2096.4h-1.1V96h2.7v0.4h-1.1v2.8h-0.5V96.4z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M25.3%2096h0.5l0.7%201.7c0.1%200.2%200.2%200.4%200.2%200.4h0c0%200%200.1-0.3%200.2-0.4l0.7-1.7H28l0.3%203.2h-0.4l-0.2-2c0-0.2%200-0.5%200-0.5h0c0%200-0.1%200.3-0.2%200.5l-0.6%201.4h-0.4l-0.6-1.4c-0.1-0.2-0.2-0.5-0.2-0.5h0c0%200%200%200.3%200%200.5l-0.2%202H25L25.3%2096z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M29%2036.3c0.8-0.6%2012.2-10.1%2013.3-10.7%202-1.2%202.8%200.7%202.4%201.6%20-0.1%200.3-6.9%2017.7-6.5%2019.6%200.2%200.9%201.3%201.5%202.8%200.3%200.5-0.4%2014.1-12.8%2019.2-17.4L36.3%2015.8c-3.6%207.8-9.1%2019.8-9.2%2020.3C26.8%2037.3%2027.5%2037.5%2029%2036.3z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M91.2%2047.5l-7.2-4.2C62.8%2054.9%2027.7%2073.8%2027.1%2074c-1.4%200.6-3.1%201.9-4.6%200.6%20-1.5-1.3-0.2-3.9-0.2-3.9s11.2-26.1%2011.9-29.2c0.8-3.7-2.6-0.7-2.6-0.7S19.1%2051.8%2017.3%2052.7c-1.2%200.6-2.7%201.2-3.7%200.2%20-1-1%200.1-3.4%200.1-3.4s13.8-29.6%2017.1-36.8L11.5%201.4C9.1%200%207.1%201.2%207.1%204L7%2096c0%202.8%202%204%204.4%202.6l79.8-45.9C93.6%2051.2%2093.6%2048.9%2091.2%2047.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%;
}
/* About */
.wowza_player-SVGAsset.wowza_player-About, .wowza_player-SVGAssetNoHover.wowza_player-About, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-About:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20119.141%20119.141%22%3E%3Cpath%20d%3D%22M59.57%20119.141C26.723%20119.141%200%2092.417%200%2059.57S26.723%200%2059.57%200s59.57%2026.723%2059.57%2059.57S92.417%20119.141%2059.57%20119.141zM59.57%206.271c-29.39%200-53.3%2023.913-53.3%2053.3s23.91%2053.3%2053.3%2053.3%2053.3-23.913%2053.3-53.3S88.96%206.271%2059.57%206.271z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M64.888%2038.974H54.073v-8.111h10.815V38.974zM64.888%2088.639H54.073V48.566h10.815V88.639z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 62.052604%;
}
.wowza_player-SVGAsset.wowza_player-About:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20119.141%20119.141%22%3E%3Cpath%20d%3D%22M59.57%20119.141C26.723%20119.141%200%2092.417%200%2059.57S26.723%200%2059.57%200s59.57%2026.723%2059.57%2059.57S92.417%20119.141%2059.57%20119.141zM59.57%206.271c-29.39%200-53.3%2023.913-53.3%2053.3s23.91%2053.3%2053.3%2053.3%2053.3-23.913%2053.3-53.3S88.96%206.271%2059.57%206.271z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M64.888%2038.974H54.073v-8.111h10.815V38.974zM64.888%2088.639H54.073V48.566h10.815V88.639z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 62.052604%;
}
/* ClosedCaptions */
.wowza_player-SVGAsset.wowza_player-ClosedCaptions, .wowza_player-SVGAssetNoHover.wowza_player-ClosedCaptions, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-ClosedCaptions:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20182.13%2099.355%22%3E%3Cpath%20d%3D%22M83.509%2058.177l0.07%200.211c0.096%205.574-1.606%209.995-5.101%2013.268%20-3.499%203.268-8.353%204.904-14.567%204.904%20-6.234%200-11.299-2.004-15.186-6.007%20-3.887-4.008-5.831-9.164-5.831-15.473V44.804c0-6.284%201.898-11.44%205.69-15.473%203.792-4.028%208.726-6.042%2014.794-6.042%206.405%200%2011.405%201.641%2015.01%204.924s5.357%207.759%205.262%2013.424l-0.07%200.217H73.479c0-3.414-0.816-6.032-2.452-7.845%20-1.636-1.813-4.184-2.719-7.649-2.719%20-3.107%200-5.569%201.259-7.397%203.781%20-1.828%202.528-2.739%205.74-2.739%209.648V55.06c0%203.953%200.962%207.195%202.88%209.718%201.923%202.523%204.517%203.781%207.79%203.781%203.248%200%205.65-0.871%207.205-2.613%201.551-1.742%202.326-4.335%202.326-7.769H83.509z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M137.346%2058.177l0.07%200.211c0.096%205.574-1.606%209.995-5.101%2013.268%20-3.499%203.268-8.353%204.904-14.567%204.904%20-6.234%200-11.299-2.004-15.186-6.007%20-3.887-4.008-5.831-9.164-5.831-15.473V44.804c0-6.284%201.898-11.44%205.69-15.473%203.792-4.028%208.726-6.042%2014.794-6.042%206.405%200%2011.405%201.641%2015.01%204.924%203.605%203.283%205.357%207.759%205.262%2013.424l-0.07%200.217h-10.101c0-3.414-0.816-6.032-2.452-7.845s-4.184-2.719-7.649-2.719c-3.107%200-5.569%201.259-7.397%203.781%20-1.828%202.528-2.739%205.74-2.739%209.648V55.06c0%203.953%200.962%207.195%202.88%209.718%201.923%202.523%204.517%203.781%207.79%203.781%203.248%200%205.65-0.871%207.205-2.613%201.551-1.742%202.326-4.335%202.326-7.769H137.346z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M164.048%2099.355H18.082C8.112%2099.355%200%2091.244%200%2081.274V18.082C0%208.112%208.112%200%2018.082%200h145.967c9.97%200%2018.082%208.112%2018.082%2018.082v63.192C182.13%2091.244%20174.018%2099.355%20164.048%2099.355zM18.082%204.995c-7.216%200-13.087%205.871-13.087%2013.087v63.192c0%207.216%205.871%2013.087%2013.087%2013.087h145.967c7.216%200%2013.087-5.871%2013.087-13.087V18.082c0-7.216-5.871-13.087-13.087-13.087H18.082z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:94.859375%;
}
.wowza_player-SVGAsset.wowza_player-ClosedCaptions:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20182.13%2099.355%22%3E%3Cpath%20d%3D%22M83.509%2058.177l0.07%200.211c0.096%205.574-1.606%209.995-5.101%2013.268%20-3.499%203.268-8.353%204.904-14.567%204.904%20-6.234%200-11.299-2.004-15.186-6.007%20-3.887-4.008-5.831-9.164-5.831-15.473V44.804c0-6.284%201.898-11.44%205.69-15.473%203.792-4.028%208.726-6.042%2014.794-6.042%206.405%200%2011.405%201.641%2015.01%204.924s5.357%207.759%205.262%2013.424l-0.07%200.217H73.479c0-3.414-0.816-6.032-2.452-7.845%20-1.636-1.813-4.184-2.719-7.649-2.719%20-3.107%200-5.569%201.259-7.397%203.781%20-1.828%202.528-2.739%205.74-2.739%209.648V55.06c0%203.953%200.962%207.195%202.88%209.718%201.923%202.523%204.517%203.781%207.79%203.781%203.248%200%205.65-0.871%207.205-2.613%201.551-1.742%202.326-4.335%202.326-7.769H83.509z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M137.346%2058.177l0.07%200.211c0.096%205.574-1.606%209.995-5.101%2013.268%20-3.499%203.268-8.353%204.904-14.567%204.904%20-6.234%200-11.299-2.004-15.186-6.007%20-3.887-4.008-5.831-9.164-5.831-15.473V44.804c0-6.284%201.898-11.44%205.69-15.473%203.792-4.028%208.726-6.042%2014.794-6.042%206.405%200%2011.405%201.641%2015.01%204.924%203.605%203.283%205.357%207.759%205.262%2013.424l-0.07%200.217h-10.101c0-3.414-0.816-6.032-2.452-7.845s-4.184-2.719-7.649-2.719c-3.107%200-5.569%201.259-7.397%203.781%20-1.828%202.528-2.739%205.74-2.739%209.648V55.06c0%203.953%200.962%207.195%202.88%209.718%201.923%202.523%204.517%203.781%207.79%203.781%203.248%200%205.65-0.871%207.205-2.613%201.551-1.742%202.326-4.335%202.326-7.769H137.346z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M164.048%2099.355H18.082C8.112%2099.355%200%2091.244%200%2081.274V18.082C0%208.112%208.112%200%2018.082%200h145.967c9.97%200%2018.082%208.112%2018.082%2018.082v63.192C182.13%2091.244%20174.018%2099.355%20164.048%2099.355zM18.082%204.995c-7.216%200-13.087%205.871-13.087%2013.087v63.192c0%207.216%205.871%2013.087%2013.087%2013.087h145.967c7.216%200%2013.087-5.871%2013.087-13.087V18.082c0-7.216-5.871-13.087-13.087-13.087H18.082z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:94.859375%;
}
/* Buffering */
/* Live */
.wowza_player-SVGAsset.wowza_player-Live, .wowza_player-SVGAssetNoHover.wowza_player-Live, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Live:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20105.916%20105.916%22%3E%3Cpath%20d%3D%22M52.958%20105.916C23.757%20105.916%200%2082.159%200%2052.958S23.757%200%2052.958%200s52.958%2023.757%2052.958%2052.958S82.159%20105.916%2052.958%20105.916zM52.958%205.575c-26.128%200-47.383%2021.258-47.383%2047.383s21.256%2047.383%2047.383%2047.383%2047.383-21.258%2047.383-47.383S79.086%205.575%2052.958%205.575z%22%20fill%3D%22%23909090%22%2F%3E%3Ccircle%20cx%3D%2252.957%22%20cy%3D%2252.959%22%20r%3D%2233.142%22%20fill%3D%22%23909090%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:55.164583%;
}
.wowza_player-SVGAssetNoHover.wowza_player-Live.wowza_player-Active, .wowza_player-SVGAsset.wowza_player-Live.wowza_player-Active:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20105.916%20105.916%22%3E%3Cpath%20d%3D%22M52.958%20105.916C23.757%20105.916%200%2082.159%200%2052.958S23.757%200%2052.958%200s52.958%2023.757%2052.958%2052.958S82.159%20105.916%2052.958%20105.916zM52.958%205.575c-26.128%200-47.383%2021.258-47.383%2047.383s21.256%2047.383%2047.383%2047.383%2047.383-21.258%2047.383-47.383S79.086%205.575%2052.958%205.575z%22%20fill%3D%22%23ffffff%22%2F%3E%3Ccircle%20cx%3D%2252.957%22%20cy%3D%2252.959%22%20r%3D%2233.142%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:55.164583%;
}
.wowza_player-SVGAsset.wowza_player-Live:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20105.916%20105.916%22%3E%3Cpath%20d%3D%22M52.958%20105.916C23.757%20105.916%200%2082.159%200%2052.958S23.757%200%2052.958%200s52.958%2023.757%2052.958%2052.958S82.159%20105.916%2052.958%20105.916zM52.958%205.575c-26.128%200-47.383%2021.258-47.383%2047.383s21.256%2047.383%2047.383%2047.383%2047.383-21.258%2047.383-47.383S79.086%205.575%2052.958%205.575z%22%20fill%3D%22%23909090%22%2F%3E%3Ccircle%20cx%3D%2252.957%22%20cy%3D%2252.959%22%20r%3D%2233.142%22%20fill%3D%22%23909090%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:55.164583%;
}
/* Error */
/* FullScreen */
.wowza_player-SVGAsset.wowza_player-FullScreen, .wowza_player-SVGAssetNoHover.wowza_player-FullScreen, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-FullScreen:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2089.954%2089.954%22%3E%3Cpolygon%20points%3D%2251.602%200%2051.602%205.662%2080.289%205.662%2046.904%2039.046%2050.911%2043.047%2084.293%209.666%2084.293%2038.352%2089.954%2038.352%2089.954%200%20%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpolygon%20points%3D%2239.071%2046.883%205.662%2080.291%205.662%2051.602%200%2051.602%200%2089.954%2038.352%2089.954%2038.352%2084.293%209.668%2084.293%2043.077%2050.884%20%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:46.851042%;
}
.wowza_player-SVGAsset.wowza_player-FullScreen:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2089.954%2089.954%22%3E%3Cpolygon%20points%3D%2251.602%200%2051.602%205.662%2080.289%205.662%2046.904%2039.046%2050.911%2043.047%2084.293%209.666%2084.293%2038.352%2089.954%2038.352%2089.954%200%20%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpolygon%20points%3D%2239.071%2046.883%205.662%2080.291%205.662%2051.602%200%2051.602%200%2089.954%2038.352%2089.954%2038.352%2084.293%209.668%2084.293%2043.077%2050.884%20%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:46.851042%;
}
/* Event End */
.wowza_player-SVGAsset.wowza_player-EventEnd, .wowza_player-SVGAssetNoHover.wowza_player-EventEnd, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-EventEnd:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20data-name%3D%22Layer%201%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23ffffff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eic_event_end%3C%2Ftitle%3E%3Ccircle%20class%3D%22cls-1%22%20cx%3D%2296.68%22%20cy%3D%22129.33%22%20r%3D%224.5%22%2F%3E%3Ccircle%20class%3D%22cls-1%22%20cx%3D%2296.68%22%20cy%3D%22113.2%22%20r%3D%224.5%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M160.1%2012.43a9.27%209.27%200%200%200-9.25-9.25H40.66a9.25%209.25%200%201%200%200%2018.49h0.7c0%205.44%2010.89-0.09%2016.33a37.82%2037.82%200%200%200%208.59%2025.49c4%204.9%208.5%209.33%2012.73%2014C66%2081.31%2069.67%2085%2072.78%2089.09c3.29%204.32%203.15%209.11%200%2013.53a84%2084%200%200%201-6.8%208.14c-4.82%205.19-10%2010.08-14.6%2015.44-6.88%208-10.5%2017.21-10.12%2028%200.18%205.16%2010.32%2015.49h-0.72a9.25%209.25%200%200%200%200%2018.5h110.2a9.24%209.24%200%200%200%201.27-18.4c0-5.29-0.06-10.58-15.87a38.13%2038.13%200%200%200-9.37-26.59c-4.27-5-9.08-9.63-13.51-14.55a86.25%2086.25%200%200%201-7.85-9.65c-3.2-4.8-3-9.92-14.78a42%2042%200%200%201%204.45-5.88c4.61-5%209.45-9.72%2014-14.7%208.23-8.91%2012.76-19.2%2012.14-31.63-0.24-4.83-0.21-9.68-0.16-14.52A9.27%209.27%200%200%200%20160.1%2012.43ZM137.3%2040.83c-0.14%206-3%2011-6.85%2015.28C126.09%2061%20121.27%2065.46%20117%2070.42c-3.45%204-7%208.15-9.4%2012.77-5.6%2010.59-4%2021%203%2030.34%204.11%205.44%209.18%2010.15%2013.69%2015.3%203.44%203.93%206.84%207.92%209.93%2012.12%202.38%203.24%203.13%207.14%203.11%2011.17%200%205.76%200%2011.52%200%2017.26-2.47-4.26-6-1.53-7.45-7.37-15.08-14.55-22.61-21.84S92.57%20138.6%2085%20145.8s-15.17%2014.46-22.61%2021.83a5.9%205.9%200%200%201-6.13%201.78c0-0.62-0.12-1.29-0.12-2%200-4.24-8.49-0.06-12.71-0.51-7.65%202.17-14.1%207.13-19.63%204.52-5%209.42-9.74%2014-14.7a80.52%2080.52%200%200%200%207.13-8.47c7.68-11%207.58-22.55-0.66-33.11-4.06-5.2-9-9.74-13.42-14.62-3.12-3.41-6.3-6.77-9.17-10.38a22.68%2022.68%200%200%201-5-15.24c0.16-5.46%200-10.93%200-16.68h81a3.63%203.63%200%200%201%200.25C137.35%2028.82%20137.44%2034.83%20137.3%2040.83Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%;
}
.wowza_player-SVGAsset.wowza_player-EventEnd:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20data-name%3D%22Layer%201%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23ffffff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Ctitle%3Eic_event_end%3C%2Ftitle%3E%3Ccircle%20class%3D%22cls-1%22%20cx%3D%2296.68%22%20cy%3D%22129.33%22%20r%3D%224.5%22%2F%3E%3Ccircle%20class%3D%22cls-1%22%20cx%3D%2296.68%22%20cy%3D%22113.2%22%20r%3D%224.5%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M160.1%2012.43a9.27%209.27%200%200%200-9.25-9.25H40.66a9.25%209.25%200%201%200%200%2018.49h0.7c0%205.44%2010.89-0.09%2016.33a37.82%2037.82%200%200%200%208.59%2025.49c4%204.9%208.5%209.33%2012.73%2014C66%2081.31%2069.67%2085%2072.78%2089.09c3.29%204.32%203.15%209.11%200%2013.53a84%2084%200%200%201-6.8%208.14c-4.82%205.19-10%2010.08-14.6%2015.44-6.88%208-10.5%2017.21-10.12%2028%200.18%205.16%2010.32%2015.49h-0.72a9.25%209.25%200%200%200%200%2018.5h110.2a9.24%209.24%200%200%200%201.27-18.4c0-5.29-0.06-10.58-15.87a38.13%2038.13%200%200%200-9.37-26.59c-4.27-5-9.08-9.63-13.51-14.55a86.25%2086.25%200%200%201-7.85-9.65c-3.2-4.8-3-9.92-14.78a42%2042%200%200%201%204.45-5.88c4.61-5%209.45-9.72%2014-14.7%208.23-8.91%2012.76-19.2%2012.14-31.63-0.24-4.83-0.21-9.68-0.16-14.52A9.27%209.27%200%200%200%20160.1%2012.43ZM137.3%2040.83c-0.14%206-3%2011-6.85%2015.28C126.09%2061%20121.27%2065.46%20117%2070.42c-3.45%204-7%208.15-9.4%2012.77-5.6%2010.59-4%2021%203%2030.34%204.11%205.44%209.18%2010.15%2013.69%2015.3%203.44%203.93%206.84%207.92%209.93%2012.12%202.38%203.24%203.13%207.14%203.11%2011.17%200%205.76%200%2011.52%200%2017.26-2.47-4.26-6-1.53-7.45-7.37-15.08-14.55-22.61-21.84S92.57%20138.6%2085%20145.8s-15.17%2014.46-22.61%2021.83a5.9%205.9%200%200%201-6.13%201.78c0-0.62-0.12-1.29-0.12-2%200-4.24-8.49-0.06-12.71-0.51-7.65%202.17-14.1%207.13-19.63%204.52-5%209.42-9.74%2014-14.7a80.52%2080.52%200%200%200%207.13-8.47c7.68-11%207.58-22.55-0.66-33.11-4.06-5.2-9-9.74-13.42-14.62-3.12-3.41-6.3-6.77-9.17-10.38a22.68%2022.68%200%200%201-5-15.24c0.16-5.46%200-10.93%200-16.68h81a3.63%203.63%200%200%201%200.25C137.35%2028.82%20137.44%2034.83%20137.3%2040.83Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 100%
}
/* Pause */
.wowza_player-SVGAsset.wowza_player-Pause, .wowza_player-SVGAssetNoHover.wowza_player-Pause, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Pause:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2059.064%2088.174%22%3E%3Cpath%20d%3D%22M16.859%2088.174H3.154C1.412%2088.174%200%2086.762%200%2085.02V3.154C0%201.412%201.412%200%203.154%200h13.705c1.742%200%203.154%201.412%203.154%203.154V85.02C20.014%2086.762%2018.601%2088.174%2016.859%2088.174z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M55.91%2088.174H42.205c-1.742%200-3.154-1.412-3.154-3.154V3.154C39.051%201.412%2040.463%200%2042.205%200H55.91c1.742%200%203.154%201.412%203.154%203.154V85.02C59.064%2086.762%2057.652%2088.174%2055.91%2088.174z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 45.923958%;
}
.wowza_player-SVGAsset.wowza_player-Pause:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2059.064%2088.174%22%3E%3Cpath%20d%3D%22M16.859%2088.174H3.154C1.412%2088.174%200%2086.762%200%2085.02V3.154C0%201.412%201.412%200%203.154%200h13.705c1.742%200%203.154%201.412%203.154%203.154V85.02C20.014%2086.762%2018.601%2088.174%2016.859%2088.174z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M55.91%2088.174H42.205c-1.742%200-3.154-1.412-3.154-3.154V3.154C39.051%201.412%2040.463%200%2042.205%200H55.91c1.742%200%203.154%201.412%203.154%203.154V85.02C59.064%2086.762%2057.652%2088.174%2055.91%2088.174z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 45.923958%;
}
/* Play */
.wowza_player-SVGAsset.wowza_player-Play, .wowza_player-SVGAssetNoHover.wowza_player-Play, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Play:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2093.361%20105.96%22%3E%3Cpath%20d%3D%22M90.352%2047.768c4.012%202.316%204.012%208.107%200%2010.424L49.69%2081.669%209.027%20105.145C5.015%20107.462%200%20104.566%200%2099.933L0%2052.98%200%206.027c0-4.633%205.015-7.528%209.027-5.212L49.69%2024.292%2090.352%2047.768z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:55.1875%;
}
.wowza_player-SVGAsset.wowza_player-Play:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2093.361%20105.96%22%3E%3Cpath%20d%3D%22M90.352%2047.768c4.012%202.316%204.012%208.107%200%2010.424L49.69%2081.669%209.027%20105.145C5.015%20107.462%200%20104.566%200%2099.933L0%2052.98%200%206.027c0-4.633%205.015-7.528%209.027-5.212L49.69%2024.292%2090.352%2047.768z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:55.1875%;
}
/* Replay */
.wowza_player-SVGAsset.wowza_player-Replay, .wowza_player-SVGAssetNoHover.wowza_player-Replay, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Replay:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20114.229%20122.992%22%3E%3Cpath%20d%3D%22M84.462%2015.597c-8.292-4.71-17.812-6.839-27.348-6.839h-0.011c-4.117%200-8.188%200.456-12.165%201.323L40.3%201.665c-1.196-2.17-4.292-2.231-5.573-0.111L21.81%2022.935c-1.281%202.12%200.214%204.833%202.691%204.882l24.974%200.498c2.477%200.049%204.079-2.601%202.883-4.771l-4.221-7.659c2.951-0.526%205.938-0.874%208.967-0.874h0.011c8.46%200%2016.905%201.887%2024.271%206.049%2016.93%209.566%2026.592%2026.444%2026.592%2044.803%200.008%2019.681-11.081%2037.65-30.316%2046.781%20-5.984%202.841-12.609%204.098-19.233%204.098h0c-10.478%200-20.952-2.644-29.607-8.551%20-14.429-9.847-22.57-25.45-22.57-42.301H0c0.008%2022.249%2012.644%2042.559%2034.535%2052.719%206.466%203.001%2013.58%204.385%2020.708%204.385h0c14.845%200%2029.527-4.957%2040.458-15.001%2011.929-10.961%2018.533-26.041%2018.527-42.129C114.221%2045.281%20103.408%2026.36%2084.462%2015.597z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M84.462%2015.597c-8.292-4.71-17.812-6.839-27.348-6.839h-0.011c-4.117%200-8.188%200.456-12.165%201.323L40.3%201.665c-1.196-2.17-4.292-2.231-5.573-0.111L21.81%2022.935c-1.281%202.12%200.214%204.833%202.691%204.882l24.974%200.498c2.477%200.049%204.079-2.601%202.883-4.771l-4.221-7.659c2.951-0.526%205.938-0.874%208.967-0.874h0.011c8.46%200%2016.905%201.887%2024.271%206.049%2016.93%209.566%2026.592%2026.444%2026.592%2044.803%200.008%2019.681-11.081%2037.65-30.316%2046.781%20-5.984%202.841-12.609%204.098-19.233%204.098h0c-10.478%200-20.952-2.644-29.607-8.551%20-14.429-9.847-22.57-25.45-22.57-42.301H0c0.008%2022.249%2012.644%2042.559%2034.535%2052.719%206.466%203.001%2013.58%204.385%2020.708%204.385h0c14.845%200%2029.527-4.957%2040.458-15.001%2011.929-10.961%2018.533-26.041%2018.527-42.129C114.221%2045.281%20103.408%2026.36%2084.462%2015.597z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:64.058333%;
}
.wowza_player-SVGAsset.wowza_player-Replay:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20114.229%20122.992%22%3E%3Cpath%20d%3D%22M84.462%2015.597c-8.292-4.71-17.812-6.839-27.348-6.839h-0.011c-4.117%200-8.188%200.456-12.165%201.323L40.3%201.665c-1.196-2.17-4.292-2.231-5.573-0.111L21.81%2022.935c-1.281%202.12%200.214%204.833%202.691%204.882l24.974%200.498c2.477%200.049%204.079-2.601%202.883-4.771l-4.221-7.659c2.951-0.526%205.938-0.874%208.967-0.874h0.011c8.46%200%2016.905%201.887%2024.271%206.049%2016.93%209.566%2026.592%2026.444%2026.592%2044.803%200.008%2019.681-11.081%2037.65-30.316%2046.781%20-5.984%202.841-12.609%204.098-19.233%204.098h0c-10.478%200-20.952-2.644-29.607-8.551%20-14.429-9.847-22.57-25.45-22.57-42.301H0c0.008%2022.249%2012.644%2042.559%2034.535%2052.719%206.466%203.001%2013.58%204.385%2020.708%204.385h0c14.845%200%2029.527-4.957%2040.458-15.001%2011.929-10.961%2018.533-26.041%2018.527-42.129C114.221%2045.281%20103.408%2026.36%2084.462%2015.597z%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpath%20d%3D%22M84.462%2015.597c-8.292-4.71-17.812-6.839-27.348-6.839h-0.011c-4.117%200-8.188%200.456-12.165%201.323L40.3%201.665c-1.196-2.17-4.292-2.231-5.573-0.111L21.81%2022.935c-1.281%202.12%200.214%204.833%202.691%204.882l24.974%200.498c2.477%200.049%204.079-2.601%202.883-4.771l-4.221-7.659c2.951-0.526%205.938-0.874%208.967-0.874h0.011c8.46%200%2016.905%201.887%2024.271%206.049%2016.93%209.566%2026.592%2026.444%2026.592%2044.803%200.008%2019.681-11.081%2037.65-30.316%2046.781%20-5.984%202.841-12.609%204.098-19.233%204.098h0c-10.478%200-20.952-2.644-29.607-8.551%20-14.429-9.847-22.57-25.45-22.57-42.301H0c0.008%2022.249%2012.644%2042.559%2034.535%2052.719%206.466%203.001%2013.58%204.385%2020.708%204.385h0c14.845%200%2029.527-4.957%2040.458-15.001%2011.929-10.961%2018.533-26.041%2018.527-42.129C114.221%2045.281%20103.408%2026.36%2084.462%2015.597z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:64.058333%;
}
/* ReturnFromFullScreen */
.wowza_player-SVGAsset.wowza_player-ReturnFromFullScreen, .wowza_player-SVGAssetNoHover.wowza_player-ReturnFromFullScreen, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-ReturnFromFullScreen:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2092.096%2092.088%22%3E%3Cpolygon%20points%3D%224.698%2049.04%204.698%2054.702%2033.384%2054.702%200%2088.086%204.007%2092.088%2037.388%2058.706%2037.388%2087.392%2043.05%2087.392%2043.05%2049.04%20%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpolygon%20points%3D%2288.089%200%2054.68%2033.409%2054.68%204.72%2049.018%204.72%2049.018%2043.072%2087.37%2043.072%2087.37%2037.41%2058.687%2037.41%2092.096%204.001%20%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 47.966667%;
}
.wowza_player-SVGAsset.wowza_player-ReturnFromFullScreen:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2092.096%2092.088%22%3E%3Cpolygon%20points%3D%224.698%2049.04%204.698%2054.702%2033.384%2054.702%200%2088.086%204.007%2092.088%2037.388%2058.706%2037.388%2087.392%2043.05%2087.392%2043.05%2049.04%20%22%20fill%3D%22%23ffffff%22%2F%3E%3Cpolygon%20points%3D%2288.089%200%2054.68%2033.409%2054.68%204.72%2049.018%204.72%2049.018%2043.072%2087.37%2043.072%2087.37%2037.41%2058.687%2037.41%2092.096%204.001%20%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size: 47.966667%;
}
/* Settings */
.wowza_player-SVGAsset.wowza_player-Settings, .wowza_player-SVGAssetNoHover.wowza_player-Settings, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Settings:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20116.43%20116.427%22%3E%3Cpath%20d%3D%22M71.459%20116.427H44.971v-11.266c-3.68-1.046-7.217-2.527-10.553-4.421l-8.001%208.003L7.688%2090.013l8.149-8.149c-1.82-3.314-3.229-6.796-4.218-10.402H0V44.971h11.922c1.035-3.506%202.465-6.871%204.27-10.048l-8.503-8.506L26.417%207.686l8.657%208.652c3.142-1.722%206.458-3.083%209.897-4.062V0h26.488v12.275c3.439%200.979%206.755%202.34%209.897%204.062l8.657-8.652%2018.728%2018.731%20-8.503%208.506c1.799%203.17%203.224%206.538%204.27%2010.048h11.922v26.491H104.81c-0.989%203.606-2.399%207.089-4.218%2010.402l8.149%208.149%20-18.728%2018.731%20-8.001-8.003c-3.337%201.894-6.873%203.375-10.553%204.421V116.427zM50.219%20111.179h15.991v-10.118l2.014-0.479c4.536-1.079%208.841-2.883%2012.803-5.366l1.773-1.11%207.212%207.217%2011.307-11.309%20-7.314-7.314%201.066-1.761c2.399-3.967%204.121-8.234%205.131-12.68l0.461-2.045h10.517V50.219h-10.722l-0.502-1.986c-1.097-4.38-2.865-8.529-5.243-12.327l-1.107-1.771%207.714-7.719L90.013%2015.107l-7.821%207.816%20-1.758-1.064c-3.798-2.296-7.903-3.98-12.209-5.008l-2.014-0.482V5.248H50.219v11.122l-2.014%200.482c-4.305%201.028-8.411%202.711-12.209%205.008l-1.758%201.064%20-7.821-7.816L15.11%2026.417l7.714%207.719%20-1.107%201.771c-2.388%203.811-4.152%207.957-5.243%2012.324l-0.497%201.989H5.248v15.994h10.517l0.461%202.045c1.01%204.446%202.732%208.713%205.131%2012.68l1.066%201.761%20-7.314%207.314%2011.307%2011.309%207.212-7.217%201.773%201.11c3.962%202.483%208.272%204.29%2012.798%205.366l2.019%200.479V111.179zM58.215%2079.527c-11.476%200-20.809-9.336-20.809-20.809S46.739%2037.91%2058.215%2037.91s20.809%209.333%2020.809%2020.807S69.691%2079.527%2058.215%2079.527zM58.215%2043.159c-8.58%200-15.561%206.978-15.561%2015.558s6.981%2015.561%2015.561%2015.561%2015.561-6.981%2015.561-15.561S66.795%2043.159%2058.215%2043.159z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:60.640625%;
}
.wowza_player-SVGAsset.wowza_player-Settings:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20116.43%20116.427%22%3E%3Cpath%20d%3D%22M71.459%20116.427H44.971v-11.266c-3.68-1.046-7.217-2.527-10.553-4.421l-8.001%208.003L7.688%2090.013l8.149-8.149c-1.82-3.314-3.229-6.796-4.218-10.402H0V44.971h11.922c1.035-3.506%202.465-6.871%204.27-10.048l-8.503-8.506L26.417%207.686l8.657%208.652c3.142-1.722%206.458-3.083%209.897-4.062V0h26.488v12.275c3.439%200.979%206.755%202.34%209.897%204.062l8.657-8.652%2018.728%2018.731%20-8.503%208.506c1.799%203.17%203.224%206.538%204.27%2010.048h11.922v26.491H104.81c-0.989%203.606-2.399%207.089-4.218%2010.402l8.149%208.149%20-18.728%2018.731%20-8.001-8.003c-3.337%201.894-6.873%203.375-10.553%204.421V116.427zM50.219%20111.179h15.991v-10.118l2.014-0.479c4.536-1.079%208.841-2.883%2012.803-5.366l1.773-1.11%207.212%207.217%2011.307-11.309%20-7.314-7.314%201.066-1.761c2.399-3.967%204.121-8.234%205.131-12.68l0.461-2.045h10.517V50.219h-10.722l-0.502-1.986c-1.097-4.38-2.865-8.529-5.243-12.327l-1.107-1.771%207.714-7.719L90.013%2015.107l-7.821%207.816%20-1.758-1.064c-3.798-2.296-7.903-3.98-12.209-5.008l-2.014-0.482V5.248H50.219v11.122l-2.014%200.482c-4.305%201.028-8.411%202.711-12.209%205.008l-1.758%201.064%20-7.821-7.816L15.11%2026.417l7.714%207.719%20-1.107%201.771c-2.388%203.811-4.152%207.957-5.243%2012.324l-0.497%201.989H5.248v15.994h10.517l0.461%202.045c1.01%204.446%202.732%208.713%205.131%2012.68l1.066%201.761%20-7.314%207.314%2011.307%2011.309%207.212-7.217%201.773%201.11c3.962%202.483%208.272%204.29%2012.798%205.366l2.019%200.479V111.179zM58.215%2079.527c-11.476%200-20.809-9.336-20.809-20.809S46.739%2037.91%2058.215%2037.91s20.809%209.333%2020.809%2020.807S69.691%2079.527%2058.215%2079.527zM58.215%2043.159c-8.58%200-15.561%206.978-15.561%2015.558s6.981%2015.561%2015.561%2015.561%2015.561-6.981%2015.561-15.561S66.795%2043.159%2058.215%2043.159z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:60.640625%;
}
/* Share */
.wowza_player-SVGAsset.wowza_player-Share, .wowza_player-SVGAssetNoHover.wowza_player-Share, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Share:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20112.256%20114.973%22%3E%3Cpath%20d%3D%22M104.245%2087.382c-5.977-3.019-13.011-1.478-17.309%203.245L32.235%2063.013c0.775-1.927%201.212-4.026%201.212-6.231%200-1.757-0.274-3.45-0.777-5.041l54.266-27.394c4.298%204.723%2011.331%206.263%2017.309%203.245%207.186-3.626%2010.071-12.396%206.445-19.582%20-3.628-7.186-12.398-10.071-19.584-6.443%20-5.98%203.016-8.917%209.592-7.665%2015.855L28.659%2045.078c-3.035-3.095-7.258-5.019-11.935-5.019C7.487%2040.059%200%2047.546%200%2056.782c0%209.236%207.487%2016.724%2016.724%2016.724%204.194%200%208.018-1.555%2010.954-4.106l55.764%2028.151c-1.252%206.263%201.685%2012.839%207.665%2015.855%207.186%203.628%2015.956%200.743%2019.584-6.443C114.316%2099.777%20111.431%2091.007%20104.245%2087.382z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:59.881771%;
}
.wowza_player-SVGAsset.wowza_player-Share:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20112.256%20114.973%22%3E%3Cpath%20d%3D%22M104.245%2087.382c-5.977-3.019-13.011-1.478-17.309%203.245L32.235%2063.013c0.775-1.927%201.212-4.026%201.212-6.231%200-1.757-0.274-3.45-0.777-5.041l54.266-27.394c4.298%204.723%2011.331%206.263%2017.309%203.245%207.186-3.626%2010.071-12.396%206.445-19.582%20-3.628-7.186-12.398-10.071-19.584-6.443%20-5.98%203.016-8.917%209.592-7.665%2015.855L28.659%2045.078c-3.035-3.095-7.258-5.019-11.935-5.019C7.487%2040.059%200%2047.546%200%2056.782c0%209.236%207.487%2016.724%2016.724%2016.724%204.194%200%208.018-1.555%2010.954-4.106l55.764%2028.151c-1.252%206.263%201.685%2012.839%207.665%2015.855%207.186%203.628%2015.956%200.743%2019.584-6.443C114.316%2099.777%20111.431%2091.007%20104.245%2087.382z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:59.881771%;
}
/* Spinner */
/* Stop */
.wowza_player-SVGAsset.wowza_player-Stop, .wowza_player-SVGAssetNoHover.wowza_player-Stop, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Stop:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2093.331%2093.331%22%3E%3Cg%20id%3D%22ic_x5F_action_x5F_stop.svg%22%3E%3Cpath%20d%3D%22M82.236%2093.331H11.095C4.967%2093.331%200%2088.363%200%2082.236V11.095C0%204.967%204.967%200%2011.095%200h71.141c6.127%200%2011.095%204.967%2011.095%2011.095v71.141C93.331%2088.363%2088.363%2093.331%2082.236%2093.331z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:48.609896%;
}
.wowza_player-SVGAsset.wowza_player-Stop:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2093.331%2093.331%22%3E%3Cg%20id%3D%22ic_x5F_action_x5F_stop.svg%22%3E%3Cpath%20d%3D%22M82.236%2093.331H11.095C4.967%2093.331%200%2088.363%200%2082.236V11.095C0%204.967%204.967%200%2011.095%200h71.141c6.127%200%2011.095%204.967%2011.095%2011.095v71.141C93.331%2088.363%2088.363%2093.331%2082.236%2093.331z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:48.609896%;
}
/* VolumeMuted */
.wowza_player-SVGAsset.wowza_player-VolumeMuted, .wowza_player-SVGAssetNoHover.wowza_player-VolumeMuted, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-VolumeMuted:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%2249.42%20108.23%2028.9%20108.23%2028.9%2087.4%2052.86%2087.4%2081.36%2067.06%2081.36%2076.28%2087.52%2070.12%2087.52%2055.11%2050.89%2081.25%2022.74%2081.25%2022.74%20114.39%2043.26%20114.39%2049.42%20108.23%22%2F%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%2281.36%20128.56%2064.65%20116.64%2060.24%20121.06%2087.52%20140.52%2087.52%2093.77%2081.36%2099.93%2081.36%20128.56%22%2F%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%22100.6%2064.93%2087.52%2078%2081.36%2084.16%2055.45%20110.08%2051.04%20114.49%2037.63%20127.9%2039.59%20129.87%2041.57%20131.85%2041.57%20131.84%2055.64%20117.77%2060.05%20113.36%2081.36%2092.05%2087.52%2085.89%20104.54%2068.87%20100.6%2064.93%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:100%;
}
.wowza_player-SVGAsset.wowza_player-VolumeMuted:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%2249.42%20108.23%2028.9%20108.23%2028.9%2087.4%2052.86%2087.4%2081.36%2067.06%2081.36%2076.28%2087.52%2070.12%2087.52%2055.11%2050.89%2081.25%2022.74%2081.25%2022.74%20114.39%2043.26%20114.39%2049.42%20108.23%22%2F%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%2281.36%20128.56%2064.65%20116.64%2060.24%20121.06%2087.52%20140.52%2087.52%2093.77%2081.36%2099.93%2081.36%20128.56%22%2F%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%22100.6%2064.93%2087.52%2078%2081.36%2084.16%2055.45%20110.08%2051.04%20114.49%2037.63%20127.9%2039.59%20129.87%2041.57%20131.85%2041.57%20131.84%2055.64%20117.77%2060.05%20113.36%2081.36%2092.05%2087.52%2085.89%20104.54%2068.87%20100.6%2064.93%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:100%;
}
/* VolumeOn */
.wowza_player-SVGAsset.wowza_player-VolumeOn, .wowza_player-SVGAssetNoHover.wowza_player-VolumeOn, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-VolumeOn:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M87.52%20140.53L50.89%20114.4H22.74V81.26H50.89L87.52%2055.12v85.41ZM28.9%20108.24h24l28.5%2020.34V67.08L52.86%2087.42h-24v20.82Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M128.4%2095.28a41.54%2041.54%200%200%200-12.21-29.45l-4.35%204.35a35.39%2035.39%200%200%201-1.27%2051.35l4.14%204.55A41.51%2041.51%200%200%200%20128.4%2095.28Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M148.4%2095.28A61.47%2061.47%200%200%200%20130.32%2051.7L126%2056.05a55.31%2055.31%200%200%201-2%2080.24l4.14%204.55A61.44%2061.44%200%200%200%20148.4%2095.28Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M170.39%2095.28a83.4%2083.4%200%200%200-24.53-59.13l-4.35%204.35a77.24%2077.24%200%200%201-2.74%20112l4.14%204.55A83.35%2083.35%200%200%200%20170.39%2095.28Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:100%;
}
.wowza_player-SVGAsset.wowza_player-VolumeOn:hover {
background: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20192%20192%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M87.52%20140.53L50.89%20114.4H22.74V81.26H50.89L87.52%2055.12v85.41ZM28.9%20108.24h24l28.5%2020.34V67.08L52.86%2087.42h-24v20.82Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M128.4%2095.28a41.54%2041.54%200%200%200-12.21-29.45l-4.35%204.35a35.39%2035.39%200%200%201-1.27%2051.35l4.14%204.55A41.51%2041.51%200%200%200%20128.4%2095.28Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M148.4%2095.28A61.47%2061.47%200%200%200%20130.32%2051.7L126%2056.05a55.31%2055.31%200%200%201-2%2080.24l4.14%204.55A61.44%2061.44%200%200%200%20148.4%2095.28Z%22%2F%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M170.39%2095.28a83.4%2083.4%200%200%200-24.53-59.13l-4.35%204.35a77.24%2077.24%200%200%201-2.74%20112l4.14%204.55A83.35%2083.35%200%200%200%20170.39%2095.28Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center;
background-size:100%;
}
/* Template */
.wowza_player-SVGAsset.wowza_player-Template, .wowza_player-SVGAssetNoHover.wowza_player-Template, #wowza_player-UI.wowza_player-Touch .wowza_player-SVGAsset.wowza_player-Template:hover {
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 192"></svg>') no-repeat center center;
background-size: 100%;
}
.wowza_player-SVGAsset.wowza_player-Template:hover {
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 192"></svg>') no-repeat center center;
background-size: 100%
}
#wowza_player, #wowza_player > div, #wowza_player-Container, #wowza_player-Container > div {
box-sizing: border-box;
}
.wowza_player-ClearFix:after {
content:"";
display:block;
clear:both;
}
#wowza_player-Container a,
#wowza_player-Container div,
#wowza_player-Container span {
font-size:inherit;
text-decoration:none;
}
#wowza_player-Container {
position:relative;
overflow:hidden;
border:0;
font-family:wowza_player-font, Arial, sans-serif;
padding:0;
border:0;
cursor:pointer;
background-color:#000000;
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
#wowza_player-Video {
display:block;
margin:auto;
border:0;
position: relative;
top: 50%;
transform: translateY(-50%);
}
#wowza_player-Audio {
display:block;
width:100%;
border:0;
}
.wowza_player-Position-Center {
position:absolute;
border:0;
height:0;
width:0;
padding:0;
margin:0;
top:50%;
left:50%;
}
@-webkit-keyframes wowza_player-FadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@keyframes wowza_player-FadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes wowza_player-FadeOut {
0% {opacity:1;}
100% {opacity:0;}
}
@keyframes wowza_player-FadeOut {
0% {opacity:1;}
100% {opacity:0;}
}
@-webkit-keyframes wowza_player-SlideInTop {
0% {top:-12em;}
100% {top:0;}
}
@keyframes wowza_player-SlideInTop {
0% {top:-12em;}
100% {top:0;}
}
@-webkit-keyframes wowza_player-SlideOutTop {
0% {top:0;}
100% {top:-12em;}
}
@keyframes wowza_player-SlideOutTop {
0% {top:0;}
100% {top:-12em;}
}
@-webkit-keyframes wowza_player-SlideInBottom {
0% {bottom:-6em;}
100% {bottom:0;}
}
@keyframes wowza_player-SlideInBottom {
0% {bottom:-6em;}
100% {bottom:0;}
}
@-webkit-keyframes wowza_player-SlideOutBottom {
0% {bottom:0;}
100% {bottom:-6em;}
}
@keyframes wowza_player-SlideOutBottom {
0% {bottom:0;}
100% {bottom:-6em;}
}
@-webkit-keyframes wowza_player-Spin {
0% {
-ms-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes wowza_player-Spin {
0% {
-ms-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-ms-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style><style id="wowza_player-VideoPlayerCSS">
#wowza_player-CountdownTimer,
#wowza_player-CountdownTimerShield {
top:0;
bottom:0;
height:100%;
width:100%;
}
#wowza_player-CountdownTimerShield {
background-color:#000;
}
#wowza_player-CountdownTimerGroup {
position: absolute;
left: -15em;
top: -3em;
width: 30em;
height: 6em;
border:0;
color:#fff;
text-align:center;
background-color:rgba(0,0,0,0.4);
padding:0.75em;
border-radius:1em;
}
#wowza_player-CountdownTimerLabel {
font-size:120%;
font-weight:bold;
}
#wowza_player-CountdownTimerTime {
font-size:200%;
font-weight:bold;
color:#ffffff;
}
#wowza_player-CountdownTimer.wowza_player-Show,
#wowza_player-CountdownTimerShield.wowza_player-Show {
display:block;
}
#wowza_player-CountdownTimer.wowza_player-Hide,
#wowza_player-CountdownTimerShield.wowza_player-Hide {
display:none;
}
#wowza_player-PosterFrame,
#wowza_player-EndPosterFrame {
position:absolute;
top:0;
bottom:0;
height:100%;
width:100%;
display:none;
background-repeat:no-repeat;
background-position:center;
}
#wowza_player-PosterFrame.wowza_player-Fit,
#wowza_player-EndPosterFrame.wowza_player-Fit {
background-size: contain;
}
#wowza_player-PosterFrame.wowza_player-Fill,
#wowza_player-EndPosterFrame.wowza_player-Fill {
background-size: cover;
}
#wowza_player-PosterFrame.wowza_player-Stretch,
#wowza_player-EndPosterFrame.wowza_player-Stretch {
background-size: 100% 100%;
}
#wowza_player-ChannelBug {
height:4em;
position:absolute;
background-size:contain;
}
#wowza_player-ChannelBug.wowza_player-TopLeft {
left: 1.5em;
top: 3em;
}
#wowza_player-ChannelBug.wowza_player-TopRight {
right: 1.5em;
top: 3em;
}
#wowza_player-ChannelBug.wowza_player-BottomLeft {
left: 1.5em;
bottom: 4em;
}
#wowza_player-ChannelBug.wowza_player-BottomRight {
right: 1.5em;
bottom: 4em;
}
#wowza_player-PosterFrame.wowza_player-Show,
#wowza_player-EndPosterFrame.wowza_player-Show,
#wowza_player-ChannelBug.wowza_player-Show {
display:block;
}
#wowza_player-PosterFrame.wowza_player-Hide,
#wowza_player-EndPosterFrame.wowza_player-Hide,
#wowza_player-ChannelBug.wowza_player-Hide {
display:none;
}
#wowza_player-OverlayAlert {
position:absolute;
top:0;
bottom:0;
height:100%;
width:100%;
background-color: rgba(0,0,0,0.4);
}
#wowza_player-OverlayAlertGroup {
position: absolute;
left: -20em;
top: -4em;
width: 40em;
height: 8em;
border:0;
color:#fff;
text-align:center;
}
#wowza_player-OverlayAlertIcon {
position: relative;
display:inline-block;
top: 0;
width: 4em;
height: 4em;
margin-bottom: 1em;
border:0;
color:#fff;
}
#wowza_player-OverlayAlertMessage {
font-size:130%
}
#wowza_player-OverlayAlertIcon.wowza_player-Spin {
-webkit-animation: wowza_player-Spin 1s linear infinite;
-moz-animation: wowza_player-Spin 1s linear infinite;
-ms-animation: wowza_player-Spin 1s linear infinite;
-o-animation: wowza_player-Spin 1s linear infinite;
animation: wowza_player-Spin 1s linear infinite;
}
#wowza_player-OverlayAlert.wowza_player-Show {
opacity:1;
animation-name: wowza_player-FadeIn;
animation-duration: 0.25s;
}
#wowza_player-OverlayAlert.wowza_player-Hide {
opacity:0.000001;
animation-name: wowza_player-FadeOut;
animation-duration: 0.25s;
}
#wowza_player-OverlayLatency {
position:absolute;
top:0;
width:100%;
padding:1em 3em;
text-align:center;
background-color: rgba(0,0,0,0.4);
}
#wowza_player-Container #wowza_player-OverlayLatency.wowza_player-Show {
font-size:80%;
}
.wowza_player-OverlayLatencyItem {
display:inline-block;
padding: 0 0.5em;
}
.wowza_player-OverlayLatencyTitle {
font-style:italic;
font-weight: bold;
color: #{uiHoverColor};
}
.wowza_player-OverlayLatencyStats {
font-style:normal;
font-weight: bold;
color: #ffffff;
}
.wowza_player-OverlayLatencyValue {
color: #{uiHoverColor};
}
#wowza_player-OverlayLatency.wowza_player-Show {
display:block;
}
#wowza_player-OverlayLatency.wowza_player-Hide {
display:none;
}
@-webkit-keyframes wowza_player-ExpandDescription {
0% {
height: 12em;
}
100% {
height: 12em;
}
}
@keyframes wowza_player-ExpandDescription {
0% {
height: 12em;
}
100% {
height: 12em;
}
}
@-webkit-keyframes wowza_player-ContractDescription {
0% {
height: 12em;
}
100% {
height: 12em;
}
}
@keyframes wowza_player-ContractDescription {
0% {
height: 12em;
}
100% {
height: 12em;
}
}
#wowza_player-TopBar, #wowza_player-TopBar > div {
box-sizing: border-box;
}
#wowza_player-TopBar {
position: absolute;
overflow:hidden;
left: 0;
top: -12em;
height: 12em;
width: 100%;
border:0;
background-image: -webkit-gradient( linear, left 0%, left bottom, from(rgba(0,0,0,0.4)), to(rgba(0,0,0,0)) );
background-image: -moz-linear-gradient(rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 99%);
background-image: -ms-linear-gradient(rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 99%);
color:#fff;
}
#wowza_player-TopBar.wowza_player-hideBackground {
background-image: none;
}
#wowza_player-TopBar.wowza_player-Show {
top:0;
animation-name: wowza_player-SlideInTop;
animation-duration: 0.25s;
}
#wowza_player-TopBar.wowza_player-Hide {
top:-6m;
animation-name: wowza_player-SlideOutTop;
animation-duration: 0.25s;
}
#wowza_player-TopBar.wowza_player-Show.wowza_player-HideDescription {
height: 12em;
animation-name: wowza_player-ContractDescription;
animation-duration: 0.25s;
}
#wowza_player-TopBar.wowza_player-Show.wowza_player-ShowDescription {
height: 15em;
animation-name: wowza_player-ExpandDescription;
animation-duration: 0.25s;
}
#wowza_player-Title {
position:absolute;
left:6em;
right:6em;
top:0;
padding:0.6em 0.5em 0.5em 0.5em;
height:3em;
font-size:120%;
font-weight:bold;
text-align:center;
}
#wowza_player-Description {
position: absolute;
display:none;
left:6em;
right:6em;
top:3em;
font-size:100%;
padding:0.6em 0.5em 0.5em 0.5em;
}
#wowza_player-TopBar.wowza_player-Show.wowza_player-ShowDescription #wowza_player-Description {
display:block;
}
#wowza_player-OverlayPlayShield {
position:absolute;
top:0;
bottom:0;
height:100%;
width:100%;
}
#wowza_player-OverlayPlay {
position: absolute;
left: -4em;
top: -4em;
width: 8em;
height: 8em;
border:0;
border-radius:50%;
background-color: rgba(204,204,204,0.5);
color:#fff;
}
#wowza_player-OverlayPlayIcon {
position: absolute;
left: 1.75em;
top: 1.75em;
width: 4.5em;
height: 4.5em;
border:0;
color:#fff;
}
#wowza_player-OverlayPlayIcon.wowza_player-Play {
left: 2em;
}
#wowza_player-OverlayPlayIcon.wowza_player-Hide {
display: none;
}
#wowza_player-OverlayPlay.wowza_player-Show {
opacity:1;
background-color: rgba(204,204,204,0.5);
animation-name: wowza_player-FadeIn;
animation-duration: 0.25s;
}
#wowza_player-OverlayPlay.wowza_player-Hide {
opacity:0.000001;
background-color: rgba(0,0,0,0);
animation-name: wowza_player-FadeOut;
animation-duration: 0.25s;
}
.wowza_player-Small #wowza_player-OverlayPlayShield,
.wowza_player-Small #wowza_player-OverlayPlay
{
display:none;
}
#wowza_player-TitleArrowRight, #wowza_player-TitleArrowDown {
margin-left:0.5em;
display:none;
}
#wowza_player-TopBar.wowza_player-HasDescription.wowza_player-HideDescription #wowza_player-TitleArrowRight {
display:inline;
}
#wowza_player-TopBar.wowza_player-HasDescription.wowza_player-ShowDescription #wowza_player-TitleArrowDown {
display:inline;
}
#wowza_player-TopBar.wowza_player-HasDescription.wowza_player-HideDescription #wowza_player-TitleArrowRight .wowza_player-InfoCircle,
#wowza_player-TopBar.wowza_player-HasDescription.wowza_player-ShowDescription #wowza_player-TitleArrowDown .wowza_player-InfoCircle {
display: inline-block;
height: 1.25em;
width: 1.25em;
vertical-align: text-bottom;
}
#wowza_player-MediaController, #wowza_player-MediaController > div {
box-sizing: border-box;
}
#wowza_player-MediaController {
position: absolute;
left: 0;
width: 100%;
height: 6em;
border:0;
background-image: -webkit-gradient( linear, left top, left 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.4)) );
background-image: -moz-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
background-image: -ms-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
color:#ffffff;
overflow:visible;
}
#wowza_player-MediaController.wowza_player-hideBackground {
background-image: none;
}
#wowza_player-MediaController.wowza_player-Show {
bottom:0;
-webkit-animation-name: wowza_player-SlideInBottom; /* Chrome, Safari, Opera */
-webkit-animation-duration: 0.25s; /* Chrome, Safari, Opera */
animation-name: wowza_player-SlideInBottom;
animation-duration: 0.25s;
}
#wowza_player-MediaController.wowza_player-Hide {
bottom:-6em;
-webkit-animation-name: wowza_player-SlideOutBottom; /* Chrome, Safari, Opera */
-webkit-animation-duration: 0.25s; /* Chrome, Safari, Opera */
animation-name: wowza_player-SlideOutBottom;
animation-duration: 0.25s;
}
#wowza_player-MediaController-PlayPauseButton.wowza_player-Hide {
display: none;
}
#wowza_player-MediaController-SeekBarContainer {
position:absolute;
top:0;
left:0;
right:0;
margin:0;
height:3em;
}
#wowza_player-MediaController-ControlsLeft {
position:absolute;
left:1em;
bottom:0.1em;
height:3em;
text-align:left;
}
.wowza_player-Medium #wowza_player-MediaController-ControlsLeft,
.wowza_player-Small #wowza_player-MediaController-ControlsLeft {
left:0;
}
#wowza_player-MediaController-ControlsCenter {
position:absolute;
left:10em;
right:10em;
bottom:0.1em;
height:3em;
text-align:center;
}
.wowza_player-Medium .wowza_player-VolumeHover #wowza_player-MediaController-ControlsCenter,
.wowza_player-Small .wowza_player-VolumeHover #wowza_player-MediaController-ControlsCenter {
display:none;
}
#wowza_player-MediaController-ControlsRight {
position:absolute;
right:1em;
bottom:0.1em;
height:3em;
text-align:right;
}
#wowza_player-MediaController-ControlsRight .wowza_player-MCButton {
float:right;
}
.wowza_player-Medium #wowza_player-MediaController-ControlsRight,
.wowza_player-Small #wowza_player-MediaController-ControlsRight {
right:0;
}
#wowza_player-MediaController-QuickRewindButton.wowza_player-MCButton,
#wowza_player-MediaController-QuickRewindButton.wowza_player-MCButton:visited,
#wowza_player-MediaController-QuickRewindButton.wowza_player-MCButton:active {
position:relative;
color:#ffffff;
}
#wowza_player-MediaController-QuickRewindButton.wowza_player-MCButton:hover {
color:#ffffff;
}
#wowza_player-Container #wowza_player-MediaController-QuickRewindSeconds {
position:absolute;
display:block;
top:0;
left:0;
text-decoration:none;
text-align:center;
font-size:70%;
height:3.6em;
line-height:3.8em;
width:3.6em;
}
#wowza_player-MediaController-QuickRewindSeconds.wowza_player-Hide {
display:none;
}
.wowza_player-Small #wowza_player-MediaController-QuickRewindButton {
display:none;
}
#wowza_player-MediaController-CurrentTimeLabel,
#wowza_player-MediaController-DurationLabel {
display:inline-block;
height:3em;
line-height:3em;
}
#wowza_player-MediaController-DurationLabel,
#wowza_player-MediaController-DurationLabel:hover,
#wowza_player-MediaController-DurationLabel:active,
#wowza_player-MediaController-DurationLabel:focus
{
right:6em;
color:#ffffff;
text-decoration:none;
font-weight:normal;
}
#wowza_player-MediaController-CurrentTimeLabel:hover,
#wowza_player-MediaController-CurrentTimeLabel:active,
#wowza_player-MediaController-CurrentTimeLabel:focus,
#wowza_player-MediaController-TimeSeparator:hover,
#wowza_player-MediaController-TimeSeparator:active,
#wowza_player-MediaController-TimeSeparator:focus,
#wowza_player-MediaController-VODIndicator.wowza_player-Show:hover #wowza_player-MediaController-CurrentTimeLabel,
#wowza_player-MediaController-VODIndicator.wowza_player-Show:hover #wowza_player-MediaController-TimeSeparator {
color:#ffffff;
}
.wowza_player-MCButton, .wowza_player-MCButton:active {
display: inline-block;
height: 0;
width: 2.5em;
padding-bottom: 2.5em;
margin:0.25em;
font-weight: bold;
color:#ffffff;
}
.wowza_player-MCButton.wowza_player-Hide {
display:none;
}
#wowza_player-MediaController-LiveIndicator {
position:relative;
height:3em;
line-height:3em;
}
#wowza_player-MediaController-LiveLabel,
#wowza_player-MediaController-LiveLabel:hover,
#wowza_player-MediaController-LiveLabel:active {
font-weight:bold;
text-decoration:none;
}
#wowza_player-MediaController-LiveIndicator.wowza_player-Show,
#wowza_player-MediaController-LiveIndicator.wowza_player-Show:active,
#wowza_player-MediaController-VODIndicator.wowza_player-Show,
#wowza_player-MediaController-VODIndicator.wowza_player-Show:active
{
color:#ffffff;
display:inline-block;
text-decoration:none;
}
#wowza_player-MediaController-LiveIndicator.wowza_player-Show:hover,
#wowza_player-MediaController-VODIndicator.wowza_player-Show:hover
{
color:#ffffff;
display:inline-block;
text-decoration:none;
}
#wowza_player-MediaController-LiveIndicator.wowza_player-Hide,
#wowza_player-MediaController-VODIndicator.wowza_player-Hide {
display:none;
}
#wowza_player-MediaController-LiveIndicatorLight {
float:left;
}
#wowza_player-MediaController-LiveIndicatorLabel
{
color:#ffffff;
text-decoration:none;
}
#wowza_player-Container .wowza_player-BitrateSelector {
display:inline-block;
font-size:75%;
float:right;
height:1.5em;