-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1384 lines (1354 loc) · 153 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html class=''>
<head>
<meta charset='UTF-8'>
<meta name="robots" content="noindex">
<title>The Experiment Factory: Survey</title>
<link rel='stylesheet' type='text/css' href='css/material.blue-red.min.css'>
<link rel='stylesheet' type='text/css' href='css/surveys.css'>
<link rel='stylesheet' type='text/css' href='css/jquery-ui-1.10.4.custom.min.css'>
<link rel='stylesheet' type='text/css' href='css/style.css'>
</head>
<body>
<script src='js/jquery-2.1.1.min.js'></script>
<script src='js/material.min.js'></script>
<script src='js/jquery-ui-1.10.4.custom.min.js'></script>
<script src='js/jquery.wizard.js'></script>
<script src='js/jquery.form-3.50.js'></script>
<script src='js/jquery.validate-1.12.0.min.js'></script>
<div class="experiment-layout mdl-layout mdl-layout--fixed-header mdl-js-layout mdl-color--grey-100">
<div class="experiment-ribbon"></div>
<main class="experiment-main mdl-layout__content">
<div class="experiment-container mdl-grid">
<div class="mdl-cell mdl-cell--2-col mdl-cell--hide-tablet mdl-cell--hide-phone">
</div>
<div class="experiment-content mdl-color--white mdl-shadow--4dp content mdl-color-text--grey-800 mdl-cell mdl-cell--8-col">
<div id="questions">
<form name="questions" action="#", method="POST">
<div class="step">
<h3>Welcome to this survey. Press <strong>Next</strong> to begin.</h3><br><br><br><br></div>
<div class="step">
<h3>Please read each item and answer the following question: "How characteristic or true is this of you?"</h3><br><br><br><br></div>
<div class="step">
<p id="time-perspective-survey_2_options">I believe that getting together with one's friends to party is one of life's important pleasures.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_2_0">
<input type="radio" id="option-time-perspective-survey_2_0" class="mdl-radio__button required page3" name="time-perspective-survey_2_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that getting together with one's friends to party is one of life's important pleasures.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_2_1">
<input type="radio" id="option-time-perspective-survey_2_1" class="mdl-radio__button required page3" name="time-perspective-survey_2_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that getting together with one's friends to party is one of life's important pleasures.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_2_2">
<input type="radio" id="option-time-perspective-survey_2_2" class="mdl-radio__button required page3" name="time-perspective-survey_2_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that getting together with one's friends to party is one of life's important pleasures.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_2_3">
<input type="radio" id="option-time-perspective-survey_2_3" class="mdl-radio__button required page3" name="time-perspective-survey_2_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that getting together with one's friends to party is one of life's important pleasures.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_2_4">
<input type="radio" id="option-time-perspective-survey_2_4" class="mdl-radio__button required page3" name="time-perspective-survey_2_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that getting together with one's friends to party is one of life's important pleasures.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_3_options">Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_3_0">
<input type="radio" id="option-time-perspective-survey_3_0" class="mdl-radio__button required page3" name="time-perspective-survey_3_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_3_1">
<input type="radio" id="option-time-perspective-survey_3_1" class="mdl-radio__button required page3" name="time-perspective-survey_3_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_3_2">
<input type="radio" id="option-time-perspective-survey_3_2" class="mdl-radio__button required page3" name="time-perspective-survey_3_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_3_3">
<input type="radio" id="option-time-perspective-survey_3_3" class="mdl-radio__button required page3" name="time-perspective-survey_3_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_3_4">
<input type="radio" id="option-time-perspective-survey_3_4" class="mdl-radio__button required page3" name="time-perspective-survey_3_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Familiar childhood sights, sounds, smells often bring back a flood of wonderful memories.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_4_options">Fate determines much in my life.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_4_0">
<input type="radio" id="option-time-perspective-survey_4_0" class="mdl-radio__button required page3" name="time-perspective-survey_4_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Fate determines much in my life.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_4_1">
<input type="radio" id="option-time-perspective-survey_4_1" class="mdl-radio__button required page3" name="time-perspective-survey_4_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Fate determines much in my life.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_4_2">
<input type="radio" id="option-time-perspective-survey_4_2" class="mdl-radio__button required page3" name="time-perspective-survey_4_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Fate determines much in my life.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_4_3">
<input type="radio" id="option-time-perspective-survey_4_3" class="mdl-radio__button required page3" name="time-perspective-survey_4_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Fate determines much in my life.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_4_4">
<input type="radio" id="option-time-perspective-survey_4_4" class="mdl-radio__button required page3" name="time-perspective-survey_4_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Fate determines much in my life.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_5_options">I often think of what I should have done differently in my life.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_5_0">
<input type="radio" id="option-time-perspective-survey_5_0" class="mdl-radio__button required page3" name="time-perspective-survey_5_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often think of what I should have done differently in my life.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_5_1">
<input type="radio" id="option-time-perspective-survey_5_1" class="mdl-radio__button required page3" name="time-perspective-survey_5_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often think of what I should have done differently in my life.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_5_2">
<input type="radio" id="option-time-perspective-survey_5_2" class="mdl-radio__button required page3" name="time-perspective-survey_5_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often think of what I should have done differently in my life.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_5_3">
<input type="radio" id="option-time-perspective-survey_5_3" class="mdl-radio__button required page3" name="time-perspective-survey_5_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often think of what I should have done differently in my life.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_5_4">
<input type="radio" id="option-time-perspective-survey_5_4" class="mdl-radio__button required page3" name="time-perspective-survey_5_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often think of what I should have done differently in my life.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_6_options">My decisions are mostly influenced by people and things around me.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_6_0">
<input type="radio" id="option-time-perspective-survey_6_0" class="mdl-radio__button required page3" name="time-perspective-survey_6_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My decisions are mostly influenced by people and things around me.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_6_1">
<input type="radio" id="option-time-perspective-survey_6_1" class="mdl-radio__button required page3" name="time-perspective-survey_6_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My decisions are mostly influenced by people and things around me.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_6_2">
<input type="radio" id="option-time-perspective-survey_6_2" class="mdl-radio__button required page3" name="time-perspective-survey_6_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My decisions are mostly influenced by people and things around me.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_6_3">
<input type="radio" id="option-time-perspective-survey_6_3" class="mdl-radio__button required page3" name="time-perspective-survey_6_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My decisions are mostly influenced by people and things around me.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_6_4">
<input type="radio" id="option-time-perspective-survey_6_4" class="mdl-radio__button required page3" name="time-perspective-survey_6_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My decisions are mostly influenced by people and things around me.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_7_options">I believe that a person's day should be planned ahead each morning.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_7_0">
<input type="radio" id="option-time-perspective-survey_7_0" class="mdl-radio__button required page3" name="time-perspective-survey_7_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that a person's day should be planned ahead each morning.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_7_1">
<input type="radio" id="option-time-perspective-survey_7_1" class="mdl-radio__button required page3" name="time-perspective-survey_7_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that a person's day should be planned ahead each morning.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_7_2">
<input type="radio" id="option-time-perspective-survey_7_2" class="mdl-radio__button required page3" name="time-perspective-survey_7_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that a person's day should be planned ahead each morning.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_7_3">
<input type="radio" id="option-time-perspective-survey_7_3" class="mdl-radio__button required page3" name="time-perspective-survey_7_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that a person's day should be planned ahead each morning.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_7_4">
<input type="radio" id="option-time-perspective-survey_7_4" class="mdl-radio__button required page3" name="time-perspective-survey_7_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I believe that a person's day should be planned ahead each morning.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_8_options">It gives me pleasure to think about my past.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_8_0">
<input type="radio" id="option-time-perspective-survey_8_0" class="mdl-radio__button required page3" name="time-perspective-survey_8_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It gives me pleasure to think about my past.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_8_1">
<input type="radio" id="option-time-perspective-survey_8_1" class="mdl-radio__button required page3" name="time-perspective-survey_8_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It gives me pleasure to think about my past.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_8_2">
<input type="radio" id="option-time-perspective-survey_8_2" class="mdl-radio__button required page3" name="time-perspective-survey_8_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It gives me pleasure to think about my past.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_8_3">
<input type="radio" id="option-time-perspective-survey_8_3" class="mdl-radio__button required page3" name="time-perspective-survey_8_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It gives me pleasure to think about my past.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_8_4">
<input type="radio" id="option-time-perspective-survey_8_4" class="mdl-radio__button required page3" name="time-perspective-survey_8_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It gives me pleasure to think about my past.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_9_options">I do things impulsively.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_9_0">
<input type="radio" id="option-time-perspective-survey_9_0" class="mdl-radio__button required page3" name="time-perspective-survey_9_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I do things impulsively.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_9_1">
<input type="radio" id="option-time-perspective-survey_9_1" class="mdl-radio__button required page3" name="time-perspective-survey_9_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I do things impulsively.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_9_2">
<input type="radio" id="option-time-perspective-survey_9_2" class="mdl-radio__button required page3" name="time-perspective-survey_9_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I do things impulsively.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_9_3">
<input type="radio" id="option-time-perspective-survey_9_3" class="mdl-radio__button required page3" name="time-perspective-survey_9_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I do things impulsively.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_9_4">
<input type="radio" id="option-time-perspective-survey_9_4" class="mdl-radio__button required page3" name="time-perspective-survey_9_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I do things impulsively.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_10_options">If things don't get done on time, I don't worry about it.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_10_0">
<input type="radio" id="option-time-perspective-survey_10_0" class="mdl-radio__button required page3" name="time-perspective-survey_10_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="If things don't get done on time, I don't worry about it.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_10_1">
<input type="radio" id="option-time-perspective-survey_10_1" class="mdl-radio__button required page3" name="time-perspective-survey_10_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="If things don't get done on time, I don't worry about it.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_10_2">
<input type="radio" id="option-time-perspective-survey_10_2" class="mdl-radio__button required page3" name="time-perspective-survey_10_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="If things don't get done on time, I don't worry about it.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_10_3">
<input type="radio" id="option-time-perspective-survey_10_3" class="mdl-radio__button required page3" name="time-perspective-survey_10_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="If things don't get done on time, I don't worry about it.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_10_4">
<input type="radio" id="option-time-perspective-survey_10_4" class="mdl-radio__button required page3" name="time-perspective-survey_10_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="If things don't get done on time, I don't worry about it.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_11_options">When I want to achieve something, I set goals and consider specific means for reaching those goals.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_11_0">
<input type="radio" id="option-time-perspective-survey_11_0" class="mdl-radio__button required page3" name="time-perspective-survey_11_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When I want to achieve something, I set goals and consider specific means for reaching those goals.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_11_1">
<input type="radio" id="option-time-perspective-survey_11_1" class="mdl-radio__button required page3" name="time-perspective-survey_11_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When I want to achieve something, I set goals and consider specific means for reaching those goals.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_11_2">
<input type="radio" id="option-time-perspective-survey_11_2" class="mdl-radio__button required page3" name="time-perspective-survey_11_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When I want to achieve something, I set goals and consider specific means for reaching those goals.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_11_3">
<input type="radio" id="option-time-perspective-survey_11_3" class="mdl-radio__button required page3" name="time-perspective-survey_11_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When I want to achieve something, I set goals and consider specific means for reaching those goals.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_11_4">
<input type="radio" id="option-time-perspective-survey_11_4" class="mdl-radio__button required page3" name="time-perspective-survey_11_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When I want to achieve something, I set goals and consider specific means for reaching those goals.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br></div>
<div class="step">
<p id="time-perspective-survey_12_options">On balance, there is much more good to recall than bad in my past.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_12_0">
<input type="radio" id="option-time-perspective-survey_12_0" class="mdl-radio__button required page4" name="time-perspective-survey_12_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="On balance, there is much more good to recall than bad in my past.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_12_1">
<input type="radio" id="option-time-perspective-survey_12_1" class="mdl-radio__button required page4" name="time-perspective-survey_12_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="On balance, there is much more good to recall than bad in my past.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_12_2">
<input type="radio" id="option-time-perspective-survey_12_2" class="mdl-radio__button required page4" name="time-perspective-survey_12_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="On balance, there is much more good to recall than bad in my past.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_12_3">
<input type="radio" id="option-time-perspective-survey_12_3" class="mdl-radio__button required page4" name="time-perspective-survey_12_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="On balance, there is much more good to recall than bad in my past.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_12_4">
<input type="radio" id="option-time-perspective-survey_12_4" class="mdl-radio__button required page4" name="time-perspective-survey_12_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="On balance, there is much more good to recall than bad in my past.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_13_options">When listening to my favorite music, I often lose all track of time.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_13_0">
<input type="radio" id="option-time-perspective-survey_13_0" class="mdl-radio__button required page4" name="time-perspective-survey_13_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When listening to my favorite music, I often lose all track of time.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_13_1">
<input type="radio" id="option-time-perspective-survey_13_1" class="mdl-radio__button required page4" name="time-perspective-survey_13_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When listening to my favorite music, I often lose all track of time.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_13_2">
<input type="radio" id="option-time-perspective-survey_13_2" class="mdl-radio__button required page4" name="time-perspective-survey_13_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When listening to my favorite music, I often lose all track of time.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_13_3">
<input type="radio" id="option-time-perspective-survey_13_3" class="mdl-radio__button required page4" name="time-perspective-survey_13_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When listening to my favorite music, I often lose all track of time.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_13_4">
<input type="radio" id="option-time-perspective-survey_13_4" class="mdl-radio__button required page4" name="time-perspective-survey_13_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="When listening to my favorite music, I often lose all track of time.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_14_options">Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_14_0">
<input type="radio" id="option-time-perspective-survey_14_0" class="mdl-radio__button required page4" name="time-perspective-survey_14_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_14_1">
<input type="radio" id="option-time-perspective-survey_14_1" class="mdl-radio__button required page4" name="time-perspective-survey_14_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_14_2">
<input type="radio" id="option-time-perspective-survey_14_2" class="mdl-radio__button required page4" name="time-perspective-survey_14_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_14_3">
<input type="radio" id="option-time-perspective-survey_14_3" class="mdl-radio__button required page4" name="time-perspective-survey_14_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_14_4">
<input type="radio" id="option-time-perspective-survey_14_4" class="mdl-radio__button required page4" name="time-perspective-survey_14_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Meeting tomorrow's deadlines and doing other necessary work comes before tonight's play.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_15_options">Since whatever will be will be, it doesn't really matter what I do.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_15_0">
<input type="radio" id="option-time-perspective-survey_15_0" class="mdl-radio__button required page4" name="time-perspective-survey_15_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Since whatever will be will be, it doesn't really matter what I do.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_15_1">
<input type="radio" id="option-time-perspective-survey_15_1" class="mdl-radio__button required page4" name="time-perspective-survey_15_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Since whatever will be will be, it doesn't really matter what I do.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_15_2">
<input type="radio" id="option-time-perspective-survey_15_2" class="mdl-radio__button required page4" name="time-perspective-survey_15_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Since whatever will be will be, it doesn't really matter what I do.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_15_3">
<input type="radio" id="option-time-perspective-survey_15_3" class="mdl-radio__button required page4" name="time-perspective-survey_15_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Since whatever will be will be, it doesn't really matter what I do.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_15_4">
<input type="radio" id="option-time-perspective-survey_15_4" class="mdl-radio__button required page4" name="time-perspective-survey_15_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Since whatever will be will be, it doesn't really matter what I do.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_16_options">I enjoy stories about how things used to be in the 'good old times.'</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_16_0">
<input type="radio" id="option-time-perspective-survey_16_0" class="mdl-radio__button required page4" name="time-perspective-survey_16_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I enjoy stories about how things used to be in the 'good old times.'">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_16_1">
<input type="radio" id="option-time-perspective-survey_16_1" class="mdl-radio__button required page4" name="time-perspective-survey_16_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I enjoy stories about how things used to be in the 'good old times.'">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_16_2">
<input type="radio" id="option-time-perspective-survey_16_2" class="mdl-radio__button required page4" name="time-perspective-survey_16_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I enjoy stories about how things used to be in the 'good old times.'">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_16_3">
<input type="radio" id="option-time-perspective-survey_16_3" class="mdl-radio__button required page4" name="time-perspective-survey_16_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I enjoy stories about how things used to be in the 'good old times.'">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_16_4">
<input type="radio" id="option-time-perspective-survey_16_4" class="mdl-radio__button required page4" name="time-perspective-survey_16_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I enjoy stories about how things used to be in the 'good old times.'">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_17_options">Painful past experiences keep being replayed in my mind.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_17_0">
<input type="radio" id="option-time-perspective-survey_17_0" class="mdl-radio__button required page4" name="time-perspective-survey_17_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Painful past experiences keep being replayed in my mind.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_17_1">
<input type="radio" id="option-time-perspective-survey_17_1" class="mdl-radio__button required page4" name="time-perspective-survey_17_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Painful past experiences keep being replayed in my mind.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_17_2">
<input type="radio" id="option-time-perspective-survey_17_2" class="mdl-radio__button required page4" name="time-perspective-survey_17_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Painful past experiences keep being replayed in my mind.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_17_3">
<input type="radio" id="option-time-perspective-survey_17_3" class="mdl-radio__button required page4" name="time-perspective-survey_17_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Painful past experiences keep being replayed in my mind.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_17_4">
<input type="radio" id="option-time-perspective-survey_17_4" class="mdl-radio__button required page4" name="time-perspective-survey_17_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Painful past experiences keep being replayed in my mind.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_18_options">I try to live my life as fully as possible, one day at a time.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_18_0">
<input type="radio" id="option-time-perspective-survey_18_0" class="mdl-radio__button required page4" name="time-perspective-survey_18_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I try to live my life as fully as possible, one day at a time.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_18_1">
<input type="radio" id="option-time-perspective-survey_18_1" class="mdl-radio__button required page4" name="time-perspective-survey_18_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I try to live my life as fully as possible, one day at a time.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_18_2">
<input type="radio" id="option-time-perspective-survey_18_2" class="mdl-radio__button required page4" name="time-perspective-survey_18_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I try to live my life as fully as possible, one day at a time.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_18_3">
<input type="radio" id="option-time-perspective-survey_18_3" class="mdl-radio__button required page4" name="time-perspective-survey_18_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I try to live my life as fully as possible, one day at a time.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_18_4">
<input type="radio" id="option-time-perspective-survey_18_4" class="mdl-radio__button required page4" name="time-perspective-survey_18_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I try to live my life as fully as possible, one day at a time.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_19_options">It upsets me to be late for appointments.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_19_0">
<input type="radio" id="option-time-perspective-survey_19_0" class="mdl-radio__button required page4" name="time-perspective-survey_19_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It upsets me to be late for appointments.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_19_1">
<input type="radio" id="option-time-perspective-survey_19_1" class="mdl-radio__button required page4" name="time-perspective-survey_19_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It upsets me to be late for appointments.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_19_2">
<input type="radio" id="option-time-perspective-survey_19_2" class="mdl-radio__button required page4" name="time-perspective-survey_19_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It upsets me to be late for appointments.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_19_3">
<input type="radio" id="option-time-perspective-survey_19_3" class="mdl-radio__button required page4" name="time-perspective-survey_19_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It upsets me to be late for appointments.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_19_4">
<input type="radio" id="option-time-perspective-survey_19_4" class="mdl-radio__button required page4" name="time-perspective-survey_19_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It upsets me to be late for appointments.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_20_options">Ideally, I would live each day as if it were my last.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_20_0">
<input type="radio" id="option-time-perspective-survey_20_0" class="mdl-radio__button required page4" name="time-perspective-survey_20_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Ideally, I would live each day as if it were my last.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_20_1">
<input type="radio" id="option-time-perspective-survey_20_1" class="mdl-radio__button required page4" name="time-perspective-survey_20_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Ideally, I would live each day as if it were my last.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_20_2">
<input type="radio" id="option-time-perspective-survey_20_2" class="mdl-radio__button required page4" name="time-perspective-survey_20_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Ideally, I would live each day as if it were my last.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_20_3">
<input type="radio" id="option-time-perspective-survey_20_3" class="mdl-radio__button required page4" name="time-perspective-survey_20_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Ideally, I would live each day as if it were my last.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_20_4">
<input type="radio" id="option-time-perspective-survey_20_4" class="mdl-radio__button required page4" name="time-perspective-survey_20_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Ideally, I would live each day as if it were my last.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_21_options">Happy memories of good times spring readily to mind.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_21_0">
<input type="radio" id="option-time-perspective-survey_21_0" class="mdl-radio__button required page4" name="time-perspective-survey_21_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Happy memories of good times spring readily to mind.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_21_1">
<input type="radio" id="option-time-perspective-survey_21_1" class="mdl-radio__button required page4" name="time-perspective-survey_21_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Happy memories of good times spring readily to mind.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_21_2">
<input type="radio" id="option-time-perspective-survey_21_2" class="mdl-radio__button required page4" name="time-perspective-survey_21_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Happy memories of good times spring readily to mind.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_21_3">
<input type="radio" id="option-time-perspective-survey_21_3" class="mdl-radio__button required page4" name="time-perspective-survey_21_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Happy memories of good times spring readily to mind.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_21_4">
<input type="radio" id="option-time-perspective-survey_21_4" class="mdl-radio__button required page4" name="time-perspective-survey_21_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Happy memories of good times spring readily to mind.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br></div>
<div class="step">
<p id="time-perspective-survey_22_options">I meet my obligations to friends and authorities on time.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_22_0">
<input type="radio" id="option-time-perspective-survey_22_0" class="mdl-radio__button required page5" name="time-perspective-survey_22_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I meet my obligations to friends and authorities on time.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_22_1">
<input type="radio" id="option-time-perspective-survey_22_1" class="mdl-radio__button required page5" name="time-perspective-survey_22_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I meet my obligations to friends and authorities on time.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_22_2">
<input type="radio" id="option-time-perspective-survey_22_2" class="mdl-radio__button required page5" name="time-perspective-survey_22_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I meet my obligations to friends and authorities on time.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_22_3">
<input type="radio" id="option-time-perspective-survey_22_3" class="mdl-radio__button required page5" name="time-perspective-survey_22_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I meet my obligations to friends and authorities on time.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_22_4">
<input type="radio" id="option-time-perspective-survey_22_4" class="mdl-radio__button required page5" name="time-perspective-survey_22_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I meet my obligations to friends and authorities on time.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_23_options">I've taken my share of abuse and rejection in the past.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_23_0">
<input type="radio" id="option-time-perspective-survey_23_0" class="mdl-radio__button required page5" name="time-perspective-survey_23_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've taken my share of abuse and rejection in the past.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_23_1">
<input type="radio" id="option-time-perspective-survey_23_1" class="mdl-radio__button required page5" name="time-perspective-survey_23_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've taken my share of abuse and rejection in the past.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_23_2">
<input type="radio" id="option-time-perspective-survey_23_2" class="mdl-radio__button required page5" name="time-perspective-survey_23_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've taken my share of abuse and rejection in the past.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_23_3">
<input type="radio" id="option-time-perspective-survey_23_3" class="mdl-radio__button required page5" name="time-perspective-survey_23_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've taken my share of abuse and rejection in the past.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_23_4">
<input type="radio" id="option-time-perspective-survey_23_4" class="mdl-radio__button required page5" name="time-perspective-survey_23_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've taken my share of abuse and rejection in the past.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_24_options">I make decisions on the spur of the moment.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_24_0">
<input type="radio" id="option-time-perspective-survey_24_0" class="mdl-radio__button required page5" name="time-perspective-survey_24_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make decisions on the spur of the moment.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_24_1">
<input type="radio" id="option-time-perspective-survey_24_1" class="mdl-radio__button required page5" name="time-perspective-survey_24_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make decisions on the spur of the moment.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_24_2">
<input type="radio" id="option-time-perspective-survey_24_2" class="mdl-radio__button required page5" name="time-perspective-survey_24_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make decisions on the spur of the moment.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_24_3">
<input type="radio" id="option-time-perspective-survey_24_3" class="mdl-radio__button required page5" name="time-perspective-survey_24_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make decisions on the spur of the moment.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_24_4">
<input type="radio" id="option-time-perspective-survey_24_4" class="mdl-radio__button required page5" name="time-perspective-survey_24_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make decisions on the spur of the moment.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_25_options">I take each day as it is rather than try to plan it out.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_25_0">
<input type="radio" id="option-time-perspective-survey_25_0" class="mdl-radio__button required page5" name="time-perspective-survey_25_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take each day as it is rather than try to plan it out.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_25_1">
<input type="radio" id="option-time-perspective-survey_25_1" class="mdl-radio__button required page5" name="time-perspective-survey_25_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take each day as it is rather than try to plan it out.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_25_2">
<input type="radio" id="option-time-perspective-survey_25_2" class="mdl-radio__button required page5" name="time-perspective-survey_25_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take each day as it is rather than try to plan it out.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_25_3">
<input type="radio" id="option-time-perspective-survey_25_3" class="mdl-radio__button required page5" name="time-perspective-survey_25_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take each day as it is rather than try to plan it out.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_25_4">
<input type="radio" id="option-time-perspective-survey_25_4" class="mdl-radio__button required page5" name="time-perspective-survey_25_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take each day as it is rather than try to plan it out.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_26_options">The past has too many unpleasant memories that I prefer not to think about.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_26_0">
<input type="radio" id="option-time-perspective-survey_26_0" class="mdl-radio__button required page5" name="time-perspective-survey_26_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="The past has too many unpleasant memories that I prefer not to think about.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_26_1">
<input type="radio" id="option-time-perspective-survey_26_1" class="mdl-radio__button required page5" name="time-perspective-survey_26_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="The past has too many unpleasant memories that I prefer not to think about.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_26_2">
<input type="radio" id="option-time-perspective-survey_26_2" class="mdl-radio__button required page5" name="time-perspective-survey_26_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="The past has too many unpleasant memories that I prefer not to think about.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_26_3">
<input type="radio" id="option-time-perspective-survey_26_3" class="mdl-radio__button required page5" name="time-perspective-survey_26_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="The past has too many unpleasant memories that I prefer not to think about.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_26_4">
<input type="radio" id="option-time-perspective-survey_26_4" class="mdl-radio__button required page5" name="time-perspective-survey_26_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="The past has too many unpleasant memories that I prefer not to think about.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_27_options">It is important to put excitement in my life.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_27_0">
<input type="radio" id="option-time-perspective-survey_27_0" class="mdl-radio__button required page5" name="time-perspective-survey_27_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is important to put excitement in my life.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_27_1">
<input type="radio" id="option-time-perspective-survey_27_1" class="mdl-radio__button required page5" name="time-perspective-survey_27_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is important to put excitement in my life.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_27_2">
<input type="radio" id="option-time-perspective-survey_27_2" class="mdl-radio__button required page5" name="time-perspective-survey_27_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is important to put excitement in my life.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_27_3">
<input type="radio" id="option-time-perspective-survey_27_3" class="mdl-radio__button required page5" name="time-perspective-survey_27_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is important to put excitement in my life.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_27_4">
<input type="radio" id="option-time-perspective-survey_27_4" class="mdl-radio__button required page5" name="time-perspective-survey_27_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is important to put excitement in my life.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_28_options">I've made mistakes in the past that I wish I could undo.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_28_0">
<input type="radio" id="option-time-perspective-survey_28_0" class="mdl-radio__button required page5" name="time-perspective-survey_28_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've made mistakes in the past that I wish I could undo.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_28_1">
<input type="radio" id="option-time-perspective-survey_28_1" class="mdl-radio__button required page5" name="time-perspective-survey_28_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've made mistakes in the past that I wish I could undo.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_28_2">
<input type="radio" id="option-time-perspective-survey_28_2" class="mdl-radio__button required page5" name="time-perspective-survey_28_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've made mistakes in the past that I wish I could undo.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_28_3">
<input type="radio" id="option-time-perspective-survey_28_3" class="mdl-radio__button required page5" name="time-perspective-survey_28_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've made mistakes in the past that I wish I could undo.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_28_4">
<input type="radio" id="option-time-perspective-survey_28_4" class="mdl-radio__button required page5" name="time-perspective-survey_28_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I've made mistakes in the past that I wish I could undo.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_29_options">I feel that it's more important to enjoy what you're doing than to get work done on time.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_29_0">
<input type="radio" id="option-time-perspective-survey_29_0" class="mdl-radio__button required page5" name="time-perspective-survey_29_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I feel that it's more important to enjoy what you're doing than to get work done on time.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_29_1">
<input type="radio" id="option-time-perspective-survey_29_1" class="mdl-radio__button required page5" name="time-perspective-survey_29_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I feel that it's more important to enjoy what you're doing than to get work done on time.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_29_2">
<input type="radio" id="option-time-perspective-survey_29_2" class="mdl-radio__button required page5" name="time-perspective-survey_29_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I feel that it's more important to enjoy what you're doing than to get work done on time.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_29_3">
<input type="radio" id="option-time-perspective-survey_29_3" class="mdl-radio__button required page5" name="time-perspective-survey_29_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I feel that it's more important to enjoy what you're doing than to get work done on time.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_29_4">
<input type="radio" id="option-time-perspective-survey_29_4" class="mdl-radio__button required page5" name="time-perspective-survey_29_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I feel that it's more important to enjoy what you're doing than to get work done on time.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_30_options">I get nostalgic about my childhood.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_30_0">
<input type="radio" id="option-time-perspective-survey_30_0" class="mdl-radio__button required page5" name="time-perspective-survey_30_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I get nostalgic about my childhood.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_30_1">
<input type="radio" id="option-time-perspective-survey_30_1" class="mdl-radio__button required page5" name="time-perspective-survey_30_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I get nostalgic about my childhood.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_30_2">
<input type="radio" id="option-time-perspective-survey_30_2" class="mdl-radio__button required page5" name="time-perspective-survey_30_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I get nostalgic about my childhood.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_30_3">
<input type="radio" id="option-time-perspective-survey_30_3" class="mdl-radio__button required page5" name="time-perspective-survey_30_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I get nostalgic about my childhood.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_30_4">
<input type="radio" id="option-time-perspective-survey_30_4" class="mdl-radio__button required page5" name="time-perspective-survey_30_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I get nostalgic about my childhood.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_31_options">Before making a decision, I weigh the costs against the benefits.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_31_0">
<input type="radio" id="option-time-perspective-survey_31_0" class="mdl-radio__button required page5" name="time-perspective-survey_31_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Before making a decision, I weigh the costs against the benefits.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_31_1">
<input type="radio" id="option-time-perspective-survey_31_1" class="mdl-radio__button required page5" name="time-perspective-survey_31_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Before making a decision, I weigh the costs against the benefits.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_31_2">
<input type="radio" id="option-time-perspective-survey_31_2" class="mdl-radio__button required page5" name="time-perspective-survey_31_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Before making a decision, I weigh the costs against the benefits.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_31_3">
<input type="radio" id="option-time-perspective-survey_31_3" class="mdl-radio__button required page5" name="time-perspective-survey_31_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Before making a decision, I weigh the costs against the benefits.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_31_4">
<input type="radio" id="option-time-perspective-survey_31_4" class="mdl-radio__button required page5" name="time-perspective-survey_31_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Before making a decision, I weigh the costs against the benefits.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br></div>
<div class="step">
<p id="time-perspective-survey_32_options">Taking risks keeps my life from becoming boring.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_32_0">
<input type="radio" id="option-time-perspective-survey_32_0" class="mdl-radio__button required page6" name="time-perspective-survey_32_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Taking risks keeps my life from becoming boring.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_32_1">
<input type="radio" id="option-time-perspective-survey_32_1" class="mdl-radio__button required page6" name="time-perspective-survey_32_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Taking risks keeps my life from becoming boring.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_32_2">
<input type="radio" id="option-time-perspective-survey_32_2" class="mdl-radio__button required page6" name="time-perspective-survey_32_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Taking risks keeps my life from becoming boring.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_32_3">
<input type="radio" id="option-time-perspective-survey_32_3" class="mdl-radio__button required page6" name="time-perspective-survey_32_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Taking risks keeps my life from becoming boring.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_32_4">
<input type="radio" id="option-time-perspective-survey_32_4" class="mdl-radio__button required page6" name="time-perspective-survey_32_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Taking risks keeps my life from becoming boring.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_33_options">It is more important for me to enjoy life's journey than to focus only on the destination.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_33_0">
<input type="radio" id="option-time-perspective-survey_33_0" class="mdl-radio__button required page6" name="time-perspective-survey_33_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is more important for me to enjoy life's journey than to focus only on the destination.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_33_1">
<input type="radio" id="option-time-perspective-survey_33_1" class="mdl-radio__button required page6" name="time-perspective-survey_33_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is more important for me to enjoy life's journey than to focus only on the destination.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_33_2">
<input type="radio" id="option-time-perspective-survey_33_2" class="mdl-radio__button required page6" name="time-perspective-survey_33_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is more important for me to enjoy life's journey than to focus only on the destination.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_33_3">
<input type="radio" id="option-time-perspective-survey_33_3" class="mdl-radio__button required page6" name="time-perspective-survey_33_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is more important for me to enjoy life's journey than to focus only on the destination.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_33_4">
<input type="radio" id="option-time-perspective-survey_33_4" class="mdl-radio__button required page6" name="time-perspective-survey_33_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It is more important for me to enjoy life's journey than to focus only on the destination.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_34_options">Things rarely work out as I expected.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_34_0">
<input type="radio" id="option-time-perspective-survey_34_0" class="mdl-radio__button required page6" name="time-perspective-survey_34_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Things rarely work out as I expected.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_34_1">
<input type="radio" id="option-time-perspective-survey_34_1" class="mdl-radio__button required page6" name="time-perspective-survey_34_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Things rarely work out as I expected.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_34_2">
<input type="radio" id="option-time-perspective-survey_34_2" class="mdl-radio__button required page6" name="time-perspective-survey_34_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Things rarely work out as I expected.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_34_3">
<input type="radio" id="option-time-perspective-survey_34_3" class="mdl-radio__button required page6" name="time-perspective-survey_34_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Things rarely work out as I expected.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_34_4">
<input type="radio" id="option-time-perspective-survey_34_4" class="mdl-radio__button required page6" name="time-perspective-survey_34_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Things rarely work out as I expected.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_35_options">It's hard for me to forget unpleasant images of my youth.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_35_0">
<input type="radio" id="option-time-perspective-survey_35_0" class="mdl-radio__button required page6" name="time-perspective-survey_35_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It's hard for me to forget unpleasant images of my youth.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_35_1">
<input type="radio" id="option-time-perspective-survey_35_1" class="mdl-radio__button required page6" name="time-perspective-survey_35_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It's hard for me to forget unpleasant images of my youth.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_35_2">
<input type="radio" id="option-time-perspective-survey_35_2" class="mdl-radio__button required page6" name="time-perspective-survey_35_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It's hard for me to forget unpleasant images of my youth.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_35_3">
<input type="radio" id="option-time-perspective-survey_35_3" class="mdl-radio__button required page6" name="time-perspective-survey_35_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It's hard for me to forget unpleasant images of my youth.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_35_4">
<input type="radio" id="option-time-perspective-survey_35_4" class="mdl-radio__button required page6" name="time-perspective-survey_35_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It's hard for me to forget unpleasant images of my youth.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_36_options">It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_36_0">
<input type="radio" id="option-time-perspective-survey_36_0" class="mdl-radio__button required page6" name="time-perspective-survey_36_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_36_1">
<input type="radio" id="option-time-perspective-survey_36_1" class="mdl-radio__button required page6" name="time-perspective-survey_36_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_36_2">
<input type="radio" id="option-time-perspective-survey_36_2" class="mdl-radio__button required page6" name="time-perspective-survey_36_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_36_3">
<input type="radio" id="option-time-perspective-survey_36_3" class="mdl-radio__button required page6" name="time-perspective-survey_36_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_36_4">
<input type="radio" id="option-time-perspective-survey_36_4" class="mdl-radio__button required page6" name="time-perspective-survey_36_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It takes joy out of the process and flow of my activities, if I have to think about goals, outcomes, and products.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_37_options">Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_37_0">
<input type="radio" id="option-time-perspective-survey_37_0" class="mdl-radio__button required page6" name="time-perspective-survey_37_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_37_1">
<input type="radio" id="option-time-perspective-survey_37_1" class="mdl-radio__button required page6" name="time-perspective-survey_37_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_37_2">
<input type="radio" id="option-time-perspective-survey_37_2" class="mdl-radio__button required page6" name="time-perspective-survey_37_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_37_3">
<input type="radio" id="option-time-perspective-survey_37_3" class="mdl-radio__button required page6" name="time-perspective-survey_37_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_37_4">
<input type="radio" id="option-time-perspective-survey_37_4" class="mdl-radio__button required page6" name="time-perspective-survey_37_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="Even when I am enjoying the present, I am drawn back to comparisons with similar past experiences.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_38_options">You can't really plan for the future because things change so much.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_38_0">
<input type="radio" id="option-time-perspective-survey_38_0" class="mdl-radio__button required page6" name="time-perspective-survey_38_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="You can't really plan for the future because things change so much.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_38_1">
<input type="radio" id="option-time-perspective-survey_38_1" class="mdl-radio__button required page6" name="time-perspective-survey_38_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="You can't really plan for the future because things change so much.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_38_2">
<input type="radio" id="option-time-perspective-survey_38_2" class="mdl-radio__button required page6" name="time-perspective-survey_38_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="You can't really plan for the future because things change so much.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_38_3">
<input type="radio" id="option-time-perspective-survey_38_3" class="mdl-radio__button required page6" name="time-perspective-survey_38_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="You can't really plan for the future because things change so much.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_38_4">
<input type="radio" id="option-time-perspective-survey_38_4" class="mdl-radio__button required page6" name="time-perspective-survey_38_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="You can't really plan for the future because things change so much.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_39_options">My life path is controlled by forces I cannot influence.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_39_0">
<input type="radio" id="option-time-perspective-survey_39_0" class="mdl-radio__button required page6" name="time-perspective-survey_39_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My life path is controlled by forces I cannot influence.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_39_1">
<input type="radio" id="option-time-perspective-survey_39_1" class="mdl-radio__button required page6" name="time-perspective-survey_39_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My life path is controlled by forces I cannot influence.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_39_2">
<input type="radio" id="option-time-perspective-survey_39_2" class="mdl-radio__button required page6" name="time-perspective-survey_39_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My life path is controlled by forces I cannot influence.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_39_3">
<input type="radio" id="option-time-perspective-survey_39_3" class="mdl-radio__button required page6" name="time-perspective-survey_39_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My life path is controlled by forces I cannot influence.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_39_4">
<input type="radio" id="option-time-perspective-survey_39_4" class="mdl-radio__button required page6" name="time-perspective-survey_39_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="My life path is controlled by forces I cannot influence.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_40_options">It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_40_0">
<input type="radio" id="option-time-perspective-survey_40_0" class="mdl-radio__button required page6" name="time-perspective-survey_40_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_40_1">
<input type="radio" id="option-time-perspective-survey_40_1" class="mdl-radio__button required page6" name="time-perspective-survey_40_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_40_2">
<input type="radio" id="option-time-perspective-survey_40_2" class="mdl-radio__button required page6" name="time-perspective-survey_40_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_40_3">
<input type="radio" id="option-time-perspective-survey_40_3" class="mdl-radio__button required page6" name="time-perspective-survey_40_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_40_4">
<input type="radio" id="option-time-perspective-survey_40_4" class="mdl-radio__button required page6" name="time-perspective-survey_40_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="It doesn't make sense to worry about the future, since there is nothing that I can do about it anyway.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_41_options">I complete projects on time by making steady progress.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_41_0">
<input type="radio" id="option-time-perspective-survey_41_0" class="mdl-radio__button required page6" name="time-perspective-survey_41_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I complete projects on time by making steady progress.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_41_1">
<input type="radio" id="option-time-perspective-survey_41_1" class="mdl-radio__button required page6" name="time-perspective-survey_41_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I complete projects on time by making steady progress.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_41_2">
<input type="radio" id="option-time-perspective-survey_41_2" class="mdl-radio__button required page6" name="time-perspective-survey_41_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I complete projects on time by making steady progress.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_41_3">
<input type="radio" id="option-time-perspective-survey_41_3" class="mdl-radio__button required page6" name="time-perspective-survey_41_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I complete projects on time by making steady progress.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_41_4">
<input type="radio" id="option-time-perspective-survey_41_4" class="mdl-radio__button required page6" name="time-perspective-survey_41_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I complete projects on time by making steady progress.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br></div>
<div class="step">
<p id="time-perspective-survey_42_options">I find myself tuning out when family members talk about the way things used to be.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_42_0">
<input type="radio" id="option-time-perspective-survey_42_0" class="mdl-radio__button required page7" name="time-perspective-survey_42_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself tuning out when family members talk about the way things used to be.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_42_1">
<input type="radio" id="option-time-perspective-survey_42_1" class="mdl-radio__button required page7" name="time-perspective-survey_42_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself tuning out when family members talk about the way things used to be.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_42_2">
<input type="radio" id="option-time-perspective-survey_42_2" class="mdl-radio__button required page7" name="time-perspective-survey_42_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself tuning out when family members talk about the way things used to be.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_42_3">
<input type="radio" id="option-time-perspective-survey_42_3" class="mdl-radio__button required page7" name="time-perspective-survey_42_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself tuning out when family members talk about the way things used to be.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_42_4">
<input type="radio" id="option-time-perspective-survey_42_4" class="mdl-radio__button required page7" name="time-perspective-survey_42_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself tuning out when family members talk about the way things used to be.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_43_options">I take risks to put excitement in my life.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_43_0">
<input type="radio" id="option-time-perspective-survey_43_0" class="mdl-radio__button required page7" name="time-perspective-survey_43_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take risks to put excitement in my life.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_43_1">
<input type="radio" id="option-time-perspective-survey_43_1" class="mdl-radio__button required page7" name="time-perspective-survey_43_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take risks to put excitement in my life.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_43_2">
<input type="radio" id="option-time-perspective-survey_43_2" class="mdl-radio__button required page7" name="time-perspective-survey_43_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take risks to put excitement in my life.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_43_3">
<input type="radio" id="option-time-perspective-survey_43_3" class="mdl-radio__button required page7" name="time-perspective-survey_43_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take risks to put excitement in my life.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_43_4">
<input type="radio" id="option-time-perspective-survey_43_4" class="mdl-radio__button required page7" name="time-perspective-survey_43_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I take risks to put excitement in my life.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_44_options">I make lists of things to do.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_44_0">
<input type="radio" id="option-time-perspective-survey_44_0" class="mdl-radio__button required page7" name="time-perspective-survey_44_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make lists of things to do.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_44_1">
<input type="radio" id="option-time-perspective-survey_44_1" class="mdl-radio__button required page7" name="time-perspective-survey_44_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make lists of things to do.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_44_2">
<input type="radio" id="option-time-perspective-survey_44_2" class="mdl-radio__button required page7" name="time-perspective-survey_44_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make lists of things to do.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_44_3">
<input type="radio" id="option-time-perspective-survey_44_3" class="mdl-radio__button required page7" name="time-perspective-survey_44_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make lists of things to do.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_44_4">
<input type="radio" id="option-time-perspective-survey_44_4" class="mdl-radio__button required page7" name="time-perspective-survey_44_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I make lists of things to do.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_45_options">I often follow my heart more than my head.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_45_0">
<input type="radio" id="option-time-perspective-survey_45_0" class="mdl-radio__button required page7" name="time-perspective-survey_45_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often follow my heart more than my head.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_45_1">
<input type="radio" id="option-time-perspective-survey_45_1" class="mdl-radio__button required page7" name="time-perspective-survey_45_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often follow my heart more than my head.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_45_2">
<input type="radio" id="option-time-perspective-survey_45_2" class="mdl-radio__button required page7" name="time-perspective-survey_45_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often follow my heart more than my head.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_45_3">
<input type="radio" id="option-time-perspective-survey_45_3" class="mdl-radio__button required page7" name="time-perspective-survey_45_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often follow my heart more than my head.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_45_4">
<input type="radio" id="option-time-perspective-survey_45_4" class="mdl-radio__button required page7" name="time-perspective-survey_45_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I often follow my heart more than my head.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_46_options">I am able to resist temptations when I know that there is work to be done.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_46_0">
<input type="radio" id="option-time-perspective-survey_46_0" class="mdl-radio__button required page7" name="time-perspective-survey_46_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I am able to resist temptations when I know that there is work to be done.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_46_1">
<input type="radio" id="option-time-perspective-survey_46_1" class="mdl-radio__button required page7" name="time-perspective-survey_46_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I am able to resist temptations when I know that there is work to be done.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_46_2">
<input type="radio" id="option-time-perspective-survey_46_2" class="mdl-radio__button required page7" name="time-perspective-survey_46_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I am able to resist temptations when I know that there is work to be done.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_46_3">
<input type="radio" id="option-time-perspective-survey_46_3" class="mdl-radio__button required page7" name="time-perspective-survey_46_options" value="4" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I am able to resist temptations when I know that there is work to be done.">
<span class="mdl-radio__label"> Characteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_46_4">
<input type="radio" id="option-time-perspective-survey_46_4" class="mdl-radio__button required page7" name="time-perspective-survey_46_options" value="5" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I am able to resist temptations when I know that there is work to be done.">
<span class="mdl-radio__label"> Very characteristic</span>
</label><br><br><br><br>
<p id="time-perspective-survey_47_options">I find myself getting swept up in the excitement of the moment.</p>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_47_0">
<input type="radio" id="option-time-perspective-survey_47_0" class="mdl-radio__button required page7" name="time-perspective-survey_47_options" value="1" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself getting swept up in the excitement of the moment.">
<span class="mdl-radio__label">Very uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_47_1">
<input type="radio" id="option-time-perspective-survey_47_1" class="mdl-radio__button required page7" name="time-perspective-survey_47_options" value="2" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself getting swept up in the excitement of the moment.">
<span class="mdl-radio__label"> Uncharacteristic</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_47_2">
<input type="radio" id="option-time-perspective-survey_47_2" class="mdl-radio__button required page7" name="time-perspective-survey_47_options" value="3" meta-options="Very uncharacteristic| Uncharacteristic| Neutral| Characteristic| Very characteristic" meta-text="I find myself getting swept up in the excitement of the moment.">
<span class="mdl-radio__label"> Neutral</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-time-perspective-survey_47_3">