-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewsletter.html
1018 lines (1000 loc) · 103 KB
/
newsletter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head> </head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="x-apple-disable-message-reformatting" />
<!--[if !mso]><!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--<![endif]-->
<style type="text/css">
* {
text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
html {
height: 100%;
width: 100%;
}
body {
height: 100% !important;
margin: 0 !important;
padding: 0 !important;
width: 100% !important;
mso-line-height-rule: exactly;
}
div[style*="margin: 16px 0"] {
margin: 0 !important;
}
table,
td {
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
img {
border: 0;
height: auto;
line-height: 100%;
outline: none;
text-decoration: none;
-ms-interpolation-mode: bicubic;
}
.ReadMsgBody,
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
</style>
<!--[if gte mso 9]>
<style type="text/css">
li { text-indent: -1em; }
table td { border-collapse: collapse; }
</style>
<![endif]-->
<title>@Korbel Upcoming Events</title>
<style>
@media only screen and (max-width:600px) {
.column,
.column-filler {
box-sizing: border-box;
float: left;
}
.col-sm-12 {
display: block;
width: 100%!important;
}
}
</style>
<style>
.a {
color: #0048A5;
}
.a .a__text {
color: #0048A5;
}
.h1.header.h1-rule {
box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
-o-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
-ms-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
-moz-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
}
.h1-rule {
-moz-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
-ms-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
-o-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 20px 0 0 #2B2A2A;
}
.h2.header.h2-rule {
box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
-o-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
-ms-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
-moz-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
}
.h2-rule {
-moz-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
-ms-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
-o-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 18px 0 0 #2B2A2A;
}
.h3-rule {
-moz-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 16px 0 0 #2B2A2A;
-ms-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 16px 0 0 #2B2A2A;
-o-box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 16px 0 0 #2B2A2A;
box-shadow: 0 12px 0 0 #FFFFFF, 114px 24px 0 0 #FFFFFF, 0 16px 0 0 #2B2A2A;
}
.block.pull-quote .header,
.block.quote .header,
.block.quote-source .header {
font-family: "Garamond", "Palatino", "Times New Roman", "Times", "Georgia", serif;
}
.block.pull-quote .text,
.block.quote .text,
.block.quote-source .text {
font-family: "Garamond", "Palatino", "Times New Roman", "Times", "Georgia", serif;
}
.emdash,
.lquote,
.pull-quote,
.quote,
.quote-source,
.rquote {
font-family: "Garamond", "Palatino", "Times New Roman", "Times", "Georgia", serif;
}
@media only screen and (min-width:600px) {
.calendar-col .upcoming-header .rborder {
border-right: 1px solid #F7F7F7;
float: right;
height: 33px;
margin-right: -2px;
margin-top: -6px;
padding-left: 2px;
width: 1px;
}
}
@media only screen and (max-width:600px) {
.button .button__cell {
padding: 14px 18px 14.5px!important;
}
#masthead .container .row {
padding: 6px!important;
}
.column.logo-wrapper {
padding: 0!important;
}
img.logo {
padding: 0!important;
}
.logo,
.logo-wrapper {
padding: 0!important;
}
.morning .p.text {
font-size: 24px!important;
}
.calendar-col .column {
border-right: 4px solid #8B2332;
}
.calendar-col .upcoming-body {
height: auto!important;
}
.calendar-col .upcoming-header .rborder {
display: none!important;
visibility: hidden;
}
.left-story .story-thumb .a img,
.right-story .story-thumb .a img {
padding: 16px 0!important;
}
.left-story .story-thumb,
.right-story .story-thumb {
padding: 16px 0!important;
}
.block.pull-quote .text {
font-size: 21px!important;
}
.pull-quote {
font-size: 21px!important;
}
.social-wrapper {
padding-bottom: 10px 6px!important;
}
.social-wrapper .social-icon img {
padding-left: 41.25%!important;
padding-bottom: 24px;
}
}
</style>
<!-- content -->
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
</head>
<body class="body" style="background-color: #F7F7FA; background-repeat: repeat; margin: 0; width: 100%;">
<table class="bodyTable" role="presentation" width="100%" align="left" border="0" cellpadding="0" cellspacing="0" style="width: 100%; background-color: #F7F7FA; background-repeat: repeat; margin: 0;" bgcolor="#F7F7FA">
<tr>
<td class="body__content" align="left" width="100%" valign="top" style="color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 16px; line-height: 20px;">
<!-- Header -->
<div id="masthead" class="block" style="width: 100%; background-color: #98002E;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top" style="background-color: #98002E;" bgcolor="#98002E">
<div class="container" style="width: 100%; margin: 0 auto; max-width: 640px; overflow: hidden;"> <!--[if mso | IE]>
<table class="container__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style=" margin-right: auto; margin-left: auto;width: 640px" width="640" align="center">
<tr>
<td> <![endif]-->
<table class="container__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="container__row">
<td class="container__cell" width="100%" align="left" valign="top">
<div class="row" style="padding: 24px 36px; background-color: #98002E;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="logo-wrapper column col-sm-12" width="640" style="padding-right: 72px;width: 100%" align="left" valign="top"> <img class="logo img__block" src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/josef-korbel-logos-hires-07.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=doQKfmFlJvqfDPkHi%2BTvI3QvjtU%3D"
alt="University of Denver Josef Korbel School of International Studies Logo" width="496" height="109.117" border="0" style="display: block; max-width: 100%; padding-left: 24px;" /> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="container" style="width: 100%; margin: 0 auto; max-width: 640px; overflow: hidden;"> <!--[if mso | IE]>
<table class="container__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style=" margin-right: auto; margin-left: auto;width: 640px" width="640" align="center">
<tr>
<td> <![endif]-->
<table class="container__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="container__row">
<td class="container__cell" width="100%" align="left" valign="top">
<!-- Intro & funnel -->
<div class="intro block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<!-- Morning banner -->
<div class="greeting-banner row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<div class="morning block" style="width: 100%; color: #0048A5; font-size: 42px; line-height: 1.1; padding-left: 21px; position: relative; margin-left: -36px;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%; margin-left: 0" width="640" align="left">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top" style="padding-left: 21px;">
<p class="banner text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; text-align: left; background-color: #0048A5; margin-bottom: 12px; margin-left: -42px; padding: 21px 21px 18px 42px; font-size: 42px; line-height: 1.1; color: #FDB813; font-weight: 100;">Good morning 🌄!</p>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; text-align: left; color: #0048A5; font-size: 42px; line-height: 1.1;">Here's what you need to know to start your week:</p>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
<!-- Morning greeting -->
<div class="greeting row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<div class="morning block" style="width: 100%; color: #0048A5; font-size: 42px; line-height: 1.1; padding-left: 21px; position: relative; margin-left: -36px;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%; margin-left: 0" width="640" align="left">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top" style="padding-left: 21px;">
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; text-align: left; color: #0048A5; font-size: 42px; line-height: 1.1;">Good morning 🌄! Here's what you need to know to start your week:</p>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
<div class="row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h1 class="h1-rule header h1" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 48px; margin: 38px 0 42px; padding-bottom: 14px; margin-bottom: 54px;">@Korbel: Week of xxxx</h1>
<h2 class="light-header header h2" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; text-align: left; font-size: 36px; margin: 26px 0 30px; color: #4B4A4A; font-weight: 100; margin-bottom: 18px;">Sub-header to reinforce call-to-action.</h2>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz</p>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">The Korbel School of International Studies celebrates a rich history of faculty and students who have taken their turn at influencing the world in innovative ways. From Erica Chenoweth's groundbreaking book
on how civil resistance works to the grad student working on groundbreaking research, Korbel has a longstanding legacy of being at the front of world change.</p>
<div class="button">
<table role="presentation" width="100%" align="left" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table role="presentation" width="auto" align="center" border="0" cellspacing="0" cellpadding="0" class="button__table" style="margin: 0 auto; margin-bottom: 16px; margin-top: 16px;">
<tr>
<td align="center" class="button__cell" style="background-color: #0048A5; border-radius: 2px; padding: 12px 16px 12.5px;" bgcolor="#0048A5"><a href="#" class="button__link" style="color: #FFFFFF; text-decoration: none; background-color: #0048A5; display: inline-block;"><span class="button__text" style="color: #FFFFFF; text-decoration: none;">Call to action</span></a></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
<div class="row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> <img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/c8d86a99-a217-4f2f-ad55-5b640cce72e7.jpg?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=Gz%2FMJR%2FbROqhLHddnYE2jCnauWo%3D"
alt="Event at Korbel" width="568" height="243.167" border="0" class="img__block" style="display: block; max-width: 100%;" /> </td>
</tr>
</table>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 54px 0 48px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Events calendar -->
<div class="calendar block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="events-header row" style="background-color: #FFFFFF; padding: 24px 36px; padding-bottom: 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h2 class="h2-rule header h2" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; margin: 26px 0 30px; padding-bottom: 14px; margin-bottom: 54px; color: #2B2A2A; font-size: 42px; font-weight: 900; letter-spacing: -.5px; text-align: left;">Upcoming Events at Korbel</h2>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">We're always hosting events—come see what we're up to this week!</p>
</td>
</tr>
</table>
</div>
<!-- Repeatable mailchimp calendar row columns -->
<div class="mc-calendar-row">
<div class="calendar-col row" style="background-color: #FFFFFF; padding: 24px 36px; padding-bottom: 0; padding-top: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="211.2" style="background-color: #F7F7F7; text-align: center; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332;width: 33%" align="center" valign="top" bgcolor="#F7F7F7">
<span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center;">
November 11<span class="rborder"> </span> </span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; height: 264px; margin: 0; min-width: 152px; padding: 12px 0;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; margin: 20px 0 24px; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center;">Really long test title that will mess up the layout, with Dr. Cornel West</h3>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center;">CCUSC <br/>12-2pm</p>
</div>
</td>
<td class="column col-sm-12" width="211.2" style="background-color: #F7F7F7; text-align: center; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332;width: 33%" align="center" valign="top" bgcolor="#F7F7F7">
<span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center;">
November 26<span class="rborder"> </span> </span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; height: 264px; margin: 0; min-width: 152px; padding: 12px 0;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; margin: 20px 0 24px; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center;">Art, Amnesia & Memory China's Battle with History</h3>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center;">CCUSC <br/>12-2pm</p>
</div>
</td>
<td class="third-col column col-sm-12" width="211.2" style="background-color: #F7F7F7; text-align: center; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332; border-right: 4px solid #8B2332;width: 33%"
align="center" valign="top" bgcolor="#F7F7F7"> <span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center;">
December 12
</span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; height: 264px; margin: 0; min-width: 152px; padding: 12px 0;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; margin: 20px 0 24px; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center;">Korbel in DC/Geneva/Vienna</h3>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center;">Info Session <br/>12-2pm</p>
</div>
</td>
</tr>
</table>
</div>
</div>
<!-- Repeatable regroup calendar rows -->
<div class="regroup-calendar-row">
<div class="calendar-row row" style="background-color: #FFFFFF; padding: 24px 36px; padding-bottom: 0; padding-top: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="background-color: #F7F7F7; text-align: center;width: 100%" align="center" valign="top" bgcolor="#F7F7F7"> <span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center; padding-top: 12px;">
November 11
</span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332; border-right: 4px solid #8B2332;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center; padding-top: 20px; padding-bottom: 24px; margin: 0;">Really long test title that will mess up the layout, with Dr. Cornel West</h3>
<p class="text p" style="display: block; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center; padding-top: 4px; padding-bottom: 24px; margin: 0;">CCUSC <br/>12-2pm</p>
</div>
</td>
</tr>
</table>
</div>
<div class="calendar-row row" style="background-color: #FFFFFF; padding: 24px 36px; padding-bottom: 0; padding-top: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="background-color: #F7F7F7; text-align: center;width: 100%" align="center" valign="top" bgcolor="#F7F7F7"> <span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center; padding-top: 12px;">
November 26
</span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332; border-right: 4px solid #8B2332;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center; padding-top: 20px; padding-bottom: 24px; margin: 0;">Art, Amnesia & Memory China's Battle with History</h3>
<p class="text p" style="display: block; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center; padding-top: 4px; padding-bottom: 24px; margin: 0;">CCUSC <br/>12-2pm</p>
</div>
</td>
</tr>
</table>
</div>
<div class="calendar-row row" style="background-color: #FFFFFF; padding: 24px 36px; padding-bottom: 0; padding-top: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="third-col column col-sm-12" width="640" style="background-color: #F7F7F7; text-align: center;width: 100%" align="center" valign="top" bgcolor="#F7F7F7"> <span class="upcoming-header" style="background-color: #8B2332; color: #FFFFFF; display: block; font-size: 22.5px; font-weight: 100; letter-spacing: .25px; padding: 16px 0 16px 16px; text-align: center; padding-top: 12px;">
December 12
</span>
<div class="upcoming-body" style="background-color: #F7F7F7; text-align: center; display: block; border-bottom: 4px solid #8B2332; border-left: 4px solid #8B2332; border-right: 4px solid #8B2332;">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; padding: 0 8px; color: #8B2332; font-size: 21px; text-align: center; padding-top: 20px; padding-bottom: 24px; margin: 0;">Korbel in DC/Geneva/Vienna</h3>
<p class="text p" style="display: block; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: center; padding-top: 4px; padding-bottom: 24px; margin: 0;">Info Session <br/>12-2pm</p>
</div>
</td>
</tr>
</table>
</div>
<div class="upcoming-footer row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<p class="callout text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; text-align: left; padding: 16px; border-left: 4px solid #8B2332; color: #8B2332; font-weight: 600;">Check our <a href="https://www.du.edu/korbel/about/events/index.html" class="a"><span class="a__text">events calendar</span></a> for more info and rsvp links.</p>
</td>
</tr>
</table>
</div>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 54px 0 48px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Stories, news with pics -->
<div class="stories block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h2 class="h2-rule header h2" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 36px; margin: 26px 0 30px; padding-bottom: 14px; margin-bottom: 54px;">Recent Stories</h2>
</td>
</tr>
</table>
</div>
<!-- Left aligned story with thumb -->
<div class="left-story row" style="background-color: #FFFFFF; padding: 24px 36px; border-top: 2px solid #F4F3ED;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="story-thumb column col-sm-12" width="320" style="padding-right: 36px;width: 50%" align="left" valign="top"> <a href="https://www.du.edu/korbel/about/news/2017-pardis-takeaknee.html" target="_blank" class="a"><span class="a__text">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/84aebbad-0fdc-49b8-a9dd-bfdb07e6ac31.jpg?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=hUMM83lWJEp%2Fgr6bHEoG5jVVy18%3D" alt="News story thumbnail" width="266" height="216.767" border="0" class="img__block" style="display: block; max-width: 100%;"/>
</span></a> </td>
<td class="column col-sm-12" width="320" style="width: 50%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px;">Header</h3>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">#takeaknee is redefining athletes as activists in popular culture.</p> <a href="https://www.du.edu/korbel/about/news/2017-pardis-takeaknee.html" target="_blank" class="a"><span class="a__text"><strong>Learn more</strong></span></a> </td>
</tr>
</table>
</div>
<!-- Right aligned story with thumb -->
<div class="right-story row" style="background-color: #FFFFFF; padding: 24px 36px; border-top: 2px solid #F4F3ED;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="320" style="width: 50%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px;">Another header</h3>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">We're welcoming our new acting dean, join her for Breakfast with the Dean this week.</p> <a href="http://news.du.edu/meet-pardis-mahdavi/" target="_blank" class="a"><span class="a__text"><strong>Join us</strong></span></a> </td>
<td class="story-thumb column col-sm-12" width="320" style="width: 50%" align="left" valign="top"> <a href="http://news.du.edu/meet-pardis-mahdavi/" target="_blank" class="a"><span class="a__text">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/cd957870-5adc-4f51-8181-e3cfac603ef1.jpg?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=C2QK2ISGbC4vz2ewVLBzhgG%2F9qY%3D" alt="News story thumbnail" width="266" height="216.767" border="0" class="img__block" style="display: block; max-width: 100%; padding-left: 36px;"/>
</span></a> </td>
</tr>
</table>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 54px 0 48px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Careers -->
<div class="careers block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="row" style="background-color: #FFFFFF; padding: 24px 36px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h2 class="h2-rule header h2" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 36px; margin: 26px 0 30px; padding-bottom: 14px; margin-bottom: 54px;">Korbel Careers</h2>
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;">This week's newest jobs and internships for students and alumni.</p>
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px;">Hot Job Openings</h3>
<ul class="text ul" style="margin-left: 20px; margin-top: 16px; margin-bottom: 16px; padding: 0; list-style-type: disc; color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; margin: 24px 30px;">
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;"><strong>FBI</strong>, Washington, DC, Internal Processes Reviewer</li>
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;"><strong>Boulder Policy Peeps</strong>, Boulder, CO, Policy Analyst</li>
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;"><strong>Mega Millionaire</strong>, Beijing, Rich Dude</li>
</ul>
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px;">Hot Internship Openings</h3>
<ul class="text ul" style="margin-left: 20px; margin-top: 16px; margin-bottom: 16px; padding: 0; list-style-type: disc; color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; margin: 24px 30px;">
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;"><strong>Apple Inc.</strong>, San Francisco, CA, Global Engagement Strategists</li>
</ul>
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; color: #2B2A2A; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px;">Announcements</h3>
<ul class="text ul" style="margin-left: 20px; margin-top: 16px; margin-bottom: 16px; padding: 0; list-style-type: disc; color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; margin: 24px 30px;">
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left;"><strong>Bill Gates</strong>: gives away money</li>
</ul>
<p class="callout text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; text-align: left; padding: 16px; border-left: 4px solid #8B2332; color: #8B2332; font-weight: 600;">
Want more? Browse our <a href="https://www.du.edu/pioneercareers" target="_blank" class="a"><span class="a__text">full job listings</span></a>.</p>
</td>
</tr>
</table>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 54px 0 48px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- News row with repeatable list items -->
<div class="news block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="row" style="background-color: #FFFFFF; padding: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px; background-color: #7E0032; margin-bottom: 0; padding: 16px 18px; color: #FFFFFF; font-weight: 100; letter-spacing: .5px; margin-top: 0;">News</h3>
<ul class="news-list text ul" style="margin-left: 20px; margin-top: 16px; margin-bottom: 16px; list-style-type: disc; color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; padding: 3px 24px 21px; background-color: #EAE9E5; margin: 0;">
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left; padding: 12px; list-style: none; background-color: #FAFAFA; margin-top: 18px;">Floyd Ciruli was awarded the Denver Mayor’s Award for Leadership in the Arts for his 30 years of support for the creation and voter approval of the Scientific and Cultural Facilities District (SCFD). Read
the announcement and watch the video <a href="http://www.artsandvenuesdenver.com/events-programs/mayors-awards/mayors-awards-for-excellence-in-arts-culture-2017-winners" class="a"><span class="a__text">here</span></a>.</li>
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left; padding: 12px; list-style: none; background-color: #FAFAFA; margin-top: 18px;">Another test. Denver Mayor’s Award for Leadership in the Arts for his 30 years of support for the creation and voter approval of the Scientific and Cultural Facilities District (SCFD). Read the announcement
and watch the video <a href="http://www.artsandvenuesdenver.com/events-programs/mayors-awards/mayors-awards-for-excellence-in-arts-culture-2017-winners" class="a"><span class="a__text">here</span></a>.</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 30px 0 24px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Media roundup with repeatable list items -->
<div class="media-roundup block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="row" style="background-color: #FFFFFF; padding: 0;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; text-align: left; font-size: 24px; margin: 20px 0 24px; padding: 16px 18px; color: #FFFFFF; font-weight: 100; letter-spacing: .5px; margin-top: 0; background-color: #0048A5; margin-bottom: 4px;">Media Roundup</h3>
<p class="lead text p" style="display: block; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left; background-color: #FFFFFF; margin: 0; padding: 16px 18px;">Visit our <a href="http://www.du.edu/korbel/about/news/index.html" title="Newsroom" target="_blank" class="a"><span class="a__text">Newsroom</span></a> for the School's news stories and press releases, and
<a href="http://www.du.edu/korbel/about/news/inthenews.html" title="Faculty in the news" target="_blank" class="a"><span class="a__text">Josef Korbel School and Faculty in the News</span></a>. Send your
Korbel School media mentions to <a href="mailto: korbel.comms@du.edu" title="Email Korbel Communications" target="_blank" class="a"><span class="a__text">Korbel.Comms@du.edu</span></a>. Online links are
included when available.</p>
<ul class="media-list text ul" style="margin-left: 20px; margin-top: 16px; margin-bottom: 16px; list-style-type: disc; color: #000000; font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; padding: 3px 24px 21px; background-color: #EAE9E5; margin: 0;">
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left; padding: 12px; list-style: none; background-color: #FAFAFA; margin-top: 18px;">“<a href="https://www.washingtonpost.com/news/monkey-cage/wp/2017/12/01/trumps-attacks-on-takeaknee-and-daca-spurred-hundreds-of-protests-in-october/?utm_term=.86c321fbb510" class="a"><span class="a__text">Trump’s Attacks on #TakeaKnee and DACA Spurred Hundreds of Protests in October</span></a>,”
Erica Chenoweth, Washington Post, December 1, 2017</li>
<li class="text li" style="font-family: Helvetica,Arial,sans-serif; font-size: 18px; line-height: 1.382; color: #5B5A5A; text-align: left; padding: 12px; list-style: none; background-color: #FAFAFA; margin-top: 18px;">“<a href="https://www.washingtonpost.com/news/monkey-cage/wp/2017/12/01/trumps-attacks-on-takeaknee-and-daca-spurred-hundreds-of-protests-in-october/?utm_term=.86c321fbb510" class="a"><span class="a__text">New test item that is different</span></a>,”
Erica Chenoweth, Washington Post, December 1, 2017</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="section-divider row" style="background-color: transparent; border-top: 2px solid #0048A5; margin-bottom: 24px; padding: 30px 0 24px;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Quotes -->
<div class="knockout-quotes block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="pull-quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-size: 30px; font-style: italic; font-weight: 100; line-height: 1.382;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="blue-quote row" style="padding: 24px 36px; background-color: #0048A5;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="padding-left: 16px; padding-right: 16px;width: 100%" align="left" valign="top">
<div class="quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; color: #F7F7F7; letter-spacing: .5px;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="lquote" style="margin-left: -18px; margin-right: 12px; color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">“</span>Far
and away the best prize that life has to offer is the chance to work hard at work worth doing. <span class="rquote" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600; margin-left: 6px;">”</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="quote-source block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; margin-top: 24px; color: #F7F7F7; letter-spacing: .5px;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="emdash" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">—</span> <span class="author">Theodore Roosevelt</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="pull-quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-size: 30px; font-style: italic; font-weight: 100; line-height: 1.382;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="red-quote row" style="padding: 24px 36px; background-color: #8B2332;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="padding-left: 16px; padding-right: 16px;width: 100%" align="left" valign="top">
<div class="quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; color: #F7F7F7; letter-spacing: .5px;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="lquote" style="margin-left: -18px; margin-right: 12px; color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">“</span>Far
and away the best prize that life has to offer is the chance to work hard at work worth doing. <span class="rquote" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600; margin-left: 6px;">”</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="quote-source block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; margin-top: 24px; color: #F7F7F7; letter-spacing: .5px;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="emdash" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">—</span> <span class="author">Theodore Roosevelt</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="light-quotes block" style="width: 100%;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="pull-quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-size: 30px; font-style: italic; font-weight: 100; line-height: 1.382;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="red-text-quote row" style="padding: 24px 36px; background-color: #F4F3ED;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="padding-left: 16px; padding-right: 16px;width: 100%" align="left" valign="top">
<div class="quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; color: #7E0026;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="lquote" style="margin-left: -18px; margin-right: 12px; color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">“</span>Far
and away the best prize that life has to offer is the chance to work hard at work worth doing. <span class="rquote" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600; margin-left: 6px;">”</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="quote-source block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; margin-top: 24px; color: #7E0026;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="emdash" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">—</span> <span class="author">Theodore Roosevelt</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="pull-quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-size: 30px; font-style: italic; font-weight: 100; line-height: 1.382;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top">
<div class="blue-text-quote row" style="padding: 24px 36px; background-color: #F4F3ED;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="padding-left: 16px; padding-right: 16px;width: 100%" align="left" valign="top">
<div class="quote block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; color: #0048A5;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="lquote" style="margin-left: -18px; margin-right: 12px; color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">“</span>Far
and away the best prize that life has to offer is the chance to work hard at work worth doing. <span class="rquote" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600; margin-left: 6px;">”</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<div class="quote-source block" style="width: 100%; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; margin-top: 24px; color: #0048A5;">
<!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%" width="640">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top"> <span class="emdash" style="color: #FDB813; font-family: 'Garamond','Palatino','Times New Roman','Times','Georgia',serif; font-weight: 600;">—</span> <span class="author">Theodore Roosevelt</span> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
<!-- Footer -->
<div id="footer" class="block" style="width: 100%; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;"> <!--[if mso | IE]>
<table class="block__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="width: 100%;" width="100%">
<tr>
<td> <![endif]-->
<table class="block__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="block__row">
<td class="block__cell" width="100%" align="left" valign="top" style="background-color: #313133;" bgcolor="#313133">
<div class="container" style="width: 100%; margin: 0 auto; max-width: 640px; overflow: hidden;"> <!--[if mso | IE]>
<table class="container__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style=" margin-right: auto; margin-left: auto;width: 640px" width="640" align="center">
<tr>
<td> <![endif]-->
<table class="container__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%">
<tr class="container__row">
<td class="container__cell" width="100%" align="left" valign="top">
<!-- Mailchimp footer with merge tags and list unsubscribe -->
<div class="mc-footer">
<div class="social-intro row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; font-size: 24px; margin: 20px 0 24px; margin-bottom: 0; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">Keep in touch. Follow us:</h3>
</td>
</tr>
</table>
</div>
<div class="social-wrapper row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.facebook.com/josefkorbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-facebook-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=gj%2BsRwzm0zsXggfgxOscgQKT8XU%3D" alt="Facebook icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://twitter.com/josefkorbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-twitter-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=RkpBoOPO%2BglDj92vL5ovp7FXGmQ%3D" alt="Twitter icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.instagram.com/thejosefkorbelschool/" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-instagram-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=ZU%2B4d6y3iJGG3P1Wbn09BqJJRy4%3D" alt="Instagram icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.du.edu/korbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-link-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=e%2BouW4DeXDMnEPxvWhCHltvpjQ4%3D" alt="Website link icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
</tr>
</table>
</div>
<div class="row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<div class="hr" style="margin: 0 auto; width: 100%;"> <!--[if mso | IE]>
<table class="hr__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="margin-right: auto; margin-left: auto; width: 100%;" width="100%" align="center">
<tr>
<td> <![endif]-->
<table class="hr__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%" style="table-layout: fixed;">
<tr class="hr__row">
<td class="hr__cell" width="100%" align="left" valign="top" style="border-top: 1px solid #9A9A9A;"> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
<div class="info-wrapper row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; line-height: 1.382; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
©*|CURRENT_YEAR|* Josef Korbel School of International Studies, All rights reserved. <br/> *|IFNOT:ARCHIVE_PAGE|* *|LIST:DESCRIPTION|* <br/> <br/> <strong>Our mailing address is:</strong> <br/> Anna and
John J. Sie International Relations Complex <br/> University of Denver <br/> 2201 S. Gaylord St. <br/> Denver, CO 80208 <br/> <br/> Want to change how you receive these emails? <br/> You can <a href="*|UPDATE_PROFILE|*"
class="a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">update your preferences</span></a> or <a href="*|UNSUB|*" class="a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">unsubscribe from this list</span></a>.
</p>
</td>
</tr>
</table>
</div>
</div>
<!-- Regroup Footer (no mailchimp tags or unsubscribe) -->
<div class="regroup-footer">
<div class="social-intro row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<h3 class="header h3" style="font-family: Helvetica,Arial,sans-serif; line-height: 1.1; font-size: 24px; margin: 20px 0 24px; margin-bottom: 0; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">Keep in touch. Follow us:</h3>
</td>
</tr>
</table>
</div>
<div class="social-wrapper row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.facebook.com/josefkorbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-facebook-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=gj%2BsRwzm0zsXggfgxOscgQKT8XU%3D" alt="Facebook icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://twitter.com/josefkorbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-twitter-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=RkpBoOPO%2BglDj92vL5ovp7FXGmQ%3D" alt="Twitter icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.instagram.com/thejosefkorbelschool/" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-instagram-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=ZU%2B4d6y3iJGG3P1Wbn09BqJJRy4%3D" alt="Instagram icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
<td class="column col-sm-12" width="160" style="width: 25%" align="left" valign="top"> <a href="https://www.du.edu/korbel" target="_blank" class="social-icon a" style="color: #FAFAFA;"><span class="a__text" style="color: #FAFAFA;">
<img src="http://s3.amazonaws.com/collegewikis/user_mce_images/1605952/outline-light-link-96.png?AWSAccessKeyId=AKIAIWWG2L6A6RKA3X3A&Expires=2147407200&Signature=e%2BouW4DeXDMnEPxvWhCHltvpjQ4%3D" alt="Website link icon" width="48" height="48" border="0" class="img__block" style="display: block; max-width: 100%; width: 48px; padding-left: 66px; height: 48px;"/>
</span></a> </td>
</tr>
</table>
</div>
<div class="row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<div class="hr" style="margin: 0 auto; width: 100%;"> <!--[if mso | IE]>
<table class="hr__table__ie" role="presentation" border="0" cellpadding="0" cellspacing="0" style="margin-right: auto; margin-left: auto; width: 100%;" width="100%" align="center">
<tr>
<td> <![endif]-->
<table class="hr__table" role="presentation" border="0" align="center" cellpadding="0" cellspacing="0" width="100%" style="table-layout: fixed;">
<tr class="hr__row">
<td class="hr__cell" width="100%" align="left" valign="top" style="border-top: 1px solid #9A9A9A;"> </td>
</tr>
</table> <!--[if mso | IE]> </td>
</tr>
</table> <![endif]--> </div>
</td>
</tr>
</table>
</div>
<div class="info-wrapper row" style="padding: 24px 36px; background-color: #313133; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
<table class="row__table" width="100%" align="center" role="presentation" border="0" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
<tr class="row__row">
<td class="column col-sm-12" width="640" style="width: 100%" align="left" valign="top">
<p class="text p" style="display: block; margin: 14px 0; font-family: Helvetica,Arial,sans-serif; line-height: 1.382; font-size: 16.5px; font-weight: 100; letter-spacing: .5px; text-align: center; color: #FAFAFA;">
©2018 Josef Korbel School of International Studies, All rights reserved. <br/> <br/> <strong>Our mailing address is:</strong> <br/> Anna and John J. Sie International Relations Complex <br/> University of
Denver <br/> 2201 S. Gaylord St. <br/> Denver, CO 80208 </p>
</td>
</tr>
</table>