-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcharacters.html
1219 lines (1174 loc) · 154 KB
/
characters.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
---
layout: default
title: Journey to the Center of Hawkthorne 8-bit Character Sprites
---
<h2>Character Sprites</h2>
<style>
div.character-wrapper {
position: relative;
max-width:350px;
margin:0 auto;
}
div.select {
box-shadow: inset 2px 2px 8px rgba(0,0,0,0.7);
max-height:210px;
margin-bottom:200px;
width:100%;
overflow-y:scroll;
}
div.select h3 {
text-align: center;
border-bottom: 2px solid;
margin: 1em;
}
div.select input {display:none;}
div.select label {
display:block;
cursor: pointer;
white-space: nowrap;
overflow-x: hidden;
text-overflow: ellipsis;
padding: 0.25em 1em;
}
div.select label:before {
content:"";
display:inline-block;
width: 36px;
height: 36px;
overflow: hidden;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
vertical-align: middle;
margin-right: 0.5em;
background-repeat:no-repeat;
}
div.select label + input + label {
border-top: 1px solid #CCC;
}
div.select label:hover {
background-color:rgba(0,0,0,0.1);
}
div.select input:checked + label {
background-color:rgba(56,81,140,0.6);
color:#FFF;
}
input.abed + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.annie + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/overworld.png");}
input.britta + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/overworld.png");}
input.buddy + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/buddy/overworld.png");}
input.chang + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/overworld.png");}
input.dean + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/overworld.png");}
input.duncan + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/duncan/overworld.png");}
input.fatneil + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/fatneil/overworld.png");}
input.garrett + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/garrett/overworld.png");}
input.gilbert + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/gilbert/overworld.png");}
input.guzman + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/guzman/overworld.png");}
input.jeff + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/overworld.png");}
input.leonard + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/leonard/overworld.png");}
input.pierce + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/overworld.png");}
input.rich + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/rich/overworld.png");}
input.shirley + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/overworld.png");}
input.troy + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/overworld.png");}
input.vaughn + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vaughn/overworld.png");}
input.vicedean + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicedean/overworld.png");}
input.vicki + label:before {background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicki/overworld.png");}
input.abed.base + label:before {background-position: 0px 0px;}
input.abed.alien + label:before {background-position: -36px 0;}
input.abed.batman + label:before {background-position: -72px 0px;}
input.abed.bert + label:before {background-position: -1260px 0px;}
input.abed.britta + label:before {background-position: -828px 0px;background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.abed.jamielee + label:before {background-position: -1620px 0px;}
input.abed.bee + label:before {background-position: -108px 0px;}
input.abed.camo + label:before {background-position: -144px 0px;}
input.abed.cape + label:before {background-position: -792px 0px;}
input.abed.chang + label:before {background-position: -756px 0px;background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.abed.mafia + label:before {background-position: -1332px 0px;}
input.abed.hurt + label:before {background-position: -1008px 0px;}
input.abed.elf + label:before {background-position: -1080px 0px;}
input.abed.christmas + label:before {background-position: -180px 0px;}
input.abed.paint + label:before {background-position: -216px 0px;}
input.abed.cowboy + label:before {background-position: -252px 0px;}
input.abed.creepy + label:before {background-position: -1584px 0px;}
input.abed.rasalghul + label:before {background-position: -1476px 0px;}
input.abed.andre + label:before {background-position: -1440px 0px;}
input.abed.disco + label:before {background-position: -1044px 0px;}
input.abed.drunk + label:before {background-position: -1224px 0px;}
input.abed.maiden + label:before {background-position: -1116px 0px;}
input.abed.evil + label:before {background-position: -288px 0px;}
input.abed.fine + label:before {background-position: -684px 0px;}
input.abed.gangster + label:before {background-position: -324px 0px;}
input.abed.baby + label:before {background-position: -900px 0px;}
input.abed.solo + label:before {background-position: -360px 0px;}
input.abed.poplock + label:before {background-position: -1296px 0px;}
input.abed.hobgoblin + label:before {background-position: -1548px 0px;}
input.abed.morning + label:before {background-position: -504px 0px;}
input.abed.inspector + label:before {background-position: -396px 0px;}
input.abed.clubs + label:before {background-position: -1188px 0px;}
input.abed.jbv + label:before {background-position: -1404px 0px;}
input.abed.jeff + label:before {background-position: -432px 0px;background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.abed.jeffshirt + label:before {background-position: -972px 0px;}
input.abed.white + label:before {background-position: -468px 0px;}
input.abed.mcclane + label:before {background-position: -720px 0px;}
input.abed.kyle + label:before {background-position: -1152px 0px;}
input.abed.king + label:before {background-position: -540px 0px;}
input.abed.naked + label:before {background-position: -1656px 0px;}
input.abed.pierce + label:before {background-position: -576px 0px;background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.abed.radar + label:before {background-position: -1368px 0px;}
input.abed.plumber + label:before {background-position: -936px 0px;}
input.abed.patrick + label:before {background-position: -1512px 0px;}
input.abed.sewn + label:before {background-position: -612px 0px;}
input.abed.troy + label:before {background-position: -864px 0px;background-image:url("https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/overworld.png");}
input.abed.zombie + label:before {background-position: -648px 0px;}
input.annie.base + label:before {background-position: -0px 0px;}
input.annie.abed + label:before {background-position: -108px 0px;}
input.annie.hearts + label:before {background-position: -252px 0px;}
input.annie.kim + label:before {background-position: -288px 0px;}
input.annie.armor + label:before {background-position: -72px 0px;}
input.annie.astronaut + label:before {background-position: -648px 0px;}
input.annie.asylum + label:before {background-position: -36px 0px;}
input.annie.ballerannie + label:before {background-position: -684px 0px;}
input.annie.security + label:before {background-position: -432px 0px;}
input.annie.changlorious + label:before {background-position: -864px 0px;}
input.annie.cheerleader + label:before {background-position: -1008px 0px;}
input.annie.mafia + label:before {background-position: -1548px 0px;}
input.annie.hurt + label:before {background-position: -1296px 0px;}
input.annie.paint + label:before {background-position: -1584px 0px;}
input.annie.debate + label:before {background-position: -1044px 0px;}
input.annie.dorothy + label:before {background-position: -828px 0px;}
input.annie.hanniebal + label:before {background-position: -1656px 0px;}
input.annie.reddress + label:before {background-position: -1368px 0px;}
input.annie.befine + label:before {background-position: -144px 0px;}
input.annie.geneva + label:before {background-position: -180px 0px;}
input.annie.german + label:before {background-position: -1512px 0px;}
input.annie.baby + label:before {background-position: -1260px 0px;}
input.annie.poplock + label:before {background-position: -1080px 0px;}
input.annie.hector + label:before {background-position: -1188px 0px;}
input.annie.hectorlvlup + label:before {background-position: -1692px 0px;}
input.annie.honey + label:before {background-position: -936px 0px;}
input.annie.hooded + label:before {background-position: -1764px 0px;}
input.annie.hospital + label:before {background-position: -612px 0px;}
input.annie.karatannie + label:before {background-position: -720px 0px;}
input.annie.lawyer + label:before {background-position: -1440px 0px;}
input.annie.highschool + label:before {background-position: -1620px 0px;}
input.annie.riding + label:before {background-position: -360px 0px;}
input.annie.lingerie + label:before {background-position: -1152px 0px;}
input.annie.warfare + label:before {background-position: -468px 0px;}
input.annie.nurse + label:before {background-position: -324px 0px;}
input.annie.pageant + label:before {background-position: -1332px 0px;}
input.annie.princess + label:before {background-position: -756px 0px;}
input.annie.reindeer + label:before {background-position: -792px 0px;}
input.annie.samara + label:before {background-position: -1476px 0px;}
input.annie.script + label:before {background-position: -1224px 0px;}
input.annie.santa + label:before {background-position: -396px 0px;}
input.annie.party + label:before {background-position: -972px 0px;}
input.annie.skeleton + label:before {background-position: -576px 0px;}
input.annie.tightship + label:before {background-position: -1728px 0px;}
input.annie.timebattle + label:before {background-position: -1116px 0px;}
input.annie.victorian + label:before {background-position: -216px 0px;}
input.annie.werewolf + label:before {background-position: -504px 0px;}
input.annie.western + label:before {background-position: -1404px 0px;}
input.annie.wig + label:before {background-position: -900px 0px;}
input.annie.zombie + label:before {background-position: -540px 0px;}
input.britta.base + label:before {background-position: -0px 0px;}
input.britta.astronaut + label:before {background-position: -36px 0px;}
input.britta.asylum + label:before {background-position: -72px 0px;}
input.britta.bitten + label:before {background-position: -108px 0px;}
input.britta.bloodied + label:before {background-position: -720px 0px;}
input.britta.brittabot + label:before {background-position: -144px 0px;}
input.britta.dragon + label:before {background-position: -180px 0px;}
input.britta.buzzkill + label:before {background-position: -1404px 0px;}
input.britta.cheerleader + label:before {background-position: -828px 0px;}
input.britta.mafia + label:before {background-position: -1224px 0px;}
input.britta.hurt + label:before {background-position: -1044px 0px;}
input.britta.coldturkey + label:before {background-position: -972px 0px;}
input.britta.dancer + label:before {background-position: -1152px 0px;}
input.britta.dark + label:before {background-position: -216px 0px;}
input.britta.doctor + label:before {background-position: -792px 0px;}
input.britta.fibrosis + label:before {background-position: -1440px 0px;}
input.britta.finallybefine + label:before {background-position: -756px 0px;}
input.britta.german + label:before {background-position: -252px 0px;}
input.britta.ham + label:before {background-position: -1332px 0px;}
input.britta.popnlock + label:before {background-position: -864px 0px;}
input.britta.fundraising + label:before {background-position: -1008px 0px;}
input.britta.cool + label:before {background-position: -288px 0px;}
input.britta.lavaworld + label:before {background-position: -1368px 0px;}
input.britta.lavernica + label:before {background-position: -936px 0px;}
input.britta.lingerie + label:before {background-position: -1116px 0px;}
input.britta.king + label:before {background-position: -324px 0px;}
input.britta.mia + label:before {background-position: -684px 0px;}
input.britta.mj + label:before {background-position: -1188px 0px;}
input.britta.paintball + label:before {background-position: -360px 0px;}
input.britta.dino + label:before {background-position: -396px 0px;}
input.britta.tree + label:before {background-position: -432px 0px;}
input.britta.spades + label:before {background-position: -648px 0px;}
input.britta.peyote + label:before {background-position: -468px 0px;}
input.britta.psychopath + label:before {background-position: -612px 0px;}
input.britta.punk + label:before {background-position: -1080px 0px;}
input.britta.squirrel + label:before {background-position: -504px 0px;}
input.britta.teapot + label:before {background-position: -540px 0px;}
input.britta.timelinebattle + label:before {background-position: -900px 0px;}
input.britta.trannyqueen + label:before {background-position: -1260px 0px;}
input.britta.protest + label:before {background-position: -1296px 0px;}
input.britta.zombie + label:before {background-position: -576px 0px;}
input.buddy.base + label:before {background-position: 0px 0px;}
input.buddy.master_exploder + label:before {background-position: -36px 0px;}
input.chang.base + label:before {background-position: -0px 0px;}
input.chang.brutalitops + label:before {background-position: -36px 0px;}
input.chang.butch + label:before {background-position: -216px 0px;}
input.chang.cheerleader + label:before {background-position: -252px 0px;}
input.chang.dictator + label:before {background-position: -72px 0px;}
input.chang.dingleberry + label:before {background-position: -720px 0px;}
input.chang.evil + label:before {background-position: -108px 0px;}
input.chang.father + label:before {background-position: -144px 0px;}
input.chang.popnlock + label:before {background-position: -576px 0px;}
input.chang.cannotdie + label:before {background-position: -360px 0px;}
input.chang.naked + label:before {background-position: -684px 0px;}
input.chang.leather + label:before {background-position: -612px 0px;}
input.chang.peggy + label:before {background-position: -288px 0px;}
input.chang.ymca + label:before {background-position: -432px 0px;}
input.chang.safety + label:before {background-position: -180px 0px;}
input.chang.shaving + label:before {background-position: -540px 0px;}
input.chang.soccer + label:before {background-position: -648px 0px;}
input.chang.snowman + label:before {background-position: -468px 0px;}
input.chang.enterchangment + label:before {background-position: -396px 0px;}
input.chang.understudy + label:before {background-position: -504px 0px;}
input.chang.zombie + label:before {background-position: -324px 0px;}
input.dean.base + label:before {background-position: -0px 0px;}
input.dean.bee + label:before {background-position: -252px 0px;}
input.dean.construction + label:before {background-position: -216px 0px;}
input.dean.devil + label:before {background-position: -36px 0px;}
input.dean.donna + label:before {background-position: -324px 0px;}
input.dean.cowboy + label:before {background-position: -144px 0px;}
input.dean.jgdiehard + label:before {background-position: -360px 0px;}
input.dean.mardigras + label:before {background-position: -72px 0px;}
input.dean.newdean + label:before {background-position: -180px 0px;}
input.dean.conductor + label:before {background-position: -288px 0px;}
input.dean.unclesam + label:before {background-position: -108px 0px;}
input.duncan.base + label:before {background-position: 0px 0px;}
input.fatneil.base + label:before {background-position: 0px 0px;}
input.fatneil.coach + label:before {background-position: -36px 0px;}
input.fatneil.duquense + label:before {background-position: -72px 0px;}
input.garrett.base + label:before {background-position: 0px 0px;}
input.garrett.jammies + label:before {background-position: -36px 0px;}
input.garrett.alien + label:before {background-position: -72px 0px;}
input.gilbert.base + label:before {background-position: 0px 0px;}
input.guzman.base + label:before {background-position: 0px 0px;}
input.jeff.base + label:before {background-position: -0px 0px;}
input.jeff.astronaut + label:before {background-position: -36px 0px;}
input.jeff.asylum + label:before {background-position: -72px 0px;}
input.jeff.aviators + label:before {background-position: -108px 0px;}
input.jeff.bball + label:before {background-position: -792px 0px;}
input.jeff.naked + label:before {background-position: -144px 0px;}
input.jeff.boxer + label:before {background-position: -1548px 0px;}
input.jeff.carpediem + label:before {background-position: -936px 0px;}
input.jeff.hurt + label:before {background-position: -1368px 0px;}
input.jeff.darkest + label:before {background-position: -1440px 0px;}
input.jeff.david + label:before {background-position: -180px 0px;}
input.jeff.dean + label:before {background-position: -828px 0px;}
input.jeff.doctor + label:before {background-position: -1152px 0px;}
input.jeff.drunk + label:before {background-position: -1404px 0px;}
input.jeff.electro + label:before {background-position: -216px 0px;}
input.jeff.darkundies + label:before {background-position: -1332px 0px;}
input.jeff.fbf + label:before {background-position: -972px 0px;}
input.jeff.goldblum + label:before {background-position: -252px 0px;}
input.jeff.baby + label:before {background-position: -1008px 0px;}
input.jeff.hawkeye + label:before {background-position: -1116px 0px;}
input.jeff.poplock + label:before {background-position: -288px 0px;}
input.jeff.hungerdeans + label:before {background-position: -1728px 0px;}
input.jeff.jeffinthebox + label:before {background-position: -1512px 0px;}
input.jeff.spades + label:before {background-position: -324px 0px;}
input.jeff.cool + label:before {background-position: -360px 0px;}
input.jeff.app + label:before {background-position: -1764px 0px;}
input.jeff.mar + label:before {background-position: -1080px 0px;}
input.jeff.straightjacket + label:before {background-position: -396px 0px;}
input.jeff.warfare + label:before {background-position: -900px 0px;}
input.jeff.mohawk + label:before {background-position: -432px 0px;}
input.jeff.monkeygas + label:before {background-position: -468px 0px;}
input.jeff.plaid + label:before {background-position: -1584px 0px;}
input.jeff.planet + label:before {background-position: -1260px 0px;}
input.jeff.professor + label:before {background-position: -1620px 0px;}
input.jeff.skater + label:before {background-position: -1476px 0px;}
input.jeff.ricky + label:before {background-position: -1044px 0px;}
input.jeff.hulk + label:before {background-position: -504px 0px;}
input.jeff.cowboy + label:before {background-position: -576px 0px;}
input.jeff.shorts + label:before {background-position: -540px 0px;}
input.jeff.riggs + label:before {background-position: -1656px 0px;}
input.jeff.abeds_shirt + label:before {background-position: -612px 0px;}
input.jeff.thoraxis + label:before {background-position: -648px 0px;}
input.jeff.timeline + label:before {background-position: -1224px 0px;}
input.jeff.anime + label:before {background-position: -684px 0px;}
input.jeff.train + label:before {background-position: -1188px 0px;}
input.jeff.undies + label:before {background-position: -1296px 0px;}
input.jeff.vampire + label:before {background-position: -756px 0px;}
input.jeff.vega + label:before {background-position: -864px 0px;}
input.jeff.wingman + label:before {background-position: -1692px 0px;}
input.jeff.zombie + label:before {background-position: -720px 0px;}
input.leonard.base + label:before {background-position: 0px 0px;}
input.leonard.asylum + label:before {background-position: -36px 0px;}
input.leonard.paintball + label:before {background-position: -72px 0px;}
input.pierce.base + label:before {background-position: -0px 0px;}
input.pierce.astronaut + label:before {background-position: -36px 0px;}
input.pierce.beastmaster + label:before {background-position: -900px 0px;}
input.pierce.naked + label:before {background-position: -72px 0px;}
input.pierce.canoe + label:before {background-position: -108px 0px;}
input.pierce.kirk + label:before {background-position: -144px 0px;}
input.pierce.captain + label:before {background-position: -648px 0px;}
input.pierce.hurt + label:before {background-position: -720px 0px;}
input.pierce.wizard + label:before {background-position: -684px 0px;}
input.pierce.drugs + label:before {background-position: -180px 0px;}
input.pierce.fatreynolds + label:before {background-position: -972px 0px;}
input.pierce.feethands + label:before {background-position: -864px 0px;}
input.pierce.gimp + label:before {background-position: -216px 0px;}
input.pierce.popnlock + label:before {background-position: -936px 0px;}
input.pierce.hotdog + label:before {background-position: -252px 0px;}
input.pierce.hulapaint + label:before {background-position: -288px 0px;}
input.pierce.janetreno + label:before {background-position: -324px 0px;}
input.pierce.lotus + label:before {background-position: -360px 0px;}
input.pierce.madscientist + label:before {background-position: -828px 0px;}
input.pierce.magnum + label:before {background-position: -396px 0px;}
input.pierce.paintball + label:before {background-position: -432px 0px;}
input.pierce.dickish + label:before {background-position: -756px 0px;}
input.pierce.pillow + label:before {background-position: -468px 0px;}
input.pierce.planet_christmas + label:before {background-position: -504px 0px;}
input.pierce.teddy + label:before {background-position: -612px 0px;}
input.pierce.western + label:before {background-position: -792px 0px;}
input.pierce.wheelchair + label:before {background-position: -540px 0px;}
input.pierce.zombie + label:before {background-position: -576px 0px;}
input.rich.base + label:before {background-position: 0px 0px;}
input.shirley.base + label:before {background-position: -0px 0px;}
input.shirley.clubs + label:before {background-position: -36px 0px;}
input.shirley.angel + label:before {background-position: -360px 0px;}
input.shirley.space + label:before {background-position: -468px 0px;}
input.shirley.babydoll + label:before {background-position: -432px 0px;}
input.shirley.anime + label:before {background-position: -72px 0px;}
input.shirley.book + label:before {background-position: -900px 0px;}
input.shirley.security + label:before {background-position: -756px 0px;}
input.shirley.captain + label:before {background-position: -648px 0px;}
input.shirley.chef + label:before {background-position: -108px 0px;}
input.shirley.hurt + label:before {background-position: -684px 0px;}
input.shirley.crayon + label:before {background-position: -144px 0px;}
input.shirley.dark + label:before {background-position: -180px 0px;}
input.shirley.fbf + label:before {background-position: -792px 0px;}
input.shirley.baby + label:before {background-position: -540px 0px;}
input.shirley.potter + label:before {background-position: -216px 0px;}
input.shirley.headnurse + label:before {background-position: -972px 0px;}
input.shirley.poplock + label:before {background-position: -828px 0px;}
input.shirley.jules + label:before {background-position: -720px 0px;}
input.shirley.lingerie + label:before {background-position: -864px 0px;}
input.shirley.glinda + label:before {background-position: -252px 0px;}
input.shirley.oprah + label:before {background-position: -504px 0px;}
input.shirley.planetchristmas + label:before {background-position: -936px 0px;}
input.shirley.leia + label:before {background-position: -288px 0px;}
input.shirley.sandwiches + label:before {background-position: -612px 0px;}
input.shirley.timelinebattle + label:before {background-position: -576px 0px;}
input.shirley.zippy + label:before {background-position: -396px 0px;}
input.shirley.zombie + label:before {background-position: -324px 0px;}
input.troy.base + label:before {background-position: -0px 0px;}
input.troy.ac + label:before {background-position: -972px 0px;}
input.troy.atv + label:before {background-position: -1728px 0px;}
input.troy.bball + label:before {background-position: -1152px 0px;}
input.troy.beatitudes + label:before {background-position: -1332px 0px;}
input.troy.bingbong + label:before {background-position: -36px 0px;}
input.troy.bumblebee + label:before {background-position: -72px 0px;}
input.troy.gambino + label:before {background-position: -108px 0px;}
input.troy.mafia + label:before {background-position: -1188px 0px;}
input.troy.hurt + label:before {background-position: -1548px 0px;}
input.troy.christmas_tree + label:before {background-position: -144px 0px;}
input.troy.chronicles + label:before {background-position: -1764px 0px;}
input.troy.constable + label:before {background-position: -180px 0px;}
input.troy.cowboy + label:before {background-position: -1836px 0px;}
input.troy.dancer + label:before {background-position: -720px 0px;}
input.troy.detective + label:before {background-position: -216px 0px;}
input.troy.doctor + label:before {background-position: -1368px 0px;}
input.troy.eddie + label:before {background-position: -1692px 0px;}
input.troy.evil + label:before {background-position: -900px 0px;}
input.troy.fiddla + label:before {background-position: -792px 0px;}
input.troy.fbf + label:before {background-position: -828px 0px;}
input.troy.baby + label:before {background-position: -936px 0px;}
input.troy.popnlock + label:before {background-position: -1296px 0px;}
input.troy.hippie + label:before {background-position: -1584px 0px;}
input.troy.hobbes + label:before {background-position: -252px 0px;}
input.troy.invader + label:before {background-position: -1224px 0px;}
input.troy.morning + label:before {background-position: -1476px 0px;}
input.troy.kick + label:before {background-position: -288px 0px;}
input.troy.clubs + label:before {background-position: -1620px 0px;}
input.troy.lotus + label:before {background-position: -1908px 0px;}
input.troy.letterman + label:before {background-position: -1008px 0px;}
input.troy.library + label:before {background-position: -324px 0px;}
input.troy.michaeljackson + label:before {background-position: -360px 0px;}
input.troy.mustache + label:before {background-position: -1440px 0px;}
input.troy.chloroform + label:before {background-position: -1044px 0px;}
input.troy.naked + label:before {background-position: -1872px 0px;}
input.troy.night + label:before {background-position: -396px 0px;}
input.troy.operation + label:before {background-position: -1260px 0px;}
input.troy.orange + label:before {background-position: -432px 0px;}
input.troy.paintball + label:before {background-position: -504px 0px;}
input.troy.pajamas + label:before {background-position: -1404px 0px;}
input.troy.pantsuit + label:before {background-position: -468px 0px;}
input.troy.pharaoh + label:before {background-position: -1512px 0px;}
input.troy.pumpkin + label:before {background-position: -864px 0px;}
input.troy.ridley + label:before {background-position: -540px 0px;}
input.troy.sexyvampire + label:before {background-position: -576px 0px;}
input.troy.spidey + label:before {background-position: -612px 0px;}
input.troy.football + label:before {background-position: -648px 0px;}
input.troy.toga + label:before {background-position: -1116px 0px;}
input.troy.sewn + label:before {background-position: -684px 0px;}
input.troy.troysoldier + label:before {background-position: -1800px 0px;}
input.troy.werewolf + label:before {background-position: -756px 0px;}
input.troy.woodsman + label:before {background-position: -1080px 0px;}
input.troy.zombie + label:before {background-position: -1656px 0px;}
input.vaughn.base + label:before {background-position: 0px 0px;}
input.vicedean.base + label:before {background-position: 0px 0px;}
input.vicedean.ghost + label:before {background-position: -36px 0px;}
input.vicedean.stuff + label:before {background-position: -108px 0px;}
input.vicedean.pajamas + label:before {background-position: -72px 0px;}
input.vicki.base + label:before {background-position: 0px 0px;}
input.vicki.knight + label:before {background-position: -36px 0px;}
@keyframes dance {
0% {background-position: -768px -1728px;}
25% {background-position: -2304px -1344px;}
50% {background-position: -2304px -1536px;}
75% {background-position: -768px -1920px;}
100% {background-position: -1536px -1152px;}
}
div.character {
position: absolute;
width: 192px;
height: 192px;
image-rendering: pixelated;
background-size: 2304px;
margin: 220px 0 0 50%;
top: 0;
left: -96px;
animation: dance 1s steps(1) infinite;
}
input.abed.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/base.png);}
input.abed.alien:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/alien.png);}
input.abed.batman:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/batman.png);}
input.abed.bert:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/bert.png);}
input.abed.britta:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/britta.png);}
input.abed.jamielee:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/jamielee.png);}
input.abed.bee:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/bee.png);}
input.abed.camo:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/camo.png);}
input.abed.cape:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/cape.png);}
input.abed.chang:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/chang.png);}
input.abed.mafia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/mafia.png);}
input.abed.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/hurt.png);}
input.abed.elf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/elf.png);}
input.abed.christmas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/christmas.png);}
input.abed.paint:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/paint.png);}
input.abed.cowboy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/cowboy.png);}
input.abed.creepy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/creepy.png);}
input.abed.rasalghul:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/rasalghul.png);}
input.abed.andre:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/andre.png);}
input.abed.disco:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/disco.png);}
input.abed.drunk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/drunk.png);}
input.abed.maiden:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/maiden.png);}
input.abed.evil:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/evil.png);}
input.abed.fine:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/fine.png);}
input.abed.gangster:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/gangster.png);}
input.abed.baby:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/baby.png);}
input.abed.solo:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/solo.png);}
input.abed.poplock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/poplock.png);}
input.abed.hobgoblin:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/hobgoblin.png);}
input.abed.morning:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/morning.png);}
input.abed.inspector:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/inspector.png);}
input.abed.clubs:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/clubs.png);}
input.abed.jbv:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/jbv.png);}
input.abed.jeff:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/jeff.png);}
input.abed.jeffshirt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/jeffshirt.png);}
input.abed.white:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/white.png);}
input.abed.mcclane:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/mcclane.png);}
input.abed.kyle:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/kyle.png);}
input.abed.king:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/king.png);}
input.abed.naked:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/naked.png);}
input.abed.pierce:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/pierce.png);}
input.abed.radar:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/radar.png);}
input.abed.plumber:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/plumber.png);}
input.abed.patrick:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/patrick.png);}
input.abed.sewn:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/sewn.png);}
input.abed.troy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/troy.png);}
input.abed.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/abed/zombie.png);}
input.annie.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/base.png);}
input.annie.abed:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/abed.png);}
input.annie.hearts:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hearts.png);}
input.annie.kim:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/kim.png);}
input.annie.armor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/armor.png);}
input.annie.astronaut:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/astronaut.png);}
input.annie.asylum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/asylum.png);}
input.annie.ballerannie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/ballerannie.png);}
input.annie.security:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/security.png);}
input.annie.changlorious:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/changlorious.png);}
input.annie.cheerleader:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/cheerleader.png);}
input.annie.mafia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/mafia.png);}
input.annie.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hurt.png);}
input.annie.paint:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/paint.png);}
input.annie.debate:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/debate.png);}
input.annie.dorothy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/dorothy.png);}
input.annie.hanniebal:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hanniebal.png);}
input.annie.reddress:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/reddress.png);}
input.annie.befine:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/befine.png);}
input.annie.geneva:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/geneva.png);}
input.annie.german:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/german.png);}
input.annie.baby:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/baby.png);}
input.annie.poplock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/poplock.png);}
input.annie.hector:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hector.png);}
input.annie.hectorlvlup:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hectorlvlup.png);}
input.annie.honey:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/honey.png);}
input.annie.hooded:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hooded.png);}
input.annie.hospital:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/hospital.png);}
input.annie.karatannie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/karatannie.png);}
input.annie.lawyer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/lawyer.png);}
input.annie.highschool:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/highschool.png);}
input.annie.riding:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/riding.png);}
input.annie.lingerie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/lingerie.png);}
input.annie.warfare:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/warfare.png);}
input.annie.nurse:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/nurse.png);}
input.annie.pageant:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/pageant.png);}
input.annie.princess:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/princess.png);}
input.annie.reindeer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/reindeer.png);}
input.annie.samara:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/samara.png);}
input.annie.script:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/script.png);}
input.annie.santa:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/santa.png);}
input.annie.party:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/party.png);}
input.annie.skeleton:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/skeleton.png);}
input.annie.tightship:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/tightship.png);}
input.annie.timebattle:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/timebattle.png);}
input.annie.victorian:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/victorian.png);}
input.annie.werewolf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/werewolf.png);}
input.annie.western:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/western.png);}
input.annie.wig:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/wig.png);}
input.annie.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/annie/zombie.png);}
input.britta.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/base.png);}
input.britta.astronaut:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/astronaut.png);}
input.britta.asylum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/asylum.png);}
input.britta.bitten:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/bitten.png);}
input.britta.bloodied:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/bloodied.png);}
input.britta.brittabot:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/brittabot.png);}
input.britta.dragon:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/dragon.png);}
input.britta.buzzkill:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/buzzkill.png);}
input.britta.cheerleader:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/cheerleader.png);}
input.britta.mafia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/mafia.png);}
input.britta.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/hurt.png);}
input.britta.coldturkey:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/coldturkey.png);}
input.britta.dancer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/dancer.png);}
input.britta.dark:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/dark.png);}
input.britta.doctor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/doctor.png);}
input.britta.fibrosis:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/fibrosis.png);}
input.britta.finallybefine:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/finallybefine.png);}
input.britta.german:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/german.png);}
input.britta.ham:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/ham.png);}
input.britta.popnlock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/popnlock.png);}
input.britta.fundraising:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/fundraising.png);}
input.britta.cool:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/cool.png);}
input.britta.lavaworld:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/lavaworld.png);}
input.britta.lavernica:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/lavernica.png);}
input.britta.lingerie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/lingerie.png);}
input.britta.king:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/king.png);}
input.britta.mia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/mia.png);}
input.britta.mj:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/mj.png);}
input.britta.paintball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/paintball.png);}
input.britta.dino:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/dino.png);}
input.britta.tree:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/tree.png);}
input.britta.spades:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/spades.png);}
input.britta.peyote:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/peyote.png);}
input.britta.psychopath:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/psychopath.png);}
input.britta.punk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/punk.png);}
input.britta.squirrel:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/squirrel.png);}
input.britta.teapot:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/teapot.png);}
input.britta.timelinebattle:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/timelinebattle.png);}
input.britta.trannyqueen:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/trannyqueen.png);}
input.britta.protest:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/protest.png);}
input.britta.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/britta/zombie.png);}
input.buddy.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/buddy/base.png);}
input.buddy.master_exploder:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/buddy/master_exploder.png);}
input.chang.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/base.png);}
input.chang.brutalitops:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/brutalitops.png);}
input.chang.butch:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/butch.png);}
input.chang.cheerleader:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/cheerleader.png);}
input.chang.dictator:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/dictator.png);}
input.chang.dingleberry:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/dingleberry.png);}
input.chang.evil:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/evil.png);}
input.chang.father:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/father.png);}
input.chang.popnlock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/popnlock.png);}
input.chang.cannotdie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/cannotdie.png);}
input.chang.naked:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/naked.png);}
input.chang.leather:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/leather.png);}
input.chang.peggy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/peggy.png);}
input.chang.ymca:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/ymca.png);}
input.chang.safety:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/safety.png);}
input.chang.shaving:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/shaving.png);}
input.chang.soccer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/soccer.png);}
input.chang.snowman:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/snowman.png);}
input.chang.enterchangment:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/enterchangment.png);}
input.chang.understudy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/understudy.png);}
input.chang.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/chang/zombie.png);}
input.dean.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/base.png);}
input.dean.bee:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/bee.png);}
input.dean.construction:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/construction.png);}
input.dean.devil:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/devil.png);}
input.dean.donna:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/donna.png);}
input.dean.cowboy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/cowboy.png);}
input.dean.jgdiehard:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/jgdiehard.png);}
input.dean.mardigras:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/mardigras.png);}
input.dean.newdean:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/newdean.png);}
input.dean.conductor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/conductor.png);}
input.dean.unclesam:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/dean/unclesam.png);}
input.duncan.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/duncan/base.png);}
input.fatneil.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/fatneil/base.png);}
input.fatneil.coach:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/fatneil/coach.png);}
input.fatneil.duquense:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/fatneil/duquense.png);}
input.garrett.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/garrett/base.png);}
input.garrett.jammies:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/garrett/jammies.png);}
input.garrett.alien:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/garrett/alien.png);}
input.gilbert.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/gilbert/base.png);}
input.guzman.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/guzman/base.png);}
input.jeff.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/base.png);}
input.jeff.astronaut:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/astronaut.png);}
input.jeff.asylum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/asylum.png);}
input.jeff.aviators:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/aviators.png);}
input.jeff.bball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/bball.png);}
input.jeff.naked:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/naked.png);}
input.jeff.boxer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/boxer.png);}
input.jeff.carpediem:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/carpediem.png);}
input.jeff.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/hurt.png);}
input.jeff.darkest:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/darkest.png);}
input.jeff.david:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/david.png);}
input.jeff.dean:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/dean.png);}
input.jeff.doctor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/doctor.png);}
input.jeff.drunk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/drunk.png);}
input.jeff.electro:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/electro.png);}
input.jeff.darkundies:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/darkundies.png);}
input.jeff.fbf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/fbf.png);}
input.jeff.goldblum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/goldblum.png);}
input.jeff.baby:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/baby.png);}
input.jeff.hawkeye:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/hawkeye.png);}
input.jeff.poplock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/poplock.png);}
input.jeff.hungerdeans:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/hungerdeans.png);}
input.jeff.jeffinthebox:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/jeffinthebox.png);}
input.jeff.spades:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/spades.png);}
input.jeff.cool:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/cool.png);}
input.jeff.app:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/app.png);}
input.jeff.mar:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/mar.png);}
input.jeff.straightjacket:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/straightjacket.png);}
input.jeff.warfare:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/warfare.png);}
input.jeff.mohawk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/mohawk.png);}
input.jeff.monkeygas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/monkeygas.png);}
input.jeff.plaid:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/plaid.png);}
input.jeff.planet:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/planet.png);}
input.jeff.professor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/professor.png);}
input.jeff.skater:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/skater.png);}
input.jeff.ricky:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/ricky.png);}
input.jeff.hulk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/hulk.png);}
input.jeff.cowboy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/cowboy.png);}
input.jeff.shorts:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/shorts.png);}
input.jeff.riggs:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/riggs.png);}
input.jeff.abeds_shirt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/abeds_shirt.png);}
input.jeff.thoraxis:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/thoraxis.png);}
input.jeff.timeline:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/timeline.png);}
input.jeff.anime:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/anime.png);}
input.jeff.train:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/train.png);}
input.jeff.undies:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/undies.png);}
input.jeff.vampire:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/vampire.png);}
input.jeff.vega:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/vega.png);}
input.jeff.wingman:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/wingman.png);}
input.jeff.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/jeff/zombie.png);}
input.leonard.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/leonard/base.png);}
input.leonard.asylum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/leonard/asylum.png);}
input.leonard.paintball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/leonard/paintball.png);}
input.pierce.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/base.png);}
input.pierce.astronaut:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/astronaut.png);}
input.pierce.beastmaster:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/beastmaster.png);}
input.pierce.naked:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/naked.png);}
input.pierce.canoe:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/canoe.png);}
input.pierce.kirk:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/kirk.png);}
input.pierce.captain:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/captain.png);}
input.pierce.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/hurt.png);}
input.pierce.wizard:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/wizard.png);}
input.pierce.drugs:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/drugs.png);}
input.pierce.fatreynolds:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/fatreynolds.png);}
input.pierce.feethands:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/feethands.png);}
input.pierce.gimp:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/gimp.png);}
input.pierce.popnlock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/popnlock.png);}
input.pierce.hotdog:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/hotdog.png);}
input.pierce.hulapaint:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/hulapaint.png);}
input.pierce.janetreno:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/janetreno.png);}
input.pierce.lotus:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/lotus.png);}
input.pierce.madscientist:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/madscientist.png);}
input.pierce.magnum:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/magnum.png);}
input.pierce.paintball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/paintball.png);}
input.pierce.dickish:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/dickish.png);}
input.pierce.pillow:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/pillow.png);}
input.pierce.planet_christmas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/planet_christmas.png);}
input.pierce.teddy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/teddy.png);}
input.pierce.western:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/western.png);}
input.pierce.wheelchair:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/wheelchair.png);}
input.pierce.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/pierce/zombie.png);}
input.rich.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/rich/base.png);}
input.shirley.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/base.png);}
input.shirley.clubs:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/clubs.png);}
input.shirley.angel:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/angel.png);}
input.shirley.space:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/space.png);}
input.shirley.babydoll:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/babydoll.png);}
input.shirley.anime:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/anime.png);}
input.shirley.book:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/book.png);}
input.shirley.security:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/security.png);}
input.shirley.captain:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/captain.png);}
input.shirley.chef:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/chef.png);}
input.shirley.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/hurt.png);}
input.shirley.crayon:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/crayon.png);}
input.shirley.dark:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/dark.png);}
input.shirley.fbf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/fbf.png);}
input.shirley.baby:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/baby.png);}
input.shirley.potter:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/potter.png);}
input.shirley.headnurse:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/headnurse.png);}
input.shirley.poplock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/poplock.png);}
input.shirley.jules:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/jules.png);}
input.shirley.lingerie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/lingerie.png);}
input.shirley.glinda:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/glinda.png);}
input.shirley.oprah:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/oprah.png);}
input.shirley.planetchristmas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/planetchristmas.png);}
input.shirley.leia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/leia.png);}
input.shirley.sandwiches:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/sandwiches.png);}
input.shirley.timelinebattle:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/timelinebattle.png);}
input.shirley.zippy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/zippy.png);}
input.shirley.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/shirley/zombie.png);}
input.troy.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/base.png);}
input.troy.ac:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/ac.png);}
input.troy.atv:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/atv.png);}
input.troy.bball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/bball.png);}
input.troy.beatitudes:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/beatitudes.png);}
input.troy.bingbong:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/bingbong.png);}
input.troy.bumblebee:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/bumblebee.png);}
input.troy.gambino:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/gambino.png);}
input.troy.mafia:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/mafia.png);}
input.troy.hurt:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/hurt.png);}
input.troy.christmas_tree:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/christmas_tree.png);}
input.troy.chronicles:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/chronicles.png);}
input.troy.constable:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/constable.png);}
input.troy.cowboy:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/cowboy.png);}
input.troy.dancer:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/dancer.png);}
input.troy.detective:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/detective.png);}
input.troy.doctor:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/doctor.png);}
input.troy.eddie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/eddie.png);}
input.troy.evil:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/evil.png);}
input.troy.fiddla:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/fiddla.png);}
input.troy.fbf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/fbf.png);}
input.troy.baby:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/baby.png);}
input.troy.popnlock:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/popnlock.png);}
input.troy.hippie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/hippie.png);}
input.troy.hobbes:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/hobbes.png);}
input.troy.invader:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/invader.png);}
input.troy.morning:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/morning.png);}
input.troy.kick:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/kick.png);}
input.troy.clubs:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/clubs.png);}
input.troy.lotus:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/lotus.png);}
input.troy.letterman:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/letterman.png);}
input.troy.library:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/library.png);}
input.troy.michaeljackson:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/michaeljackson.png);}
input.troy.mustache:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/mustache.png);}
input.troy.chloroform:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/chloroform.png);}
input.troy.naked:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/naked.png);}
input.troy.night:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/night.png);}
input.troy.operation:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/operation.png);}
input.troy.orange:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/orange.png);}
input.troy.paintball:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/paintball.png);}
input.troy.pajamas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/pajamas.png);}
input.troy.pantsuit:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/pantsuit.png);}
input.troy.pharaoh:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/pharaoh.png);}
input.troy.pumpkin:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/pumpkin.png);}
input.troy.ridley:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/ridley.png);}
input.troy.sexyvampire:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/sexyvampire.png);}
input.troy.spidey:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/spidey.png);}
input.troy.football:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/football.png);}
input.troy.toga:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/toga.png);}
input.troy.sewn:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/sewn.png);}
input.troy.troysoldier:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/troysoldier.png);}
input.troy.werewolf:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/werewolf.png);}
input.troy.woodsman:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/woodsman.png);}
input.troy.zombie:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/troy/zombie.png);}
input.vaughn.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vaughn/base.png);}
input.vicedean.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicedean/base.png);}
input.vicedean.ghost:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicedean/ghost.png);}
input.vicedean.stuff:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicedean/stuff.png);}
input.vicedean.pajamas:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicedean/pajamas.png);}
input.vicki.base:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicki/base.png);}
input.vicki.knight:checked ~ div.character {background-image:url(https://raw.githubusercontent.com/hawkthorne/hawkthorne-journey/master/src/images/characters/vicki/knight.png);}
</style>
<div class="character-wrapper">
<div class="select costume">
<h3>Abed Nadir</h3>
<input type="radio" checked id="costume_abed_base" name="costume" value="Abed Nadir (base)" class="abed base"><label for="costume_abed_base">Abed Nadir (base)</label>
<input type="radio" id="costume_abed_alien" name="costume" value="Alien (S02E06)" class="abed alien"><label for="costume_abed_alien">Alien (S02E06)</label>
<input type="radio" id="costume_abed_batman" name="costume" value="Batman (S01E07)" class="abed batman"><label for="costume_abed_batman">Batman (S01E07)</label>
<input type="radio" id="costume_abed_bert" name="costume" value="Bert (S01E17)" class="abed bert"><label for="costume_abed_bert">Bert (S01E17)</label>
<input type="radio" id="costume_abed_britta" name="costume" value="Britta Roleplay (S03E16)" class="abed britta"><label for="costume_abed_britta">Britta Roleplay (S03E16)</label>
<input type="radio" id="costume_abed_jamielee" name="costume" value="Brown Jamie Lee Curtis (S03E12)" class="abed jamielee"><label for="costume_abed_jamielee">Brown Jamie Lee Curtis (S03E12)</label>
<input type="radio" id="costume_abed_bee" name="costume" value="Bumblebee (S02E13)" class="abed bee"><label for="costume_abed_bee">Bumblebee (S02E13)</label>
<input type="radio" id="costume_abed_camo" name="costume" value="Camouflage (S01E23)" class="abed camo"><label for="costume_abed_camo">Camouflage (S01E23)</label>
<input type="radio" id="costume_abed_cape" name="costume" value="The Cape (S02E21)" class="abed cape"><label for="costume_abed_cape">The Cape (S02E21)</label>
<input type="radio" id="costume_abed_chang" name="costume" value="Chang Roleplay (S03E16)" class="abed chang"><label for="costume_abed_chang">Chang Roleplay (S03E16)</label>
<input type="radio" id="costume_abed_mafia" name="costume" value="Chicken Mafia (S01E18)" class="abed mafia"><label for="costume_abed_mafia">Chicken Mafia (S01E18)</label>
<input type="radio" id="costume_abed_hurt" name="costume" value="Christmas Brawl (S01E12)" class="abed hurt"><label for="costume_abed_hurt">Christmas Brawl (S01E12)</label>
<input type="radio" id="costume_abed_elf" name="costume" value="Christmas Elf (S01E12)" class="abed elf"><label for="costume_abed_elf">Christmas Elf (S01E12)</label>
<input type="radio" id="costume_abed_christmas" name="costume" value="Christmas Sweater (S03E10)" class="abed christmas"><label for="costume_abed_christmas">Christmas Sweater (S03E10)</label>
<input type="radio" id="costume_abed_paint" name="costume" value="Covered In Paint (S02E24)" class="abed paint"><label for="costume_abed_paint">Covered In Paint (S02E24)</label>
<input type="radio" id="costume_abed_cowboy" name="costume" value="Cowboy (S02E21)" class="abed cowboy"><label for="costume_abed_cowboy">Cowboy (S02E21)</label>
<input type="radio" id="costume_abed_creepy" name="costume" value="Creepy Alien (S01E05)" class="abed creepy"><label for="costume_abed_creepy">Creepy Alien (S01E05)</label>
<input type="radio" id="costume_abed_rasalghul" name="costume" value="Darkest Timeline (Ra's Al Ghul) (S04E13)" class="abed rasalghul"><label for="costume_abed_rasalghul">Darkest Timeline (Ra's Al Ghul) (S04E13)</label>
<input type="radio" id="costume_abed_andre" name="costume" value="Dinner With Andre (S02E19)" class="abed andre"><label for="costume_abed_andre">Dinner With Andre (S02E19)</label>
<input type="radio" id="costume_abed_disco" name="costume" value="Disco (S03E10)" class="abed disco"><label for="costume_abed_disco">Disco (S03E10)</label>
<input type="radio" id="costume_abed_drunk" name="costume" value="Drunk (S01E16)" class="abed drunk"><label for="costume_abed_drunk">Drunk (S01E16)</label>
<input type="radio" id="costume_abed_maiden" name="costume" value="Elf Maiden (S02E14)" class="abed maiden"><label for="costume_abed_maiden">Elf Maiden (S02E14)</label>
<input type="radio" id="costume_abed_evil" name="costume" value="Evil Abed (S03E22)" class="abed evil"><label for="costume_abed_evil">Evil Abed (S03E22)</label>
<input type="radio" id="costume_abed_fine" name="costume" value="Finally Be Fine (S03E01)" class="abed fine"><label for="costume_abed_fine">Finally Be Fine (S03E01)</label>
<input type="radio" id="costume_abed_gangster" name="costume" value="Gangster (S03E19)" class="abed gangster"><label for="costume_abed_gangster">Gangster (S03E19)</label>
<input type="radio" id="costume_abed_baby" name="costume" value="Greendale Baby (S04E01)" class="abed baby"><label for="costume_abed_baby">Greendale Baby (S04E01)</label>
<input type="radio" id="costume_abed_solo" name="costume" value="Han Solo (S02E24)" class="abed solo"><label for="costume_abed_solo">Han Solo (S02E24)</label>
<input type="radio" id="costume_abed_poplock" name="costume" value="Heather Popandlocklear (S02E02)" class="abed poplock"><label for="costume_abed_poplock">Heather Popandlocklear (S02E02)</label>
<input type="radio" id="costume_abed_hobgoblin" name="costume" value="Hobgoblin (S05E10)" class="abed hobgoblin"><label for="costume_abed_hobgoblin">Hobgoblin (S05E10)</label>
<input type="radio" id="costume_abed_morning" name="costume" value="In the Morning (S01E20)" class="abed morning"><label for="costume_abed_morning">In the Morning (S01E20)</label>
<input type="radio" id="costume_abed_inspector" name="costume" value="Inspector Spacetime (S03E05)" class="abed inspector"><label for="costume_abed_inspector">Inspector Spacetime (S03E05)</label>
<input type="radio" id="costume_abed_clubs" name="costume" value="Jack of Clubs (S02E23)" class="abed clubs"><label for="costume_abed_clubs">Jack of Clubs (S02E23)</label>
<input type="radio" id="costume_abed_jbv" name="costume" value="Jamaican Baseball Villan (S01E15)" class="abed jbv"><label for="costume_abed_jbv">Jamaican Baseball Villan (S01E15)</label>
<input type="radio" id="costume_abed_jeff" name="costume" value="Jeff Roleplay (S03E16)" class="abed jeff"><label for="costume_abed_jeff">Jeff Roleplay (S03E16)</label>
<input type="radio" id="costume_abed_jeffshirt" name="costume" value="Jeff's Shirt (S01E02)" class="abed jeffshirt"><label for="costume_abed_jeffshirt">Jeff's Shirt (S01E02)</label>
<input type="radio" id="costume_abed_white" name="costume" value="Joey (S01E17)" class="abed white"><label for="costume_abed_white">Joey (S01E17)</label>
<input type="radio" id="costume_abed_mcclane" name="costume" value="John McClane (S04E10)" class="abed mcclane"><label for="costume_abed_mcclane">John McClane (S04E10)</label>
<input type="radio" id="costume_abed_kyle" name="costume" value="Kyle the Gnome (S02E14)" class="abed kyle"><label for="costume_abed_kyle">Kyle the Gnome (S02E14)</label>
<input type="radio" id="costume_abed_king" name="costume" value="Mouse King (S03E10)" class="abed king"><label for="costume_abed_king">Mouse King (S03E10)</label>
<input type="radio" id="costume_abed_naked" name="costume" value="Naked (S03E20)" class="abed naked"><label for="costume_abed_naked">Naked (S03E20)</label>
<input type="radio" id="costume_abed_pierce" name="costume" value="Pierce Roleplay (S03E16)" class="abed pierce"><label for="costume_abed_pierce">Pierce Roleplay (S03E16)</label>
<input type="radio" id="costume_abed_radar" name="costume" value="Radar (S01E13)" class="abed radar"><label for="costume_abed_radar">Radar (S01E13)</label>
<input type="radio" id="costume_abed_plumber" name="costume" value="Rod the Plumber (S03E21)" class="abed plumber"><label for="costume_abed_plumber">Rod the Plumber (S03E21)</label>
<input type="radio" id="costume_abed_patrick" name="costume" value="St Patrick's Day (S02E21)" class="abed patrick"><label for="costume_abed_patrick">St Patrick's Day (S02E21)</label>
<input type="radio" id="costume_abed_sewn" name="costume" value="Troy and Abed Sewn Together (S03E05)" class="abed sewn"><label for="costume_abed_sewn">Troy and Abed Sewn Together (S03E05)</label>
<input type="radio" id="costume_abed_troy" name="costume" value="Troy Roleplay (S03E16)" class="abed troy"><label for="costume_abed_troy">Troy Roleplay (S03E16)</label>
<input type="radio" id="costume_abed_zombie" name="costume" value="Zombie (S02E06)" class="abed zombie"><label for="costume_abed_zombie">Zombie (S02E06)</label>
<h3>Annie Edison</h3>
<input type="radio" id="costume_annie_base" name="costume" value="Annie Edison (base)" class="annie base"><label for="costume_annie_base">Annie Edison (base)</label>
<input type="radio" id="costume_annie_abed" name="costume" value="Abed (S03E16)" class="annie abed"><label for="costume_annie_abed">Abed (S03E16)</label>
<input type="radio" id="costume_annie_hearts" name="costume" value="Ace of Hearts (S02E23)" class="annie hearts"><label for="costume_annie_hearts">Ace of Hearts (S02E23)</label>
<input type="radio" id="costume_annie_kim" name="costume" value="Annie Kim (S03E02)" class="annie kim"><label for="costume_annie_kim">Annie Kim (S03E02)</label>
<input type="radio" id="costume_annie_armor" name="costume" value="Armor (S03E20)" class="annie armor"><label for="costume_annie_armor">Armor (S03E20)</label>
<input type="radio" id="costume_annie_astronaut" name="costume" value="Astronaut (S02E04)" class="annie astronaut"><label for="costume_annie_astronaut">Astronaut (S02E04)</label>
<input type="radio" id="costume_annie_asylum" name="costume" value="Asylum (S03E19)" class="annie asylum"><label for="costume_annie_asylum">Asylum (S03E19)</label>
<input type="radio" id="costume_annie_ballerannie" name="costume" value="Ballerannie (S02E11)" class="annie ballerannie"><label for="costume_annie_ballerannie">Ballerannie (S02E11)</label>
<input type="radio" id="costume_annie_security" name="costume" value="Campus Security (S01E20)" class="annie security"><label for="costume_annie_security">Campus Security (S01E20)</label>
<input type="radio" id="costume_annie_changlorious" name="costume" value="Changlorious Bastard (S03E21)" class="annie changlorious"><label for="costume_annie_changlorious">Changlorious Bastard (S03E21)</label>
<input type="radio" id="costume_annie_cheerleader" name="costume" value="Cheerleader (S01E13)" class="annie cheerleader"><label for="costume_annie_cheerleader">Cheerleader (S01E13)</label>
<input type="radio" id="costume_annie_mafia" name="costume" value="Chicken Mafia (S01E18)" class="annie mafia"><label for="costume_annie_mafia">Chicken Mafia (S01E18)</label>
<input type="radio" id="costume_annie_hurt" name="costume" value="Christmas Brawl (S01E12)" class="annie hurt"><label for="costume_annie_hurt">Christmas Brawl (S01E12)</label>
<input type="radio" id="costume_annie_paint" name="costume" value="Covered In Paint (S02E24)" class="annie paint"><label for="costume_annie_paint">Covered In Paint (S02E24)</label>
<input type="radio" id="costume_annie_debate" name="costume" value="Debate Uniform (S01E09)" class="annie debate"><label for="costume_annie_debate">Debate Uniform (S01E09)</label>
<input type="radio" id="costume_annie_dorothy" name="costume" value="Dorothy (Judy Garland) (S03E11)" class="annie dorothy"><label for="costume_annie_dorothy">Dorothy (Judy Garland) (S03E11)</label>
<input type="radio" id="costume_annie_hanniebal" name="costume" value="Evil Annie (Hanniebal) (S04E10)" class="annie hanniebal"><label for="costume_annie_hanniebal">Evil Annie (Hanniebal) (S04E10)</label>
<input type="radio" id="costume_annie_reddress" name="costume" value="Evil Annie (Red Dress) (S04E13)" class="annie reddress"><label for="costume_annie_reddress">Evil Annie (Red Dress) (S04E13)</label>
<input type="radio" id="costume_annie_befine" name="costume" value="Finally Be Fine (S03E01)" class="annie befine"><label for="costume_annie_befine">Finally Be Fine (S03E01)</label>
<input type="radio" id="costume_annie_geneva" name="costume" value="Geneva (S03E16)" class="annie geneva"><label for="costume_annie_geneva">Geneva (S03E16)</label>
<input type="radio" id="costume_annie_german" name="costume" value="German Dirndl (S04E04)" class="annie german"><label for="costume_annie_german">German Dirndl (S04E04)</label>
<input type="radio" id="costume_annie_baby" name="costume" value="Greendale Baby (S04E01)" class="annie baby"><label for="costume_annie_baby">Greendale Baby (S04E01)</label>
<input type="radio" id="costume_annie_poplock" name="costume" value="Heather Popandlocklear (S02E02)" class="annie poplock"><label for="costume_annie_poplock">Heather Popandlocklear (S02E02)</label>
<input type="radio" id="costume_annie_hector" name="costume" value="Hector the Well-Endowed (S02E14)" class="annie hector"><label for="costume_annie_hector">Hector the Well-Endowed (S02E14)</label>
<input type="radio" id="costume_annie_hectorlvlup" name="costume" value="Hector the Well-Endowed (Advanced) (S05E10)" class="annie hectorlvlup"><label for="costume_annie_hectorlvlup">Hector the Well-Endowed (Advanced) (S05E10)</label>
<input type="radio" id="costume_annie_honey" name="costume" value="Honey Bunny (S02E19)" class="annie honey"><label for="costume_annie_honey">Honey Bunny (S02E19)</label>
<input type="radio" id="costume_annie_hooded" name="costume" value="Hooded Detective Coat (S05E03)" class="annie hooded"><label for="costume_annie_hooded">Hooded Detective Coat (S05E03)</label>
<input type="radio" id="costume_annie_hospital" name="costume" value="Hospital Gown (S01E08)" class="annie hospital"><label for="costume_annie_hospital">Hospital Gown (S01E08)</label>
<input type="radio" id="costume_annie_karatannie" name="costume" value="Karatannie (S02E21)" class="annie karatannie"><label for="costume_annie_karatannie">Karatannie (S02E21)</label>
<input type="radio" id="costume_annie_lawyer" name="costume" value="Lawyer (S03E17)" class="annie lawyer"><label for="costume_annie_lawyer">Lawyer (S03E17)</label>
<input type="radio" id="costume_annie_highschool" name="costume" value="Little Annie Adderall (S04E12)" class="annie highschool"><label for="costume_annie_highschool">Little Annie Adderall (S04E12)</label>
<input type="radio" id="costume_annie_riding" name="costume" value="Little Red Riding Hood (S02E06)" class="annie riding"><label for="costume_annie_riding">Little Red Riding Hood (S02E06)</label>
<input type="radio" id="costume_annie_lingerie" name="costume" value="Magnum's Angel (S03E05)" class="annie lingerie"><label for="costume_annie_lingerie">Magnum's Angel (S03E05)</label>
<input type="radio" id="costume_annie_warfare" name="costume" value="Modern Warfare (S01E23)" class="annie warfare"><label for="costume_annie_warfare">Modern Warfare (S01E23)</label>
<input type="radio" id="costume_annie_nurse" name="costume" value="Nurse (S03E14)" class="annie nurse"><label for="costume_annie_nurse">Nurse (S03E14)</label>
<input type="radio" id="costume_annie_pageant" name="costume" value="Planet Christmas (S03E10)" class="annie pageant"><label for="costume_annie_pageant">Planet Christmas (S03E10)</label>
<input type="radio" id="costume_annie_princess" name="costume" value="Princess Annie (S03E07)" class="annie princess"><label for="costume_annie_princess">Princess Annie (S03E07)</label>
<input type="radio" id="costume_annie_reindeer" name="costume" value="Reindeer Sweater (S03E10)" class="annie reindeer"><label for="costume_annie_reindeer">Reindeer Sweater (S03E10)</label>
<input type="radio" id="costume_annie_samara" name="costume" value="Samara (Ring Girl) (S04E02)" class="annie samara"><label for="costume_annie_samara">Samara (Ring Girl) (S04E02)</label>
<input type="radio" id="costume_annie_script" name="costume" value="Script Supervisor (S03E08)" class="annie script"><label for="costume_annie_script">Script Supervisor (S03E08)</label>
<input type="radio" id="costume_annie_santa" name="costume" value="Sexy Santa (S03E10)" class="annie santa"><label for="costume_annie_santa">Sexy Santa (S03E10)</label>
<input type="radio" id="costume_annie_party" name="costume" value="Sinful Party (S03E05)" class="annie party"><label for="costume_annie_party">Sinful Party (S03E05)</label>
<input type="radio" id="costume_annie_skeleton" name="costume" value="Skeleton (S01E07)" class="annie skeleton"><label for="costume_annie_skeleton">Skeleton (S01E07)</label>
<input type="radio" id="costume_annie_tightship" name="costume" value="Tight Ship (S05E11)" class="annie tightship"><label for="costume_annie_tightship">Tight Ship (S05E11)</label>
<input type="radio" id="costume_annie_timebattle" name="costume" value="Timeline Battle (S04E13)" class="annie timebattle"><label for="costume_annie_timebattle">Timeline Battle (S04E13)</label>
<input type="radio" id="costume_annie_victorian" name="costume" value="Victorian (S03E05)" class="annie victorian"><label for="costume_annie_victorian">Victorian (S03E05)</label>
<input type="radio" id="costume_annie_werewolf" name="costume" value="Werewolf (S03E05)" class="annie werewolf"><label for="costume_annie_werewolf">Werewolf (S03E05)</label>
<input type="radio" id="costume_annie_western" name="costume" value="Western Dress (S02E23)" class="annie western"><label for="costume_annie_western">Western Dress (S02E23)</label>
<input type="radio" id="costume_annie_wig" name="costume" value="Wigging Out (S03E19)" class="annie wig"><label for="costume_annie_wig">Wigging Out (S03E19)</label>
<input type="radio" id="costume_annie_zombie" name="costume" value="Zombie (S03E20)" class="annie zombie"><label for="costume_annie_zombie">Zombie (S03E20)</label>
<h3>Britta Perry</h3>
<input type="radio" id="costume_britta_base" name="costume" value="Britta Perry (base)" class="britta base"><label for="costume_britta_base">Britta Perry (base)</label>
<input type="radio" id="costume_britta_astronaut" name="costume" value="Astronaut (S02E04)" class="britta astronaut"><label for="costume_britta_astronaut">Astronaut (S02E04)</label>
<input type="radio" id="costume_britta_asylum" name="costume" value="Asylum (S03E19)" class="britta asylum"><label for="costume_britta_asylum">Asylum (S03E19)</label>
<input type="radio" id="costume_britta_bitten" name="costume" value="Bitten (S03E05)" class="britta bitten"><label for="costume_britta_bitten">Bitten (S03E05)</label>
<input type="radio" id="costume_britta_bloodied" name="costume" value="Bloody Hell! (S03E05)" class="britta bloodied"><label for="costume_britta_bloodied">Bloody Hell! (S03E05)</label>
<input type="radio" id="costume_britta_brittabot" name="costume" value="Brittabot (S02E11)" class="britta brittabot"><label for="costume_britta_brittabot">Brittabot (S02E11)</label>
<input type="radio" id="costume_britta_dragon" name="costume" value="Brittasaurus Rex (S02E06)" class="britta dragon"><label for="costume_britta_dragon">Brittasaurus Rex (S02E06)</label>
<input type="radio" id="costume_britta_buzzkill" name="costume" value="Buzzkill (S05E11)" class="britta buzzkill"><label for="costume_britta_buzzkill">Buzzkill (S05E11)</label>
<input type="radio" id="costume_britta_cheerleader" name="costume" value="Cheerleader (S01E13)" class="britta cheerleader"><label for="costume_britta_cheerleader">Cheerleader (S01E13)</label>
<input type="radio" id="costume_britta_mafia" name="costume" value="Chicken Mafia (S01E18)" class="britta mafia"><label for="costume_britta_mafia">Chicken Mafia (S01E18)</label>
<input type="radio" id="costume_britta_hurt" name="costume" value="Christmas Brawl (S01E12)" class="britta hurt"><label for="costume_britta_hurt">Christmas Brawl (S01E12)</label>
<input type="radio" id="costume_britta_coldturkey" name="costume" value="Cold Turkey (S01E09)" class="britta coldturkey"><label for="costume_britta_coldturkey">Cold Turkey (S01E09)</label>
<input type="radio" id="costume_britta_dancer" name="costume" value="Dancer (S01E14)" class="britta dancer"><label for="costume_britta_dancer">Dancer (S01E14)</label>
<input type="radio" id="costume_britta_dark" name="costume" value="Darkest Timeline (S03E04)" class="britta dark"><label for="costume_britta_dark">Darkest Timeline (S03E04)</label>
<input type="radio" id="costume_britta_doctor" name="costume" value="Dr. Perry (S03E16)" class="britta doctor"><label for="costume_britta_doctor">Dr. Perry (S03E16)</label>
<input type="radio" id="costume_britta_fibrosis" name="costume" value="Fibrosis The Ranger (S05E10)" class="britta fibrosis"><label for="costume_britta_fibrosis">Fibrosis The Ranger (S05E10)</label>
<input type="radio" id="costume_britta_finallybefine" name="costume" value="Finally Be Fine (S03E01)" class="britta finallybefine"><label for="costume_britta_finallybefine">Finally Be Fine (S03E01)</label>
<input type="radio" id="costume_britta_german" name="costume" value="German Dirndl (S04E04)" class="britta german"><label for="costume_britta_german">German Dirndl (S04E04)</label>
<input type="radio" id="costume_britta_ham" name="costume" value="Ham (S04E02)" class="britta ham"><label for="costume_britta_ham">Ham (S04E02)</label>
<input type="radio" id="costume_britta_popnlock" name="costume" value="Heather Popandlocklear (S02E02)" class="britta popnlock"><label for="costume_britta_popnlock">Heather Popandlocklear (S02E02)</label>
<input type="radio" id="costume_britta_fundraising" name="costume" value="Help the Gulf (S02E03)" class="britta fundraising"><label for="costume_britta_fundraising">Help the Gulf (S02E03)</label>
<input type="radio" id="costume_britta_cool" name="costume" value="Kool Kat (S02E13)" class="britta cool"><label for="costume_britta_cool">Kool Kat (S02E13)</label>
<input type="radio" id="costume_britta_lavaworld" name="costume" value="Lava World (S05E05)" class="britta lavaworld"><label for="costume_britta_lavaworld">Lava World (S05E05)</label>
<input type="radio" id="costume_britta_lavernica" name="costume" value="Lavernica (S02E14)" class="britta lavernica"><label for="costume_britta_lavernica">Lavernica (S02E14)</label>
<input type="radio" id="costume_britta_lingerie" name="costume" value="Magnum's Angel (S03E05)" class="britta lingerie"><label for="costume_britta_lingerie">Magnum's Angel (S03E05)</label>
<input type="radio" id="costume_britta_king" name="costume" value="Me So Christmas (S03E10)" class="britta king"><label for="costume_britta_king">Me So Christmas (S03E10)</label>
<input type="radio" id="costume_britta_mia" name="costume" value="Mia Wallace (S02E19)" class="britta mia"><label for="costume_britta_mia">Mia Wallace (S02E19)</label>
<input type="radio" id="costume_britta_mj" name="costume" value="Michael Jackson (S03E12)" class="britta mj"><label for="costume_britta_mj">Michael Jackson (S03E12)</label>
<input type="radio" id="costume_britta_paintball" name="costume" value="Modern Warfare (S01E23)" class="britta paintball"><label for="costume_britta_paintball">Modern Warfare (S01E23)</label>
<input type="radio" id="costume_britta_dino" name="costume" value="Monster (S02E06)" class="britta dino"><label for="costume_britta_dino">Monster (S02E06)</label>
<input type="radio" id="costume_britta_tree" name="costume" value="Mute Tree (S03E10)" class="britta tree"><label for="costume_britta_tree">Mute Tree (S03E10)</label>
<input type="radio" id="costume_britta_spades" name="costume" value="Queen of Spades (S02E23)" class="britta spades"><label for="costume_britta_spades">Queen of Spades (S02E23)</label>
<input type="radio" id="costume_britta_peyote" name="costume" value="On Peyote (S03E19)" class="britta peyote"><label for="costume_britta_peyote">On Peyote (S03E19)</label>
<input type="radio" id="costume_britta_psychopath" name="costume" value="Psychopath (S03E05)" class="britta psychopath"><label for="costume_britta_psychopath">Psychopath (S03E05)</label>
<input type="radio" id="costume_britta_punk" name="costume" value="Punky Protester (S04E12)" class="britta punk"><label for="costume_britta_punk">Punky Protester (S04E12)</label>
<input type="radio" id="costume_britta_squirrel" name="costume" value="Squirrel (S01E07)" class="britta squirrel"><label for="costume_britta_squirrel">Squirrel (S01E07)</label>
<input type="radio" id="costume_britta_teapot" name="costume" value="Teapot (S01E14)" class="britta teapot"><label for="costume_britta_teapot">Teapot (S01E14)</label>
<input type="radio" id="costume_britta_timelinebattle" name="costume" value="Timeline Battle (S04E13)" class="britta timelinebattle"><label for="costume_britta_timelinebattle">Timeline Battle (S04E13)</label>
<input type="radio" id="costume_britta_trannyqueen" name="costume" value="Tranny Queen (S01E25)" class="britta trannyqueen"><label for="costume_britta_trannyqueen">Tranny Queen (S01E25)</label>
<input type="radio" id="costume_britta_protest" name="costume" value="U.N. Protest (S03E02)" class="britta protest"><label for="costume_britta_protest">U.N. Protest (S03E02)</label>
<input type="radio" id="costume_britta_zombie" name="costume" value="Zombie (S02E06)" class="britta zombie"><label for="costume_britta_zombie">Zombie (S02E06)</label>
<h3>Buddy</h3>
<input type="radio" id="costume_buddy_base" name="costume" value="Buddy (base)" class="buddy base"><label for="costume_buddy_base">Buddy (base)</label>
<input type="radio" id="costume_buddy_master_exploder" name="costume" value="Master Exploder (fanmade)" class="buddy master_exploder"><label for="costume_buddy_master_exploder">Master Exploder (fanmade)</label>
<h3>Ben Chang</h3>
<input type="radio" id="costume_chang_base" name="costume" value="Ben Chang (base)" class="chang base"><label for="costume_chang_base">Ben Chang (base)</label>
<input type="radio" id="costume_chang_brutalitops" name="costume" value="Brutalitops (S02E14)" class="chang brutalitops"><label for="costume_chang_brutalitops">Brutalitops (S02E14)</label>
<input type="radio" id="costume_chang_butch" name="costume" value="Butch Coolidge (S02E19)" class="chang butch"><label for="costume_chang_butch">Butch Coolidge (S02E19)</label>
<input type="radio" id="costume_chang_cheerleader" name="costume" value="Cheerleader (S02E23)" class="chang cheerleader"><label for="costume_chang_cheerleader">Cheerleader (S02E23)</label>
<input type="radio" id="costume_chang_dictator" name="costume" value="Dictator (S03E21)" class="chang dictator"><label for="costume_chang_dictator">Dictator (S03E21)</label>
<input type="radio" id="costume_chang_dingleberry" name="costume" value="Dingleberry The Troll (S05E10)" class="chang dingleberry"><label for="costume_chang_dingleberry">Dingleberry The Troll (S05E10)</label>
<input type="radio" id="costume_chang_evil" name="costume" value="Evil Chang (s4promo)" class="chang evil"><label for="costume_chang_evil">Evil Chang (s4promo)</label>
<input type="radio" id="costume_chang_father" name="costume" value="Father (S02E18)" class="chang father"><label for="costume_chang_father">Father (S02E18)</label>
<input type="radio" id="costume_chang_popnlock" name="costume" value="Heather Popandlocklear (S02E02)" class="chang popnlock"><label for="costume_chang_popnlock">Heather Popandlocklear (S02E02)</label>
<input type="radio" id="costume_chang_cannotdie" name="costume" value="I Cannot Die (S01E13)" class="chang cannotdie"><label for="costume_chang_cannotdie">I Cannot Die (S01E13)</label>
<input type="radio" id="costume_chang_naked" name="costume" value="Kevin (S04E01)" class="chang naked"><label for="costume_chang_naked">Kevin (S04E01)</label>
<input type="radio" id="costume_chang_leather" name="costume" value="Leather Jacket (S01E16)" class="chang leather"><label for="costume_chang_leather">Leather Jacket (S01E16)</label>