forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbostonherald.com2.html
More file actions
940 lines (779 loc) · 65.9 KB
/
Copy pathbostonherald.com2.html
File metadata and controls
940 lines (779 loc) · 65.9 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" version="XHTML+RDFa 1.0" dir="ltr"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:sioct="http://rdfs.org/sioc/types#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<head profile="http://www.w3.org/1999/xhtml/vocab">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"Ug8FWFVQGwABU1ZXAgQ="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o?o:e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({QJf3ax:[function(t,e){function n(t){function e(e,n,a){t&&t(e,n,a),a||(a={});for(var c=s(e),u=c.length,f=i(a,o,r),d=0;u>d;d++)c[d].apply(f,n);return f}function a(t,e){u[t]=s(t).concat(e)}function s(t){return u[t]||[]}function c(){return n(e)}var u={};return{on:a,emit:e,create:c,listeners:s,_events:u}}function r(){return{}}var o="nr@context",i=t("gos");e.exports=n()},{gos:"7eSDFh"}],ee:[function(t,e){e.exports=t("QJf3ax")},{}],3:[function(t){function e(t,e,n,i,s){try{c?c-=1:r("err",[s||new UncaughtException(t,e,n)])}catch(u){try{r("ierr",[u,(new Date).getTime(),!0])}catch(f){}}return"function"==typeof a?a.apply(this,o(arguments)):!1}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function n(t){r("err",[t,(new Date).getTime()])}var r=t("handle"),o=t(4),i=t("ee"),a=window.onerror,s=!1,c=0;t("loader").features.err=!0,window.onerror=e,NREUM.noticeError=n;try{throw new Error}catch(u){"stack"in u&&(t(5),t(3),"addEventListener"in window&&t(1),window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&t(2),s=!0)}i.on("fn-start",function(){s&&(c+=1)}),i.on("fn-err",function(t,e,r){s&&(this.thrown=!0,n(r))}),i.on("fn-end",function(){s&&!this.thrown&&c>0&&(c-=1)}),i.on("internal-error",function(t){r("ierr",[t,(new Date).getTime(),!0])})},{1:4,2:7,3:5,4:18,5:6,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],4:[function(t,e){function n(t){i.inPlace(t,["addEventListener","removeEventListener"],"-",r)}function r(t){return t[1]}var o=(t(1),t("ee").create()),i=t(2)(o),a=t("gos");if(e.exports=o,n(window),"getPrototypeOf"in Object){for(var s=document;s&&!s.hasOwnProperty("addEventListener");)s=Object.getPrototypeOf(s);s&&n(s);for(var c=XMLHttpRequest.prototype;c&&!c.hasOwnProperty("addEventListener");)c=Object.getPrototypeOf(c);c&&n(c)}else XMLHttpRequest.prototype.hasOwnProperty("addEventListener")&&n(XMLHttpRequest.prototype);o.on("addEventListener-start",function(t){if(t[1]){var e=t[1];"function"==typeof e?this.wrapped=t[1]=a(e,"nr@wrapped",function(){return i(e,"fn-",null,e.name||"anonymous")}):"function"==typeof e.handleEvent&&i.inPlace(e,["handleEvent"],"fn-")}}),o.on("removeEventListener-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{1:18,2:19,ee:"QJf3ax",gos:"7eSDFh"}],5:[function(t,e){var n=(t(2),t("ee").create()),r=t(1)(n);e.exports=n,r.inPlace(window,["requestAnimationFrame","mozRequestAnimationFrame","webkitRequestAnimationFrame","msRequestAnimationFrame"],"raf-"),n.on("raf-start",function(t){t[0]=r(t[0],"fn-")})},{1:19,2:18,ee:"QJf3ax"}],6:[function(t,e){function n(t,e,n){var r=t[0];"string"==typeof r&&(r=new Function(r)),t[0]=o(r,"fn-",null,n)}var r=(t(2),t("ee").create()),o=t(1)(r);e.exports=r,o.inPlace(window,["setTimeout","setInterval","setImmediate"],"setTimer-"),r.on("setTimer-start",n)},{1:19,2:18,ee:"QJf3ax"}],7:[function(t,e){function n(){c.inPlace(this,d,"fn-")}function r(t,e){c.inPlace(e,["onreadystatechange"],"fn-")}function o(t,e){return e}var i=t("ee").create(),a=t(1),s=t(2),c=s(i),u=s(a),f=window.XMLHttpRequest,d=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"];e.exports=i,window.XMLHttpRequest=function(t){var e=new f(t);try{i.emit("new-xhr",[],e),u.inPlace(e,["addEventListener","removeEventListener"],"-",function(t,e){return e}),e.addEventListener("readystatechange",n,!1)}catch(r){try{i.emit("internal-error",[r])}catch(o){}}return e},window.XMLHttpRequest.prototype=f.prototype,c.inPlace(XMLHttpRequest.prototype,["open","send"],"-xhr-",o),i.on("send-xhr-start",r),i.on("open-xhr-start",r)},{1:4,2:19,ee:"QJf3ax"}],8:[function(t){function e(t){if("string"==typeof t&&t.length)return t.length;if("object"!=typeof t)return void 0;if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if("undefined"!=typeof FormData&&t instanceof FormData)return void 0;try{return JSON.stringify(t).length}catch(e){return void 0}}function n(t){var n=this.params,r=this.metrics;if(!this.ended){this.ended=!0;for(var i=0;c>i;i++)t.removeEventListener(s[i],this.listener,!1);if(!n.aborted){if(r.duration=(new Date).getTime()-this.startTime,4===t.readyState){n.status=t.status;var a=t.responseType,u="arraybuffer"===a||"blob"===a||"json"===a?t.response:t.responseText,f=e(u);if(f&&(r.rxSize=f),this.sameOrigin){var d=t.getResponseHeader("X-NewRelic-App-Data");d&&(n.cat=d.split(", ").pop())}}else n.status=0;r.cbTime=this.cbTime,o("xhr",[n,r,this.startTime])}}}function r(t,e){var n=i(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}if(window.XMLHttpRequest&&XMLHttpRequest.prototype&&XMLHttpRequest.prototype.addEventListener&&!/CriOS/.test(navigator.userAgent)){t("loader").features.xhr=!0;var o=t("handle"),i=t(2),a=t("ee"),s=["load","error","abort","timeout"],c=s.length,u=t(1);t(4),t(3),a.on("new-xhr",function(){this.totalCbs=0,this.called=0,this.cbTime=0,this.end=n,this.ended=!1,this.xhrGuids={}}),a.on("open-xhr-start",function(t){this.params={method:t[0]},r(this,t[1]),this.metrics={}}),a.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),a.on("send-xhr-start",function(t,n){var r=this.metrics,o=t[0],i=this;if(r&&o){var u=e(o);u&&(r.txSize=u)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof n.onload))&&i.end(n)}catch(e){try{a.emit("internal-error",[e])}catch(r){}}};for(var f=0;c>f;f++)n.addEventListener(s[f],this.listener,!1)}),a.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),a.on("xhr-load-added",function(t,e){var n=""+u(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),a.on("xhr-load-removed",function(t,e){var n=""+u(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),a.on("addEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-added",[t[1],t[2]],e)}),a.on("removeEventListener-end",function(t,e){e instanceof XMLHttpRequest&&"load"===t[0]&&a.emit("xhr-load-removed",[t[1],t[2]],e)}),a.on("fn-start",function(t,e,n){e instanceof XMLHttpRequest&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),a.on("fn-end",function(t,e){this.xhrCbStart&&a.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{1:"XL7HBI",2:9,3:7,4:4,ee:"QJf3ax",handle:"D5DuLP",loader:"G9z0Bl"}],9:[function(t,e){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");return!r.port&&o[1]&&(r.port=o[1].split("/")[0].split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname),r.sameOrigin=!e.hostname||e.hostname===document.domain&&e.port===n.port&&e.protocol===n.protocol,r}},{}],gos:[function(t,e){e.exports=t("7eSDFh")},{}],"7eSDFh":[function(t,e){function n(t,e,n){if(r.call(t,e))return t[e];var o=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:o,writable:!0,enumerable:!1}),o}catch(i){}return t[e]=o,o}var r=Object.prototype.hasOwnProperty;e.exports=n},{}],D5DuLP:[function(t,e){function n(t,e,n){return r.listeners(t).length?r.emit(t,e,n):(o[t]||(o[t]=[]),void o[t].push(e))}var r=t("ee").create(),o={};e.exports=n,n.ee=r,r.q=o},{ee:"QJf3ax"}],handle:[function(t,e){e.exports=t("D5DuLP")},{}],XL7HBI:[function(t,e){function n(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:i(t,o,function(){return r++})}var r=1,o="nr@id",i=t("gos");e.exports=n},{gos:"7eSDFh"}],id:[function(t,e){e.exports=t("XL7HBI")},{}],loader:[function(t,e){e.exports=t("G9z0Bl")},{}],G9z0Bl:[function(t,e){function n(){var t=p.info=NREUM.info;if(t&&t.agent&&t.licenseKey&&t.applicationID&&c&&c.body){p.proto="https"===d.split(":")[0]||t.sslForHttp?"https://":"http://",a("mark",["onload",i()]);var e=c.createElement("script");e.src=p.proto+t.agent,c.body.appendChild(e)}}function r(){"complete"===c.readyState&&o()}function o(){a("mark",["domContent",i()])}function i(){return(new Date).getTime()}var a=t("handle"),s=window,c=s.document,u="addEventListener",f="attachEvent",d=(""+location).split("?")[0],p=e.exports={offset:i(),origin:d,features:{}};c[u]?(c[u]("DOMContentLoaded",o,!1),s[u]("load",n,!1)):(c[f]("onreadystatechange",r),s[f]("onload",n)),a("mark",["firstbyte",i()])},{handle:"D5DuLP"}],18:[function(t,e){function n(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(0>o?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=n},{}],19:[function(t,e){function n(t){return!(t&&"function"==typeof t&&t.apply&&!t[i])}var r=t("ee"),o=t(1),i="nr@wrapper",a=Object.prototype.hasOwnProperty;e.exports=function(t){function e(t,e,r,a){function nrWrapper(){var n,i,s,u;try{i=this,n=o(arguments),s=r&&r(n,i)||{}}catch(d){f([d,"",[n,i,a],s])}c(e+"start",[n,i,a],s);try{return u=t.apply(i,n)}catch(p){throw c(e+"err",[n,i,p],s),p}finally{c(e+"end",[n,i,u],s)}}return n(t)?t:(e||(e=""),nrWrapper[i]=!0,u(t,nrWrapper),nrWrapper)}function s(t,r,o,i){o||(o="");var a,s,c,u="-"===o.charAt(0);for(c=0;c<r.length;c++)s=r[c],a=t[s],n(a)||(t[s]=e(a,u?s+o:o,i,s,t))}function c(e,n,r){try{t.emit(e,n,r)}catch(o){f([o,e,n,r])}}function u(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){f([r])}for(var o in t)a.call(t,o)&&(e[o]=t[o]);return e}function f(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=r),e.inPlace=s,e.flag=i,e}},{1:18,ee:"QJf3ax"}]},{},["G9z0Bl",3,8]);</script>
<meta property="article:tag" content="Chrome Industries" />
<meta property="description" content="
Chrome Industries' Mini Buran laptop messenger bag ($140) is a good in
" />
<meta property="news_keywords" content="Chrome Industries, Sports Items, Gift Guide" />
<meta property="article:tag" content="Sports Items" />
<meta property="article:tag" content="Gift Guide" />
<meta name='parsely-page' content='{"link":"https:\/\/www.bostonherald.com\/gift_guide\/sports_items\/2014\/12\/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last","type":"post","post_id":"1064691049","title":"Chrome Industries\u0027 Mini Buran laptop messenger bag is meant to last","pub_date":"2014-12-17T03:25:00Z","tags":["Chrome Industries","section-Gift Guide"],"authors":["Sean Griffin"],"section":"Sports Items"}' /><meta property="article:modified_time" content="2014-12-18T08:28:51-05:00" />
<meta property="article:published_time" content="2014-12-16T22:25:00-05:00" />
<meta property="article:section" content="Chrome Industries" />
<meta property="keywords" content="Chrome Industries, Sports Items, Gift Guide" />
<meta http-equiv="refresh" content="300" />
<meta name="description" content="Chrome Industries' Mini Buran laptop messenger bag ($140) is a good in" />
<meta about="/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" property="sioc:num_replies" content="0" datatype="xsd:integer" />
<meta content="Chrome Industries' Mini Buran laptop messenger bag is meant to last" about="/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" property="dc:title" />
<link rel="shortlink" href="/node/1064691049" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:description" content="Chrome Industries' Mini Buran laptop messenger bag ($140) is a good in" />
<link rel="canonical" href="//www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" />
<meta name="generator" content="Drupal 7 (http://drupal.org)" />
<meta property="twitter:title" content="Chrome Industries' Mini Buran laptop messenger bag is meant to last" />
<link rel="shortcut icon" href="//www.bostonherald.com/sites/default/files/images/favicon.ico" type="image/vnd.microsoft.icon" />
<title>Sports Items | Boston Herald</title>
<style type="text/css" media="all">@import url("//www.bostonherald.com/modules/system/system.base.css?nhbap5");
@import url("//www.bostonherald.com/modules/system/system.menus.css?nhbap5");
@import url("//www.bostonherald.com/modules/system/system.messages.css?nhbap5");
@import url("//www.bostonherald.com/modules/system/system.theme.css?nhbap5");</style>
<style type="text/css" media="all">@import url("//www.bostonherald.com/modules/aggregator/aggregator.css?nhbap5");
@import url("//www.bostonherald.com/modules/comment/comment.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/date/date_api/date.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?nhbap5");
@import url("//www.bostonherald.com/modules/field/theme/field.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/mollom/mollom.css?nhbap5");
@import url("//www.bostonherald.com/modules/node/node.css?nhbap5");
@import url("//www.bostonherald.com/modules/poll/poll.css?nhbap5");
@import url("//www.bostonherald.com/modules/user/user.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/views/css/views.css?nhbap5");</style>
<style type="text/css" media="all">@import url("//www.bostonherald.com/sites/all/modules/ctools/css/ctools.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/lightbox2/css/lightbox.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/panels/css/panels.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/rate/rate.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/libraries/superfish/css/superfish.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/libraries/superfish/css/superfish-vertical.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/libraries/superfish/css/superfish-navbar.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/views_slideshow/views_slideshow.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/modules/print/css/printlinks.css?nhbap5");</style>
<style type="text/css" media="all">@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/basics.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/custom_blocks.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/navigation.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/view-story_slots.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/taxonomy/taxonomy-styles.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/bhr.css?nhbap5");</style>
<style type="text/css" media="print">@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/print.css?nhbap5");</style>
<style type="text/css" media="all">@import url("//www.bostonherald.com/sites/all/themes/omega/alpha/css/alpha-reset.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/omega/alpha/css/alpha-alpha.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/omega/omega/css/formalize.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/omega/omega/css/omega-branding.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/omega/omega/css/omega-forms.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/layout-node.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/layout-node-article.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/global.css?nhbap5");</style>
<style type="text/css" media="all">@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/ike-omega-alpha-default.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/ike_omega/css/ike-omega-alpha-default-normal.css?nhbap5");
@import url("//www.bostonherald.com/sites/all/themes/omega/alpha/css/grid/alpha_default/normal/alpha-default-normal-24.css?nhbap5");</style>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_xAPl0qIk9eowy_iS9tNkCWXLUVoat94SQT48UBCFkyQ.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var bh_dfp_ad_slot = bh_dfp_ad_slot || "/3771966/BostonHerald/gift_guide/sports_items";
//--><!]]>
</script>
<script type="text/javascript" src="//www.googletagservices.com/tag/js/gpt.js"></script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_LPQUedRJ45VZkLLqi74HPxlsWNh1DPKP89Q87dZNdbM.js"></script>
<script type="text/javascript" src="//apis.google.com/js/plusone.js"></script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_wADqrksbLjpADrEP1u4pHYthtl35__ZprOG3i8_l2SE.js"></script>
<script type="text/javascript" src="//www.bostonherald.com/sites/all/modules/lightbox2/js/lightbox.js?1420285616"></script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_YgBRcvQohgPe1B2xdv3XbvAJCLbjiMcxZ5bRAhg9y4s.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [[300,250],[300,600],[300,1050]], "div-gpt-ad-107188472").addService(googletag.pubads());
//--><!]]>
</script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_skSaZdSwdso6ZSA6K49b7nrI1RsaM6XWBSE8pWgkGrY.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [[300,250],[300,600],[300,1050]], "div-gpt-ad-1405377357").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [160,600], "div-gpt-ad-2016138396").addService(googletag.pubads());
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [728,90], "div-gpt-ad-1995025315").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [[988,250],[988,90],[970,250],[970,90]], "div-gpt-ad-687613395").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.defineSlot(bh_dfp_ad_slot, [728,90], "div-gpt-ad-81062307").addService(googletag.pubads());
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
var bh_IsBlog = false; var bh_TID = 280471; var bh_Type = "article"; var bh_Source = "";
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
googletag.pubads().setTargeting("entity","node");
//--><!]]>
</script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
//defines
googletag.defineOutOfPageSlot(bh_dfp_ad_slot, "div-gpt-ad-oop").addService(googletag.pubads());
googletag.defineSlot(bh_dfp_ad_slot, [1,1], "div-gpt-ad-1by1").addService(googletag.pubads());
googletag.defineSlot(bh_dfp_ad_slot, [1900,2000], "reskin_overlay").addService(googletag.pubads());
googletag.pubads().enableSyncRendering();
googletag.pubads().enableSingleRequest();
googletag.enableServices();
//--><!]]>
</script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_dFSwRD_YjUaZFy5PeT-GVRxSvG9i3JUg1PWEAXn9noQ.js"></script>
<script type="text/javascript" src="//www.bostonherald.com/sites/default/files/js/js_uwrfBOJCFVq42muTMjrq2bD-RUh8NNq_fZRTb6dsNb4.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"ike_omega","theme_token":"GNgJR9crbOjG4RwGyxPuHELRkZDHRbwf1wRnZ-QFJZ0","js":{"misc\/jquery.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"0":1,"http:\/\/www.googletagservices.com\/tag\/js\/gpt.js":1,"sites\/all\/modules\/mollom\/mollom.js":1,"https:\/\/apis.google.com\/js\/plusone.js":1,"sites\/all\/modules\/lightbox2\/js\/auto_image_handling.js":1,"sites\/all\/modules\/lightbox2\/js\/lightbox.js":1,"sites\/all\/modules\/panels\/js\/panels.js":1,"sites\/all\/libraries\/superfish\/jquery.hoverIntent.minified.js":1,"sites\/all\/libraries\/superfish\/jquery.bgiframe.min.js":1,"sites\/all\/libraries\/superfish\/superfish.js":1,"sites\/all\/libraries\/superfish\/supersubs.js":1,"sites\/all\/libraries\/superfish\/supposition.js":1,"sites\/all\/libraries\/superfish\/sftouchscreen.js":1,"sites\/all\/modules\/views_slideshow\/js\/views_slideshow.js":1,"sites\/all\/modules\/disqus\/disqus.js":1,"1":1,"sites\/all\/libraries\/jquery.cycle\/jquery.cycle.all.min.js":1,"sites\/all\/libraries\/json2\/json2.js":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/js\/views_slideshow_cycle.js":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"9":1,"sites\/all\/themes\/ike_omega\/js\/jquery.equalheights.js":1,"sites\/all\/themes\/ike_omega\/js\/custom.js":1,"sites\/all\/themes\/omega\/omega\/js\/jquery.formalize.js":1,"sites\/all\/themes\/omega\/omega\/js\/omega-mediaqueries.js":1,"sites\/all\/themes\/omega\/omega\/js\/omega-equalheights.js":1},"css":{"modules\/system\/system.base.css":1,"modules\/system\/system.menus.css":1,"modules\/system\/system.messages.css":1,"modules\/system\/system.theme.css":1,"modules\/aggregator\/aggregator.css":1,"modules\/comment\/comment.css":1,"sites\/all\/modules\/date\/date_api\/date.css":1,"sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css":1,"modules\/field\/theme\/field.css":1,"sites\/all\/modules\/mollom\/mollom.css":1,"modules\/node\/node.css":1,"modules\/poll\/poll.css":1,"modules\/user\/user.css":1,"sites\/all\/modules\/views\/css\/views.css":1,"sites\/all\/modules\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/lightbox2\/css\/lightbox.css":1,"sites\/all\/modules\/panels\/css\/panels.css":1,"sites\/all\/modules\/rate\/rate.css":1,"sites\/all\/libraries\/superfish\/css\/superfish.css":1,"sites\/all\/libraries\/superfish\/css\/superfish-vertical.css":1,"sites\/all\/libraries\/superfish\/css\/superfish-navbar.css":1,"sites\/all\/modules\/views_slideshow\/views_slideshow.css":1,"sites\/all\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/views_slideshow_cycle.css":1,"sites\/all\/modules\/print\/css\/printlinks.css":1,"sites\/all\/themes\/ike_omega\/css\/basics.css":1,"sites\/all\/themes\/ike_omega\/css\/custom_blocks.css":1,"sites\/all\/themes\/ike_omega\/css\/navigation.css":1,"sites\/all\/themes\/ike_omega\/css\/view-story_slots.css":1,"sites\/all\/themes\/ike_omega\/css\/taxonomy\/taxonomy-styles.css":1,"sites\/all\/themes\/ike_omega\/css\/bhr.css":1,"sites\/all\/themes\/ike_omega\/css\/print.css":1,"sites\/all\/themes\/omega\/alpha\/css\/alpha-reset.css":1,"sites\/all\/themes\/omega\/alpha\/css\/alpha-alpha.css":1,"sites\/all\/themes\/omega\/omega\/css\/formalize.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-branding.css":1,"sites\/all\/themes\/omega\/omega\/css\/omega-forms.css":1,"sites\/all\/themes\/ike_omega\/css\/layout-node.css":1,"sites\/all\/themes\/ike_omega\/css\/layout-node-article.css":1,"sites\/all\/themes\/ike_omega\/css\/global.css":1,"normal::sites\/all\/themes\/ike_omega\/css\/ike-omega-alpha-default.css":1,"normal::sites\/all\/themes\/ike_omega\/css\/ike-omega-alpha-default-normal.css":1,"sites\/all\/themes\/omega\/alpha\/css\/grid\/alpha_default\/normal\/alpha-default-normal-24.css":1}},"jcarousel":{"ajaxPath":"\/jcarousel\/ajax\/views"},"lightbox2":{"rtl":0,"file_path":"\/(\\w\\w\/)public:\/","default_image":"\/sites\/all\/modules\/lightbox2\/images\/brokenimage.jpg","border_size":10,"font_color":"000","box_color":"fff","top_position":"","overlay_opacity":"0.8","overlay_color":"000","disable_close_click":1,"resize_sequence":0,"resize_speed":400,"fade_in_speed":400,"slide_down_speed":600,"use_alt_layout":0,"disable_resize":0,"disable_zoom":1,"force_show_nav":0,"show_caption":1,"loop_items":0,"node_link_text":"View Image Details","node_link_target":0,"image_count":"Image !current of !total","video_count":"Video !current of !total","page_count":"Page !current of !total","lite_press_x_close":"press \u003Ca href=\u0022#\u0022 onclick=\u0022hideLightbox(); return FALSE;\u0022\u003E\u003Ckbd\u003Ex\u003C\/kbd\u003E\u003C\/a\u003E to close","download_link_text":"","enable_login":false,"enable_contact":false,"keys_close":"c x 27","keys_previous":"p 37","keys_next":"n 39","keys_zoom":"z","keys_play_pause":"32","display_image_size":"original","image_node_sizes":"()","trigger_lightbox_classes":"","trigger_lightbox_group_classes":"","trigger_slideshow_classes":"","trigger_lightframe_classes":"","trigger_lightframe_group_classes":"","custom_class_handler":"lightbox","custom_trigger_classes":"img.photo-gal","disable_for_gallery_lists":1,"disable_for_acidfree_gallery_lists":true,"enable_acidfree_videos":true,"slideshow_interval":25000,"slideshow_automatic_start":1,"slideshow_automatic_exit":0,"show_play_pause":1,"pause_on_next_click":0,"pause_on_previous_click":0,"loop_slides":0,"iframe_width":600,"iframe_height":400,"iframe_border":1,"enable_video":0},"disqusComments":"bostonherald","viewsSlideshow":{"photo_box-single_node_images":{"methods":{"goToSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"nextSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"pause":["viewsSlideshowControls","viewsSlideshowCycle"],"play":["viewsSlideshowControls","viewsSlideshowCycle"],"previousSlide":["viewsSlideshowPager","viewsSlideshowSlideCounter","viewsSlideshowCycle"],"transitionBegin":["viewsSlideshowPager","viewsSlideshowSlideCounter"],"transitionEnd":[]},"paused":0}},"viewsSlideshowPager":{"photo_box-single_node_images":{"bottom":{"type":"viewsSlideshowPagerFields"}}},"viewsSlideshowPagerFields":{"photo_box-single_node_images":{"bottom":{"activatePauseOnHover":0}}},"viewsSlideshowCycle":{"#views_slideshow_cycle_main_photo_box-single_node_images":{"num_divs":1,"id_prefix":"#views_slideshow_cycle_main_","div_prefix":"#views_slideshow_cycle_div_","vss_id":"photo_box-single_node_images","effect":"fade","transition_advanced":1,"timeout":0,"speed":700,"delay":0,"sync":1,"random":0,"pause":1,"pause_on_click":0,"action_advanced":0,"start_paused":0,"remember_slide":0,"remember_slide_days":1,"pause_in_middle":0,"pause_when_hidden":0,"pause_when_hidden_type":"full","amount_allowed_visible":"","nowrap":0,"fixed_height":1,"items_per_slide":1,"wait_for_image_load":1,"wait_for_image_load_timeout":3000,"cleartype":0,"cleartypenobg":0,"advanced_options":"{}"}},"omega":{"layouts":{"primary":"normal","order":["normal"],"queries":{"normal":"all and (min-width: 520px) and (min-device-width: 520px), all and (max-device-width: 1024px) and (min-width: 1024px) and (orientation:landscape)"}}}});
//--><!]]>
</script>
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="/sites/all/themes/ike_omega/css/ie.css" />
<![endif]-->
<!-- Windows 8 tile -->
<meta name="application-name" content="The Boston Herald"/>
<meta name="msapplication-TileColor" content="#005e9b"/>
<meta name="msapplication-TileImage" content="213c8c33-9b77-486e-a54f-d4efd5a7fe09.png"/>
<link rel="apple-touch-icon" href="/touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/touch-icon-iphone-retina.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/touch-icon-ipad-retina.png" />
<script type="text/javascript" async src="//launch.newsinc.com/js/embed.js" id="_nw2e-js"></script>
</head>
<body class="html not-front not-logged-in page-node page-node- page-node-1064691049 node-type-article context-gift-guide page-taxonomy-term-ancestor-first-280436 page-taxonomy-term-280471">
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-5ZZ6"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5ZZ6');</script>
<!-- End Google Tag Manager -->
<!-- START Parse.ly Include: Standard -->
<div id="parsely-root" style="display: none">
<div id="parsely-cfg" data-parsely-site="bostonherald.com"></div>
</div>
<script>
(function(s, p, d) {
var h=d.location.protocol, i=p+"-"+s,
e=d.getElementById(i), r=d.getElementById(p+"-root"),
u=h==="https:"?"d1z2jf7jlzjs58.cloudfront.net"
:"static."+p+".com";
if (e) return;
e = d.createElement(s); e.id = i; e.async = true;
e.src = h+"//"+u+"/p.js"; r.appendChild(e);
})("script", "parsely", document);
</script>
<!-- END Parse.ly Include -->
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
</div>
<div class="region region-page-top" id="region-page-top">
<div class="region-inner region-page-top-inner">
<!-- BostonHerald out-of-page -->
<div id='div-gpt-ad-oop'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-oop');
</script>
</div>
<!-- BostonHerald 1x1 -->
<div id='div-gpt-ad-1by1'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-1by1');
</script>
</div> </div>
</div> <div class="page clearfix" id="page">
<header id="section-header" class="section section-header">
<div id="header-wrap" class="clearfix">
<div id="zone-top-wrapper" class="zone-wrapper zone-top-wrapper clearfix">
<div id="zone-top" class="zone zone-top clearfix container-24">
<div class="grid-5 region region-top-first" id="region-top-first">
<div class="region-inner region-top-first-inner">
<div class="block block-menu-block block-9 block-menu-block-9 odd block-without-title" id="block-menu-block-9">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="menu-block-wrapper menu-block-9 menu-name-menu-logo-link parent-mlid-0 menu-level-1">
<ul class="menu"><li class="first leaf menu-mlid-9609"><a href="/" title="">Home - Boston Herald - www.bostonherald.com</a></li>
<li class="leaf menu-mlid-9610"><a href="/" title="RSS - The Boston Herald">RSS</a></li>
<li class="leaf menu-mlid-9615"><a href="/subscribe" title="Subscribe to The Boston Herald">Subscribe</a></li>
<li class="leaf menu-mlid-16516"><a href="/classifieds/extras" title="The Boston Herald - Extras - Shopping, Crossword, Sudoku, Lottery Results, Coupons, Horoscope, Weather">Extras</a></li>
<li class="leaf menu-mlid-9611"><a href="/classifieds/extras/crossword" title="Crossword - The Boston Herald">Crossword</a></li>
<li class="last leaf menu-mlid-9614"><a href="/classifieds/extras/lottery" title="Lottery - The Boston Herald">Lottery</a></li>
</ul></div>
</div>
</div>
</div> </div>
</div><div class="grid-19 region region-top-second" id="region-top-second">
<div class="region-inner region-top-second-inner">
<div class="block block-oas block-top block-oas-top odd block-without-title" id="block-oas-top">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="div-gpt-ad-1995025315" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [728,90], "div-gpt-ad-1995025315").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
*/
googletag.display("div-gpt-ad-1995025315");
</script>
</div> </div>
</div>
</div> </div>
</div> </div>
</div>
<div id="zone-menu" class="zone zone-menu clearfix container-24">
<div class="grid-24 region region-menu full-width" id="region-menu">
<div class="region-inner region-menu-inner">
<div class="block block-block block-1077 block-block-1077 odd block-without-title" id="block-block-1077">
<div class="block-inner clearfix">
<div class="content clearfix">
<ul id="herald-nav" class="clearfix">
<li id="home"><a href="/" title="The Boston Herald - Home">Home</a></li>
<li id="news"><a href="/news" title="News & Opinion">News & Opinion</a></li>
<li id="sports"><a href="/sports" title="Sports">Sports</a></li>
<li id="business"><a href="/business" title="Business">Business</a></li>
<li id="entertainment"><a href="/entertainment" title="Entertainment">Entertainment</a> </li>
<li id="track"><a href="/track" title="Inside Track" class="sf-depth-1 menuparent">Inside Track</a></li>
<li id="blogs"><a href="/blogs" title="Blogs">Blogs</a></li>
<li id="photo"><a href="/photos" title="Photos">Photos</a></li>
<li id="video"><a href="/video" title="Herald Video" >Video</a></li>
<li id="radio"><a href="/herald_radio" title="Boston Herald Radio" >Radio</a></li>
<li id="obituaries"><a href="http://www.legacy.com/obituaries/bostonherald/" title="Obituaries" target="_blank">Obituaries</a></li>
<li id="features"><a href="/news_opinion/databases" title="Special coverage and hot topics">Features</a></li>
<li id="classifieds"><a href="/classifieds" title="Jobs, Autos, Homes, and Business listings" >Classifieds</a></li>
</ul> </div>
</div>
</div> </div>
</div>
</div>
<div id="zone-header" class="zone zone-header clearfix container-24">
<div class="grid-6 region region-header-first" id="region-header-first">
<div class="region-inner region-header-first-inner">
<!-- ESI: esi/block/ike_omega:header_first:views:last_updated-block--><div class="block block-views block-last-updated-block block-views-last-updated-block odd block-without-title" id="block-views-last-updated-block">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="view view-last-updated view-id-last_updated view-display-id-block view-dom-id-039cc32b31a9278c00192aef2ac4c4dc">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last">
<article>
<span class="views-field views-field-changed"> <span class="field-content">Saturday, January 3, 2015</span> </span></article>
</div>
</div>
</div> </div>
</div>
</div> </div>
</div><div class="grid-12 region region-header-second" id="region-header-second">
<div class="region-inner region-header-second-inner">
<!-- ESI: esi/block/ike_omega:header_second:views:abe4c28d5d96be0601864cc375a839c4--><div class="block block-views block-abe4c28d5d96be0601864cc375a839c4 block-views-abe4c28d5d96be0601864cc375a839c4 odd block-without-title" id="block-views-abe4c28d5d96be0601864cc375a839c4">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="view view-weather-current-conditions view-id-weather_current_conditions view-display-id-block view-dom-id-6fd8f9991a22c88b12055b581454a939">
<div class="view-content">
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last">
<div id="weather-teaser">
<a href="/extras/weather"><strong>Weather</strong><img src="http://www.bostonherald.com/sites/default/files/nt_partlycloudy_422.gif" width="30" height="30" /> 23° F</a>
</div> </div>
</div>
</div> </div>
</div>
</div><div class="block block-block block-11 block-block-11 odd block-without-title" id="block-block-11">
<div class="block-inner clearfix">
<div class="content clearfix">
<ul id="social-head-nav">
<li id="social-fb"> <a href="http://www.facebook.com/pages/BostonHeraldcom/197211981599" target="_blank" title="Join the Boston Herald on Twitter">Join the Boston Herald on Twitter</a></li>
<li id="social-twt"><a href="http://twitter.com/bostonherald" target="_blank" title="Follow the Boston Herald on Twitter">Follow the Boston Herald on Twitter</a></li>
<li id="social-goog"><a href="https://plus.google.com/u/0/113097839281026181771?prsrc=3" target="_blank" title="Join the Boston Herald on Google+">Join the Boston Herald on Google+</a></li>
<li id="social-toob"><a href="http://www.youtube.com/user/bostonherald" target="_blank" title="View Boston Herald videos on YouTube">View Boston Herald videos on YouTube</a></li>
</ul> </div>
</div>
</div> </div>
</div><div class="grid-6 region region-header-third" id="region-header-third">
<div class="region-inner region-header-third-inner">
<div class="block block-block block-1110 block-block-1110 odd block-without-title" id="block-block-1110">
<div class="block-inner clearfix">
<div class="content clearfix">
<script>
(function() {
var cx = '011156039655073670009:mv2nojszjlc';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchbox-only queryParameterName="query" resultsUrl="/search"></gcse:searchbox-only>
</div>
</div>
</div><!-- ESI: esi/block/ike_omega:header_third:views:6b7d5589cc19b27f22fd254c79bd7b30--><div class="block block-views block-6b7d5589cc19b27f22fd254c79bd7b30 block-views-6b7d5589cc19b27f22fd254c79bd7b30 odd block-without-title" id="block-views-6b7d5589cc19b27f22fd254c79bd7b30">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="view view-herald-radio-now-playing view-id-herald_radio_now_playing view-display-id-block_5 view-dom-id-18d52cdfda0bc853f5c068a09ef2bb79">
<div class="view-empty">
<h2 class="hr-show-title"><a href="http://bostonherald.com/herald_radio" title="Boston Herald Radio Weekdays 6am to 6pm"><strong>Listen Live</strong>Weekdays 6am to 6pm</a></h2> </div>
</div> </div>
</div>
</div> </div>
</div> </div>
<div id="zone-alert-wrapper" class="zone-wrapper zone-alert-wrapper clearfix">
<div id="zone-alert" class="zone zone-alert clearfix container-24">
<div class="grid-24 region region-alert" id="region-alert">
<div class="region-inner region-alert-inner">
<!-- ESI: esi/block/ike_omega:alert:views:breaking_news-breaking_news_bar--><div class="block block-oas block-x80 block-oas-x80 odd block-without-title" id="block-oas-x80">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="div-gpt-ad-687613395" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [[988,250],[988,90],[970,250],[970,90]], "div-gpt-ad-687613395").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
*/
googletag.display("div-gpt-ad-687613395");
</script>
</div> </div>
</div>
</div> </div>
</div> </div>
</div> </div>
</header>
<section id="section-content" class="section section-content">
<div id="zone-content-wrapper" class="zone-wrapper zone-content-wrapper clearfix">
<div id="zone-content" class="zone zone-content clearfix container-24">
<div id="breadcrumb" class="grid-24"><h2 class="element-invisible">You are here</h2><div class="breadcrumb"><a href="/">Home</a> » <a href="/gift_guide">Gift Guide</a> » <a href="/gift_guide/sports_items">Sports Items</a></div></div>
<div class="grid-24 region region-content" id="region-content">
<div class="region-inner region-content-inner">
<a id="main-content"></a>
<h1 class="title" id="page-title">Sports Items <span class="tagline"></span></h1>
<div class="tabs clearfix"></div> <div class="block block-system block-main block-system-main odd block-without-title" id="block-system-main">
<div class="block-inner clearfix">
<div class="content clearfix">
<div class="panel-display omega_24_threecol_11_8_5" id="bh_article">
<div class="panel-panel grid-11 alpha">
<div class="inside"><div class="panel-pane pane-node-content" >
<div class="pane-content clearfix">
<article itemscope itemtype="http://schema.org/NewsArticle" about="/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" typeof="sioc:Item foaf:Document" class="node node-article node-published node-not-promoted node-not-sticky author-sean-griffin odd clearfix" id="node-article-1064691049">
<header>
<meta itemprop="name" content="Chrome Industries' Mini Buran laptop messenger bag is meant to last | Boston Herald" />
<!-- Title -->
<h1 itemprop="headline" property="dc:title" datatype="" class="node-title">Chrome Industries' Mini Buran laptop messenger bag is meant to last</h1>
<!-- Subtitle -->
<h2 itemprop="alternativeHeadline" class="node-subtitle"></h2>
</header>
<!-- Content -->
<div class="content clearfix">
<!-- date/email/print/comments -->
<div class="node-metainfo clearfix">
<!-- Published At Date -->
<time itemprop="datePublished" datetime="2014-12-16T22:25:00-05:00" class="field field-name-field-published-at field-type-datestamp field-label-hidden">Tuesday, December 16, 2014</time>
<div class="node-action">
<!-- Print/Email -->
<span class="print_html"><a href="http://www.bostonherald.com/print/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" title="Display a printer-friendly version of this page." class="print-page" onclick="window.open(this.href); return false" rel="nofollow">Print</a></span><span class="print_mail"><a href="http://www.bostonherald.com/printmail/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" title="Send this page by email." class="print-mail" rel="nofollow">Email</a></span>
<!-- Comment Count-->
<span class="node_commentcount"><a href="/comments/1064691049#disqus_thread" data-disqus-identifier="node/1064691049" itemprop="discussionUrl">Comments</a></span>
</div>
</div>
<!-- Authors -->
<div class="node_author-inline clearfix">
<h3>By:</h3>
<div class="field field-name-field-authors field-type-entityreference field-label-hidden">
<div class="field-items">
<div class="field-item even"><a href="/users/sean_griffin">Sean Griffin</a></div>
</div>
</div> </div>
<!-- Content Insert -->
<div id="node_article-insert" class="clearfix">
<h3></h3>
</div>
<div class="field field-name-body field-type-text-with-summary field-label-hidden">
<div class="field-items">
<div class="field-item even" property="content:encoded"><p><a href="http://www.chromeindustries.com/us/en/mini-buran">Chrome Industries' Mini Buran laptop messenger bag</a> ($140) is a good investment for anyone who needs a sturdy bag that is built to last and can contain all of your stuff, whether it be a thin laptop or iPad. There are also small pockets for lighter objects.</p><table cellpadding="0" cellspacing="0" border="0" width="195"><tr>
<td height="12"><span style="display:block;height:12px;width:12px;overflow:hidden;"> </span></td></tr></table>
<table cellspacing="0" cellpadding="0" border="0" width="100%"><tr>
<td><font class="bodyFont" color="#cc6600"><b>The article you requested has been archived</b></font></td>
</tr><tr>
<td bgcolor="#999999" height="1" colspan="2"><span style="display:block;height:1px;width:1px;overflow:hidden;"> </span></td>
</tr><tr>
<td bgcolor="#efefef" colspan="2">
<table width="100%" cellpadding="4" cellspacing="2" border="0" bgcolor="#efefef"><tr>
<td valign="top">
<font class="bodyFont">All coverage within bostonherald.com from the last 14 days remains <b>free of charge</b>. Articles do not always include original photos, charts or graphics.</font></td>
</tr><tr>
<td valign="top">
<font class="buttonFont" color="#333333"> »
<a href="http://nl.newsbank.com/nl-search/we/Archives?p_product=BNHB&p_theme=bnhb&p_action=search&p_maxdocs=200&p_field_fselect-0=&p_text_fselect-0=Chrome+Industries%27+Mini+Buran+laptop+messenger+bag+is+meant+to+last&s_dispstring=all%28Chrome+Industries%27+Mini+Buran+laptop+messenger+bag+is+meant+to+last%29&p_field_date-0=YMD_date&p_params_date-0=date:B,E&p_perpage=10&p_sort=YMD_date:D&xcal_useweights=no">Click here to search for this article within the archive.</a></font></td>
</tr></table>
</td></tr></table></div>
</div>
</div>
<!-- Tags -->
<div id="node_article-tags" class="clearfix">
<h3>More On:</h3>
<div class="field field-name-field-tag-entity field-type-entityreference field-label-hidden">
<div class="field-items">
<div class="field-item even"><a href="/topic/chrome_industries">Chrome Industries</a></div>
</div>
</div> </div>
<!-- Authors -->
<div id="node_author-blocks" class="clearfix">
<h3>Author(s):</h3>
<div class="field field-name-field-authors field-type-entityreference field-label-hidden">
<div class="field-items">
<div class="field-item even"><div class="author_blocks"><div class="author_block clearfix" itemprop="author" itemscope itemtype="http://schema.org/Person"><h3 class="author_name"><a href="/users/sean_griffin" itemprop="url"><span itemprop="name">Sean Griffin</span></a></h3><div class="placeholder-last"> </div></div></div></div>
</div>
</div> </div>
<!-- Share This -->
<div class="sharethis-wrapper"><span st_url="http://www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" st_title="Chrome Industries&#039; Mini Buran laptop messenger bag is meant to last" class="st_facebook_button" displaytext="facebook"></span>
<span st_url="http://www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" st_title="Chrome Industries&#039; Mini Buran laptop messenger bag is meant to last" class="st_twitter_button" displaytext="twitter"></span>
<span st_url="http://www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" st_title="Chrome Industries&#039; Mini Buran laptop messenger bag is meant to last" class="st_googleplus_button" displaytext="googleplus"></span>
<span st_url="http://www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" st_title="Chrome Industries&#039; Mini Buran laptop messenger bag is meant to last" class="st_reddit_button" displaytext="reddit"></span>
<span st_url="http://www.bostonherald.com/gift_guide/sports_items/2014/12/chrome_industries_mini_buran_laptop_messenger_bag_is_meant_to_last" st_title="Chrome Industries&#039; Mini Buran laptop messenger bag is meant to last" class="st_linkedin_button" displaytext="linkedin"></span>
<script type='text/javascript'>var switchTo5x = true;</script><script type='text/javascript' src='http://w.sharethis.com/button/buttons.js'></script><script type='text/javascript'>stLight.options({"publisher":"dr-512df3c0-5f09-fddb-e47a-715e1d9b3a0b"});</script></div>
<!-- Join The Conversation -->
</div>
<div class="clearfix">
<nav class="links node-links clearfix"></nav>
</div>
</article> </div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-block pane-oas-middle1" >
<div class="pane-content clearfix">
<div id="div-gpt-ad-107188472" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [[300,250],[300,600],[300,1050]], "div-gpt-ad-107188472").addService(googletag.pubads());
*/
googletag.display("div-gpt-ad-107188472");
</script>
</div> </div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-block pane-block-20" >
<h2 class="pane-title" class="panel-title">Advertisement</h2>
<div class="pane-content clearfix">
<script type="text/javascript"><!--
google_ad_client = "pub-1030395994297178";
/* 336x280, created 5/6/08 */
google_ad_slot = "8490313844";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
</div>
</div>
</div>
<div class="panel-panel grid-8">
<div class="inside"><div class="panel-pane pane-views pane-photo-box" >
<div class="pane-content clearfix">
<div class="view view-photo-box view-id-photo_box view-display-id-single_node_images view-dom-id-2fa9a6e6118f9c1390f812194d9bc6ae">
<div class="view-content">
<div class="skin-default">
<div id="views_slideshow_cycle_main_photo_box-single_node_images" class="views_slideshow_cycle_main views_slideshow_main"><div id="views_slideshow_cycle_teaser_section_photo_box-single_node_images" class="views-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section">
<div id="views_slideshow_cycle_div_photo_box-single_node_images_0" class="views-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-odd">
<div class="views-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-first views-row-odd">
<article>
<div class="views-field views-field-field-media"> <div class="field-content"><div id="file-4488667" class="file file-image file-image-jpeg" class="file file-image file-image-jpeg">
<h2 class="element-invisible"><a href="/file/4488667">f645ad45a591c4a717067dcdf6c9ffd6.jpg</a></h2>
<div class="content">
<img typeof="foaf:Image" src="http://www.bostonherald.com/sites/default/files/styles/default/public/media/2014/12/17/f645ad45a591c4a717067dcdf6c9ffd6.jpg?itok=fL6PxSzP&c=f36d32d0df7da27c28b6589a34ce07a8" width="350" height="290" alt="" title="" />
<div class="field field-name-field-authors field-type-entityreference field-label-inline clearfix">
<h3 class="field-label">Photo by: </h3>
<div class="field-items">
<div class="field-item even"><a href="/users/unknown">Unknown</a></div>
</div>
</div> </div>
</div>
</div> </div></article>
</div>
</div>
</div>
</div>
<div class="views-slideshow-controls-bottom clearfix">
<div id="widget_pager_bottom_photo_box-single_node_images" class="views-slideshow-pager-fields widget_pager widget_pager_bottom views_slideshow_pager_field">
<div id="views_slideshow_pager_field_item_bottom_photo_box-single_node_images_0" class="views-slideshow-pager-field-item views_slideshow_pager_field_item views-row-odd">
<div class="views-field-counter">
<div class="views-content-counter">
1 </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-block pane-oas-middle" >
<div class="pane-content clearfix">
<div id="div-gpt-ad-1405377357" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [[300,250],[300,600],[300,1050]], "div-gpt-ad-1405377357").addService(googletag.pubads()).setTargeting("above_the_fold", "True");
*/
googletag.display("div-gpt-ad-1405377357");
</script>
</div> </div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-custom pane-1" >
<div class="pane-content clearfix">
<iframe src="http://rcm.amazon.com/e/cm?t=wwwbostonhera-20&o=1&p=12&l=ur1&category=giftcardsseasonal&banner=07J78V1QR9YDJDGD8JG2&f=ifr" width="300" height="250" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>
</div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-block pane-block-316" >
<div class="pane-content clearfix">
<div id="nmWidgetContainer" data-client="548"></div>
<script src="http://cdn.nmcdn.us/js/connect.js"></script>
<script type="text/javascript">
NM.init({ClientID: 548});
</script> </div>
</div>
</div>
</div>
<div class="panel-panel grid-5 omega">
<div class="inside"><div class="panel-pane pane-block pane-oas-right" >
<div class="pane-content clearfix">
<div id="div-gpt-ad-2016138396" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [160,600], "div-gpt-ad-2016138396").addService(googletag.pubads());
*/
googletag.display("div-gpt-ad-2016138396");
</script>
</div> </div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-block pane-block-19" >
<h2 class="pane-title" class="panel-title">Advertisement</h2>
<div class="pane-content clearfix">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1030395994297178";
/* 120x600 Rightmost Articles */
google_ad_slot = "7467660351";
google_ad_width = 120;
google_ad_height = 600;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div></section>
<footer id="section-footer" class="section section-footer">
<div id="zone-footer-wrapper" class="zone-wrapper zone-footer-wrapper clearfix">
<div id="zone-footer" class="zone zone-footer clearfix container-24">
<div class="grid-24 region region-footer-first" id="region-footer-first">
<div class="region-inner region-footer-first-inner">
<div class="block block-oas block-bottom block-oas-bottom odd block-without-title" id="block-oas-bottom">
<div class="block-inner clearfix">
<div class="content clearfix">
<div id="div-gpt-ad-81062307" >
<script type="text/javascript">
/*
googletag.defineSlot(bh_dfp_ad_slot, [728,90], "div-gpt-ad-81062307").addService(googletag.pubads());
*/
googletag.display("div-gpt-ad-81062307");
</script>
</div> </div>
</div>
</div> </div>
</div><div class="grid-24 region region-footer-second" id="region-footer-second">
<div class="region-inner region-footer-second-inner">
<div class="block block-block block-436 block-block-436 odd block-without-title" id="block-block-436">
<div class="block-inner clearfix">
<div class="content clearfix">
<ul id="bh-site-map">
<li>
<a href="/news" title="News & Opinion"><strong>News & Opinion</strong></a>
<ul>
<li><a href="/news_opinion/local_coverage" title="Local Coverage">Local Coverage</a></li>
<li><a href="/news_opinion/local_politics" title="Local Politics">Local Politics</a></li>
<li><a href="/news_opinion/columnists" title="Columnists">Columnists</a></li>
<li><a href="/news_opinion/opinion" title="Opinion">Opinion</a></li>
<li><a href="/news_opinion/national" title="National">National</a></li>
<li><a href="/news_opinion/us_politics" title="U.S. Politics">U.S. Politics</a></li>
<li><a href="/news_opinion/international" title="International">International</a></li>
<li><a href="/news_opinion/offbeat_news" title="Offbeat News">Offbeat News</a></li>
<li><a href="/news_opinion/obituaries" title="Obituaries">Obituaries</a></li>
</ul>
</li>
<li>
<a href="/sports" title="Sports"><strong>Sports</strong></a>
<ul>
<li><a href="/sports/red_sox_mlb" title="Red Sox & MLB">Red Sox & MLB</a></li>
<li><a href="/sports/patriots_nfl" title="Patriots & NFL">Patriots & NFL</a></li>
<li><a href="/sports/celtics_nba" title="Celtics & NBA">Celtics & NBA</a></li>
<li><a href="/sports/bruins_nhl" title="Bruins & NHL">Bruins & NHL</a></li>
<li><a href="/sports/college" title="College">College</a></li>
<li><a href="/sports/revolution_soccer" title="Revolution & Soccer">Revolution & Soccer</a></li>
<li><a href="/sports/golf" title="Golf">Golf</a></li>
<li><a href="/sports/columnists" title="Columnists">Columnists</a></li>
<li><a href="/sports/high_school" title="High School">High School</a></li>
</ul>
</li>
<li>
<a href="/entertainment" title="Entertainment"><strong>Entertainment</strong></a>
<ul>
<li><a href="/entertainment/arts_culture" title="Arts & Culture">Arts & Culture</a></li>
<li><a href="/entertainment/movies" title="">Movies</a></li>
<li><a href="/entertainment/music" title="">Music</a></li>
<li><a href="/entertainment/food_dining" title="">Food & Dining</a></li>
<li><a href="/entertainment/health_fitness" title="">Health & Fitness</a></li>
<li><a href="/entertainment/travel" title="Travel">Travel</a></li>
<li><a href="/entertainment/lifestyle" title="Lifestyle">Lifestyle</a></li>
<li><a href="/entertainment/style_fashion" title="Style & Fashion">Style & Fashion</a></li>
<li><a href="/entertainment/books" title="Books">Books</a></li>
<li><a href="/entertainment/television" title="Television">Television</a></li>
</ul>
</li>
<li>
<a href="/inside_track/inside_track" title="The Inside Track"><strong>The Inside Track</strong></a>
<ul>
<li><a href="/inside_track/celebrity_news" title="">Celebrity News</a></li>
</ul>
</li>
<li>
<a href="/business" title="Business"><strong>Business</strong></a>
<ul>
<li><a href="/business/real_estate" title="Real Estate">Real Estate</a></li>
<li><a href="/business/media_marketing" title="Media & Marketing">Media & Marketing</a></li>
<li><a href="/business/automotive" title="Automotive">Automotive</a></li>
<li><a href="/business/business_markets" title="Business & Markets">Business & Markets</a></li>
</ul>
</li>
<li>
<a href="http://www.heraldmedia.com/bostonHerald/index.html" title="About The Boston Herald"><strong>About The Herald</strong></a>
<ul>
<li><a href="/about/news_tip" title="Send a News Tip">Send a News Tip</a></li>
<li><a href="/about/contact" title="Contact Us">Contact Us</a></li>
<li><a href="https://plus.google.com/u/0/113097839281026181771?prsrc=3" title="The Boston Herald on Google+" target="_blank">Google+</a></li>
<li><a href="http://twitter.com/bostonherald" title="The Boston Herald on Twitter" target="_blank">Twitter</a></li>
<li><a href="http://www.facebook.com/pages/BostonHeraldcom/197211981599" title="The Boston Herald on Facebook" target="_blank">Facebook</a></li>
</ul>
</li>
<li>
<a href="/classifieds" title="Boston Herald Classifieds"><strong>Classifieds</strong></a>
<ul>
<li><a href="http://directory.bostonherald.com/boston+ma.z.html" title="Boston Business Directory" target="_blank">Boston Business Directory</a></li>
<li><a href="http://www.carfind.com/" title="Carfind">Carfind</a></li>
<li><a href="http://www.homefind.com/" title="Homefind">Homefind</a></li>
<li><a href="/classifieds/jobfind" title="Jobfind">Jobfind</a></li>
</ul>
</li>
<li>
<a href="/classifieds/extras" title="Boston Herald Extras"><strong>Extras</strong></a>
<ul>
<li><a href="/about/home_delivery/" title="The Boston Herald - Home Delivery">Home Delivery</a></li>
<li><a href="/classifieds/extras/horoscope">Horoscope</a></li>
<li><a href="/classifieds/extras/lottery" title="The Boston Herald - Lottery Results">Lottery</a></li>
<li><a href="/classifieds/extras/contests" title="Contest Corner">Contest Corner</a></li>
<li><a href="/classifieds/extras/crossword" title="The Boston Herald - Crossword">Crossword</a></li>
<li><a href="/classifieds/extras/weather" title="Weather">Weather</a></li>
<li><a href="/user">Log In</a></li>
</ul>
</li>
</ul>
<!-- Orange -->
<ul id="bh-footer-nav" class="clearfix">
<li class="first"><a href="/about/advertising/advertise_with_us" title="Advertise With Us">Advertise With Us</a></li>
<li><a href="http://store.heraldinteractive.com/" title="Purchase Boston Herald Back Copies">Purchase Back Copies</a></li>
<li><a href="/about/news_tip" title="Send a News Tip">Send a News Tip</a></li>
<li><a href="/about/herald_history/2012/12/send_letter_editor" title="Contact Us">Contact Us</a></li>
<li><a href="/about/home_delivery" title="Boston Herald Home Delivery">Home Delivery</a></li>
<li><a href="http://bostonherald.newspaperdirect.com/epaper/viewer.aspx" title="Boston Herald Electronic Edition" target="_blank">Electronic Edition</a></li>
<li><a href="/about/apps" title="Mobile and Apps">Mobile and Apps</a></li>
<li class="last"><a href="/about/newsletters" title="Sign up for Herald Newsletters">Herald Newsletters</a></li>
</ul>
<!-- Extras -->
<ul id="footer-extra">
<li>
<p><a href="http://www.bostonherald.com/about/home_delivery/" title="$ave on Boston Herald Home Delivery">$ave on Boston Herald Home Delivery</a></p>
</li>
<!--
<li>
<p><a href="http://hotjobs.yahoo.com/job-search;_ylc=X3oDMTFka204b2luBF9TAzM5NjUxMTI1MQRwYXJ0bmVyA2Jvc3RvbmhlcmFsZARzcmMDY29uc29sZQ--?partner=bostonherald&kw=bostonherald.com&locations=Boston%2C+MA&metro_search_proxy=1&metro_search=1&industry=" target="_new" title="Jobs with Herald Media">Jobs with Herald Media</a></p>
</li>
-->
<li>
<p>For back copy and collectible issue information please call 617-619-6265. <a href="http://www.bostonherald.com/store" title="Click here for Celtics, Patriots and Red Sox, and Bruins back copies">Click here for Celtics, Patriots and Red Sox, and Bruins back copies</a></p>
</li>
<li>
<a href="http://www.bostonheraldineducation.com" target="_blank" id="nie">Newspapers In Education</a>
<a href="http://bostonheraldnie.newspaperdirect.com" target="_blank" id="niesmart">Boston Herald NIE SmartEdition!</a>
<a href="http://www.massliteracy.org" target="_blank" id="masslit">Mass Literacy</a>
</li>
<li>
<p>© Copyright by the Boston Herald and Herald Media.</p><br />
<p>No portion of BostonHerald.com or its content may be reproduced without the owner's written permission.</p> <br>
<p><a href="/about/privacy_policy" title="The Boston Herald Privacy Policy">Privacy Policy</a> | <a href="/about/terms_of_service" title="The Boston Herald Terms of Service">Terms of Service</a></p>
</li>
</ul> </div>
</div>
</div> </div>
</div> </div>
</div></footer> </div> <!-- Begin Adify tag for beacon ID#10127962-->
<script type="text/javascript">
<!--
sr_actioncode = 0;
sr_actionvalue = 10127962;
-->
</script>
<script type="text/javascript">
document.write("<scr"+"ipt type='text/javascr"+"ipt' src='"+(location.protocol.indexOf('https')>-1 ? "https://" : "http://")+"beacon.afy11.net/srbeacon.js?behavioralGroupId=10127962'>");
document.write("</scr"+"ipt>");
</script>
<!-- End Adify tag for beacon ID#10127962-->
<!-- Reskin Overlay -->
<div id="reskin_overlay">
<script type='text/javascript'>
googletag.display('reskin_overlay');
</script>
</div>
<!-- Reskin Overlay -->
<!-- DISQUS -->
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'bostonherald'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'https://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<!-- END DISQUS -->
<script type="text/javascript">
var pubId=27330;
var pixId=114;
var pm_async = true;
</script>
<script src='https://ads.pubmatic.com/AdServer/js/universalpixel.js' type="text/javascript">
</script>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"beacon-1.newrelic.com","licenseKey":"db1f826034","applicationID":"3177555","transactionName":"ZQZVYkFQDEBUVk0KWFxMdlVHWA1dGkVYBFJtDlZYUlYHQWpbVgdSbRVeU0RuElJSUA==","queueTime":0,"applicationTime":726,"ttGuid":"","agentToken":"","atts":"SUFWFAlKH04=","errorBeacon":"bam.nr-data.net","agent":"js-agent.newrelic.com\/nr-476.min.js"}</script></body>
</html>