-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·2862 lines (2742 loc) · 193 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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<meta property="og:url" content="http://stae.co/parklets" />
<meta property="og:type" content="website" />
<meta property="og:title" content="A Look at the Human Impact of Parklets" />
<meta property="og:description" content="and the People Who Make Them" />
<meta property="og:image" content="http://markmalazarte.com/parklets/images/parklets-title.png" />
<title>A Look at the Human Impact of Parklets and the People Who Make Them</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/cubeportfolio.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" type="text/css" href="css/settings.css">
<link rel="stylesheet" type="text/css" href="css/media.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/fullpage.min.css">
<link rel="stylesheet" type="text/css" href="css/aos.css">
<link rel="icon" href="images/favicon.png">
</head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-90992273-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-90992273-1');
</script>
<!-- PRELOAD IMAGES-->
<script>
var myimages = new Array()
function preloadimages() {
for (i = 0; i < preloadimages.arguments.length; i++) {
myimages[i] = new Image()
myimages[i].src = preloadimages.arguments[i]
}
}
//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("images/parklets-bg.svg", "images/person.png", "images/taraval-profile-1.png", "images/taraval-profile-2.png", "images/taraval-profile-3.png", "images/taraval_1.png", "images/taraval_2.png", "images/taraval_3.png", "images/taraval_4.png", "images/gallery_1.jpg", "images/gallery2.jpg", "images/gallery_3.jpg", "images/gallery_4.jpg", "images/gallery5.jpg", "images/gallery6.jpg", "images/gallery7.jpg", "images/gallery8.jpg", "images/gallery9.jpg", "images/gallery10.jpg", "images/person.png", "images/section2_1.jpg", "images/section2_2.jpg", "images/section2_3.jpg", "images/section2_4.jpg", "images/section2_5.jpg", "images/section2_6.jpg", "images/section2_7.jpg", "images/section2_8.jpg", "images/sponsor-1.png", "images/sponsor-2.png", "images/sponsor-3.png", "images/sponsor-4.png", "images/sponsor-5.png", "images/sponsor-6.png", "images/sponsor-1-bg.png", "images/sponsor-2-bg.png", "images/sponsor-3-bg.png", "images/sponsor-4-bg.png", "images/sponsor-5-bg.png", "images/sponsor-6-bg.png", "images/maria.png", "images/john_profile.png", "images/robin_profile.png", "images/section2_3_profile.png", "images/section2_4_profile.png", "images/section2_5_profile.png", "images/section2_6_profile.png", "images/section2_7_profile.png", "images/section2_8_profile.png", "images/section8_bg.jpg", "images/section8_1_bg.jpg", "images/section8_02.jpg", "images/section8_03.jpg", "images/section8_04.jpg", "images/section8_05.jpg", "images/section8_6_bg.jpg", "images/section8_7_bg.jpg", "images/section8_8_bg.jpg", "images/section8_09.jpg", "images/challenge-1.png", "images/exploratorium-1.jpg", "images/exploratorium-callout-1.png", "images/exploratorium-callout-2.png", "images/exploratorium-callout-3.png", "images/exploratorium-highlight.jpg")
</script>
<body>
<!-- Progress Bar -->
<div class="header wow fadeInLeft">
<div class="progress-container">
<div class="progress-bar" id="myBar"></div>
</div>
</div>
<!-- header -->
<header class="wow animate site-header fixedmenu">
<nav class="navbar fixedmenu">
<div class="container full">
<!--side menu open button-->
<a href="javascript:void(0)" class="sidemenu_btn" id="sidemenu_toggle">
<span></span> <span></span> <span></span>
</a>
<button class="navbar-toggler navbar-toggler-left collapsed" type="button" data-toggle="collapse"
data-target="#wenav">
<span> </span>
<span> </span>
<span> </span>
</button>
<div class="nav-social">
<a href="index.html#section9">
<button class="sponsor-button">
<span>Become a Sponsor</span>
</button>
</a>
</div>
</div>
</nav>
<!-- side menu -->
<div class="side-menu left">
<div class="inner-wrapper">
<span class="btn-close" id="btn_sideNavClose"><i></i><i></i></span>
<nav class="side-nav w-100">
<ol class="navbar-nav">
<li class="nav-item">
<a class="nav-link pagescroll" href="#section1">What's a Parklet?</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section2">Hyper-local Benefits</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section3">The Ripple Effect</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section4">For and From the People</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section5">Behind Every Parklet is a Person</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section6">It All Started With Feeding The Meter</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section7">Keeping the Soul, Creating a System</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section8_container">What's Next?</a>
</li>
<li class="nav-item">
<a class="nav-link pagescroll" href="#section9">Become a Sponsor</a>
</li>
</ol>
<ul data-wow-delay="1000ms"" class=" nav-footer fadeIn wow">
<li class="nav-item"><a class="nav-link" href="http://stae.co/" target="_blank">Stae</a></li>
<li class="nav-item"><a class="nav-link" href="http://opnbx.com/" target="_blank">Openbox</a></li>
<li class="nav-item"><a class="nav-link" href="approach.html">Approach</a></li>
</ul>
<p>Copyright © 2019 San Francisco Department of Planning. All rights reserved.</p>
</nav>
</div>
</div>
<a id="close_side_menu" href="javascript:void(0);"></a>
</header>
<!-- header -->
<!-- Fullpage Container -->
<!--<div id="fullpage">-->
<!--Single portfolio items-->
<section class="single-items center-block mobile" id="home">
<div class="container">
<div class="row">
<div class="col-md-10 mobile">
<div data-wow-delay="500ms" class="wow fadeIn home-title darkcolor text-left">
<img data-wow-delay="500ms" src="images/person.png" class="parklet-person wow fadeIn">
<h1 class="wow fadeInUp" data-wow-delay="300ms">
A Look at the Human Impact of Parklets
</h1>
<h3 data-wow-delay="500ms" class="subhead top25 bottom25 wow fadeInUp">and the People Who Make Them
</h3>
<ul data-wow-delay="1000ms" class="logo-container wow fadeInUp top40">
<li><a href="https://stae.co/" target="_blank"><img data-wow-delay="2000ms"
src="images/stae_logo.svg" alt="Stae" class="wow fadeInUp logos"></a></li>
<li><a href="https://opnbx.com/" target="_blank"><img data-wow-delay="2000ms"
src="images/openbox_logo.svg" alt="Openbox" class="wow fadeInUp logos"></a></li>
<li><a href="https://sfplanning.org/" target="_blank"><img data-wow-delay="2000ms"
src="images/SF_seal.svg" alt="San Francisco Planning" class="wow fadeInUp logos"></a>
</li>
<li><a href="https://groundplaysf.org/" target="_blank"><img data-wow-delay="2000ms"
src="images/groundplay_logo.svg" alt="Groundplay San Francisco"
class="wow fadeInUp logos"></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- SCROLL ARROW -->
<p data-wow-delay="2200ms" class="wow fadeInUp arrow">
<a data-wow-delay="2200ms" class="scroll-arrow wow slower heartBeat pagescroll" href="#intro">
<img src="images/scroll-arrow.svg" alt="Scroll Down" title="Scroll Down" />
</a>
</p>
</section>
<!--Main Slider-->
<section class="mobile" id="intro">
<div id="revo_main_wrapper" class="rev_slider_wrapper fullwidthbanner-container" data-alias="classic4export">
<!-- START REVOLUTION SLIDER 5.4.1 fullwidth mode -->
<div id="rev_arrows" class="rev_slider fullwidthabanner" data-version="5.4.1">
<ul>
<!-- SLIDE -->
<li data-index="rs-first" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery_1.jpg" alt="" data-bgposition="center center" data-bgfit="cover"
data-bgrepeat="no-repeat" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Four Barrel Coffee Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-second" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery2.jpg" alt="" data-bgposition="center center" data-bgfit="cover"
data-bgrepeat="no-repeat" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Mercury Cafe Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-third" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery_3.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">de-Appropriation Art Wall Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-fourth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery_4.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Rolling Out Cafe Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-fifth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery5.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Museum of Craft & Design Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-sixth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery6.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Squat & Gobble Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-seventh" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery7.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Amandeep Jawa Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-eighth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery8.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Haight St. Market Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-ninth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery9.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Arizmendi Bakery Parklet</h4>
</div>
</li>
<!-- SLIDE -->
<li data-index="rs-tenth" data-transition="fade" data-slotamount="default" data-hideafterloop="0"
data-hideslideonmobile="off" data-ease="SlowMo.ease" data-masterspeed="100" data-delay="3000">
<!-- MAIN IMAGE -->
<img src="images/gallery10.jpg" alt="" data-bgposition="center center" data-ease="SlowMo.ease"
data-rotatestart="0" class="rev-slidebg" data-no-retina>
<!-- LAYER NR. 3 -->
<div class="parklet-caption">
<h4 class="whitecolor text-left">Luna Rienne Gallery Parklet</h4>
</div>
</li>
</ul>
</div>
</div>
</section>
<!--Main Slider ends -->
<section class="mobile" id="section1">
<div class="container">
<div class="col-md-6 col-sm-4 left-content mobile">
<div class="item-titles darkcolor">
<h2 class="wow fadeIn" data-wow-delay="300ms">
What's a Parklet?
</h2>
<p class="top25 bottom25 wow fadeInUp" data-wow-delay="350ms">
In 2010, tiny 10 x 20 foot green spaces started popping up in San Francisco neighborhoods. These
mini-parks, otherwise known as <a href="https://groundplaysf.org/parklets/
" target="_blank">parklets</a>, replace parking spots with a seating area that is open to the public.
Every parklet has an original design: some are simple while others are artistic, but all are ADA
compliant.</p>
<h3 class="wow fadeIn" data-wow-delay="300ms">What Makes Them Unique?</h3>
<p class="top15 bottom25 wow fadeIn" data-wow-delay="350ms">
Parklets are a unique kind of public space, not only because of their size but also because they
are developed by people who come from the community itself. Each parklet is sponsored by <a
class="pagescroll" href="#section5">a member of the public</a> who funds, designs, builds, and
maintains the parklet and works with their neighbors and the City to bring it to life. Adding
public open space to any city has <a href="https://blogs.worldbank.org/endpovertyinsouthasia/public-spaces-not-nice-have-basic-need-cities
" target="_blank">measurable positive impacts</a> on residents' quality of life, health, and
interconnectedness.
</p>
<h3 class="wow fadeIn" data-wow-delay="300ms">Understanding Their Impact</h3>
<p class="top15 bottom25 wow fadeIn" data-wow-delay="350ms">
San Francisco takes an evidence-based approach to understanding the unique benefits that parklets
can offer. This includes City databases, publicly available data, <a
href="https://sfplanning.org/project/public-space-and-public-life-studies"
target="_blank">Public Life Studies</a>, and accompanying Public Life Data. This website draws
data sets together with interviews with parklet users, sponsors, passers-by, businesses on the
block, and City staff to look at the human impact of parklets and the people who make them happen.
</p>
<p class="top15 bottom25 wow fadeIn" data-wow-delay="350ms">
(<a href="approach.html" target="_blank">Learn</a> about our approach)
</p>
</div>
</div>
<div class="col-md-6 col-sm-4 saying-doing">
<h3 class="wow fadeInUp" data-wow-delay="300ms">What people are</h3>
<div class="tab">
<button id="defaultOpen" class="tablinks tablinks1 saying active" onclick="infographicTab(event, 'tab-saying')">
<h3>saying</h3>
</button>
<button class="tablinks tablinks1 doing" onclick="infographicTab(event, 'tab-doing')">
<h3>doing</h3>
</button>
</div>
<div id="tab-saying" class="tabcontent tabcontent1 wow fadeIn">
<p class="top25"><strong>How do people feel about parklets?</strong> We asked <a
href="approach.html#about4" target="_blank">people on the streets of San Francisco</a> what
three words they associate with parklets. The percentages below show the prevalence of each
sentiment based on the number of people we spoke to.</p>
<div class="interactive">
<div id="saying-tooltip1-text" class="hidden tooltips tooltip1 green-text">
<h4>2%</h4>
<p>Colorful</p>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<div id="saying-tooltip2-text" class="hidden tooltips tooltip2 green-text">
<h4>3%</h4>
<p>Beautiful</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip3-text" class="hidden tooltips tooltip3 green-text">
<h4>2%</h4>
<p>Basic</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip4-text" class="hidden tooltips tooltip4 green-text">
<h4>6%</h4>
<p>Affordable</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</a></p>
</div>
<div id="saying-tooltip5-text" class="hidden tooltips tooltip5 green-text">
<h4>2%</h4>
<p>Active</p>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<div id="saying-tooltip6-text" class="hidden tooltips tooltip6 green-text">
<h4>46%</h4>
<p>Communal</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip7-text" class="hidden tooltips tooltip7 green-text">
<h4>2%</h4>
<p>Immaculate</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip8-text" class="hidden tooltips tooltip8 green-text">
<h4>5%</h4>
<p>Harmful</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip9-text" class="hidden tooltips tooltip9 green-text">
<h4>2%</h4>
<p>Generic</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip10-text" class="hidden tooltips tooltip10 green-text">
<h4>3%</h4>
<p>Fun</p>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<div id="saying-tooltip11-text" class="hidden tooltips tooltip11 green-text">
<h4>3%</h4>
<p>Expensive</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip12-text" class="hidden tooltips tooltip12 green-text">
<h4>3%</h4>
<p>Educational</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip13-text" class="hidden tooltips tooltip13 green-text">
<h4>2%</h4>
<p>Dynamic</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip14-text" class="hidden tooltips tooltip14 green-text">
<h4>10%</h4>
<p>Diverse</p>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<div id="saying-tooltip15-text" class="hidden tooltips tooltip15 green-text">
<h4>2%</h4>
<p>Convenient</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip16-text" class="hidden tooltips tooltip16 green-text">
<h4>2%</h4>
<p>Open</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip17-text" class="hidden tooltips tooltip17 green-text">
<h4>2%</h4>
<p>Modern</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip18-text" class="hidden tooltips tooltip18 green-text">
<h4>40%</h4>
<p>Local</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip19-text" class="hidden tooltips tooltip19 green-text">
<h4>2%</h4>
<p>Isolated</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip20-text" class="hidden tooltips tooltip20 green-text">
<h4>30%</h4>
<p>Unique</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip21-text" class="hidden tooltips tooltip21 green-text">
<h4>2%</h4>
<p>Sketchy</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip22-text" class="hidden tooltips tooltip22 green-text">
<h4>6%</h4>
<p>Profitable</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip23-text" class="hidden tooltips tooltip23 green-text">
<h4>5%</h4>
<p>Relaxing</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<div id="saying-tooltip24-text" class="hidden tooltips tooltip24 green-text">
<h4>67%</h4>
<p>Welcoming</p>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<div id="saying-tooltip25-text" class="hidden tooltips tooltip25 green-text">
<h4>38%</h4>
<p>Safe</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a></p>
</div>
<svg width="441px" height="588px" viewBox="0 0 441 588" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Pages" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Section-01-03" transform="translate(-520.000000, -355.000000)" fill-rule="nonzero">
<g id="saying" transform="translate(520.000000, 355.000000)">
<polygon id="saying-tooltip22" fill="#B5E1D6"
points="401 332.370189 401 362.666587 283 365 283 331"></polygon>
<polygon id="saying-tooltip6" fill="#B5E1D6"
transform="translate(330.000000, 109.500000) rotate(-180.000000) translate(-330.000000, -109.500000) "
points="441 35 441 172.439793 219 184 219 35"></polygon>
<polygon id="saying-tooltip1" fill="#1C8E7F"
transform="translate(86.500000, 15.000000) rotate(-270.000000) translate(-86.500000, -15.000000) "
points="73 -3 100 -2.69653949 100 33 73 33"></polygon>
<polygon id="saying-tooltip7" fill="#1C8E7F"
transform="translate(38.000000, 222.500000) rotate(-270.000000) translate(-38.000000, -222.500000) "
points="10 213 66 213.16016 66 232 10 232"></polygon>
<polygon id="saying-tooltip10" fill="#1C8E7F"
transform="translate(148.000000, 221.000000) rotate(-270.000000) translate(-148.000000, -221.000000) "
points="120 203 176 203.303461 176 239 120 239"></polygon>
<polygon id="saying-tooltip21" fill="#1C8E7F"
transform="translate(276.500000, 373.500000) rotate(-270.000000) translate(-276.500000, -373.500000) "
points="234 369 319 369.075865 319 378 234 378"></polygon>
<polygon id="saying-tooltip9" fill="#4D7174"
transform="translate(117.500000, 220.000000) rotate(-270.000000) translate(-117.500000, -220.000000) "
points="92 213.615327 143 213 143 226.507969 92 227"></polygon>
<polygon id="saying-tooltip16" fill="#4D7174"
transform="translate(8.000000, 292.000000) rotate(-270.000000) translate(-8.000000, -292.000000) "
points="-25 284.70323 41 284 41 299.437678 -25 300"></polygon>
<polygon id="saying-tooltip12" fill="#4D7174"
transform="translate(224.500000, 222.000000) rotate(-270.000000) translate(-224.500000, -222.000000) "
points="197 205.582268 252 204 252 238.734776 197 240"></polygon>
<polygon id="saying-tooltip5" fill="#4D7174"
transform="translate(422.500000, 14.000000) rotate(-270.000000) translate(-422.500000, -14.000000) "
points="410 -2.41773151 435 -4 435 30.7347762 410 32"></polygon>
<polygon id="saying-tooltip4" fill="#1C8E7F"
transform="translate(318.500000, 14.500000) rotate(-360.000000) translate(-318.500000, -14.500000) "
points="398.859375 0 400 29 237 23.7766301 237 0"></polygon>
<polygon id="saying-tooltip18" fill="#1C8E7F"
transform="translate(225.500000, 291.000000) rotate(-180.000000) translate(-225.500000, -291.000000) "
points="413.333877 259 416 323 35 311.472563 35 259"></polygon>
<polygon id="saying-tooltip25" fill="#1C8E7F"
transform="translate(359.000000, 477.500000) rotate(-180.000000) translate(-359.000000, -477.500000) "
points="433 403 429.527077 552 285 552 286.095847 403"></polygon>
<polygon id="saying-tooltip2" fill="#85C9C0"
transform="translate(149.500000, 15.000000) rotate(-270.000000) translate(-149.500000, -15.000000) "
points="163 -26 163 56 136 51.9377975 136 -26"></polygon>
<polygon id="saying-tooltip8" fill="#85C9C0"
transform="translate(77.500000, 220.000000) rotate(-270.000000) translate(-77.500000, -220.000000) "
points="103 192 103 248 52 245.225813 52 192"></polygon>
<polygon id="saying-tooltip13" fill="#85C9C0"
transform="translate(254.000000, 220.500000) rotate(-270.000000) translate(-254.000000, -220.500000) "
points="282 211 282 230 226 229.058758 226 211"></polygon>
<polygon id="saying-tooltip19" fill="#85C9C0"
transform="translate(427.000000, 292.500000) rotate(-270.000000) translate(-427.000000, -292.500000) "
points="460 287 460 298 394 297.45507 394 287"></polygon>
<polygon id="saying-tooltip17" fill="#85C9C0"
transform="translate(26.000000, 292.500000) rotate(-270.000000) translate(-26.000000, -292.500000) "
points="59 287 59 298 -7 297.45507 -7 287"></polygon>
<polygon id="saying-tooltip20" fill="#4D7174"
transform="translate(165.000000, 381.500000) rotate(-180.000000) translate(-165.000000, -381.500000) "
points="268 338.969328 268 432 63.6230388 432 62 331"></polygon>
<polygon id="saying-tooltip3" fill="#85C9C0"
transform="translate(212.000000, 14.500000) rotate(-270.000000) translate(-212.000000, -14.500000) "
points="226 -2 226 31 198.220607 31 198 -0.628270082"></polygon>
<polygon id="saying-tooltip11" fill="#85C9C0"
transform="translate(184.500000, 219.500000) rotate(-270.000000) translate(-184.500000, -219.500000) "
points="211 203 211 236 158.417578 236 158 204.37173"></polygon>
<polygon id="saying-tooltip14" fill="#85C9C0"
transform="translate(325.500000, 219.000000) rotate(-270.000000) translate(-325.500000, -219.000000) "
points="352 161 352 277 299.417578 277 299 165.821838"></polygon>
<polygon id="saying-tooltip24" fill="#85C9C0"
transform="translate(140.500000, 513.500000) rotate(-270.000000) translate(-140.500000, -513.500000) "
points="215 377 215 650 67.1739455 650 66 388.347948"></polygon>
<polygon id="saying-tooltip23" fill="#85C9C0"
transform="translate(348.500000, 380.000000) rotate(-270.000000) translate(-348.500000, -380.000000) "
points="362 315 362 445 335.212728 445 335 320.403785"></polygon>
<polygon id="saying-tooltip15" fill="#4D7174"
transform="translate(394.500000, 219.500000) rotate(-270.000000) translate(-394.500000, -219.500000) "
points="367 227.500819 367 210 421.566664 210 422 229"></polygon>
</g>
</g>
</g>
</svg>
</div>
</div>
<div id="tab-doing" class="tabcontent wow fadeIn">
<p class="top25"><strong>How are people using parklets?</strong> We analyzed data from a <a
href="https://sfplanning.org/project/public-space-and-public-life-studies"
target="_blank">Public Life Study</a> to understand what activities
people are doing in parklets. The percentages below show the prevalence of each activity based on
all the different activities that were observed.</p>
<div class="interactive">
<!-- Tooltip Info -->
<div id="doing-tooltip1-text" class="hidden tooltips tooltip1 peach-text">
<h4>26%</h4>
<p>Eating / Drinking</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip2-text" class="hidden tooltips tooltip2 peach-text">
<h4>1%</h4>
<p>Cultural</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip3-text" class="hidden tooltips tooltip3 peach-text">
<h4>0.85%</h4>
<p>Commercial</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip4-text" class="hidden tooltips tooltip4 peach-text">
<h4>29%</h4>
<p>Social</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip5-text" class="hidden tooltips tooltip5 peach-text">
<h4>12%</h4>
<p>Electronic Devices</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip6-text" class="hidden tooltips tooltip6 peach-text">
<h4>8%</h4>
<p>People Watching</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<div id="doing-tooltip7-text" class="hidden tooltips tooltip7 peach-text">
<h4>23%</h4>
<p>Other</p><a href="approach.html#about2" target="_blank" class="source">
<p>see data source
</a>
</div>
<svg width="434px" height="578px" viewBox="0 0 434 578" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Pages2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Section-01-05" transform="translate(-545.000000, -377.000000)" fill-rule="nonzero">
<g id="doing" transform="translate(544.135135, 377.000000)">
<polygon id="doing-tooltip1" fill="#ED6E4D"
transform="translate(169.864865, 69.000000) scale(1, -1) translate(-169.864865, -69.000000) "
points="336.499643 0 338.864865 138 0.864864865 113.143964 0.864864865 0"></polygon>
<polygon id="doing-tooltip2" fill="#EE9070"
transform="translate(350.864865, 71.500000) scale(1, -1) rotate(-270.000000) translate(-350.864865, -71.500000) "
points="282.864865 76.1320534 282.864865 66 417.793344 66 418.864865 77"></polygon>
<polygon id="doing-tooltip3" fill="#EE9070"
transform="translate(369.364865, 70.000000) scale(1, -1) rotate(-270.000000) translate(-369.364865, -70.000000) "
points="301.864865 75.0531491 301.864865 64 435.801223 64 436.864865 76"></polygon>
<polygon id="doing-tooltip4" fill="#F2C6AF"
transform="translate(145.864865, 232.500000) rotate(-180.000000) translate(-145.864865, -232.500000) "
points="269.864865 146.157487 269.676863 321 21.8648649 320.889056 21.8648649 144">
</polygon>
<polygon id="doing-tooltip7" fill="#F2C6AF"
transform="translate(228.364865, 502.000000) rotate(-180.000000) translate(-228.364865, -502.000000) "
points="412.864865 433.932758 412.585137 578 43.8648649 577.904726 43.8648649 426">
</polygon>
<polygon id="doing-tooltip5" fill="#ED6E4D"
transform="translate(184.864865, 391.000000) rotate(90.000000) translate(-184.864865, -391.000000) "
points="213.864865 207 212.160582 575 155.864865 574.768557 155.864865 207.929269">
</polygon>
<polygon id="doing-tooltip6" fill="#EE9070"
transform="translate(250.364865, 341.000000) rotate(90.000000) translate(-250.364865, -341.000000) "
points="265.864865 161.485624 264.953955 525 234.864865 524.769336 234.864865 157">
</polygon>
</g>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
</section>
<section class="single-items center-block mobile" id="section2">
<div id="section2_anchor" class="container">
<div class="col-md-6 col-sm-4 section-intro">
<div class="paragraph darkcolor">
<h2 class="subhead wow fadeInUp" data-wow-delay="300ms">
Hyper-local Benefits
</h2>
<p class="top25 bottom25 wow fadeInUp" data-wow-delay="350ms">
Parklets tend to be located on commercial and residential blocks, making them a part of daily
routines like waiting for the bus, grabbing a morning coffee, or picking up the kids from school.
Residents rarely go out of their way to visit a parklet. They are a neighborhood amenity, but not a
destination. </p>
</div>
</div>
</div>
<!-- SCROLL ARROW -->
<p class="wow fadeInUp arrow">
<a class="scroll-arrow wow slower heartBeat pagescroll" href="#section2_1">
<img src="images/scroll-arrow.svg" alt="Scroll Down" title="Scroll Down" />
</a>
</p>
</section>
<section data-wow-delay="200ms" class="mobile wow fadeOut" id="section2_1">
<a class="map-link" href="maps/1-1_parklet_locations.html" target="_blank"></a>
<div class="left-column">
<div class="sticky">
<h3 class="wow fadeInUp" data-wow-delay="200ms">Who lives near a parklet?</h3>
<p class="top15 wow fadeInUp" data-wow-delay="250ms">People living in neighborhoods with a parklet get to
experience the hyper-local benefits they bring. We define close proximity as being in a census tract
that is within ⅛ of a mile of a parklet.</p>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each parklet, click on
the map.</p>
</div>
</div>
</section>
<!-- MAPS SECTION-->
<section data-wow-delay="200ms" class="mobile wow fadeOut" id="section2_2">
<a class="map-link" href="maps/1-2_removed_parklets.html" target="_blank"></a>
<div class="left-column">
<div class="sticky">
<h3 class="wow fadeInUp" data-wow-delay="200ms">There currently are 59 parklets in San Francisco</h3>
<div class="legend-container">
<img style="width: 200px; margin-top: 2px;" src="images/section2_2_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each parklet, click on
the map.</p>
</div>
</div>
</section>
<section data-wow-delay="200ms" class="mobile wow fadeOut" id="section2_3">
<a class="map-link" href="maps/1-3_total_population.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms"><span class="peach-text">26%</span> of San Francisco
residents live within a <span class="peach-text">5 minute walk of a parklet</span></h3>
<div class="legend-container">
<img src="images/section2_3_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each census tract or
parklet, click on the map.</p>
<div class="small-quote">
<img src="images/section2_3_profile.png" alt="Josh" title="Josh">
<h2>“Parklets are a place for pedestrians to hang out, occupy the public space, encourage interactions
with strangers, and encourage people to slow down.”</h2>
<p class="quote-source">Josh, monthly parklet user</p>
</div>
</div>
</section>
<section class="mobile wow fadeOut" id="section2_4">
<a class="map-link" href="maps/1-4_total_apartments.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms"><span class="purple-text">82%</span> of homes near a parklet
are <span class="purple-text">apartments</span></h3>
<div class="legend-container">
<img src="images/section2_4_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each census tract or
parklet, click on the map.</p>
<div class="small-quote">
<img src="images/section2_4_profile.png" alt="Gwenn" title="Gwenn">
<h2>“The parklet gets me to come out. It’s my <em>Cheers</em>.”</h2>
<p class="quote-source">Gwenn, weekly parklet user</p>
</div>
</div>
</section>
<section class="mobile wow fadeOut" id="section2_5">
<a class="map-link" href="maps/1-5_foreign_born.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms">
<span class="yellow-text">22%</span> of San Francisco residents <span class="yellow-text">born in other
countries</span> live near a parklet</h3>
<div class="legend-container">
<img src="images/section2_5_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each census tract or
parklet, click on the map.</p>
<div class="small-quote">
<img src="images/section2_5_profile.png" alt="Dariush" title="Dariush">
<h2>“The neighborhood is reflected in the diversity of people who show up. Parklets are a safe space to
meet your neighbors.”</h2>
<p class="quote-source">Dariush, monthly parklet user</p>
</div>
</div>
</section>
<section class="mobile wow fadeOut" id="section2_6">
<a class="map-link" href="maps/1-6_older_adults.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms"><span class="green-text">24%</span> of San Francisco’s <span
class="green-text">seniors</span> live near a parklet</h3>
<div class="legend-container">
<img src="images/section2_6_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each census tract or
parklet, click on the map.</p>
<div class="small-quote">
<img src="images/section2_6_profile.png" alt="Marsh" title="Marsh">
<h2>“Without the parklet I never would have stopped here... I would have had to go elsewhere to rest.”
</h2>
<p class="quote-source">Marsh, bi-weekly parklet user</p>
</div>
</div>
</section>
<section class="mobile wow fadeOut" id="section2_7">
<a class="map-link" href="maps/1-7_under_18.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms"><span class="peach-text">22%</span> of <span
class="peach-text">children under 18</span> live near a parklet</h3>
<div class="legend-container">
<img src="images/section2_7_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information about each census tract or
parklet, click on the map.</p>
<div class="small-quote">
<img src="images/section2_7_profile.png" alt="Suzanne" title="Suzanne">
<h2>“The first time we ever came to this parklet is one of our first memories of an outing with Libby.”
</h2>
<p class="quote-source">Suzanne, weekly parklet user</p>
</div>
</div>
</section>
<section class="mobile wow fadeOut" id="section2_8">
<a class="map-link" href="maps/1-8_affordable_units.html" target="_blank"></a>
<div class="left-column">
<h3 class="wow fadeInUp" data-wow-delay="200ms"><span class="purple-text">70%</span> of parklets are within
an easy walk of <span class="purple-text">deed-restricted affordable housing</span></h3>
<div class="legend-container">
<img src="images/section2_8_legend.svg" alt="" title="">
<a class="source" href="approach.html#about2" target="_blank">See data source</a>
</div>
<p class="wow fadeInUp top25" data-wow-delay="200ms">For more information on the parklets and locations,
click on the map.</p>
<div class="small-quote">
<img src="images/section2_8_profile.png" alt="Patrick" title="Patrick">
<h2>“For our tenants, the outdoor space is a nice addition. Parklets add to social behavior.”</h2>
<p class="quote-source">Patrick, monthly parklet user (not pictured)</p>
</div>
</div>
</section>
<section class="single-items center-block mobile" id="section3">
<div class="container">
<div class="col-md-6 col-sm-4 section-intro">
<div class="item-titles darkcolor">
<h2 class="subhead wow fadeInUp" data-wow-delay="300ms">
The Ripple Effect
</h2>
<p class="top25 bottom25 wow fadeInUp" data-wow-delay="350ms">
Parklets are both a capital investment and a contribution to civic life. Sponsors decide to take on
the responsibility, not just for the benefit of their own business but also for the neighborhood as
a whole. The economic boost that parklets can bring is shared by businesses up and down the block.
</p>
</div>
</div>
</div>
<!-- SCROLL ARROW -->
<p class="wow fadeInUp arrow">
<a class="scroll-arrow wow slower heartBeat pagescroll" href="#section3_1">
<img src="images/scroll-arrow.svg" alt="Scroll Down" title="Scroll Down" />
</a>
</p>
</section>
<section class="single-items center-block mobile" id="section3_1">
<div class="container">
<div class="col-md-6 col-sm-4 right-content">
<div class="tab">
<button id="timeseriesDefault" class="tablinks tablinks2 chart-label active" onclick="timeseriesTab(event, 'tab-land-value')">
<h3>Change in land value</h3>
</button>
<button class="tablinks tablinks2 chart-label" onclick="timeseriesTab(event, 'tab-biz-licenses')">
<h3>New business licenses</h3>
</button>
<p><a href="approach.html#about2" target="_blank" class="source">see data source</a></p>
</div>
<!-- Land Value Chart-->
<div id="tab-land-value" class="tabcontent tabcontent2 wow fadeIn">
<div class="interactive">
<div class="land-chart-hover">
<div id="LandValue_2008" class="chart-hover">
</div>
<div id="LandValue_2008-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2008.svg">
</div>
<div id="LandValue_2009" class="chart-hover">
</div>
<div id="LandValue_2009-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2009.svg">
</div>
<div id="LandValue_2010" class="chart-hover">
</div>
<div id="LandValue_2010-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2010.svg">
</div>
<div id="LandValue_2011" class="chart-hover">
</div>
<div id="LandValue_2011-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2011.svg">
</div>
<div id="LandValue_2012" class="chart-hover">
</div>
<div id="LandValue_2012-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2012.svg">
</div>
<div id="LandValue_2013" class="chart-hover">
</div>
<div id="LandValue_2013-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2013.svg">
</div>
<div id="LandValue_2014" class="chart-hover">
</div>
<div id="LandValue_2014-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2014.svg">
</div>
<div id="LandValue_2015" class="chart-hover">
</div>
<div id="LandValue_2015-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2015.svg">
</div>
<div id="LandValue_2016" class="chart-hover">
</div>
<div id="LandValue_2016-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2016.svg">
</div>
<div id="LandValue_2017" class="chart-hover">
</div>
<div id="LandValue_2017-text" class="hidden data-tooltips darkgrey-text">
<img src="images/land_2017.svg">
</div>
</div>
<svg id="land-chart" width="517px" height="256px" viewBox="0 0 517 256" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Land-Value-Line-Graph" transform="translate(-446.000000, -250.000000)">
<g id="Chart" transform="translate(443.000000, 253.000000)">
<path d="M40.4789579,226.663115 L517.521042,226.663115" id="Line-2" stroke="#393A44"
stroke-width="3" stroke-linecap="square"></path>
<path d="M40.5,0 L40.5,226.663115" id="Line" stroke="#393A44" stroke-width="3"
stroke-linecap="square"></path>
<g id="Bottom-axis" transform="translate(48.000000, 235.000000)" fill="#393A44"
font-family="DM Sans" font-size="11" font-weight="bold">
<text id="2008">
<tspan x="1.09" y="11">2008</tspan>
</text>
<text id="2009">
<tspan x="50.0625" y="11">2009</tspan>
</text>
<text id="2010">
<tspan x="100.152" y="11">2010</tspan>
</text>
<text id="2011">
<tspan x="149.6595" y="11">2011</tspan>
</text>
<text id="2012">
<tspan x="194.9165" y="11">2012</tspan>
</text>
<text id="2013">
<tspan x="242.779" y="11">2013</tspan>
</text>
<text id="2014">
<tspan x="291.0315" y="11">2014</tspan>
</text>
<text id="2015">
<tspan x="339.647" y="11">2015</tspan>
</text>
<text id="2016">
<tspan x="387.57" y="11">2016</tspan>
</text>
<text id="2017">
<tspan x="436.12" y="11">2017</tspan>
</text>
</g>
<g id="Left-axis" transform="translate(0.000000, 18.000000)" fill="#393A44"
font-family="DM Sans" font-size="11" font-weight="bold">
<text id="0%">
<tspan x="14.598" y="212">0%</tspan>
</text>
<text id="+5%">
<tspan x="9.021" y="145">+5%</tspan>
</text>
<text id="+10%">
<tspan x="3.236" y="78">+10%</tspan>
</text>
<text id="+15%">
<tspan x="5.226" y="11">+15%</tspan>
</text>
</g>