-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
1204 lines (993 loc) · 70.2 KB
/
example.html
File metadata and controls
1204 lines (993 loc) · 70.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
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
<head>
<title>Manheim | MMR | BENTLEY CONTINENTAL GT | June 02, 2016 Edition</title>
<meta charset="UTF-8">
<link rel="icon" href="assets/favicon.gif">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- MUI and application styles -->
<link rel="stylesheet" href="//mui.aws.manheim.com/0.23.0/man-customer/css/mui.min.css">
<link rel="stylesheet" href="assets/css/mmr.css">
<!-- Webpack manifest, must be included before any webpack chunks -->
<script src="http://feed.useriq.com/useriq.js" async="" defer="" type="text/javascript"></script><script src="https://publish.manheim.man-uat.com/etc/clientlibs/framework/shared/js/widgets.js?l=1472670430557" async=""></script><script src="manifest.1ea679a6c69cf5b9f6f3.js"></script><script src="http://localhost:35729/livereload.js" async="" id="webpack-livereload-plugin-script"></script>
<!-- Entry point: src/assets/js/index.head.js -->
<script src="miscHead.404c031c51cb9d1f34d6.js"></script>
<!-- Optimizely and Adobe Analytics scripts -->
<script src="https://cdn.optimizely.com/js/291969508.js"></script>
<script src="//assets.adobedtm.com/ffbb5a455cad677ddb2afac3a341a6e37cf74f1b/satelliteLib-02cc17ea546ee0aab216df283cbd5bacd76ad850-staging.js"></script><script src="http://assets.adobedtm.com/ffbb5a455cad677ddb2afac3a341a6e37cf74f1b/scripts/satellite-5358475a99afa167e1000646-staging.js"></script>
<script src="http://assets.adobedtm.com/ffbb5a455cad677ddb2afac3a341a6e37cf74f1b/s-code-contents-49367f4e4dbb3363f2419d019177e739b4dce108-staging.js"></script><style type="text/css">#oo_invitation_company_logo img, #oo_waypoint_company_logo img { max-height: 100%; max-width: 100%; height: auto; width: auto9; /* ie8 */ }
#oo_feedback_fl_spacer { display: block; height: 1px; position: absolute; top: 0; width: 100px; }
.oo_feedback_float { width: 100px; height: 50px; overflow: hidden; font: 12px Tahoma, Arial, Helvetica, sans-serif; text-align: center; color: #252525; cursor: pointer; z-index: 999997; position: fixed; bottom: 5px; border: 1px solid #cccccc; border-radius: 9px; -moz-border-radius: 9px; -webkit-border-radius: 9px; right: 10px; -webkit-transition: -webkit-transform 0.3s ease; }
.oo_feedback_float .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
.oo_feedback_float .olUp { width: 100%; height: 100%; background: url(onlineopinionV5/oo_float_icon.gif) center 10px no-repeat; text-align: center; padding: 31px 0 5px 0; position: relative; z-index: 2; filter: alpha(opacity=100); opacity: 1; transition: opacity .5s; -moz-transition: opacity .5s; -webkit-transition: opacity .5s; -o-transition: opacity .5s; }
.oo_feedback_float .olUp img { margin-bottom: 5px; }
.oo_feedback_float .oo_transparent { display: block; background: white; position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; opacity: 0.8; filter: alpha(opacity=80); border-radius: 8px; -moz-border-radius: 8px; -webkit-border-radius: 8px; }
.oo_feedback_float:hover .oo_transparent { opacity: 1.0; filter: alpha(opacity=100); }
.oo_feedback_float:hover .olUp { display: block; opacity: 0; filter: alpha(opacity=0); }
.oo_feedback_float .fbText { display: block; }
.oo_feedback_float .olOver { display: block; height: 100%; width: 100%; position: absolute; top: 0; left: 0; min-height: 50px; z-index: 2; opacity: 0; filter: alpha(opacity=0); transition: opacity .5s; -moz-transition: opacity .5s; -webkit-transition: opacity .5s; -o-transition: opacity .5s; }
.oo_feedback_float .olOver span { display: block; padding: 10px 5px; }
.oo_feedback_float:hover .olOver { opacity: 1.0; filter: alpha(opacity=100); top: 0; }
.oo_cc_wrapper { left: 0; padding: 0; position: fixed; text-align: center; top: 25px; width: 100%; z-index: 999999; }
.oo_cc_wrapper .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
.oo_cc_wrapper span { width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 1; }
.oo_cc_wrapper .iwrapper { background-color: white; margin: 0 auto; position: relative; width: 535px; z-index: 2; box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -moz-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -webkit-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); }
.oo_cc_wrapper iframe { position: relative; border: none; width: 100%; z-index: 4; }
.oo_cc_wrapper .oo_cc_close { position: absolute; display: block; right: 20px; top: 5px; font: 1em/1.5em 'HelveticaNeue-Medium', Helvetica, Arial, sans-serif; text-align: center; z-index: 5; color: black; text-decoration: none; cursor: pointer; }
#oo_bar { padding: 10px 35px; cursor: pointer; color: white; border-top: 1px solid white; background-color: black; bottom: 0; display: block; font: 16px 'HelveticaNeue-Medium', Helvetica, Arial, sans-serif; left: 0; text-decoration: none; line-height: 16px; position: fixed; text-align: left; width: 100%; z-index: 999997; box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 2px; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px -1px 2px; }
#oo_bar span.icon { background-image: url(onlineopinionV5/oo_bar_icon.gif); background-repeat: no-repeat; position: absolute; left: 8px; top: 9px; width: 19px; height: 17px; }
#oo_bar .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
#oo_bar:focus { outline: 3px solid #51ace9; }
.oo_bar { padding-bottom: 37px; }
#oo_tab { background-color: #34689A; border: 1px solid #cccccc; display: block; position: fixed; top: 40%; padding: 70px 0px 55px 0px; width: 35px; z-index: 999995; cursor: pointer; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
#oo_tab span { bottom: 15px; display: block; background: url(onlineopinionV5/oo_tab_icon.gif) no-repeat; height: 9px; position: absolute; width: 9px; }
#oo_tab div { background-image: url(onlineopinionV5/oo_tab.png); background-repeat: no-repeat; position: absolute; display: block; height: 100%; left: 0; top: 0; width: 100%; }
#oo_tab.wcag a { background: url(onlineopinionV5/oo_tab_icon.gif) no-repeat; background-repeat: no-repeat; background-position: center bottom; border: none; outline: none; position: absolute; display: block; bottom: 14px; left: -6px; top: 0; width: 100%; }
#oo_tab.wcag img { border: none; outline: none; display: block; position: absolute; left: -6px; top: -10px; }
#oo_tab .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
.oo_tab_left { left: -13px; border-radius: 0px 9px 9px 0px; -moz-border-radius: 0px 9px 9px 0px; -webkit-border-radius: 0px 9px 9px 0px; transition: left .5s; -moz-transition: left .5s; -webkit-transition: left .5s; -o-transition: left .5s; background-image: -webkit-gradient(linear, 0% 100%, 0% 0%, from(#eeeeee), to(#ffffff)); background-image: -webkit-linear-gradient(left, #eeeeee, #ffffff); background-image: -moz-linear-gradient(left, #eeeeee, #ffffff); background-image: -ms-linear-gradient(left, #eeeeee, #ffffff); background-image: -o-linear-gradient(left, #eeeeee, #ffffff); background-image: linear-gradient(left, #eeeeee, #ffffff); }
.oo_tab_left span { right: 6px; }
.oo_tab_left div { background-position: 6px -10px; }
.oo_tab_left:hover { left: -5px; }
.oo_tab_right { right: -13px; border-radius: 3px 0px 0px 3px; -moz-border-radius: 3px 0px 0px 3px; -webkit-border-radius: 3px 0px 0px 3px; transition: right .5s; -moz-transition: right .5s; -webkit-transition: right .5s; -o-transition: right .5s; }
.oo_tab_right span { left: 7px; }
.oo_tab_right div { background-position: -7px 0px; }
.oo_tab_right:hover { right: -5px; background-color:#2B567F!important}
#oo_tab_1 { background-color: black; border: 1px solid #ffffff; display: block; position: fixed; top: 40%; padding: 10px 0px 10px 0px; width: 124px; z-index: 999995; cursor: pointer; text-decoration: none; text-align: left; font-family: 'HelveticaNeue-Medium', Helvetica, Arial, sans-serif; line-height: 16px; font-size: 16px; color: #fff; }
#oo_tab_1:focus { outline: 3px solid #51ace9; }
#oo_tab_1 span.screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
#oo_tab_1.oo_tab_right_1 { right: -9px; transition: right 1.5s; -moz-transition: right 1.5s; -webkit-transition: right 1.5s; padding: 10px 0px 10px 35px; box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 2px; width: 89px; }
#oo_tab_1.oo_tab_right_1 span.icon { background-image: url(onlineopinionV5/oo_tab_icon_1.gif); background-repeat: no-repeat; position: absolute; left: 8px; top: 9px; width: 19px; height: 17px; }
#oo_tab_1.oo_tab_right_1.small { right: -90px; }
#oo_tab_1.oo_tab_right_1.small:hover { right: -9px; }
#oo_tab_1.oo_tab_left_1 { left: -9px; transition: left 1.5s; -moz-transition: left 1.5s; -webkit-transition: left 1.5s; padding: 10px 0px 10px 15px; box-shadow: rgba(0, 0, 0, 0.5) -1px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.5) -1px 1px 2px; -webkit-box-shadow: rgba(0, 0, 0, 0.5) -1px 1px 2px; width: 109px; }
#oo_tab_1.oo_tab_left_1 span.icon { background-image: url(onlineopinionV5/oo_tab_icon_1.gif); background-repeat: no-repeat; position: absolute; right: 8px; top: 9px; width: 19px; height: 17px; }
#oo_tab_1.oo_tab_left_1.small { left: -90px; }
#oo_tab_1.oo_tab_left_1.small:hover { left: -9px; }
#oo_container { position: fixed; height: 100%; width: 100%; top: 0; left: 0; z-index: 999999; }
#oo_invitation_prompt { background: #fff; box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -moz-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -webkit-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); margin: 5% auto; text-align: left; position: relative; width: 500px; z-index: 999999; }
#oo_invitation_prompt #oo_invitation_company_logo { width: 100%; height: 120px; background: black; }
#oo_invitation_prompt #oo_invitation_company_logo img { height: 100%; }
#oo_invitation_prompt #oo_invite_content { width: 80%; padding: 40px 10% 20px 10%; box-shadow: inset 0px 0px 0px 1px #ccc; -webkit-box-shadow: inset 0px 0px 0px 1px #ccc; -moz-box-shadow: inset 0px 0px 0px 1px #ccc; }
#oo_invitation_prompt #oo_invite_content p { color: black; font: 1em/1.5em 'HelveticaNeue-Medium', Helvetica, Arial, sans-serif; margin: 0; padding: 0 0 20px 0; }
#oo_invitation_prompt #oo_invite_content p.prompt_button a { text-align: center; color: white; text-decoration: none; font-size: 1.5em; line-height: 1.2em; padding: 12px 0 13px 0; display: block; height: 25px; }
#oo_invitation_prompt #oo_invite_content a { cursor: pointer; }
#oo_invitation_prompt #oo_invite_content a:focus { outline: 3px solid #51ace9; }
#oo_invitation_prompt #oo_invite_content a#oo_launch_prompt { background: #cb352d; }
#oo_invitation_prompt #oo_invite_content a#oo_no_thanks { background: #707070; }
#oo_invitation_prompt #oo_invite_content #ol_invitation_brand_logo { text-align: center; border-top: 1px solid #ccc; line-height: 1.5em; margin: 20px 0 0 0; padding: 20px 0 0 0; }
#oo_invitation_prompt #oo_invite_content #ol_invitation_brand_logo img { height: 25px; width: 146px; border: 0px; }
#oo_invitation_prompt #oo_invite_content #ol_invitation_brand_logo a { display: block; height: 25px; }
#oo_invitation_prompt #oo_close_prompt { position: absolute; display: block; right: 13px; top: 13px; line-height: 1em; font-size: 1em; color: white; text-decoration: none; }
#oo_invitation_prompt #oo_close_prompt:focus { outline: none; }
#oo_invitation_prompt #oo_close_prompt:focus span { outline: 3px solid #51ace9; }
#oo_invitation_prompt .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
@media only screen and (max-device-width: 480px), screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) { #oo_invitation_prompt { width: 90%; }
#oo_invitation_prompt #oo_invitation_company_logo { height: 80px; } }
@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2), screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2) { #oo_invitation_prompt { width: 90%; height: 90%; overflow-y: scroll; overflow-x: hidden; }
#oo_invitation_prompt #oo_invitation_company_logo { height: 80px; }
#oo_invitation_prompt #oo_invite_content { padding: 20px 10% 20px 10%; }
#oo_invitation_prompt #oo_invite_content #ol_invite_brand_logo { margin: 0 0 0 0; } }
@media screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2) { #oo_invitation_prompt #oo_close_prompt { right: -70px; } }
#oo_waypoint_container { position: fixed; height: 100%; width: 100%; top: 0; left: 0; z-index: 999999; }
#oo_waypoint_prompt { background: #fff; box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -moz-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); -webkit-box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.3); margin: 5% auto; text-align: left; position: relative; width: 500px; z-index: 999999; }
#oo_waypoint_prompt #oo_waypoint_company_logo { width: 100%; height: 120px; background: black; }
#oo_waypoint_prompt #oo_waypoint_company_logo img { height: 100% }
#oo_waypoint_prompt #oo_waypoint_content { width: 80%; padding: 30px 10% 20px 10%; }
#oo_waypoint_prompt #oo_waypoint_content a { cursor: pointer; }
#oo_waypoint_prompt #oo_waypoint_content a:focus { outline: 3px solid #51ace9; }
#oo_waypoint_prompt #oo_waypoint_content p { color: black; font: 1em/1.5em 'HelveticaNeue-Medium', Helvetica, Arial, sans-serif; margin: 0; padding: 0 0 20px 0; text-align: center; }
#oo_waypoint_prompt #oo_waypoint_content p#oo_waypoint_message { font-size: 1.2em; }
#oo_waypoint_prompt #oo_waypoint_content a.waypoint_icon { cursor: pointer; text-decoration: none; font-size: 1.5em; line-height: 1.2em; padding: 12px 0 13px 90px; display: block; height: 25px; color: white; margin-bottom: 20px; background-color: #cb352d; text-align: left; background-repeat: no-repeat; background-position: left center; background-size: 70px 50px; }
#oo_waypoint_prompt #oo_waypoint_content a.waypoint_icon.last { margin-bottom: 0; }
#oo_waypoint_prompt #oo_waypoint_content #ol_waypoint_brand_logo { border-top: 1px solid #ccc; line-height: 1.5em; margin: 10px 0 0 0; padding: 20px 0 0 0; }
#oo_waypoint_prompt #oo_waypoint_content #ol_waypoint_brand_logo img { height: 25px; width: 146px; border: 0px; }
#oo_waypoint_prompt #oo_waypoint_content #ol_waypoint_brand_logo a { display: block; height: 25px; }
#oo_waypoint_prompt #oo_waypoint_close_prompt { position: absolute; display: block; right: 13px; top: 13px; line-height: 1em; font-size: 1em; color: white; text-decoration: none; }
#oo_waypoint_prompt #oo_waypoint_close_prompt:focus { outline: none; }
#oo_waypoint_prompt #oo_waypoint_close_prompt:focus span { outline: 3px solid #51ace9; }
#oo_waypoint_prompt .screen_reader { position: absolute; clip: rect(1px 1px 1px 1px); /* for Internet Explorer */ clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
@media only screen and (max-device-width: 480px), screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) { #oo_waypoint_prompt { width: 90%; }
#oo_waypoint_prompt #oo_waypoint_company_logo { height: 80px; } }
@media only screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2), screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2) { #oo_waypoint_prompt { width: 90%; height: 90%; overflow-y: scroll; overflow-x: hidden; }
#oo_waypoint_prompt #oo_waypoint_company_logo { height: 80px; }
#oo_waypoint_prompt #oo_waypoint_content { padding: 20px 10% 20px 10%; }
#oo_waypoint_prompt #oo_waypoint_content #ol_waypoint_brand_logo { margin: 0 0 0 0; } }
@media screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2) { #oo_waypoint_prompt #oo_waypoint_close_prompt { right: -70px; } }
#oo_overlay, #oo_invitation_overlay, #oo_waypoint_overlay { background: white url(onlineopinionV5/oo_loading.gif) 50% 80px no-repeat; display: block; height: 1000%; left: 0; position: fixed; top: 0; width: 100%; z-index: 999998; opacity: 0.5; filter: alpha(opacity=50); }
#oo_overlay.no_loading, #oo_invitation_overlay.no_loading, #oo_waypoint_overlay.no_loading { background: white; opacity: 0.5; filter: alpha(opacity=50); }
@media screen and (max-width: 767px) { #oo_waypoint_overlay { cursor: pointer; } }
#oo_overlay.no_loading, #oo_invitation_overlay.no_loading, #oo_waypoint_overlay.no_loading { background: white; opacity: 0.5; filter: alpha(opacity=50); } }
@media all { #oo_waypoint_prompt #oo_close_prompt, #oo_invitation_prompt #oo_close_prompt, .oo_cc_wrapper .oo_cc_close { font-size: 20px; line-height: 20px; top: 8px; } }
@media print { #oo_bar, .oo_feedback_float, #oo_tab { display: none; } }
@media only screen and (-Webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (min-device-pixel-ratio: 1.5) { #oo_tab div { background-image: url(onlineopinionV5/oo_tab_retina.png); background-size: 100%; }
#oo_tab span { background-image: url(onlineopinionV5/oo_tab_icon_retina.gif); background-size: 100%; }
#oo_bar span.icon { background-image: url(onlineopinionV5/oo_bar_icon_retina.gif); background-size: 100%; }
.oo_feedback_float .olUp { background: url(onlineopinionV5/oo_float_icon_retina.gif) center 10px no-repeat; background-size: 20%; }
#oo_tab_1 span.icon { background-image: url(onlineopinionV5/oo_tab_icon_1_retina.gif) !important; background-size: 100%; } }</style><script src="http://assets.adobedtm.com/ffbb5a455cad677ddb2afac3a341a6e37cf74f1b/scripts/satellite-57aa01c564746d59c400316e-staging.js"></script></head>
<body class="font--lato">
<!-- Environment information -->
<p>Environment: development</p>
<!-- Main MMR UI, with pre-rendered components -->
<div data-mui-row="" class="align--center">
<div data-mui-col="1/1" class="outer-container align--left float--none show--inline-block">
<div data-mui-row="" class="page-gutter">
<div style="visibility: visible;" data-mui-col="1/1" id="manheim_header"><style type="text/css">
.popup header {
border-bottom: 1px solid #babcbe;
height: 60px;
line-height: 60px;
padding: 0 10px;
padding: 0 1rem;
margin-bottom: 10px;
margin-bottom: 1rem
}
.popup header .logo,.popup header .logo:before {
height: 24px;
display: inline-block;
}
.popup header .logo img {
height: 24px;
vertical-align: top;
}
.popup header .logo:before {
height: 60px;
content: "";
}
</style><div>
<div class="partial-container">
<div class="par parsys"><div class="mdotcom-header-popup section">
<div class="popup">
<header>
<span class="logo">
<a href="https://www.manheim.com" target="_blank">
<img src="https://publish.manheim.com/content/dam/manheim_logo.jpg" alt="Manheim" height="24">
</a>
</span>
</header>
</div>
</div>
</div>
</div>
</div><script async="" type="text/javascript">
window.ipState = "GA";
window.ipCity = "";
</script></div>
<!-- MIDSelector component --><style>.styles__shrinkSelect__1qqeH {
width: 160px;
margin-bottom: 3px; }
@media (max-width: 567px) {
.styles__shrinkSelect__1qqeH {
margin-left: 20px; } }
@media (max-width: 479px) {
.styles__shrinkSelect__1qqeH {
margin-left: 20px; } }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL01JRFNlbGVjdG9yLjBmZjg4OWU1YTJiZmNmY2I1ZmRhLmNzcyIsInNvdXJjZVJvb3QiOiIifQ==*/</style><div data-mmr-component="MIDSelector"><select class="styles__shrinkSelect__1qqeH" id="midDropdown" data-reactroot=""><option>Select A MID</option><option disabled="">--- US MIDs ---</option><option>201206353620008</option><option>200508738025044</option><option>201033155408672</option><option>201033155410008</option><option>201033155420008</option><option>201033155436289</option><option>201033155444477</option><option>201033155446290</option><option>201100600171083</option><option>201100600172759</option><option>201100600174058</option><option>201100600174110</option><option disabled="">--- Canadian MIDs ---</option><option>201502859583471</option><option>201533266836847</option><option disabled="">--- US Partial Data MIDs ---</option><option>200301762505981</option><option>199405308370014</option><option>201003431678311</option><option disabled="">--- CA Partial Data MIDs ---</option><option>200908542350685</option><option>201601711512808</option><option>201101163855115</option><option disabled="">--- Magical MIDs ---</option><option>201503608627579</option><option>normal</option><option>manyTransactions</option><option>noTransactions</option><option>onlyTransactions</option><option>wrapping</option><option>canadian</option></select></div><script defer="" src="components/MIDSelector.0ff889e5a2bfcfcb5fda.js"></script>
<div data-mui-col="1/1">
<div data-mui-row="" class="print--hide">
<div data-mui-col="1/1" class="mui-p-t align--right link-header">
<a id="guided-tour" style="visibility: visible;" href="#" onclick="startUserIQTour();return false;" class="mui-control--link">
Take a Tour
</a>
<a href="#" target="_blank" onclick="setNewWindowHref(this);" class="mui-control--link">
<i class="icon-export mui-m-h-r"></i>New Window
</a>
<a href="#" onclick="OOo.oo_launch(event, 'oo_inline_feedback')">
<img src="/onlineopinionV5/oo_icon.gif" class="mui-m-h-r" style="margin-top: 6px;" title="Feedback">Feedback
</a>
<a href="javascript:window.print()" class="mui-control--link">
<i class="icon-printer mui-m-h-r"></i>Print
</a>
</div>
</div>
<div data-mui-row="">
<div data-mui-col="1/1">
<!-- MMRTitle component --><style>.styles__title__330Gq {
margin: 0 0 30px 0; }
.styles__edition__2qebm {
font-size: 0.5em;
color: #333;
font-weight: normal;
margin-left: 0.5em; }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL01NUlRpdGxlLjIwMjk0YTE3YWRmNWFiOGI4YTlmLmNzcyIsInNvdXJjZVJvb3QiOiIifQ==*/</style><div data-mmr-component="MMRTitle"><h1 class="align--left styles__title__330Gq" data-reactroot=""><!-- react-text: 6 -->Manheim Market Report<!-- /react-text --><span class="hide print--show--inline styles__edition__2qebm"><!-- react-text: 9 -->June 02, 2016<!-- /react-text --><!-- react-text: 8 --> Edition<!-- /react-text --></span></h1></div><script defer="" src="components/MMRTitle.20294a17adf5ab8b8a9f.js"></script>
</div>
</div>
<div data-mui-row="">
<div data-mui-col="1/1">
<div class="left-nav">
<div data-mui-row="">
<div data-mui-col="1/1">
<!-- VehicleSummary component --><style></style><div data-mmr-component="VehicleSummary"><div data-reactroot=""><h4 class="mui-m-b">2012 BENTLEY CONTINENTAL GT 2D COUPE</h4></div></div><script defer="" src="components/VehicleSummary.d96873737614dcc5e393.js"></script>
</div>
</div>
<div data-mui-row="" class="print--hide">
<div data-mui-col="1/1">
<!-- SelectVehicle component --><style>.styles__select__2r0oi > select {
width: 100%; }
/* Between xs and sm */
@media only screen and (max-width: 959px) and (min-width: 568px) {
div[data-mui-row] > div[data-mui-col~="1/2-sm"].styles__select__2r0oi:nth-child(2n+1) {
padding-right: 0.5em; }
/* Odd dropdowns */
div[data-mui-row] > div[data-mui-col~="1/2-sm"].styles__select__2r0oi:nth-child(2n) {
padding-left: 0.5em; }
/* Even dropdowns */ }
.styles__odometerInput__2E0Sk input {
width: 100%;
border-radius: 5px;
height: 2.335em; }
.styles__odometerButton__14jjX {
margin-top: 1.5em;
margin-left: 0.5em;
position: relative; }
.styles__odometerButton__14jjX button {
position: absolute;
right: 0.05em;
width: 100%; }
.styles__odometerCheckbox__3olBv label {
font-size: 0.8125em;
color: #BABCBE;
font-size: 1.4rem;
padding-left: 2em;
padding-top: 0.3em;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none; }
.styles__odometerCheckbox__3olBv input {
position: absolute;
top: 0;
left: 0; }
.styles__countryToggle__2uIfs input {
display: none; }
.styles__countryToggle__2uIfs label {
border-color: #babcbe;
background-color: #e8e9e9;
color: #1952CE;
width: 50%;
float: left;
display: inline-block;
font-size: 0.9em;
padding: 0.6em 0.5em; }
.styles__countryToggle__2uIfs label:hover {
background-color: #e0efff;
color: #1952CE; }
.styles__countryToggle__2uIfs input:checked + label {
background-color: #fff;
color: #003468; }
.styles__countryToggle__2uIfs > .styles__switchContainer__3s6J5:first-of-type > label {
border-radius: 4px 0 0 4px;
border-right: 0; }
.styles__countryToggle__2uIfs > .styles__switchContainer__3s6J5:last-of-type > label {
border-radius: 0 4px 4px 0; }
.styles__titleLabel__1tVB6 {
margin-bottom: .25em;
color: #003468;
font-weight: 400; }
.styles__noselect__Ns0o- {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
not supported by any browser */ }
.styles__helpIcon__AKZJ_ {
top: 0.5em;
font-size: .75em;
margin-left: .6em;
position: absolute;
cursor: pointer; }
@media only screen and (min-width: 568px) {
.styles__overlay__13Ejm {
position: absolute;
top: -2em;
left: 1.8em;
display: block;
z-index: 10000; }
.styles__content__1KAyK {
background: #fff;
border: 1px solid #bdbdbd;
border-radius: 3px;
box-shadow: 0 5px 5px #babcbe;
padding: 15px;
position: relative;
font-size: 14px;
font-weight: 300;
width: 250px; }
.styles__content__1KAyK *:last-child {
margin-bottom: 0; }
.styles__content__1KAyK:before, .styles__content__1KAyK:after {
top: 50%;
margin-top: -10px;
border-width: 10px 10px 10px 0;
/* arrow */
content: '';
display: block;
position: absolute;
width: 0px;
height: 0px;
border-style: solid;
border-color: transparent; }
.styles__content__1KAyK:before {
left: -10px;
border-right-color: #bdbdbd !important; }
.styles__content__1KAyK:after {
left: -8.55px;
border-right-color: #fff !important; } }
@media only screen and (max-width: 567px) {
.styles__overlay__13Ejm {
position: absolute;
top: 1.75em;
left: -6.75em;
display: block;
z-index: 10000; }
.styles__content__1KAyK {
background: #fff;
border: 1px solid #bdbdbd;
border-radius: 3px;
box-shadow: 0 5px 5px #babcbe;
padding: 15px;
position: relative;
font-size: 14px;
font-weight: 300;
width: 250px; }
.styles__content__1KAyK *:last-child {
margin-bottom: 0; }
.styles__content__1KAyK:before, .styles__content__1KAyK:after {
top: -10px;
margin-top: 0;
left: 50%;
border-width: 0 10px 10px 10px;
border-style: solid;
border-color: transparent;
/* arrow */
content: '';
display: block;
position: absolute;
width: 0px;
height: 0px; }
.styles__content__1KAyK:before {
top: -10px;
border-bottom-color: #bdbdbd !important; }
.styles__content__1KAyK:after {
top: -8.55px;
border-bottom-color: #fff !important; } }
.styles__title__2Gwoc {
position: relative; }
@media only screen and (max-width: 959px) and (min-width: 568px) {
.styles__tabletOdometer__274SC {
padding-top: 0.5em;
padding-left: 0.5em; }
.styles__tabletPaddingRight__1tuzo {
padding-right: 0.5em; } }
.styles__container__3N7Bj {
margin-bottom: 2em; }
.styles__muiTabControl__1lWU5 {
width: 50%;
font-family: 'Lato', sans-serif; }
.styles__tabPanel__3oyMl {
padding: 0.5em 0; }
label {
color: #003468; }
select:focus, input[type=text]:focus {
outline: #3b99fc auto 5px; }
::-webkit-input-placeholder {
/* WebKit, Blink, Edge */
color: #BABCBE;
font-size: 13px;
font-family: 'Lato', sans-serif; }
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #BABCBE;
font-size: 13px;
font-family: 'Lato', sans-serif;
opacity: 1; }
::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #BABCBE;
font-size: 13px;
font-family: 'Lato', sans-serif;
opacity: 1; }
:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #BABCBE;
font-size: 13px;
font-family: 'Lato', sans-serif; }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL1NlbGVjdFZlaGljbGUuOTcwNjg4N2ZiZjc3NWM1NDZjZDkuY3NzIiwic291cmNlUm9vdCI6IiJ9*/</style><div data-mmr-component="SelectVehicle"><div class="styles__container__3N7Bj" data-reactroot=""><h3>Select Vehicle</h3><div role="tablist" class="mui-tabs"><menu class="mui-tabs__controls" type="list"><span style="width: 50%; text-align: center; padding: 0.75em 0px;" aria-selected="true" tabindex="0" role="tab" aria-controls="panel0" data-index="0" class="mui-tabs__control selected">Make/Model</span><span style="width: 50%; text-align: center; padding: 0.75em 0px;" tabindex="0" role="tab" aria-controls="panel1" data-index="1" class="mui-tabs__control">VIN</span></menu><div role="tabpanel" aria-labeledby="tab0" class="styles__tabPanel__3oyMl mui-tabs__panel selected"><div data-mui-row="true"><div data-mui-col="1/1"><div data-mui-row="true"><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Year">Year</label><select id="Year"><option value="">Select Year</option><option value="2017">2017</option><option value="2016">2016</option><option value="2015">2015</option><option value="2014">2014</option><option value="2013">2013</option><option value="2012">2012</option><option value="2011">2011</option><option value="2010">2010</option><option value="2009">2009</option><option value="2008">2008</option><option value="2007">2007</option><option value="2006">2006</option><option value="2005">2005</option><option value="2004">2004</option><option value="2003">2003</option><option value="2002">2002</option><option value="2001">2001</option><option value="2000">2000</option><option value="1999">1999</option><option value="1998">1998</option><option value="1997">1997</option><option value="1996">1996</option><option value="1995">1995</option><option value="1994">1994</option><option value="1993">1993</option><option value="1992">1992</option><option value="1991">1991</option><option value="1990">1990</option><option value="1989">1989</option><option value="1988">1988</option><option value="1987">1987</option><option value="1986">1986</option><option value="1985">1985</option><option value="1984">1984</option><option value="1983">1983</option><option value="1982">1982</option><option value="1981">1981</option><option value="1975">1975</option><option value="1967">1967</option></select></div><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Make">Make</label><select id="Make"><option value="">Select Make</option><option value="069">ACURA</option><option value="150">ASTON MARTIN</option><option value="331">AUDI</option><option value="006">B M W</option><option value="063">BENTLEY</option><option value="008">BUICK</option><option value="009">CADILLAC</option><option value="011">CHEVROLET</option><option value="012">CHRYSLER</option><option value="014">DODGE</option><option value="087">FERRARI</option><option value="016">FIAT</option><option value="336">FISKER</option><option value="017">FORD</option><option value="021">GMC</option><option value="118">HARLEY DAVIDSON</option><option value="023">HONDA</option><option value="058">HYUNDAI</option><option value="079">INFINITI</option><option value="025">ISUZU</option><option value="027">JAGUAR</option><option value="028">JEEP</option><option value="085">KIA</option><option value="096">LAMBORGHINI</option><option value="102">LAND ROVER</option><option value="080">LEXUS</option><option value="032">LINCOLN</option><option value="092">LOTUS</option><option value="059">MASERATI</option><option value="172">MAYBACH</option><option value="034">MAZDA</option><option value="339">MCLAREN</option><option value="036">MERCEDES-BENZ</option><option value="159">MINI</option><option value="054">MITSUBISHI</option><option value="055">NISSAN</option><option value="044">PORSCHE</option><option value="332">RAM</option><option value="046">ROLLS-ROYCE</option><option value="047">SAAB</option><option value="169">SCION</option><option value="259">SMART</option><option value="048">SUBARU</option><option value="071">SUZUKI</option><option value="315">TESLA</option><option value="050">TOYOTA</option><option value="209">VICTORY</option><option value="052">VOLKSWAGEN</option><option value="053">VOLVO</option><option value="340">VPG</option></select></div><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Model">Model</label><select id="Model"><option value="">Select Model</option><option value="0090">CONTINENTAL FLYING SPUR</option><option value="5362">CONTINENTAL GT</option><option value="0351">CONTINENTAL SUPERSPORTS</option><option value="0427">MULSANNE</option></select></div><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Style">Style</label><select id="Style"><option value="">Select Style</option><option value="0406">2D CONVERTIBLE</option><option value="0008">2D COUPE</option></select></div></div></div></div></div></div><div class="mui-m-t" data-mui-col="1/1"><div data-mui-row="true"><div data-mui-col="1/1"><h4><!-- react-text: 89 -->Adjust Valuation<!-- /react-text --><span class="styles__title__2Gwoc"><span><i class="icon-g icon-question valign--top styles__helpIcon__AKZJ_"></i></span></span></h4></div></div><div data-mui-row="true"><div class="styles__tabletPaddingRight__1tuzo" data-mui-col="1/1-lg 1/2-sm 1/1"><div id="countryRegion"><div><div class="styles__titleLabel__1tVB6">Country</div><div class="styles__countryToggle__2uIfs"><div class="styles__switchContainer__3s6J5"><input value="US" name="countrySwitch" id="switchUS" type="radio"><label class="mui-button--primary" for="switchUS"><div><img src="assets/us.png"><!-- react-text: 104 --> <!-- /react-text --><!-- react-text: 105 -->U.S.<!-- /react-text --></div></label></div><div class="styles__switchContainer__3s6J5"><input value="CA" name="countrySwitch" id="switchCA" type="radio"><label class="mui-button--primary" for="switchCA"><div><img src="assets/ca.png"><!-- react-text: 111 --> <!-- /react-text --><!-- react-text: 112 -->Canada<!-- /react-text --></div></label></div></div></div></div></div></div><div data-mui-row="true"><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Region">Region</label><select id="Region"><option value="NA">National</option><option value="SE">Southeast</option><option value="NE">Northeast</option><option value="MW">Midwest</option><option value="SW">Southwest</option><option value="WC">West Coast</option><option value="P">PLM1</option><option value="MAA">MAA</option></select></div><div class="styles__tabletOdometer__274SC" data-mui-col="1/1-lg 1/2-sm 1/1"><form><div data-mui-row="true"><div class="styles__odometerInput__2E0Sk" data-mui-col="15/24-md 3/5"><label for="odometer">Odometer</label><input name="" value="" id="odometerText" type="text"></div><div data-mui-col="9/24-md 2/5"><div class="styles__odometerButton__14jjX"><button type="submit">Go</button></div></div></div></form></div></div><div data-mui-row="true"><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Grade">Condition Grade</label><select id="Grade"><option value="">ALL</option><option value="50">5.0</option><option value="49">4.9</option><option value="48">4.8</option><option value="47">4.7</option><option value="46">4.6</option><option value="45">4.5</option><option value="44">4.4</option><option value="43">4.3</option><option value="42">4.2</option><option value="41">4.1</option><option value="40">4.0</option><option value="39">3.9</option><option value="38">3.8</option><option value="37">3.7</option><option value="36">3.6</option><option value="35">3.5</option><option value="34">3.4</option><option value="33">3.3</option><option value="32">3.2</option><option value="31">3.1</option><option value="30">3.0</option><option value="29">2.9</option><option value="28">2.8</option><option value="27">2.7</option><option value="26">2.6</option><option value="25">2.5</option><option value="24">2.4</option><option value="23">2.3</option><option value="22">2.2</option><option value="21">2.1</option><option value="20">2.0</option><option value="19">1.9</option><option value="18">1.8</option><option value="17">1.7</option><option value="16">1.6</option><option value="15">1.5</option><option value="14">1.4</option><option value="13">1.3</option><option value="12">1.2</option></select></div><div class="styles__select__2r0oi mui-m-h-tb" data-mui-col="1/1-lg 1/2-sm 1/1-xs 1/1"><label for="Color">Color</label><select id="Color"><option value="">ALL</option><option value="Beige">Beige</option><option value="Black">Black</option><option value="Blue">Blue</option><option value="Brown">Brown</option><option value="Burgundy">Burgundy</option><option value="Charcoal">Charcoal</option><option value="Gold">Gold</option><option value="Gray">Gray</option><option value="Green">Green</option><option value="Lime">Lime</option><option value="Off-white">Off-white</option><option value="Orange">Orange</option><option value="Pink">Pink</option><option value="Purple">Purple</option><option value="Red">Red</option><option value="Silver">Silver</option><option value="Turquoise">Turquoise</option><option value="White">White</option><option value="Yellow">Yellow</option></select></div></div></div></div></div><script defer="" src="components/SelectVehicle.9706887fbf775c546cd9.js"></script>
</div>
</div>
<div data-mui-row="">
<div data-mui-col="1/1">
<!-- AdjustmentSummary component --><style></style><div data-mmr-component="AdjustmentSummary"><div class="hide print--show--block" data-reactroot=""><h2 class="mui-m-q-b">Valuation Adjustments</h2><div data-mui-row="true"><div data-mui-col="4/5"><div data-mui-row="true"><div data-mui-col="1/5"><p class="bold mui-m-q-b">Odometer</p><p>N/A</p></div><div data-mui-col="1/5"><p class="bold mui-m-q-b">Condition</p><p>All</p></div><div data-mui-col="1/5"><p class="bold mui-m-q-b">Color</p><p>All</p></div><div data-mui-col="1/5"><p class="bold mui-m-q-b">Country</p><p>US</p></div><div data-mui-col="1/5"><p class="bold mui-m-q-b">Region</p><p>NA</p></div></div></div></div></div></div><script defer="" src="components/AdjustmentSummary.a500f15e03b3664b8814.js"></script>
</div>
</div>
</div>
<div class="content-body">
<div data-mui-row="" class="left-gutter">
<div data-mui-col="11/24-sm 1/1">
<!-- MMRWholesaleDisplay component --><style>.styles__custom__3nYi6 {
font-size: 3em;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 1em;
width: 1em; }
/* We may need this in the future to address drunken spinners */
/*.custom::before {*/
/*margin-left: -(0.25 / $size * 1em);*/
/*}*/
.styles__average__2N_lt {
margin-bottom: .5rem;
line-height: 6rem;
font-weight: 300; }
.styles__high__2ZLjS, .styles__low__2SAXF {
font-size: 1.15em; }
.styles__footnote__vXP6W {
font-size: 1.2rem;
margin-top: 1rem; }
.styles__low__2SAXF {
float: left; }
.styles__high__2ZLjS {
float: right; }
@media only screen and (min-width: 1200px) {
/* Styles for viewports mui-xl or larger */
.styles__highLowContainer__127qA {
padding: 0; }
.styles__high__2ZLjS {
padding-left: 5px; }
.styles__stackAlignRight__2X7Dc {
min-width: 50px;
max-width: 105px;
padding-left: 5px;
text-align: right;
display: inline-block; }
.styles__left__3f_Uh {
text-align: left; }
.styles__right__nWSil {
text-align: right; } }
@media only screen and (max-width: 1199px) {
/* Styles for viewports smaller than mui-xl */
.styles__highLowContainer__127qA {
width: 160px;
margin: 0 auto; }
.styles__low__2SAXF {
margin-bottom: 8px; }
.styles__stackAlignLeft__3uTjc {
float: left; }
.styles__stackAlignRight__2X7Dc {
float: right; } }
@media only screen and (max-width: 567px) {
/* Styles for viewports smaller than mui-sm */
.styles__highLowContainer__127qA {
width: 100%;
font-size: .8em;
color: #555; }
.styles__low__2SAXF {
width: 50%;
padding: 0 20px; }
.styles__high__2ZLjS {
width: 50%;
padding: 0 20px; } }
@media print {
.styles__stackAlignLeft__3uTjc {
margin-right: 0.5em; } }
.styles__container__37H-y {
text-align: center;
position: relative;
max-width: 300px;
min-width: 280px;
margin: 0 auto; }
.styles__title__7GiSr {
line-height: 4rem;
vertical-align: text-bottom; }
@media only screen and (max-width: 767px) {
.styles__container__37H-y {
min-width: 230px; } }
@media only screen and (min-width: 768px) {
.styles__title__7GiSr {
font-size: 2.6rem; } }
@media only screen and (max-width: 567px) {
.styles__container__37H-y {
max-width: 100%;
min-width: 280px;
margin: 0; } }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL01NUldob2xlc2FsZURpc3BsYXkuYzY2NTk1MTUyMzJiOWM0MDlkYWMuY3NzIiwic291cmNlUm9vdCI6IiJ9*/</style><div data-mmr-component="MMRWholesaleDisplay"><div data-test="MMRWholesaleDisplay" class="styles__container__37H-y font--lato" data-mui-row="true" data-reactroot=""><div data-mui-col="1/1"><div class="styles__title__7GiSr h2 bold"><!-- react-text: 24 -->MMR Wholesale Value<!-- /react-text --><!-- react-text: 25 -->*<!-- /react-text --></div><div style="position: relative;"><div style=""><div data-test="MMRValue"><div style="font-size: 3em; margin-bottom: 0.8rem;" class="styles__average__2N_lt warning bold" data-test="MMRValueAverage">- -</div><div data-mui-row="true"><div class="styles__highLowContainer__127qA" data-mui-col="1/1"><div data-mui-row="true"><div class="styles__low__2SAXF styles__left__3f_Uh" data-mui-col="1/2-xl 1/1-xs"><span class="dark styles__stackAlignLeft__3uTjc">Low</span><span data-test="MMRValueLow" class="bold styles__stackAlignRight__2X7Dc">- -</span></div></div><div data-mui-row="true"><div class="styles__high__2ZLjS styles__right__nWSil" data-mui-col="1/2-xl 1/1-xs"><span class="dark styles__stackAlignLeft__3uTjc">High</span><span data-test="MMRValueHigh" class="bold styles__stackAlignRight__2X7Dc">- -</span></div></div></div></div><div class="styles__footnote__vXP6W">*Not enough data to generate valuation</div></div></div></div></div></div></div><script defer="" src="components/MMRWholesaleDisplay.c6659515232b9c409dac.js"></script>
</div>
<div data-mui-col="2/24-sm 1/1">
<div class="dynamic-rule value"></div>
</div>
<div data-mui-col="11/24-sm 1/1">
<!-- MMRRetailDisplay component --><style>.styles__custom__3nYi6 {
font-size: 3em;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 1em;
width: 1em; }
/* We may need this in the future to address drunken spinners */
/*.custom::before {*/
/*margin-left: -(0.25 / $size * 1em);*/
/*}*/
.styles__average__2N_lt {
margin-bottom: .5rem;
line-height: 6rem;
font-weight: 300; }
.styles__high__2ZLjS, .styles__low__2SAXF {
font-size: 1.15em; }
.styles__footnote__vXP6W {
font-size: 1.2rem;
margin-top: 1rem; }
.styles__low__2SAXF {
float: left; }
.styles__high__2ZLjS {
float: right; }
@media only screen and (min-width: 1200px) {
/* Styles for viewports mui-xl or larger */
.styles__highLowContainer__127qA {
padding: 0; }
.styles__high__2ZLjS {
padding-left: 5px; }
.styles__stackAlignRight__2X7Dc {
min-width: 50px;
max-width: 105px;
padding-left: 5px;
text-align: right;
display: inline-block; }
.styles__left__3f_Uh {
text-align: left; }
.styles__right__nWSil {
text-align: right; } }
@media only screen and (max-width: 1199px) {
/* Styles for viewports smaller than mui-xl */
.styles__highLowContainer__127qA {
width: 160px;
margin: 0 auto; }
.styles__low__2SAXF {
margin-bottom: 8px; }
.styles__stackAlignLeft__3uTjc {
float: left; }
.styles__stackAlignRight__2X7Dc {
float: right; } }
@media only screen and (max-width: 567px) {
/* Styles for viewports smaller than mui-sm */
.styles__highLowContainer__127qA {
width: 100%;
font-size: .8em;
color: #555; }
.styles__low__2SAXF {
width: 50%;
padding: 0 20px; }
.styles__high__2ZLjS {
width: 50%;
padding: 0 20px; } }
@media print {
.styles__stackAlignLeft__3uTjc {
margin-right: 0.5em; } }
.styles__container__8ZSfQ {
text-align: center;
position: relative;
max-width: 300px;
min-width: 280px;
margin: 0 auto; }
.styles__subHeading__3ACH- {
font-size: 1.2rem;
font-weight: 400;
line-height: 1.2rem;
margin-top: -.5rem;
color: #767676; }
.styles__title__Q3dOZ {
line-height: 4rem;
vertical-align: text-bottom; }
@media only screen and (max-width: 767px) {
.styles__container__8ZSfQ {
max-width: 50%;
min-width: 230px; } }
@media only screen and (min-width: 768px) {
.styles__title__Q3dOZ {
font-size: 1.5em; } }
@media only screen and (max-width: 567px) {
.styles__container__8ZSfQ {
max-width: 100%;
min-width: 280px;
margin: 0; } }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL01NUlJldGFpbERpc3BsYXkuY2I4NWM5NTZjNjViYzFlZjhkNjIuY3NzIiwic291cmNlUm9vdCI6IiJ9*/</style><div data-mmr-component="MMRRetailDisplay"><div data-test="MMRRetailDisplay" class="styles__container__8ZSfQ font--lato" data-mui-row="true" data-reactroot=""><div data-mui-col="1/1"><div class="styles__title__Q3dOZ h2 bold"><!-- react-text: 25 -->Est. Retail Value<!-- /react-text --><!-- react-text: 26 -->*<!-- /react-text --><div class="styles__subHeading__3ACH-">Based on Advertised Retail Prices</div></div><div style="position: relative;"><div style=""><div data-test="MMRValue"><div style="font-size: 2em; margin-bottom: 0.1rem; color: rgb(0, 52, 104);" class="styles__average__2N_lt bold" data-test="MMRValueAverage">- -</div><div data-mui-row="true"><div class="styles__highLowContainer__127qA" data-mui-col="1/1"><div data-mui-row="true"><div class="styles__low__2SAXF styles__left__3f_Uh" data-mui-col="1/2-xl 1/1-xs"><span class="dark styles__stackAlignLeft__3uTjc">Low</span><span data-test="MMRValueLow" class="bold styles__stackAlignRight__2X7Dc">- -</span></div></div><div data-mui-row="true"><div class="styles__high__2ZLjS styles__right__nWSil" data-mui-col="1/2-xl 1/1-xs"><span class="dark styles__stackAlignLeft__3uTjc">High</span><span data-test="MMRValueHigh" class="bold styles__stackAlignRight__2X7Dc">- -</span></div></div></div></div><div class="styles__footnote__vXP6W">*Not enough data to generate valuation</div></div></div></div></div></div></div><script defer="" src="components/MMRRetailDisplay.cb85c956c65bc1ef8d62.js"></script>
</div>
<div class="dynamic-rule value-btm"></div>
<div class="spacer"></div>
</div>
<div data-mui-row="" class="left-gutter">
<div data-mui-col="1/1">
<!-- MMRTransactions component --><style>.styles__custom__3nYi6 {
font-size: 3em;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 1em;
width: 1em; }
/* We may need this in the future to address drunken spinners */
/*.custom::before {*/
/*margin-left: -(0.25 / $size * 1em);*/
/*}*/
.styles__collapseActive__1Sskd {
pointer-events: none;
cursor: default;
text-decoration: none;
color: #797979; }
.styles__collapseLink__3yN85 {
cursor: pointer; }
.styles__showing__NceZF {
font-size: 12px;
line-height: 3rem;
vertical-align: bottom;
margin: 0 .5em 0 0; }
.styles__title__3Z3O7 {
position: relative;
height: 3rem; }
.styles__titleHeading__17IMm {
position: relative;
bottom: 0; }
.styles__title__3Z3O7 + table {
border-top-width: 0px;
border-bottom-width: 0px; }
.styles__light__110M4 {
color: #BABCBE; }
.styles__biggerArrow__ndKpq {
font-size: 1.2em; }
.styles__collapseIcon__1lini {
font-size: 1.8em;
cursor: pointer; }
.styles__columnTitle__1sdE- {
font-size: 0.7em;
font-weight: normal;
color: #797979; }
.styles__desktopTransaction__3JVS1 {
height: 44px; }
.styles__desktopTransaction__3JVS1:nth-child(even) {
background-color: #f6f6f6; }
.styles__header__2rdxS {
cursor: pointer; }
.styles__nullState__2U3wL {
position: relative;
width: 100%;
padding-top: 90px;
text-align: center; }
.styles__emptyBody__WiWK5 {
height: 200px; }
td.styles__emptyBody__WiWK5 .styles__nullState__2U3wL {
padding-top: 10px; }
.styles__noSelect__1sjnF {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none; }
.styles__hr__3iufw {
margin-top: 0.4em; }
.styles__mainDataCol__36-MS {
line-height: 1em;
min-height: 15px;
vertical-align: bottom; }
.styles__mainDataMobile__3tHVv {
font-size: 0.87em; }
.styles__columnKey__3YYam {
font-size: 0.8em; }
.styles__columnKey__3YYam div > div:last-child > div {
margin-bottom: 0; }
.styles__mobileFooter__3sv7j p:first-child {
font-size: 0.8em;
font-weight: bold; }
.styles__mobileHeader__34SEJ {
padding: 0.5em;
background-color: #eee;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
.styles__mobileReverse__1xgFg {
height: 100%; }
.styles__mobileReverse__1xgFg label {
line-height: 35px;
position: relative; }
.styles__mobileReverse__1xgFg label span {
font-size: 0.88em;
position: absolute; }
.styles__mobileReverse__1xgFg input {
margin-right: 0.5em; }
.styles__mobileColumnTitle__3Jxuo {
font-size: 0.9em;
font-weight: normal;
color: #797979; }
.styles__extendedDataMobileContainer__2WXsw {
width: 100%; }
.styles__extendedDataMobileContainer__2WXsw > div {
width: 100%; }
.styles__mobileSelect__2Rz1e {
height: 100%;
line-height: 35px;
font-size: 0.88em; }
.styles__mobileSelect__2Rz1e select {
margin-left: 0.5em; }
.styles__mobileTransaction__3YBlM {
padding: 1em 0.5em 0.5em;
margin-bottom: 0;
border-bottom: 1px solid #BABCBE; }
.styles__mobileTransaction__3YBlM:nth-child(even) {
background-color: #f6f6f6; }
.styles__columnKey__3YYam {
padding: 0.5em 0 0; }
.styles__muiTable__2s6lo tbody td,
.styles__muiTable__2s6lo thead th {
padding: .5em .5em;
font-size: 1.3rem; }
.styles__adjustmentsMatchRow__qqr3p {
background-color: #FDF8DA !important; }
.styles__tabletValues__2mvHP {
font-size: 0.9em;
margin-bottom: 1em; }
.styles__tabletFooter__110SK {
padding: 1em;
background-color: #E8E9E9; }
.styles__tabletHeader__1VLBP {
background-color: #E8E9E9;
padding: 1em 0.8em 0;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
.styles__tabletHeaderTitles__2CPBZ {
font-size: 0.8em;
padding-right: 2.25em;
padding-bottom: 1.1em; }
.styles__tabletTransaction__2viuK {
border-bottom: 1px solid #CCC;
padding: 1em 0.8em 0;
margin-bottom: 0; }
.styles__tabletTransaction__2viuK:nth-child(even) {
background-color: #f6f6f6; }
thead,
thead > tr,
thead > tr > th:first-child {
border-top-left-radius: 3px; }
thead,
thead > tr,
thead > tr > th:last-child {
border-top-right-radius: 3px; }
.styles__truncate__2oG3D {
width: 162.5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.styles__mobileFooter__3biBB {
border-radius: 0 0 3px 3px; }
.styles__mobileFooter__3biBB p:first-child {
font-size: 0.8em;
font-weight: bold; }
.styles__showingText__1Te7Z {
margin-bottom: 1px;
font-size: 14px; }
.styles__tabletFooter__3JA5i {
padding: 1em;
background-color: #E8E9E9;
border-radius: 0 0 3px 3px; }
tfoot {
line-height: 14px; }
tfoot tr > td {
height: 44px; }
tfoot,
tfoot > tr,
tfoot > tr > td:first-child {
border-bottom-left-radius: 3px; }
tfoot,
tfoot > tr,
tfoot > tr > td:last-child {
border-bottom-right-radius: 3px; }
table {
border-size: 0 !important; }
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjb21wb25lbnRzL01NUlRyYW5zYWN0aW9ucy41MWJjMDhmNTg0ZDA4YWVjYjI3Yi5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/</style><div data-mmr-component="MMRTransactions"><div data-reactroot=""><div class="styles__title__3Z3O7"><span class="h3 pull--left styles__titleHeading__17IMm">All Transactions</span><span class="pull--right styles__showing__NceZF"><span><!-- react-text: 98 -->Showing <!-- /react-text --><!-- react-text: 99 -->25 of 25<!-- /react-text --></span></span><br class="clear"></div><table class="mui-table styles__muiTable__2s6lo"><thead><tr><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 59 -->Date <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 62 -->Price <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 65 -->Odo <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 68 -->Cond <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 71 -->Engine/Trans <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 74 -->Color <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 77 -->Type <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 80 -->Region <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th><th unselectable="on" class="styles__header__2rdxS styles__noSelect__1sjnF"><!-- react-text: 83 -->Auction <!-- /react-text --><i class="styles__biggerArrow__ndKpq icon-triangle-down styles__light__110M4"></i></th></tr></thead><tbody><tr class="styles__desktopTransaction__3JVS1 "><td>3/17/16</td><td>$114,000**</td><td>7,329</td><td>4.9</td><td>12G/P</td><td>Black</td><td>Regular</td><td>National</td><td>PLM1 - Manheim Pennsylvania</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>11/19/15</td><td>$107,000**</td><td>35,047</td><td>4.0</td><td>12G/A</td><td>Black</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/28/15</td><td>$95,250**</td><td>28,045</td><td>3.8</td><td>12G/A</td><td>Blue</td><td>Regular</td><td>West Coast</td><td>Hawaii</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/27/15</td><td>$116,000**</td><td>13,535</td><td>4.6</td><td>12G/A</td><td>Black</td><td>Lease</td><td>West Coast</td><td>Nevada</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/27/15</td><td>$122,500**</td><td>17,394</td><td>4.0</td><td>12G/A</td><td>Black</td><td>Lease</td><td>West Coast</td><td>Nevada</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/26/15</td><td>$115,000**</td><td>22,043</td><td>- -</td><td>12G/A</td><td>Blue</td><td>Regular</td><td>Southeast</td><td>Orlando</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/13/15</td><td>$116,000**</td><td>43,253</td><td>4.1</td><td>12G/P</td><td>White</td><td>Regular</td><td>Southeast</td><td>Atlanta</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/13/15</td><td>$122,000**</td><td>11,925</td><td>- -</td><td>12C/A</td><td>- -</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>10/13/15</td><td>$118,000**</td><td>9,933</td><td>4.5</td><td>12G/A</td><td>Black</td><td>Regular</td><td>Southeast</td><td>Atlanta</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>9/24/15</td><td>$115,000**</td><td>6,083</td><td>4.1</td><td>12G/A</td><td>Gray</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>8/19/15</td><td>$103,000**</td><td>44,087</td><td>3.4</td><td>12G/A</td><td>Silver</td><td>Regular</td><td>Southeast</td><td>Atlanta</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>8/12/15</td><td>$108,000**</td><td>42,745</td><td>4.0</td><td>12G/A</td><td>Silver</td><td>Regular</td><td>Southeast</td><td>Palm Beach</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>8/12/15</td><td>$118,800**</td><td>8,397</td><td>4.7</td><td>12G/A</td><td>Gray</td><td>Regular</td><td>Southeast</td><td>Palm Beach</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/30/15</td><td>$123,500**</td><td>5,646</td><td>3.9</td><td>12G/A</td><td>Silver</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/30/15</td><td>$118,200**</td><td>19,249</td><td>3.5</td><td>12G/A</td><td>White</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/30/15</td><td>$117,000**</td><td>22,303</td><td>4.3</td><td>12G/A</td><td>Silver</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/23/15</td><td>$124,500**</td><td>14,773</td><td>- -</td><td>12G/- -</td><td>Black</td><td>Regular</td><td>Southeast</td><td>Palm Beach</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/23/15</td><td>$114,250**</td><td>14,237</td><td>4.8</td><td>12G/P</td><td>Gray</td><td>Regular</td><td>Northeast</td><td>Pennsylvania</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/16/15</td><td>$122,000**</td><td>14,146</td><td>3.5</td><td>12G/A</td><td>Black</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>7/2/15</td><td>$127,000**</td><td>13,660</td><td>3.1</td><td>12G/A</td><td>White</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>6/29/15</td><td>$119,000**</td><td>34,699</td><td>- -</td><td>/A</td><td>- -</td><td>Regular</td><td>Midwest</td><td>Detroit</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>6/22/15</td><td>$128,000**</td><td>17,473</td><td>- -</td><td>NON/- -</td><td>Black</td><td>Regular</td><td>Midwest</td><td>Chicago</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>6/18/15</td><td>$119,000**</td><td>15,097</td><td>4.0</td><td>12G/A</td><td>Black</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>6/17/15</td><td>$116,000**</td><td>6,444</td><td>2.1</td><td>12G/A</td><td>Blue</td><td>Regular</td><td>Southeast</td><td>Palm Beach</td></tr><tr class="styles__desktopTransaction__3JVS1 "><td>6/4/15</td><td>$120,000**</td><td>18,170</td><td>4.2</td><td>12G/A</td><td>Black</td><td>Regular</td><td>West Coast</td><td>Riverside</td></tr></tbody><tfoot><tr><td colspan="100%"><div class="valign--middle"><div style="" class="pull--left"><p class="mui-m-n-tb"><span class="styles__showingText__1Te7Z"><!-- react-text: 350 -->Showing <!-- /react-text --><!-- react-text: 351 -->25 of 25<!-- /react-text --></span></p><p style="font-size: 12px;" class="mui-m-n-tb">** Transactions not in sample</p></div><div class="pull--right"></div></div></td></tr></tfoot></table></div></div><script defer="" src="components/MMRTransactions.51bc08f584d08aecb27b.js"></script>
</div>
<div class="spacer"></div>
</div>
<div data-mui-row="" class="left-gutter">
<div data-mui-col="11/24-xl 1/1">
<!-- MMRHistoricalAverage component --><style>.styles__container__15g0- {
text-align: center; }
.styles__odometer__31Kek {
font-size: 1.275rem; }
.styles__odometerText__23B0Y {
font-variant: small-caps;
font-size: 1.4rem; }
.styles__container__15g0- h2 {
margin: 0.5em 0; }
.styles__value__SSUmO {
color: #003468;
font-size: 1.125em;
padding: 0.5em 0; }
@media only screen and (max-width: 567px) {
/* Styles for viewports smaller than mui-sm */
.styles__header__xQ3ks {
font-size: 1.3rem; } }
.styles__custom__3nYi6 {
font-size: 3em;
position: absolute;
margin: auto;
top: 0;