-
Notifications
You must be signed in to change notification settings - Fork 0
/
Major League Baseball Team Payrolls 1998-2019.html
7522 lines (7086 loc) · 676 KB
/
Major League Baseball Team Payrolls 1998-2019.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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0082)https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm -->
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252"><style class="darkreader darkreader--text" media="screen"></style><style class="darkreader darkreader--invert" media="screen"></style><style class="darkreader darkreader--inline" media="screen">[data-darkreader-inline-bgcolor] {
background-color: var(--darkreader-inline-bgcolor) !important;
}
[data-darkreader-inline-bgimage] {
background-image: var(--darkreader-inline-bgimage) !important;
}
[data-darkreader-inline-border] {
border-color: var(--darkreader-inline-border) !important;
}
[data-darkreader-inline-border-bottom] {
border-bottom-color: var(--darkreader-inline-border-bottom) !important;
}
[data-darkreader-inline-border-left] {
border-left-color: var(--darkreader-inline-border-left) !important;
}
[data-darkreader-inline-border-right] {
border-right-color: var(--darkreader-inline-border-right) !important;
}
[data-darkreader-inline-border-top] {
border-top-color: var(--darkreader-inline-border-top) !important;
}
[data-darkreader-inline-boxshadow] {
box-shadow: var(--darkreader-inline-boxshadow) !important;
}
[data-darkreader-inline-color] {
color: var(--darkreader-inline-color) !important;
}
[data-darkreader-inline-fill] {
fill: var(--darkreader-inline-fill) !important;
}
[data-darkreader-inline-stroke] {
stroke: var(--darkreader-inline-stroke) !important;
}
[data-darkreader-inline-outline] {
outline-color: var(--darkreader-inline-outline) !important;
}
[data-darkreader-inline-stopcolor] {
stop-color: var(--darkreader-inline-stopcolor) !important;
}</style><style class="darkreader darkreader--variables" media="screen">:root {
--darkreader-neutral-background: #202223;
--darkreader-neutral-text: #e3dfda;
--darkreader-selection-background: #0d59b5;
--darkreader-selection-text: #f2f0ed;
}</style><style class="darkreader darkreader--root-vars" media="screen"></style><script src="./Major League Baseball Team Payrolls 1998-2019_files/analytics.js.下载" type="text/javascript"></script>
<script type="text/javascript">window.addEventListener('DOMContentLoaded',function(){var v=archive_analytics.values;v.service='wb';v.server_name='wwwb-app222.us.archive.org';v.server_ms=770;archive_analytics.send_pageview({});});</script>
<script type="text/javascript" src="./Major League Baseball Team Payrolls 1998-2019_files/bundle-playback.js.下载" charset="utf-8"></script>
<script type="text/javascript" src="./Major League Baseball Team Payrolls 1998-2019_files/wombat.js.下载" charset="utf-8"></script>
<script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script>
<script type="text/javascript" src="./Major League Baseball Team Payrolls 1998-2019_files/ruffle.js.下载"></script>
<script type="text/javascript">
__wm.pc(0.001);
__wm.init("https://web.archive.org/web");
__wm.wombat("http://www.stevetheump.com/Payrolls.htm","20181024132313","https://web.archive.org/","web","https://web-static.archive.org/_static/",
"1540387393");
</script>
<link rel="stylesheet" type="text/css" href="./Major League Baseball Team Payrolls 1998-2019_files/banner-styles.css">
<link rel="stylesheet" type="text/css" href="./Major League Baseball Team Payrolls 1998-2019_files/iconochive.css">
<!-- End Wayback Rewrite JS Include -->
<meta content="en-us" http-equiv="Content-Language">
<meta content="Major League Baseball opening day team payrolls and salary figures for the years 1998-2019 and player salary statistics through 2019" name="description">
<meta content="ML baseball team payrolls 1998-2019, major league baseball salary statistics 1967-2019, baseball payrolls, baseball team payrolls, baseball opening day payrolls 1998-2018" name="keywords">
<meta name="robots" content="index,follow">
<meta content="Steve Orinick" name="author">
<meta name="viewport" content="width=device-width">
<title>Major League Baseball Team Payrolls 1998-2019</title>
<style type="text/css">
.style1 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
font-size: small;
font-style: normal;
text-align: center;
}
.style2 {
text-align: left;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
font-weight: normal;
font-style: normal;
}
.style3 {
font-family: Arial, Helvetica, sans-serif;
font-size: medium;
text-align: center;
color: #800000;
font-weight: bold;
font-style: italic;
}
.style4 {
font-family: Arial, Helvetica, sans-serif;
font-size: large;
color: #000080;
font-weight: bold;
font-style: italic;
text-align: center;
}
.style5 {
border-width: 1px;
text-align: center;
background-color: #C0C0C0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
font-weight: bold;
font-style: normal;
}
.style6 {
border-style: none;
border-width: thin;
background-color: #FBFBFD;
font-size: small;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: normal;
font-style: normal;
white-space: nowrap;
text-align: left;
}
.style7 {
text-align: left;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
font-weight: bold;
}
.style8 {
border-style: none;
border-width: thin;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-size: small;
font-weight: normal;
font-style: normal;
background-color: #FFFFFF;
}
.style9 {
color: #333;
vertical-align: top;
border: 1px solid #ddd;
margin: 0;
padding: 2px;
background-color: #DDDDDD;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-style: normal;
text-align: left;
font-weight: bold;
font-size: small;
}
.style11 {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: small;
font-weight: normal;
font-style: normal;
}
.style12 {
font-size: small;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: bold;
font-style: normal;
font-variant: normal;
text-align: center;
}
.style10 {
font-size: small;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-style: normal;
font-weight: normal;
border: 1px solid #84C1FF;
}
.style11 {
border: 1px solid #84C1FF;
}
</style>
<style class="darkreader darkreader--override" media="screen"></style><style data-id="immersive-translate-input-injected-css">.immersive-translate-input {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: 2147483647;
display: flex;
justify-content: center;
align-items: center;
}
.immersive-translate-attach-loading::after {
content: " ";
--loading-color: #f78fb6;
width: 6px;
height: 6px;
border-radius: 50%;
display: block;
margin: 12px auto;
position: relative;
color: white;
left: -100px;
box-sizing: border-box;
animation: immersiveTranslateShadowRolling 1.5s linear infinite;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-2000%, -50%);
z-index: 100;
}
.immersive-translate-loading-spinner {
vertical-align: middle !important;
width: 10px !important;
height: 10px !important;
display: inline-block !important;
margin: 0 4px !important;
border: 2px rgba(221, 244, 255, 0.6) solid !important;
border-top: 2px rgba(0, 0, 0, 0.375) solid !important;
border-left: 2px rgba(0, 0, 0, 0.375) solid !important;
border-radius: 50% !important;
padding: 0 !important;
-webkit-animation: immersive-translate-loading-animation 0.6s infinite linear !important;
animation: immersive-translate-loading-animation 0.6s infinite linear !important;
}
@-webkit-keyframes immersive-translate-loading-animation {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(359deg);
}
}
@keyframes immersive-translate-loading-animation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
.immersive-translate-input-loading {
--loading-color: #f78fb6;
width: 6px;
height: 6px;
border-radius: 50%;
display: block;
margin: 12px auto;
position: relative;
color: white;
left: -100px;
box-sizing: border-box;
animation: immersiveTranslateShadowRolling 1.5s linear infinite;
}
@keyframes immersiveTranslateShadowRolling {
0% {
box-shadow: 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
}
12% {
box-shadow: 100px 0 var(--loading-color), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
}
25% {
box-shadow: 110px 0 var(--loading-color), 100px 0 var(--loading-color), 0px 0 rgba(255, 255, 255, 0), 0px 0 rgba(255, 255, 255, 0);
}
36% {
box-shadow: 120px 0 var(--loading-color), 110px 0 var(--loading-color), 100px 0 var(--loading-color), 0px 0 rgba(255, 255, 255, 0);
}
50% {
box-shadow: 130px 0 var(--loading-color), 120px 0 var(--loading-color), 110px 0 var(--loading-color), 100px 0 var(--loading-color);
}
62% {
box-shadow: 200px 0 rgba(255, 255, 255, 0), 130px 0 var(--loading-color), 120px 0 var(--loading-color), 110px 0 var(--loading-color);
}
75% {
box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 var(--loading-color), 120px 0 var(--loading-color);
}
87% {
box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 130px 0 var(--loading-color);
}
100% {
box-shadow: 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0), 200px 0 rgba(255, 255, 255, 0);
}
}
.immersive-translate-search-recomend {
border: 1px solid #dadce0;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
position: relative;
font-size: 16px;
}
.immersive-translate-search-enhancement-en-title {
color: #4d5156;
}
/* dark */
@media (prefers-color-scheme: dark) {
.immersive-translate-search-recomend {
border: 1px solid #3c4043;
}
.immersive-translate-close-action svg {
fill: #bdc1c6;
}
.immersive-translate-search-enhancement-en-title {
color: #bdc1c6;
}
}
.immersive-translate-search-settings {
position: absolute;
top: 16px;
right: 16px;
cursor: pointer;
}
.immersive-translate-search-recomend::before {
/* content: " "; */
/* width: 20px; */
/* height: 20px; */
/* top: 16px; */
/* position: absolute; */
/* background: center / contain url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAxlBMVEUAAADpTInqTIjpSofnSIfqS4nfS4XqS4nqTIjsTYnrTInqTIroS4jvQIDqTIn////+/v7rSYjpTIn8/v7uaZzrTIr9/f3wfansWJL88/b85e73qc39+/v3xNnylrvrVI/98fb62Obva5/8+fr76vH4y9zpSIj74e353Oj1ocTzm77xhK/veKbtYpjsXJTqU47oTInxjrXyh7L99fj40eH2ttH1udD3sc31ssz1rMnykLXucqPtbqD85e/1xdn2u9DzqcXrUY6FaJb8AAAADnRSTlMA34BgIM8Q37/fz7+/EGOHcVQAAAGhSURBVDjLhZPncuowEEZFTW7bXVU7xsYYTO/p7bb3f6lICIOYJOT4h7/VnFmvrBFjrF3/CR/SajBHswafctG0Qg3O8O0Xa8BZ6uw7eLjqr30SofCDVSkemMinfL1ecy20r5ygR5zz3ArcAqJExPTPKhDENEmS30Q9+yo4lEQkqVTiIEAHCT10xWERRdH0Bq0aCOPZNDV3s0xaYce1lHEoDHU8wEh3qRJypNcTAeKUIjgKMeGLDoRCLVLTVf+Ownj8Kk6H9HM6QXPgYjQSB0F00EJEu10ILQrs/QeP77BSSr0MzLOyuJJQbnUoOOIUI/A8EeJk9E4YUHUWiRyTVKGgQUB8/3e/NpdGlfI+FMQyWsCBWyz4A/ZyHXyiiz0Ne5aGZssoxRmcChw8/EFKQ5JwwkUo3FRT5yXS7q+Y/rHDZmFktzpGMvO+5QofA4FPpEmGw+EWRCFvnaof7Zhe8NuYSLR0xErKLThUSs8gnODh87ssy6438yzbLzxl012HS19vfCf3CNhnbWOL1eEsDda+gDPUvri8tSZzNFrwIZf1NmNvqC1I/t8j7nYAAAAASUVORK5CYII='); */
}
.immersive-translate-search-title {}
.immersive-translate-search-title-wrapper {}
.immersive-translate-search-time {
font-size: 12px;
margin: 4px 0 24px;
color: #70757a;
}
.immersive-translate-expand-items {
display: none;
}
.immersive-translate-search-more {
margin-top: 16px;
font-size: 14px;
}
.immersive-translate-modal {
display: none;
position: fixed;
z-index: 2147483647;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
font-size: 15px;
}
.immersive-translate-modal-content {
background-color: #fefefe;
margin: 10% auto;
padding: 40px 24px 24px;
border: 1px solid #888;
border-radius: 10px;
width: 80%;
max-width: 270px;
font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu",
"Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol", "Noto Color Emoji";
position: relative
}
.immersive-translate-modal .immersive-translate-modal-content-in-input {
max-width: 500px;
}
.immersive-translate-modal-content-in-input .immersive-translate-modal-body {
text-align: left;
max-height: unset;
}
.immersive-translate-modal-title {
text-align: center;
font-size: 16px;
font-weight: 700;
color: #333333;
}
.immersive-translate-modal-body {
text-align: center;
font-size: 14px;
font-weight: 400;
color: #333333;
word-break: break-all;
margin-top: 24px;
}
@media screen and (max-width: 768px) {
.immersive-translate-modal-body {
max-height: 250px;
overflow-y: auto;
}
}
.immersive-translate-close {
color: #666666;
position: absolute;
right: 16px;
top: 16px;
font-size: 20px;
font-weight: bold;
}
.immersive-translate-close:hover,
.immersive-translate-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.immersive-translate-modal-footer {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 24px;
}
.immersive-translate-btn {
width: fit-content;
color: #fff;
background-color: #ea4c89;
border: none;
font-size: 16px;
margin: 0 8px;
padding: 9px 30px;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background-color 0.3s ease;
}
.immersive-translate-btn:hover {
background-color: #f082ac;
}
.immersive-translate-cancel-btn {
/* gray color */
background-color: rgb(89, 107, 120);
}
.immersive-translate-cancel-btn:hover {
background-color: hsl(205, 20%, 32%);
}
.immersive-translate-action-btn {
background-color: transparent;
color: #EA4C89;
border: 1px solid #EA4C89
}
.immersive-translate-btn svg {
margin-right: 5px;
}
.immersive-translate-link {
cursor: pointer;
user-select: none;
-webkit-user-drag: none;
text-decoration: none;
color: #007bff;
-webkit-tap-highlight-color: rgba(0, 0, 0, .1);
}
.immersive-translate-primary-link {
cursor: pointer;
user-select: none;
-webkit-user-drag: none;
text-decoration: none;
color: #ea4c89;
-webkit-tap-highlight-color: rgba(0, 0, 0, .1);
}
.immersive-translate-modal input[type="radio"] {
margin: 0 6px;
cursor: pointer;
}
.immersive-translate-modal label {
cursor: pointer;
}
.immersive-translate-close-action {
position: absolute;
top: 2px;
right: 0px;
cursor: pointer;
}</style></head>
<body "background-color:="" #ffff00"="" style="background-color: #FFFF99"><!-- BEGIN WAYBACK TOOLBAR INSERT -->
<script>__wm.rw(0);</script>
<div id="wm-ipp-base" lang="en" style="display: block; direction: ltr;"><template shadowrootmode="closed"><div id="wm-ipp" style="position:fixed;left:0;top:0;right:0;" class="">
<div id="donato" style="position:relative;width:100%;">
<div id="donato-base">
<iframe id="donato-if" src="https://archive.org/includes/donate.php?as_page=1&platform=wb&referer=https%3A//web.archive.org/web/20181024132313/http%3A//www.stevetheump.com/Payrolls.htm" scrolling="no" frameborder="0" style="width:100%; height:100%">
</iframe>
</div>
</div><div id="wm-ipp-inside">
<div id="wm-toolbar" style="position:relative;display:flex;flex-flow:row nowrap;justify-content:space-between;">
<div id="wm-logo" style="/*width:110px;*/padding-top:12px;">
<a href="https://web.archive.org/web/" title="Wayback Machine home page"><img src="https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-200.png" srcset="https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-100.png, https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-150.png 1.5x, https://web-static.archive.org/_static/images/toolbar/wayback-toolbar-logo-200.png 2x" alt="Wayback Machine" style="width:100px" border="0"></a>
</div>
<div class="c" style="display:flex;flex-flow:column nowrap;justify-content:space-between;flex:1;">
<form class="u" style="display:flex;flex-direction:row;flex-wrap:nowrap;" target="_top" method="get" action="https://web.archive.org/web/submit" name="wmtb" id="wmtb"><input type="text" name="url" id="wmtbURL" value="http://www.stevetheump.com/Payrolls.htm" onfocus="this.focus();this.select();" style="flex:1;" autocomplete="off"><input type="hidden" name="type" value="replay"><input type="hidden" name="date" value="20181024132313"><input type="submit" value="Go">
</form>
<div style="display:flex;flex-flow:row nowrap;align-items:flex-end;">
<div class="s" id="wm-nav-captures" style="flex:1;"><a class="t" href="https://web.archive.org/web/*/http://www.stevetheump.com/Payrolls.htm" title="See a list of every capture for this URL">302 captures</a><div class="r" title="Timespan for captures of this URL">12 May 2008 - 10 May 2024</div></div>
<div class="k">
<a href="https://web.archive.org/web/19960601000000/http://www.stevetheump.com/Payrolls.htm" id="wm-graph-anchor">
<div id="wm-ipp-sparkline" title="Explore captures for this URL" style="position: relative">
<canvas id="wm-sparkline-canvas" width="725" height="27" border="0"></canvas>
<div class="yt" style="display: none; width: 25px; height: 27px; left: 0px;"></div><div class="mt" style="display: none; width: 2px; height: 27px; left: 11px;"></div></div>
</a>
</div>
</div>
</div>
<div class="n">
<table>
<tbody>
<!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR -->
<tr class="m">
<td class="b" nowrap="nowrap"><a href="https://web.archive.org/web/20180827211433/http://stevetheump.com/Payrolls.htm" title="27 Aug 2018"><strong>Aug</strong></a></td>
<td class="c" id="displayMonthEl" title="You are here: 13:23:13 Oct 24, 2018">Oct</td>
<td class="f" nowrap="nowrap"><a href="https://web.archive.org/web/20181206020254/http://www.stevetheump.com:80/Payrolls.htm" title="06 Dec 2018"><strong>Dec</strong></a></td>
</tr>
<!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR -->
<tr class="d">
<td class="b" nowrap="nowrap"><a href="https://web.archive.org/web/20181020103658/http://www.stevetheump.com:80/Payrolls.htm" title="10:36:58 Oct 20, 2018"><img src="https://web-static.archive.org/_static/images/toolbar/wm_tb_prv_on.png" alt="Previous capture" width="14" height="16" border="0"></a></td>
<td class="c" id="displayDayEl" style="width:34px;font-size:22px;white-space:nowrap;" title="You are here: 13:23:13 Oct 24, 2018">24</td>
<td class="f" nowrap="nowrap"><a href="https://web.archive.org/web/20181106170108/http://www.stevetheump.com/Payrolls.htm" title="17:01:08 Nov 06, 2018"><img src="https://web-static.archive.org/_static/images/toolbar/wm_tb_nxt_on.png" alt="Next capture" width="14" height="16" border="0"></a></td>
</tr>
<!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR -->
<tr class="y">
<td class="b" nowrap="nowrap"><a href="https://web.archive.org/web/20171019024012/http://www.stevetheump.com:80/Payrolls.htm" title="19 Oct 2017"><strong>2017</strong></a></td>
<td class="c" id="displayYearEl" title="You are here: 13:23:13 Oct 24, 2018">2018</td>
<td class="f" nowrap="nowrap"><a href="https://web.archive.org/web/20191103090241/http://www.stevetheump.com:80/Payrolls.htm" title="03 Nov 2019"><strong>2019</strong></a></td>
</tr>
</tbody>
</table>
</div>
<div class="r" style="display:flex;flex-flow:column nowrap;align-items:flex-end;justify-content:space-between;">
<div id="wm-btns" style="text-align:right;height:23px;">
<span class="xxs">
<div id="wm-save-snapshot-success">success</div>
<div id="wm-save-snapshot-fail">fail</div>
<a id="wm-save-snapshot-open" href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#" title="Share via My Web Archive" style="display: none;">
<span class="iconochive-web"></span>
</a>
<a href="https://archive.org/account/login.php" title="Sign In" id="wm-sign-in" style="display: inline-block;">
<span class="iconochive-person"></span>
</a>
<span id="wm-save-snapshot-in-progress" class="iconochive-web" style="display: none;"></span>
</span>
<a class="xxs" href="http://faq.web.archive.org/" title="Get some help using the Wayback Machine" style="top:-6px;"><span class="iconochive-question" style="color:rgb(87,186,244);font-size:160%;"></span></a>
<a id="wm-tb-close" href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#close" style="top:-2px;" title="Close the toolbar"><span class="iconochive-remove-circle" style="color:#888888;font-size:240%;"></span></a>
</div>
<div id="wm-share" class="xxs">
<a href="https://web.archive.org/web/20181024132313/http://web.archive.org/screenshot/http://www.stevetheump.com/Payrolls.htm" id="wm-screenshot" title="screenshot" style="visibility: hidden;">
<span class="wm-icon-screen-shot"></span>
</a>
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#" id="wm-video" title="video">
<span class="iconochive-movies"></span>
</a>
<a id="wm-share-facebook" href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#" data-url="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm" title="Share on Facebook" style="margin-right:5px;" target="_blank"><span class="iconochive-facebook" style="color:#3b5998;font-size:160%;"></span></a>
<a id="wm-share-twitter" href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#" data-url="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm" title="Share on Twitter" style="margin-right:5px;" target="_blank"><span class="iconochive-twitter" style="color:#1dcaff;font-size:160%;"></span></a>
</div>
<div style="padding-right:2px;text-align:right;white-space:nowrap;">
<a id="wm-expand" class="wm-btn wm-closed" href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#expand" onclick="__wm.ex(event);return false;"><span id="wm-expand-icon" class="iconochive-down-solid"></span> <span class="xxs" style="font-size:80%;">About this capture</span></a>
</div>
</div>
</div>
<div id="wm-capinfo" style="border-top:1px solid #777;display:none; overflow: hidden">
<div id="wm-capinfo-notice" source="api"></div>
<div id="wm-capinfo-collected-by">
<div style="background-color:#666;color:#fff;font-weight:bold;text-align:center">COLLECTED BY</div>
<div style="padding:3px;position:relative" id="wm-collected-by-content">
<div style="display:inline-block;vertical-align:top;width:50%;">
<span class="c-logo" style="background-image:url(https://archive.org/services/img/archiveteam);"></span>
Organization: <a style="color:#33f;" href="https://archive.org/details/archiveteam" target="_new"><span class="wm-title">Archive Team</span></a>
<div style="max-height:75px;overflow:hidden;position:relative;">
<div style="position:absolute;top:0;left:0;width:100%;height:75px;background:linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 90%,rgba(255,255,255,255) 100%);"></div>
<img align="right" src="http://archiveteam.org/images/e/e6/Archiveteam.jpg" width="200"> Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
<p>
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
</p><p>
The main site for Archive Team is at <a href="http://www.archiveteam.org/">archiveteam.org</a> and contains up to the date information on various projects, manifestos, plans and walkthroughs.
</p><p>
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the <a href="http://archive.org/web/web.php">Wayback Machine</a>, providing a path back to lost websites and work.
</p><p>
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
</p><p>
<b>The Archive Team Panic Downloads</b> are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.
</p><p>
</p></div>
</div>
<div style="display:inline-block;vertical-align:top;width:49%;">
<span class="c-logo" style="background-image:url(https://archive.org/services/img/archivebot)"></span>
<div>Collection: <a style="color:#33f;" href="https://archive.org/details/archivebot" target="_new"><span class="wm-title">ArchiveBot: The Archive Team Crowdsourced Crawler</span></a></div>
<div style="max-height:75px;overflow:hidden;position:relative;">
<div style="position:absolute;top:0;left:0;width:100%;height:75px;background:linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,0) 90%,rgba(255,255,255,255) 100%);"></div>
ArchiveBot is an IRC bot designed to automate the archival of smaller websites (e.g. up to a few hundred thousand URLs). You give it a URL to start at, and it grabs all content under that URL, records it in a WARC, and then uploads that WARC to ArchiveTeam servers for eventual injection into the Internet Archive (or other archive sites).
<p>
To use ArchiveBot, drop by #archivebot on EFNet. To interact with ArchiveBot, you issue commands by typing it into the channel. Note you will need channel operator permissions in order to issue archiving jobs. The dashboard shows the sites being downloaded currently.
</p><p>
There is a dashboard running for the archivebot process at <a href="http://www.archivebot.com/">http://www.archivebot.com</a>.
</p><p>
ArchiveBot's source code can be found at <a href="https://github.com/ArchiveTeam/ArchiveBot">https://github.com/ArchiveTeam/ArchiveBot</a>.
</p></div>
</div>
</div>
</div>
<div id="wm-capinfo-timestamps">
<div style="background-color:#666;color:#fff;font-weight:bold;text-align:center" title="Timestamps for the elements of this page">TIMESTAMPS</div>
<div>
<div id="wm-capresources" style="margin:0 5px 5px 5px;max-height:250px;overflow-y:scroll !important"></div>
<div id="wm-capresources-loading" style="text-align:left;margin:0 20px 5px 5px;display:none"><img src="https://web-static.archive.org/_static/images/loading.gif" alt="loading"></div>
</div>
</div>
</div></div></div><link rel="stylesheet" type="text/css" href="./Major League Baseball Team Payrolls 1998-2019_files/banner-styles.css"><link rel="stylesheet" type="text/css" href="./Major League Baseball Team Payrolls 1998-2019_files/iconochive.css"><div class="wb-autocomplete-suggestions " style="left: 15px; top: 123px; width: 733px;"></div></template>
</div><div id="wm-ipp-print">The Wayback Machine - https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm</div>
<script type="text/javascript">//<![CDATA[
__wm.bt(725,27,25,2,"web","http://www.stevetheump.com/Payrolls.htm","20181024132313",1996,"https://web-static.archive.org/_static/",["https://web-static.archive.org/_static/css/banner-styles.css?v=S1zqJCYt","https://web-static.archive.org/_static/css/iconochive.css?v=qtvMKcIJ"], false);
__wm.rw(1);
//]]></script>
<!-- END WAYBACK TOOLBAR INSERT -->
<div>
<script type="text/javascript">var MenuLinkedBy="AllWebMenus [4]",awmMenuName="menu",awmBN="664";awmAltUrl="";</script><script src="./Major League Baseball Team Payrolls 1998-2019_files/menu.js.下载" type="text/javascript"></script><script src="./Major League Baseball Team Payrolls 1998-2019_files/awmlib2.js.下载"></script><script type="text/javascript">awmBuildMenu();</script><style>.awmTR {background-color:transparent !important;border:none;} .awmTB, .awmTB td{table-layout:auto;border-collapse:separate;padding:0;margin:0;border:none} .awmTB, .awmTB tbody{background-color:transparent}.AWMST0 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 12px Verdana !important; color:#800000;background-color:transparent;border-style:outset; border-width:1px; border-color:#000000; cursor:default;z-index:2}.AWMST0 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD0 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 12px Verdana !important; color:#800000;background-color:transparent;}.AWMSTBG0 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:outset; border-width:1px; border-color:#000000;background-color:#FFFFFF;z-index:auto;}.AWMSTBG0 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG0 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#FFFFFF;border-style:outset;border-width:1px;border-color:#000000;z-index:2} @media print {.AWMSTCBG0{display:none}}.AWMST1 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 12px Verdana !important; color:#800000;background-color:transparent;border-style:outset; border-width:1px; border-color:#000000; cursor:default;z-index:2}.AWMST1 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD1 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 12px Verdana !important; color:#800000;background-color:transparent;}.AWMSTBG1 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:outset; border-width:1px; border-color:#000000;background-color:#FFFFFF;z-index:auto;}.AWMSTBG1 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG1 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#FFFFFF;border-style:outset;border-width:1px;border-color:#000000;z-index:2} @media print {.AWMSTCBG1{display:none}}.AWMST2 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:hidden;text-align:left; background-color:transparent;border-style:solid; border-width:1px; border-color:#190EAC; cursor:default;z-index:2}.AWMST2 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD2 {box-sizing:content-box;border-style:none;border-width:0;text-align:left; background-color:transparent;}.AWMSTBG2 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:solid; border-width:1px; border-color:#190EAC;background-color:#CDCACA;z-index:auto;}.AWMSTBG2 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG2 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:hidden;background-color:#CDCACA;border-style:solid;border-width:1px;border-color:#190EAC;z-index:2} @media print {.AWMSTCBG2{display:none}}.AWMST3 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST3 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD3 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;}.AWMSTBG3 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG3 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG3 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG3{display:none}}.AWMST4 {box-sizing:content-box;max-width:none;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST4 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD4 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;}.AWMSTBG4 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG4 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG4 {box-sizing:content-box;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG4{display:none}}.AWMST5 {box-sizing:content-box;max-width:none;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST5 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD5 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;}.AWMSTBG5 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG5 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG5 {box-sizing:content-box;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG5{display:none}}.AWMST6 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:default;z-index:2}.AWMST6 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD6 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;}.AWMSTBG6 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG6 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG6 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG6{display:none}}.AWMST7 {box-sizing:content-box;max-width:none;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:default;z-index:2}.AWMST7 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD7 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;}.AWMSTBG7 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG7 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG7 {box-sizing:content-box;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG7{display:none}}.AWMST8 {box-sizing:content-box;max-width:none;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:default;z-index:2}.AWMST8 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD8 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;}.AWMSTBG8 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG8 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG8 {box-sizing:content-box;position:absolute;box-shadow:rgba(48,48,48,0.25) 3px 3px 2px 1px;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG8{display:none}}.AWMST9 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:hidden;text-align:left; background-color:transparent;border-style:solid; border-width:2px; border-color:#000084; cursor:default;z-index:2}.AWMST9 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD9 {box-sizing:content-box;border-style:none;border-width:0;text-align:left; background-color:transparent;}.AWMSTBG9 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:solid; border-width:2px; border-color:#000084;background-color:#F30B1C;z-index:auto;}.AWMSTBG9 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG9 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:hidden;background-color:#F30B1C;border-style:solid;border-width:2px;border-color:#000084;z-index:2} @media print {.AWMSTCBG9{display:none}}.AWMST10 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST10 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD10 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;}.AWMSTBG10 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG10 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG10 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG10{display:none}}.AWMST11 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST11 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD11 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;}.AWMSTBG11 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG11 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG11 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG11{display:none}}.AWMST12 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;border-style:outset; border-width:3px; border-color:#31659C; cursor:pointer;z-index:2}.AWMST12 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD12 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;}.AWMSTBG12 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:outset; border-width:3px; border-color:#31659C;background-color:#000084;z-index:auto;}.AWMSTBG12 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG12 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:outset;border-width:3px;border-color:#31659C;z-index:2} @media print {.AWMSTCBG12{display:none}}.AWMST13 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 3mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:default;z-index:2}.AWMST13 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD13 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 3mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;}.AWMSTBG13 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG13 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG13 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG13{display:none}}.AWMST14 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:default;z-index:2}.AWMST14 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD14 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFF00;background-color:transparent;}.AWMSTBG14 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG14 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG14 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG14{display:none}}.AWMST15 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;border-style:outset; border-width:3px; border-color:#31659C; cursor:default;z-index:2}.AWMST15 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD15 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF0012;background-color:transparent;}.AWMSTBG15 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:outset; border-width:3px; border-color:#31659C;background-color:#000084;z-index:auto;}.AWMSTBG15 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG15 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:outset;border-width:3px;border-color:#31659C;z-index:2} @media print {.AWMSTCBG15{display:none}}.AWMST16 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:hidden;text-align:left; background-color:transparent;border-style:solid; border-width:2px; border-color:#1B4186; cursor:default;z-index:2}.AWMST16 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD16 {box-sizing:content-box;border-style:none;border-width:0;text-align:left; background-color:transparent;}.AWMSTBG16 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:solid; border-width:2px; border-color:#1B4186;background-color:#FF0012;z-index:auto;}.AWMSTBG16 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG16 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:hidden;background-color:#FF0012;border-style:solid;border-width:2px;border-color:#1B4186;z-index:2} @media print {.AWMSTCBG16{display:none}}.AWMST17 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;border-style:none; border-width:0px; border-color:#000000; cursor:pointer;z-index:2}.AWMST17 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD17 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FFFFFF;background-color:transparent;}.AWMSTBG17 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:none; border-width:0px; border-color:#000000;background-color:#000084;z-index:auto;}.AWMSTBG17 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG17 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#000084;border-style:none;border-width:0px;border-color:#000000;z-index:2} @media print {.AWMSTCBG17{display:none}}.AWMST18 {box-sizing:content-box;max-width:none;position:absolute;border-radius:0px / 0px;width:100%;visibility:inherit;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF000C;background-color:transparent;border-style:outset; border-width:3px; border-color:#31659C; cursor:pointer;z-index:2}.AWMST18 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTTD18 {box-sizing:content-box;border-style:none;border-width:0;text-align:center; font:bold 4mm Arial, Helvetica, sans-serif !important; color:#FF000C;background-color:transparent;}.AWMSTBG18 {box-sizing:content-box;position:absolute;max-width:none;border-radius:0px / 0px;left:0;top:0;border-style:outset; border-width:3px; border-color:#31659C;background-color:#31659C;z-index:auto;}.AWMSTBG18 tbody {box-sizing:content-box;background-color:transparent;}.AWMSTCBG18 {box-sizing:content-box;position:absolute;border-radius:0px / 0px;line-height:normal;visibility:inherit;background-color:#31659C;border-style:outset;border-width:3px;border-color:#31659C;z-index:2} @media print {.AWMSTCBG18{display:none}}</style><div id="AWMEL0" class="AWMSTCBG2 noprint" style="box-sizing: content-box; padding: 1px; left: 82px; top: 10px; opacity: 1; width: 858px; height: 25px; z-index: 3; visibility: visible;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"><div onscroll="scW=gScW();" id="AWMEL0_A" style="visibility: inherit; position: relative; padding: 0px; margin: 0px; border: none; width: 858px; height: 25px; overflow: visible;"><table style="display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_0" class="AWMST0" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD0" style="vertical-align:middle;padding:0px 0px 0px 0px;padding-left:0px;font:bold 12px Verdana !important; color:#800000;white-space:nowrap;"> Steve's Menu </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_1" class="AWMST1" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD1" style="vertical-align:middle;padding:0px 0px 0px 0px;padding-left:0px;font:bold 12px Verdana !important; color:#800000;white-space:nowrap;">Steve's Menu</td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_2" class="AWMST1" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD1" style="vertical-align:middle;padding:0px 0px 0px 0px;padding-left:0px;font:bold 12px Verdana !important; color:#800000;white-space:nowrap;">Steve's Menu</td></tr></tbody></table><table class="AWMSTBG0" style="display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG1" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG1" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:0px;top:0px;width:107px;height:25px;" id="AWMEL1_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL1_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 0px; top: 0px; width: 107px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_0" class="AWMST3" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD3" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Home </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_1" class="AWMST4" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD4" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Home </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_2" class="AWMST5" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD5" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Home </td></tr></tbody></table><table class="AWMSTBG3" style="display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG4" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG5" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:108px;top:0px;width:56px;height:25px;" id="AWMEL2_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL2_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: pointer; z-index: 4; left: 108px; top: 0px; width: 56px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Umpires </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Umpires </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Umpires </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:165px;top:0px;width:72px;height:25px;" id="AWMEL3_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL3_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 165px; top: 0px; width: 72px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Rules </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Rules </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Rules </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:238px;top:0px;width:55px;height:25px;" id="AWMEL26_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL26_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 238px; top: 0px; width: 55px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Mechanics </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Mechanics </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Mechanics </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:294px;top:0px;width:85px;height:25px;" id="AWMEL55_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL55_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 294px; top: 0px; width: 85px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> History </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> History </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> History </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:380px;top:0px;width:66px;height:25px;" id="AWMEL69_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL69_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 380px; top: 0px; width: 66px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Players </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Players </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Players </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:447px;top:0px;width:67px;height:25px;" id="AWMEL90_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL90_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 447px; top: 0px; width: 67px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Awards/Leaders </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Awards/Leaders </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Awards/Leaders </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:515px;top:0px;width:125px;height:25px;" id="AWMEL128_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL128_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 515px; top: 0px; width: 125px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> General </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> General </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> General </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:641px;top:0px;width:69px;height:25px;" id="AWMEL136_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL136_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 641px; top: 0px; width: 69px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Quotes </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Quotes </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Quotes </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:711px;top:0px;width:64px;height:25px;" id="AWMEL148_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL148_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 711px; top: 0px; width: 64px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><table style="display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_0" class="AWMST6" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD6" style="vertical-align:middle;padding:2px 2px 2px 2px;padding-left:2px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFFFF;white-space:nowrap;"> Site Links </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_1" class="AWMST7" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD7" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FFFF00;white-space:nowrap;"> Site Links </td></tr></tbody></table><table style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_2" class="AWMST8" title="" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onclick="void(0);" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td class="AWMSTTD8" style="vertical-align:middle;padding:1px 1px 1px 1px;padding-left:1px;font:bold 3mm Verdana, Arial, Helvetica, sans-serif !important; color:#FF0012;white-space:nowrap;"> Site Links </td></tr></tbody></table><table class="AWMSTBG6" style="display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_0a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG7" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_1a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><table class="AWMSTBG8" style="visibility:hidden;display:table;border-collapse:separate;padding:0;margin:0;left:776px;top:0px;width:82px;height:25px;" id="AWMEL157_2a" border="0" cellpadding="0" cellspacing="0"><tbody><tr class="awmTR"><td style="font-size:0 !important;background-color:transparent;padding:0;border:none"><img style="margin:0;width:1px;height:1px;border-style:none" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif"></td></tr></tbody></table><img tabindex="-1" id="AWMEL157_4" title="" style="outline: none; border: none; position: absolute; margin: 0px; cursor: default; z-index: 4; left: 776px; top: 0px; width: 82px; height: 25px; visibility: inherit;" src="./Major League Baseball Team Payrolls 1998-2019_files/dot.gif" onmouseover="this.pi.onmouseover();return true" onmouseout="this.pi.onmouseout();" onmousedown="this.pi.onmousedown();" onclick="void(0);" alt=""><span style="font-size:0 !important"> </span></div></div><div id="AWMEL0_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL4" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL4_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL10" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL10_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL17" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL17_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL27" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL27_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL33" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL33_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL40" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL40_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL44" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL44_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL49" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL49_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL56" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL56_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL61" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL61_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL70" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL70_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL83" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL83_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL91" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL91_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL93" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL93_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL115" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL115_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL119" class="AWMSTCBG16 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL119_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL129" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL129_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL137" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL137_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL149" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL149_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><div id="AWMEL158" class="AWMSTCBG9 noprint" style="-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;padding:0px 0px 0px 0px;left:-3000px;top:-3000px;opacity:1;-moz-opacity:1;width:0px;" onmouseover="this.prc.onmouseover();" onmouseout="this.prc.onmouseout();" onclick="void(0);"></div><div id="AWMEL158_Z" style="visibility:hidden;line-height:normal;position:absolute;width:0;height:0;border:1px solid #808080;font-size:0 !important;margin:0;padding:0"><span style="font-size:0 !important;margin:0;padding:0"></span></div><script type="text/javascript">
<!--
var message="Function Disabled!";function clickIE4(){if(event.button==2){alert(message);return false;}}function clickNS4(e){if(document.layers||document.getElementById&&!document.all){if(e.which==2||e.which==3){alert(message);return false;}}}if(document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}else if(document.all&&!document.getElementById){document.onmousedown=clickIE4;}document.oncontextmenu=new Function("alert(message);return false")
//--></script><noscript>This page uses Javascript. Your browser either doesn't support Javascript or you have it turned off.
To see this page as it is meant to appear please use a Javascript enabled browser.</noscript>
<p> </p>
<h1 class="style4"><a name="top"></a>MLB Team Payrolls</h1>
<center><table cellspacing="1" class="style1" style="width: 859px"><tbody><tr>
<td class="style1" style="width: 429px"><p>
<img alt="Stock Ticker" height="22" src="./Major League Baseball Team Payrolls 1998-2019_files/stock_tkr.gif" width="385"></p></td>
<td class="style1" style="width: 429px">
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#salary_stats">Salary Stats 1967-2019</a><br>
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Millionaires.htm">
Top ML Player Salaries</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/luxury_tax.htm">Baseball's Luxury Tax</a></td>
</tr></tbody></table></center>
<p class="style1"><a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2017_payroll">2017 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2016_payroll">2016 Payrolls</a><br>
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2015_payroll">2015 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2014_payroll">2014 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2013_payroll">2013 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2012payroll">2012 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2011payroll">2011 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2010payroll">2010 Payrolls</a> /
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2009payroll">2009 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2008payroll">2008 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2007payroll">2007 Payrolls</a><br>
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2006payroll">2006 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2005payroll">2005 Payrolls</a> /
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2004payroll">2004 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2003payroll">2003 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2002payroll">2002 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2001payroll">
2001 Payrolls</a> / <a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#2000payroll">2000 Payrolls</a> /
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#team%20payrolls">1999 Payrolls</a> /
<a href="https://web.archive.org/web/20181024132313/http://www.stevetheump.com/Payrolls.htm#98_payroll">1998 Payrolls</a></p>
<p class="style1"> <a href="https://web.archive.org/web/20181024132313/http://www.facebook.com/StevetheUmp" target="_blank"><img alt="Facebook" class="style3" height="28" src="./Major League Baseball Team Payrolls 1998-2019_files/facebook.png" width="28"></a><br>
Like on Facebook</p>
<h2 class="style3"><a name="2017_payroll0"></a>2018 MLB Opening Day Payrolls</h2>
<center>
<table border="1" cellpadding="2" cellspacing="1" class="style10">
<thead>
<tr class="style5">
<th>RANK</th>
<th>TEAM</th>
<th>Payroll</th>
</tr></thead>
<tbody><tr>
<td>1</td>
<td>Boston Red Sox</td>
<td>$235.65M</td></tr>
<tr>
<td>2</td>
<td>San Francisco Giants</td>
<td>$208.51M</td></tr>
<tr>
<td>3</td>
<td>Los Angeles Dodgers</td>
<td>$186.14M</td></tr>
<tr>
<td>4</td>
<td>Chicago Cubs</td>
<td>$183.46M</td></tr>
<tr><td>5</td>
<td>Washington Nationals</td>
<td>$181.59M</td></tr>
<tr><td>6</td>
<td>Los Angeles Angels</td>
<td>$175.1M</td></tr>
<tr>
<td>7</td>
<td>New York Yankees</td>
<td>$168.54M</td></tr>
<tr>
<td>8</td>
<td>Seattle Mariners</td>
<td>$162.48M</td></tr>
<tr>
<td>9</td>
<td>Toronto Blue Jays</td>
<td>$162.316M</td></tr>
<tr>
<td>10</td>
<td>St. Louis Cardinals</td>
<td>$161.01M</td>
</tr>
<tr>
<td>11</td>
<td>Houston Astros</td>
<td>$160.04M</td></tr>
<tr>
<td>12</td>
<td>New York Mets</td>
<td>$154.61M</td></tr>
<tr>
<td>13</td>
<td>Texas Rangers</td>
<td>$144.0M</td></tr>
<tr>
<td>14</td>
<td>Baltimore Orioles</td>
<td>$143.09M</td></tr>
<tr>
<td>15</td>
<td>Colorado Rockies</td>
<td>$141.34M</td></tr>
<tr>
<td>16</td>
<td>Cleveland Indians</td>
<td>$134.35M</td></tr>
<tr>
<td>17</td>
<td>Arizona Diamondbacks</td>
<td>$132.5M</td></tr>
<tr>
<td>18</td>
<td>Minnesota Twins</td>
<td>$131.91M</td></tr>
<tr>
<td>19</td>
<td>Detroit Tigers</td>
<td>$129.92M</td></tr>
<tr>
<td>20</td>
<td>Kansas City Royals</td>
<td>$129.92M</td></tr>
<tr>
<td>21</td>
<td>Atlanta Braves</td>
<td>$120.54M</td></tr>
<tr>
<td>22</td>
<td>Cincinnati Reds</td>
<td>$101.19M</td></tr>
<tr>
<td>23</td>
<td>Miami Marlins</td>
<td>$98.64M</td></tr>
<tr>
<td>24</td>
<td>Philadelphia Phillies</td>
<td>$96.85M</td></tr>
<tr>
<td>25</td>
<td>San Diego Padres</td>
<td>$96.13M</td></tr>
<tr>
<td>26</td><td>
Milwaukee Brewers</td>
<td>$90.24M</td></tr>
<tr>
<td>27</td>
<td>Pittsburgh Pirates</td>
<td>$87.88M</td></tr>
<tr>
<td>28</td>
<td>Tampa Bay Rays</td>
<td>$78.73M</td></tr>
<tr>
<td>29</td>
<td>Chicago White Sox</td>
<td>$72.18M</td></tr>
<tr>
<td>30</td>
<td>Oakland Athletics</td>
<td>$68.53M</td>
</tr></tbody></table></center>
<h2 class="style3"><a name="2017_payroll"></a>2017 MLB Opening Day Payrolls</h2><center>
<table cellpadding="2" cellspacing="1" class="style10">
<tbody><tr class="style5">
<td class="center">Rank</td>
<td>Team</td>
<td>25 Man</td>
<td>Disabled List</td>
<td>Total Payroll</td></tr>
<tr>
<td class="style11">1</td>
<td class="style11">Los Angeles Dodgers</td>
<td class="style11">$155,887,854</td>
<td class="style11">$37,354,166</td>
<td class="style11">$242,065,828</td></tr>
<tr>
<td class="style11">2</td>
<td class="style11">New York Yankees</td>
<td class="style11">$168,045,699</td>
<td class="style11">$5,644,000</td>
<td class="style11">$201,539,699</td></tr>
<tr>
<td class="style11">3</td>
<td class="style11">Boston Red Sox</td>
<td class="style11">$136,780,500</td>
<td class="style11">$38,239,250</td>
<td class="style11">$199,805,178</td></tr>
<tr>
<td class="style11">4</td>
<td class="style11">Detroit Tigers</td>
<td class="style11">$168,500,600</td>
<td class="style11">$11,750,000</td>
<td class="style11">$199,750,600</td></tr>
<tr>
<td class="style11">5</td>
<td class="style11">Toronto Blue Jays</td>
<td class="style11">$159,175,968</td>
<td class="style11">$2,169,400</td>
<td class="style11">$177,795,368</td></tr>
<tr>
<td class="style11">6</td>
<td class="style11">Texas Rangers</td>
<td class="style11">$115,162,703</td>
<td class="style11">$39,136,360</td>
<td class="style11">$175,909,063</td></tr>
<tr>
<td class="style11">7</td>
<td class="style11">San Francisco Giants</td>
<td class="style11">$169,504,611</td>
<td class="style11">$2,500,000</td>
<td class="style11">$172,354,611</td></tr>
<tr>
<td class="style11">8</td>
<td class="style11">Chicago Cubs</td>
<td class="style11">$170,189,880</td>
<td class="style11">$2,000,000</td>
<td class="style11">$172,189,880</td></tr>
<tr>
<td class="style11">9</td>
<td class="style11">Washington Nationals</td>
<td class="style11">$163,111,918</td>
<td class="style11">$535,000</td>
<td class="style11">$167,846,918</td></tr>
<tr>
<td class="style11">10</td>
<td class="style11">Baltimore Orioles</td>
<td class="style11">$142,066,615</td>
<td class="style11">$19,501,668</td>
<td class="style11">$163,676,616</td></tr>
<tr>
<td class="style11">11</td>
<td class="style11">Los Angeles Angels of Anaheim</td>
<td class="style11">$116,844,833</td>
<td class="style11">$17,120,500</td>
<td class="style11">$160,375,333</td></tr>
<tr>
<td class="style11">12</td>
<td class="style11">New York Mets</td>
<td class="style11">$120,870,470</td>
<td class="style11">$26,141,990</td>
<td class="style11">$155,187,460</td></tr>
<tr>
<td class="style11">13</td>
<td class="style11">Seattle Mariners</td>
<td class="style11">$139,257,018</td>
<td class="style11">$15,007,300</td>
<td class="style11">$154,800,918</td></tr>
<tr>
<td class="style11">14</td>
<td class="style11">St. Louis Cardinals</td>
<td class="style11">$136,181,533</td>
<td class="style11">$13,521,400</td>
<td class="style11">$152,452,933</td></tr>
<tr>
<td class="style11">15</td>
<td class="style11">Kansas City Royals</td>
<td class="style11">$127,333,150</td>
<td class="style11">$4,092,100</td>
<td class="style11">$140,925,250</td></tr>
<tr>
<td class="style11">16</td>
<td class="style11">Colorado Rockies</td>
<td class="style11">$86,909,571</td>
<td class="style11">$14,454,000</td>
<td class="style11">$130,963,571</td></tr>
<tr>
<td class="style11">17</td>
<td class="style11">Cleveland Indians</td>
<td class="style11">$101,105,399</td>
<td class="style11">$14,005,766</td>
<td class="style11">$124,861,165</td></tr>
<tr>
<td class="style11">18</td>
<td class="style11">Houston Astros</td>
<td class="style11">$117,957,800</td>
<td class="style11">$4,386,100</td>
<td class="style11">$124,343,900</td></tr>
<tr>
<td class="style11">19</td>
<td class="style11">Atlanta Braves</td>
<td class="style11">$103,303,791</td>
<td class="style11">$8,927,500</td>
<td class="style11">$112,437,541</td></tr>
<tr>
<td class="style11">20</td>
<td class="style11">Miami Marlins</td>
<td class="style11">$96,446,100</td>
<td class="style11">$15,035,000</td>
<td class="style11">$111,881,100</td></tr>
<tr>
<td class="style11">21</td>
<td class="style11">Philadelphia Phillies</td>
<td class="style11">$86,841,000</td>
<td class="style11">$537,000</td>
<td class="style11">$111,378,000</td></tr>
<tr>
<td class="style11">22</td>
<td class="style11">Minnesota Twins</td>
<td class="style11">$92,592,500</td>
<td class="style11">$8,735,000</td>
<td class="style11">$108,077,500</td></tr>
<tr>
<td class="style11">23</td>
<td class="style11">Pittsburgh Pirates</td>
<td class="style11">$92,362,832</td>
<td class="style11">-</td>
<td class="style11">$100,575,946</td></tr>
<tr>
<td class="style11">24</td>
<td class="style11">Chicago White Sox</td>
<td class="style11">$95,625,000</td>
<td class="style11">$1,671,000</td>
<td class="style11">$99,119,770</td></tr>
<tr>
<td class="style11">25</td>
<td class="style11">Cincinnati Reds</td>
<td class="style11">$53,858,785</td>
<td class="style11">$26,910,000</td>
<td class="style11">$93,768,785</td></tr>
<tr>
<td class="style11">26</td>
<td class="style11">Arizona Diamondbacks</td>
<td class="style11">$91,481,600</td>
<td class="style11">$1,626,000</td>
<td class="style11">$93,257,600</td></tr>
<tr>
<td class="style11">27</td>
<td class="style11">Oakland Athletics</td>
<td class="style11">$64,339,166</td>
<td class="style11">$5,732,500</td>
<td class="style11">$81,738,333</td></tr>
<tr>
<td class="style11">28</td>
<td class="style11">San Diego Padres</td>
<td class="style11">$29,628,400</td>
<td class="style11">$4,946,000</td>
<td class="style11">$71,624,400</td></tr>
<tr>
<td class="style11">29</td>
<td class="style11">Tampa Bay Rays</td>
<td class="style11">$55,282,232</td>
<td class="style11">$14,680,300</td>
<td class="style11">$69,962,532</td></tr>
<tr>
<td class="style11">30</td>
<td class="style11">Milwaukee Brewers</td>
<td class="style11">$50,023,900</td>
<td class="style11">$13,037,400</td>
<td class="style11">$63,061,300</td></tr>
</tbody></table></center>
<h2 class="style3"><a name="2016_payroll"></a>2016 MLB Opening Day Payrolls</h2>
<div class="style1"><span class="style12">Payrolls and average salaries for the opening day rosters of
the 30 major league teams. Figures
are based on documents obtained from the MLB Players Association, club officials and filed with Major League Baseball's central office.