-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
1296 lines (967 loc) · 53.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Health Design Challenge: d+collab // THE PATIENT RECORD</title>
<meta name="description" content="It's time for the patient medical record to get a refresh. We can do better than this.">
<meta name="author" content="ONC and VA">
<!-- For Jim
==================================================
Thank you Jim Speros for your dedication, love, and passion for Blue Button.
We all miss you dearly.
-->
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="stylesheets/base.css">
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/layout.css">
<link href='http://fonts.googleapis.com/css?family=Merriweather:400,300,700,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:700' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="js/jquery.masonry.min.js"></script>
<script src="js/jquery.lazyload.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=150609451756626";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<!-- Primary Page Layout
================================================== -->
<!-- Delete everything in this .container and get started on your own site! -->
<div class="container">
<!-- Header
================================================== -->
<hr class="thick" />
<div class="thirteen columns">
<img class="scale-with-grid" style="margin: 10px 0px 20px 0px" src="images/logo.png"><h1 class="header-title">d+collab // THE PATIENT RECORD</h1>
</div>
<div class="wide-only">
<div class="three columns">
<p style="margin: 25px 0px 20px 0px; text-align:right;">January 2013</p>
</div>
</div>
<hr />
<div class="eight columns">
<img class="scale-with-grid" src="images/hero.jpg">
</div>
<div class="eight columns">
<p class="call-to-action-showcase">We challenged designers across the country to reimagine the patient health record. Over 230 responded and inspired us with their submissions.</p>
<p class="blue-button"><a href="#showcase">See the Showcase</a></p>
<p class="blue-button"><a href="http://blue-button.github.io/bbClear/">Get the Framework</a></p>
<div style="float:left;"><a href="https://twitter.com/share" class="twitter-share-button" data-url="http://healthdesignchallenge.com" data-text="See the patient health record reimagined" data-via="ProjectBlueBtn">Tweet</a>
</div>
<div style="float:left;"><div class="fb-like" data-href="http://healthdesignchallenge.com" data-send="true" data-width="300" data-show-faces="true"></div></div>
</div>
<!-- Your Challenge
==================================================
<hr class ="thick" />
<div class="sixteen columns">
<h2>The Challenge</h2>
</div>
<hr />
<div class="arrows">
<img class="first-arrow wide-only" src="images/first-arrow.png">
<img class="second-arrow wide-only" src="images/second-arrow.png">
<div class="one-third column center">
<img class="scale-with-grid" src="images/challenge-1.png">
<p>Take the patient health<br/>record that exists today</p>
</div>
<div class="one-third column center">
<img class="scale-with-grid" src="images/challenge-2.png">
<p>Reimagine the patient experience by improving the usability and layout</p>
</div>
<div class="one-third column center">
<img class="scale-with-grid" src="images/challenge-3.png">
<p>Your design will move healthcare forward in a meaningful way</p>
</div>
</div>
-->
<!-- Status Quo
================================================== -->
<hr class ="thick" />
<div class="sixteen columns">
<h2>What It Looks Like Today</h2>
</div>
<hr />
<div class="row">
<div class="ten columns">
<img class="scale-with-grid outline-image" src="images/status-quo.png">
</div>
<div class="six columns">
<p>Blue Button was developed by the Department of Veterans Affairs and gave Veterans and their families access to their health records. The first version was limited to text.</p>
<p>It looks and feels like a receipt. If you are a patient with many health conditions, the record is unwieldy because of the lack of presentation and hierarchy.
</div>
</div>
<!-- Design Requirements
================================================== -->
<hr class ="thick" />
<div class="sixteen columns">
<h2>Design Objectives</h2>
</div>
<hr />
<div class="sixteen columns">
<ol>
<li><b>Improve the visual layout and style</b> of the information from the medical record</li>
<li>Create a human-centered design that makes it <b>easier for patient to manage their health</b></li>
<li>Enable health professionals to <b>more effectively understand</b> and use patients' health information</li>
<li><b>Help family members and friends</b> care for their loved ones</li>
</ol>
</div>
<div class="one-third column">
<p class="dark-button"><a href="files/health-design-challenge-fields.pdf">See list of fields and sections</a></p>
</div>
<div class="one-third column">
<p class="dark-button"><a href="files/sample-challenge-record.txt">See a sample record</a></p>
</div>
<div class="one-third column">
<p class="dark-button"><a href="files/more-fields.txt">See more examples of fields</a></p>
</div>
<!-- Showcase
================================================== -->
<hr class ="thick" />
<a name="showcase"></a>
<div class="sixteen columns">
<h2>Winners and Showcase</h2>
</div>
<hr />
<!-- Showcase Entry -->
<div class="row bg">
<a name="nightingale"></a>
<div class="sixteen columns showcase about first">
<h3>Nightingale <span class="bio">(Chicago, IL)</span></h3>
<h4>Best Overall Design - 1st Place</h4>
<h5>Amy Guterman, Stephen Menton, Defne Civelekoglu, Kunal Bhat, Amy Seng, and Justin Rheinfrank from <a href="http://gravitytank.com">gravitytank</a></h5>
</div>
<div class="sixteen columns showcase">
<a href="showcase/nightingale/nightingale.pdf"><img class="scale-with-grid lazy hero" src="showcase/nightingale/lead.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/nightingale/nightingale.pdf"><img class="scale-with-grid" src="showcase/nightingale/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/nightingale/nightingale.pdf"><img class="scale-with-grid" src="showcase/nightingale/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/nightingale/nightingale.pdf"><img class="scale-with-grid" src="showcase/nightingale/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="studiotack"></a>
<div class="sixteen columns showcase about">
<h3>Studio TACK <span class="bio">(Brooklyn, NY)</span></h3>
<h4>Best Overall Design - 2nd Place</h4>
<h5>William Brian Smith and Leigh Salem from <a href="http://www.studiotack.com/">Studio TACK</a></h5>
</div>
<div class="sixteen columns showcase">
<a href="showcase/studiotack/studiotack.pdf"><img class="scale-with-grid lazy hero" src="showcase/studiotack/lead.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/studiotack/studiotack.pdf"><img class="scale-with-grid" src="showcase/studiotack/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/studiotack/studiotack.pdf"><img class="scale-with-grid" src="showcase/studiotack/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/studiotack/studiotack.pdf"><img class="scale-with-grid" src="showcase/studiotack/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="method"></a>
<div class="sixteen columns showcase about">
<h3>Blue Button by Method<span class="bio"> (San Francisco, CA)</span></h3>
<h4>Best Overall Design - 3rd Place</h4>
<h5>Melissa Martin, Ryan Lee, Kaisha Hom, James Lee, Jeremy Juel, and Leslie Velasco from <a href="http://method.com">Method</a></h5>
</div>
<div class="sixteen columns showcase">
<a href="showcase/method/method.pdf"><img class="scale-with-grid lazy hero" src="showcase/method/lead.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/method/method.pdf"><img class="scale-with-grid" src="showcase/method/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/method/method.pdf"><img class="scale-with-grid" src="showcase/method/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/method/method.pdf"><img class="scale-with-grid" src="showcase/method/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="med"></a>
<div class="sixteen columns showcase about">
<h3>M.ed by Josh Hemsley<span class="bio"> (Orange County, CA)</span></h3>
<h4>Best Medication Design - 1st Place</h4>
<h5><a href="http://joshhemsley.com/">Portfolio</a> • <a href="http://dribbble.com/joshhemsley">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://joshhemsley.com/med/"><img class="scale-with-grid" src="showcase/med/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://joshhemsley.com/med/"><img class="scale-with-grid" src="showcase/med/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://joshhemsley.com/med/"><img class="scale-with-grid" src="showcase/med/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="medpop"></a>
<div class="sixteen columns showcase about">
<h3>MedPop by PIIM<span class="bio"> (New York, NY)</span></h3>
<h4>Best Medication Design - 2nd Place</h4>
<h5>Christopher Goranson, Jihoon Kang, and Sayoko Yoshida from <a href="http://piim.newschool.edu/">Parsons Institute for Information Mapping</a>, <a href="http://newschool.edu">The New School</a></h5>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/5138/zip_files/VA_HEALTH.pdf"><img class="scale-with-grid" src="showcase/medpop/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/5138/zip_files/VA_HEALTH.pdf"><img class="scale-with-grid" src="showcase/medpop/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/5138/zip_files/VA_HEALTH.pdf"><img class="scale-with-grid" src="showcase/medpop/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="narrative"></a>
<div class="sixteen columns showcase about">
<h3>Blue Button Narrative<span class="bio"> (Champaign, IL)</span></h3>
<h4>Best Medication Design - 3rd Place</h4>
<h5><a href="http://sannylin.com">Sanny Lin</a>, Shao-Chi Oy, Kris Wan, and <a href="http://www.emelynbaker.com/">Emelyn Baker</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5100/zip_files/bluebuttonnarrative_submission.pdf"><img class="scale-with-grid" src="showcase/narrative/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5100/zip_files/bluebuttonnarrative_submission.pdf"><img class="scale-with-grid" src="showcase/narrative/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5100/zip_files/bluebuttonnarrative_submission.pdf"><img class="scale-with-grid" src="showcase/narrative/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about">
<h3>Grouping by Time by Mathew Sanders<span class="bio"> (Brooklyn, NY)</span></h3>
<h4>Best Problem/Medical History - 1st Place</h4>
<h5><a href="http://mathewsanders.com">Portfolio</a> • <a href="http://dribbble.com/mathewsanders">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4894/zip_files/Health%20Design%20Challenge%20Submission%20from%20Mathew%20Sanders.pdf"><img class="scale-with-grid" src="showcase/grouping/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4894/zip_files/Health%20Design%20Challenge%20Submission%20from%20Mathew%20Sanders.pdf"><img class="scale-with-grid" src="showcase/grouping/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4894/zip_files/Health%20Design%20Challenge%20Submission%20from%20Mathew%20Sanders.pdf"><img class="scale-with-grid" src="showcase/grouping/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="protorx"></a>
<div class="sixteen columns showcase about">
<h3>protoRX by Tony Webster<span class="bio"> (Minneapolis, MN)</span></h3>
<h4>Best Problem/Medical History - 2nd Place</h4>
<h5><a href="https://tonywebster.com">Portfolio</a> • <a href="http://dribbble.com/tonywebster">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://demo.protorx.com"><img class="scale-with-grid" src="showcase/protorx/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://demo.protorx.com"><img class="scale-with-grid" src="showcase/protorx/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://demo.protorx.com"><img class="scale-with-grid" src="showcase/protorx/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="andrew"></a>
<div class="sixteen columns showcase about">
<h3>Andrew Conn<span class="bio"> (San Francisco, CA)</span></h3>
<h4>Best Problem/Medical History - 3rd Place</h4>
<h5><a href="http://andrewconn.com/">Portfolio</a> • <a href="http://dribbble.com/andrewconn">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://andrewconn.com/hdc/"><img class="scale-with-grid" src="showcase/andrew/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://andrewconn.com/hdc/"><img class="scale-with-grid" src="showcase/andrew/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://andrewconn.com/hdc/"><img class="scale-with-grid" src="showcase/andrew/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="healthed"></a>
<div class="sixteen columns showcase about">
<h3>Health Summary by HealthEd<span class="bio"> (Clark, NJ)</span></h3>
<h4>Best Lab Summaries - 1st Place</h4>
<h5>Mike Parker, Dan McGorry, and Kel Smith from <a href="http://healthed.com">HealthEd</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5014/zip_files/healthed_pmr_contest_120112.pdf"><img class="scale-with-grid" src="showcase/healthed/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5014/zip_files/healthed_pmr_contest_120112.pdf"><img class="scale-with-grid" src="showcase/healthed/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5014/zip_files/healthed_pmr_contest_120112.pdf"><img class="scale-with-grid" src="showcase/healthed/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="jackson"></a>
<div class="sixteen columns showcase about">
<h3>M. Jackson Wilkinson<span class="bio"> (San Francisco, CA)</span></h3>
<h4>Best Lab Summaries - 2nd Place</h4>
<h5><a href="http://jounce.net">Portfolio</a> • <a href="http://dribbble.com/mjacksonw">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://healthrecord.mjacksonw.com"><img class="scale-with-grid" src="showcase/jackson/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthrecord.mjacksonw.com"><img class="scale-with-grid" src="showcase/jackson/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthrecord.mjacksonw.com"><img class="scale-with-grid" src="showcase/jackson/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about">
<h3>Stay Well by Teague<span class="bio"> (Seattle, WA)</span></h3>
<h4>Best Lab Summaries - 3rd Place</h4>
<h5><a href="http://www.ronaldviernes.com/">Ronald Viernes</a>, <a href="http://www.izziezahorian.com/">Izzie Zahorian</a>, <a href="http://www.lcascio.com/">Lauren Cascio</a>, and Justin Marshall from <a href="http://www.teague.com">Teague</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5198/zip_files/HDC_VisualDesign_RPV_r2c03.pdf"><img class="scale-with-grid" src="showcase/teague/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5198/zip_files/HDC_VisualDesign_RPV_r2c03.pdf"><img class="scale-with-grid" src="showcase/teague/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5198/zip_files/HDC_VisualDesign_RPV_r2c03.pdf"><img class="scale-with-grid" src="showcase/teague/3.jpg"></a>
</div>
</div>
<hr />
<div class="sixteen columns">
<p>Entries that inspired the judges and challenged the status quo</p>
</div>
<hr />
<!-- Showcase Entry -->
<div class="row bg">
<a name="hgraph"></a>
<div class="sixteen columns showcase about first">
<h3>hGraph <span class="bio">(Boston, MA)</span></h3>
<h5>Eric Benoit, Jon Follett, Ben Salinas, and Juhan Sonin from <a href="http://www.goinvo.com/">Involution Studios</a></h5>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/4940/zip_files/hgraph_goinvo_healthdesignchallenge.pdf?1354248603"><img class="scale-with-grid" src="showcase/hgraph/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/4940/zip_files/hgraph_goinvo_healthdesignchallenge.pdf?1354248603"><img class="scale-with-grid" src="showcase/hgraph/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="https://s3.amazonaws.com/challengepost/zip_files/production/4940/zip_files/hgraph_goinvo_healthdesignchallenge.pdf?1354248603"><img class="scale-with-grid" src="showcase/hgraph/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Empower Through Design <span class="bio">(Clark, NJ)</span></h3>
<h5>Venessa Perez, Kel Smith, Tara Rice, Michael Genkin, and Alyssa Costino from <a href="http://www.healthed.com/">HealthEd</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5013/zip_files/healthed-phr-design-pattern.pdf?1354368135"><img class="scale-with-grid" src="showcase/empower/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5013/zip_files/healthed-phr-design-pattern.pdf?1354368135"><img class="scale-with-grid" src="showcase/empower/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5013/zip_files/healthed-phr-design-pattern.pdf?1354368135"><img class="scale-with-grid" src="showcase/empower/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Accordion Mailer <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://aaronperryzucker.com/">Aaron Perry-Zucker</a> and <a href="http://twitter.com/KaviH">Kavi Harshawat</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5156/zip_files/APZ%20KH%20Submission%204.pdf?1354420767"><img class="scale-with-grid" src="showcase/accordion/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5156/zip_files/APZ%20KH%20Submission%204.pdf?1354420767"><img class="scale-with-grid" src="showcase/accordion/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5156/zip_files/APZ%20KH%20Submission%204.pdf?1354420767"><img class="scale-with-grid" src="showcase/accordion/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>OPENHealth Central by Lybba <span class="bio">(San Francisco, CA)</span></h3>
<h5>Kelli Auerbach, David Fore, and Leslie Marticke from <a href="http://lybba.org">Lybba</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4932/zip_files/Blue%20Button%20Challenge.pdf?1354244206"><img class="scale-with-grid" src="showcase/lybba/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4932/zip_files/Blue%20Button%20Challenge.pdf?1354244206"><img class="scale-with-grid" src="showcase/lybba/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4932/zip_files/Blue%20Button%20Challenge.pdf?1354244206"><img class="scale-with-grid" src="showcase/lybba/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Life in Your Years by Beverly Sum <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://apollodollop.com/">Portfolio</a> • <a href="http://twitter.com/beverlysum">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4954/zip_files/BSum%20CCOD%20Final.pdf?1354266187"><img class="scale-with-grid" src="showcase/life/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4954/zip_files/BSum%20CCOD%20Final.pdf?1354266187"><img class="scale-with-grid" src="showcase/life/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4954/zip_files/BSum%20CCOD%20Final.pdf?1354266187"><img class="scale-with-grid" src="showcase/life/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>EmpowerVet <span class="bio">(San Jose, CA)</span></h3>
<h5>Annette Maxwell, Cynthia Mackey, Anne Mason, and Maurice Novembre</h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5090/zip_files/EmpowerVet.pdf?1354414768"><img class="scale-with-grid" src="showcase/empowervet/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5090/zip_files/EmpowerVet.pdf?1354414768"><img class="scale-with-grid" src="showcase/empowervet/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5090/zip_files/EmpowerVet.pdf?1354414768"><img class="scale-with-grid" src="showcase/empowervet/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Blocks by Raleigh Swick <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://www.raleighswick.com/">Portfolio</a> • <a href="http://twitter.com/raleighs">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5002/zip_files/patient_record_blocks.pdf?1354332363"><img class="scale-with-grid" src="showcase/blocks/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5002/zip_files/patient_record_blocks.pdf?1354332363"><img class="scale-with-grid" src="showcase/blocks/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5002/zip_files/patient_record_blocks.pdf?1354332363"><img class="scale-with-grid" src="showcase/blocks/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>CCD by Mad*Pow <span class="bio">(Boston, MA)</span></h3>
<h5><a href="http://twitter.com/pauldavidkahn">Paul Kahn</a>, Andrew Klein and James Christie from <a href="http://www.madpow.com/">Mad*Pow</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://madpowprojects.com/HealthDesignChallenge/PDF/Sample_record.pdf"><img class="scale-with-grid" src="showcase/madpow/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://madpowprojects.com/HealthDesignChallenge/PDF/Sample_record.pdf"><img class="scale-with-grid" src="showcase/madpow/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://madpowprojects.com/HealthDesignChallenge/PDF/Sample_record.pdf"><img class="scale-with-grid" src="showcase/madpow/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Reimagining the Patient Record <span class="bio">(Pittsburgh, PA)</span></h3>
<h5><a href="http://www.linkedin.com/in/amandagreenberg">Amanda Greenberg</a>, <a href="http://www.noahbornstein.com/">Noah Bornstein</a>, <a href="https://twitter.com/GinaAssaf">Gina Assaf</a>, <a href="http://dribbble.com/j6tran">Jenn Tran</a>, <a href="http://jonasgebhardt.com/">Jonas Gebhardt</a>, <a href="http://www.jon-chan.com/work">Jonathan Chan</a>, <a href="http://www.kelseyhumphries.com/">Kelsey Humphries</a>, <a href="http://kristinalustig.com/">Kristina Lustig</a>, <a href="http://www.lbrigugl.io/">Louise Briguglio</a>, <a href="http://www.lgonza.com/">Luis Gonzalez</a>, <a href="http://www.luisguzmanv.net/">Luis Guzman Verbena</a>, <a href="http://www.raunaqgupta.in/">Raunaq Gupta</a>, and <a href="http://www.rebeccajablonsky.com/">Rebecca Jablonsky</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5066/zip_files/ReimaginingPatientRecord.pdf?1354410791"><img class="scale-with-grid" src="showcase/pitt/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5066/zip_files/ReimaginingPatientRecord.pdf?1354410791"><img class="scale-with-grid" src="showcase/pitt/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5066/zip_files/ReimaginingPatientRecord.pdf?1354410791"><img class="scale-with-grid" src="showcase/pitt/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>eHealthMonitor <span class="bio">(Cerritos,CA)</span></h3>
<h5>Murali Vasudevan</h5>
</div>
<div class="one-third column showcase">
<a href="http://ccd.70beats.com/"><img class="scale-with-grid" src="showcase/ehealthmonitor/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://ccd.70beats.com/"><img class="scale-with-grid" src="showcase/ehealthmonitor/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://ccd.70beats.com/"><img class="scale-with-grid" src="showcase/ehealthmonitor/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>A Pragmatic PHR by Daniel Mall <span class="bio">(Philadelphia, PA)</span></h3>
<h5><a href="http://danielmall.com/">Portfolio</a> • <a href="http://dribbble.com/danielmall">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5107/zip_files/dmall-phr.pdf?1354417870"><img class="scale-with-grid" src="showcase/dmall/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5107/zip_files/dmall-phr.pdf?1354417870"><img class="scale-with-grid" src="showcase/dmall/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5107/zip_files/dmall-phr.pdf?1354417870"><img class="scale-with-grid" src="showcase/dmall/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Friendly by Alex Penny <span class="bio">(Brooklyn, NY)</span></h3>
<h5><a href="http://alexpenny.com/">Portfolio</a> • <a href="https://twitter.com/apnny">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="showcase/friendly/friendly.pdf"><img class="scale-with-grid" src="showcase/friendly/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/friendly/friendly.pdf"><img class="scale-with-grid" src="showcase/friendly/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="showcase/friendly/friendly.pdf"><img class="scale-with-grid" src="showcase/friendly/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Medical Record Redesign <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://barbaranatali.com">Barbara Natali</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11684-medical-record-design"><img class="scale-with-grid" src="showcase/natali/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11684-medical-record-design"><img class="scale-with-grid" src="showcase/natali/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11684-medical-record-design"><img class="scale-with-grid" src="showcase/natali/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Time-centered Patient Record <span class="bio">(Chicago, IL)</span></h3>
<h5><a href="http://dribbble.com/vant">Stefan Vant</a> and Linda Luu</h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5061/zip_files/LL-SV-Time-centered-Patient-Record-v05.pdf?1354409293"><img class="scale-with-grid" src="showcase/vant/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5061/zip_files/LL-SV-Time-centered-Patient-Record-v05.pdf?1354409293"><img class="scale-with-grid" src="showcase/vant/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5061/zip_files/LL-SV-Time-centered-Patient-Record-v05.pdf?1354409293"><img class="scale-with-grid" src="showcase/vant/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>At a Glance Health Record <span class="bio">(Blacksburg, VA)</span></h3>
<h5>Eileen B, Sarah G, David F, Kara B, and Charles H from <a href="http://www.uncork-it.com/">Uncork-It</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4979/zip_files/Uncork-it-HDC.pdf?1354314602"><img class="scale-with-grid" src="showcase/glance/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4979/zip_files/Uncork-it-HDC.pdf?1354314602"><img class="scale-with-grid" src="showcase/glance/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4979/zip_files/Uncork-it-HDC.pdf?1354314602"><img class="scale-with-grid" src="showcase/glance/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>EMR 2.0 by Jason Caldwell <span class="bio">(Washington, D.C.)</span></h3>
<h5><a href="http://jasoncaldwell.us/">Portfolio</a> • <a href="http://dribbble.com/jc">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4790/zip_files/emr-2-jasoncaldwell.pdf?1353638483"><img class="scale-with-grid" src="showcase/caldwell/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4790/zip_files/emr-2-jasoncaldwell.pdf?1353638483"><img class="scale-with-grid" src="showcase/caldwell/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4790/zip_files/emr-2-jasoncaldwell.pdf?1353638483"><img class="scale-with-grid" src="showcase/caldwell/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>The Social Health Insights Vision <span class="bio">(Austin, TX)</span></h3>
<h5><a href="http://dribbble.com/srsilverberg">Sharon Silverberg</a>, <a href="http://twitter.com/skram">Mark Silverberg</a>, <a href="https://twitter.com/Geek_Nurse">Brian Norris</a>, <a href="https://twitter.com/N2InformaticsRN">Charles Boicey</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://hdc.socialhealthinsights.com/"><img class="scale-with-grid" src="showcase/insights/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://hdc.socialhealthinsights.com/"><img class="scale-with-grid" src="showcase/insights/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://hdc.socialhealthinsights.com/"><img class="scale-with-grid" src="showcase/insights/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Patent Health Record Document by Robert Lewis <span class="bio">(Atlanta, GA)</span></h3>
<h5><a href="http://about.me/robert-lewis">Portfolio</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4888/zip_files/RobertLewis.pdf?1354156755"><img class="scale-with-grid" src="showcase/lewis/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4888/zip_files/RobertLewis.pdf?1354156755"><img class="scale-with-grid" src="showcase/lewis/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4888/zip_files/RobertLewis.pdf?1354156755"><img class="scale-with-grid" src="showcase/lewis/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Clean Redesign by Sai Kandallu <span class="bio">(Chicago, IL)</span></h3>
<h5><a href="http://www.saivenky.com/">Portfolio</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11567-clean-redesign-of-the-patient-record"><img class="scale-with-grid" src="showcase/sai/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11567-clean-redesign-of-the-patient-record"><img class="scale-with-grid" src="showcase/sai/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://healthdesign.challenge.gov/submissions/11567-clean-redesign-of-the-patient-record"><img class="scale-with-grid" src="showcase/sai/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Health Report Deciphered by Khyati Trehan</h3>
<h5><a href="http://khyatitrehan.blogspot.in/">Portfolio</a> • <a href="https://twitter.com/KhyatiTrehan">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4976/zip_files/Health%20Report.pdf?1354307086"><img class="scale-with-grid" src="showcase/khyati/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4976/zip_files/Health%20Report.pdf?1354307086"><img class="scale-with-grid" src="showcase/khyati/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/4976/zip_files/Health%20Report.pdf?1354307086"><img class="scale-with-grid" src="showcase/khyati/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>Medical Record Iconography by Colleen Deng <span class="bio">(New York, NY)</span></h3>
<h5><a href="http://www.tugboatcreatives.com/">Portfolio</a> • <a href="http://dribbble.com/thepanorama">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5204/zip_files/colleendeng-medicalrecords-design.pdf?1354474772"><img class="scale-with-grid" src="showcase/icons/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5204/zip_files/colleendeng-medicalrecords-design.pdf?1354474772"><img class="scale-with-grid" src="showcase/icons/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5204/zip_files/colleendeng-medicalrecords-design.pdf?1354474772"><img class="scale-with-grid" src="showcase/icons/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>The New Patient Record by Wayne Greenwood <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://twitter.com/zonkola">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5129/zip_files/The%20Patient%20Record%20-%20wg120112.pdf?1354419847"><img class="scale-with-grid" src="showcase/wayne/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5129/zip_files/The%20Patient%20Record%20-%20wg120112.pdf?1354419847"><img class="scale-with-grid" src="showcase/wayne/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5129/zip_files/The%20Patient%20Record%20-%20wg120112.pdf?1354419847"><img class="scale-with-grid" src="showcase/wayne/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<div class="sixteen columns showcase about first">
<h3>The Personal Medical Record PDF & Report Builder <span class="bio">(Denver, CO)</span></h3>
<h5><a href="http://www.ruszel.com/">Portfolio</a> • <a href="http://twitter.com/truszel">Twitter</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5026/zip_files/TR_PersonalMedicalRecord-Presentation_2012.pdf?1354391105"><img class="scale-with-grid" src="showcase/ruszel/1.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5026/zip_files/TR_PersonalMedicalRecord-Presentation_2012.pdf?1354391105"><img class="scale-with-grid" src="showcase/ruszel/2.jpg"></a>
</div>
<div class="one-third column showcase">
<a href="http://s3.amazonaws.com/challengepost/zip_files/production/5026/zip_files/TR_PersonalMedicalRecord-Presentation_2012.pdf?1354391105"><img class="scale-with-grid" src="showcase/ruszel/3.jpg"></a>
</div>
</div>
<!-- Showcase Entry -->
<div class="row bg">
<a name="lane"></a>
<div class="sixteen columns showcase about first">
<h3>Responsive Health Report by Vince Lane <span class="bio">(San Francisco, CA)</span></h3>
<h5><a href="http://vincelane.com">Portfolio</a> • <a href="http://dribbble.com/vincelane">Dribbble</a></h5>
</div>
<div class="one-third column showcase">
<a href="http://health-design-challenge.vincelane.com/"><img class="scale-with-grid" src="showcase/lane/1.jpg"></a>
</div>