-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
2702 lines (2461 loc) · 210 KB
/
index.php
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="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG Map</title>
<!--<link rel="stylesheet" href="css/style.css">-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
</head>
<body>
<div class="mapa">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" viewBox="0 0 29700 21000" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xodm="http://www.corel.com/coreldraw/odm/2003">
<defs>
<font id="FontID6" horiz-adv-x="795" font-variant="normal" style="fill-rule:nonzero" font-weight="400">
<font-face font-family="Gotham Black">
<font-face-src>
<font-face-name name="Gotham-Black" />
</font-face-src>
</font-face>
<missing-glyph>
<path d="M0 0z" />
</missing-glyph>
<glyph unicode="A" horiz-adv-x="795" d="M6.0018 0l203.999 0 50.0047 125.012 269.988 0 50.9998 -125.012 208.011 0 -298.007 705.01 -186.989 0 -298.007 -705.01zm311.005 275.99l78.9875 199.024 77.9924 -199.024 -156.98 0z" />
<glyph unicode="C" horiz-adv-x="730" d="M399.011 -13.9938c154.99,0 243.99,66.9839 309.979,158.006l-146.002 103.99c-41.9815,-50.9998 -84.9893,-84.9893 -157.975,-84.9893 -98.0191,0 -167.024,81.9728 -167.024,186.989l0 1.99024c0,102 69.0052,184.999 167.024,184.999 66.9839,0 112.977,-31.9993 152.999,-82.0039l146.002 113.008c-62.0083,86.0155 -154.026,146.002 -297.012,146.002 -211.991,0 -369.002,-159.996 -369.002,-363.995l0 -1.99024c0,-209.006 160.991,-362.005 361.01,-362.005z" />
<glyph unicode="F" horiz-adv-x="648" d="M62.0083 0l193.986 0 0 249.992 331.001 0 0 161.022 -331.001 0 0 118.979 366.017 0 0 170.01 -560.002 0 0 -700.003z" />
</font>
<font id="FontID1" horiz-adv-x="790" font-variant="normal" style="fill-rule:nonzero" font-style="normal" font-weight="400">
<font-face font-family="Gotham Bold">
<font-face-src>
<font-face-name name="Gotham-Bold" />
</font-face-src>
</font-face>
<missing-glyph>
<path d="M0 0z" />
</missing-glyph>
<glyph unicode="A" horiz-adv-x="790" d="M24.0075 0l157.016 0 63.996 157.016 295.972 0 63.996 -157.016 161.029 0 -299.986 705.031 -142.038 0 -299.986 -705.031zm275.978 293.034l93.0199 226.96 93.0199 -226.96 -186.04 0z" />
<glyph unicode="C" horiz-adv-x="737" d="M411.997 -11.9679c135.015,0 214.992,47.9432 287.014,124.982l-98.0364 98.968c-54.9663,-49.9498 -103.985,-81.9837 -183.962,-81.9837 -120.037,0 -203.024,99.9713 -203.024,220.009l0 2.00659c0,119.966 84.9936,218.002 203.024,218.002 70.0158,0 124.982,-30.0272 179.017,-79.0454l97.9647 113.014c-64.9993,63.996 -143.973,107.998 -275.978,107.998 -214.992,0 -364.985,-162.964 -364.985,-361.975l0 -2.00659c0,-201.018 153.003,-359.968 358.965,-359.968z" />
<glyph unicode="D" horiz-adv-x="781" d="M83.9903 0l273.04 0c219.937,0 371.936,153.003 371.936,350.007l0 2.00659c0,197.004 -151.999,348.001 -371.936,348.001l-273.04 0 0 -700.014zm154.006 139.028l0 421.958 119.034 0c125.985,0 210.979,-87.0001 210.979,-210.979l0 -2.00659c0,-123.979 -84.9936,-208.972 -210.979,-208.972l-119.034 0z" />
<glyph unicode="E" horiz-adv-x="669" d="M83.9903 0l533.037 0 0 137.022 -380.034 0 0 146.983 330.013 0 0 137.022 -330.013 0 0 141.966 375.018 0 0 137.022 -528.021 0 0 -700.014z" />
<glyph unicode="I" horiz-adv-x="336" d="M91.0133 0l154.006 0 0 700.014 -154.006 0 0 -700.014z" />
<glyph unicode="L" horiz-adv-x="619" d="M83.9903 0l503.01 0 0 140.032 -349.004 0 0 559.983 -154.006 0 0 -700.014z" />
<glyph unicode="N" horiz-adv-x="790" d="M83.9903 0l151.999 0 0 445.034 339.043 -445.034 131.002 0 0 700.014 -151.999 0 0 -430.988 -328.006 430.988 -142.038 0 0 -700.014z" />
<glyph unicode="O" horiz-adv-x="850" d="M423.964 -11.9679c216.067,0 373.011,162.964 373.011,361.975l0 2.00659c0,199.011 -155.009,359.968 -371.005,359.968 -215.995,0 -372.94,-162.964 -372.94,-361.975l0 -2.00659c0,-199.011 154.938,-359.968 370.933,-359.968zm2.00659 141.966c-123.979,0 -211.982,99.9713 -211.982,220.009l0 2.00659c0,119.966 85.9968,218.002 209.976,218.002 124.05,0 212.054,-100.043 212.054,-220.009l0 -2.00659c0,-119.966 -85.9968,-218.002 -210.047,-218.002z" />
<glyph unicode="P" horiz-adv-x="667" d="M83.9903 0l154.006 0 0 209.976 117.027 0c156.944,0 283.001,83.9903 283.001,246.023l0 2.00659c0,142.97 -101.046,242.009 -268.024,242.009l-286.011 0 0 -700.014zm154.006 346.997l0 213.989 119.034 0c76.9672,0 124.982,-36.9786 124.982,-105.991l0 -2.00659c0,-59.9828 -45.005,-105.991 -122.044,-105.991l-121.972 0z" />
<glyph unicode="S" horiz-adv-x="640" d="M333.023 -10.033c150.996,0 256.987,78.0421 256.987,216.999l0 2.00659c0,122.044 -79.9771,172.997 -222.015,210.047 -120.969,30.9589 -150.996,46.0083 -150.996,91.945l0 2.00659c0,34.0404 31.0305,61.0578 90.01,61.0578 58.9795,0 119.966,-26.014 182.027,-69.0125l79.9771 115.952c-71.0191,57.0446 -158.019,89.0067 -259.997,89.0067 -143.041,0 -245.019,-83.9903 -245.019,-210.979l0 -2.00659c0,-138.957 91.0133,-178.013 231.976,-213.989 117.027,-30.0272 141.035,-50.0215 141.035,-89.0067l0 -2.00659c0,-40.9918 -37.9819,-66.0026 -100.975,-66.0026 -80.0487,0 -146.051,33.0371 -209.044,84.9936l-91.0133 -109.001c83.9903,-74.9606 191.056,-112.011 297.047,-112.011z" />
<glyph unicode="T" horiz-adv-x="647" d="M247.026 0l154.006 0 0 557.976 212.986 0 0 142.038 -580.049 0 0 -142.038 213.057 0 0 -557.976z" />
<glyph unicode="U" horiz-adv-x="755" d="M376.021 -10.9646c187.975,0 307.009,103.985 307.009,315.967l0 395.012 -154.006 0 0 -401.032c0,-111.008 -57.0446,-167.981 -150.996,-167.981 -94.0232,0 -150.996,58.9795 -150.996,172.997l0 396.015 -154.006 0 0 -400.029c0,-205.962 114.949,-310.95 302.996,-310.95z" />
<glyph unicode="V" horiz-adv-x="749" d="M307.009 -5.01648l136.018 0 283.001 705.031 -166.046 0 -182.958 -493.049 -183.03 493.049 -169.987 0 283.001 -705.031z" />
</font>
<font id="FontID0" horiz-adv-x="789" font-variant="normal" style="fill-rule:nonzero" font-style="normal" font-weight="300">
<font-face font-family="Gotham Medium">
<font-face-src>
<font-face-name name="Gotham-Medium" />
</font-face-src>
</font-face>
<missing-glyph>
<path d="M0 0z" />
</missing-glyph>
<glyph unicode="." horiz-adv-x="268" d="M68.0023 0l132.99 0 0 136.992 -132.99 0 0 -136.992z" />
<glyph unicode="A" horiz-adv-x="789" d="M30.0125 0l126 0 71.978 169.005 331.021 0 70.9905 -169.005 130.002 0 -307.998 704.994 -113.995 0 -307.998 -704.994zm242.984 278.012l119.998 279.986 121.011 -279.986 -241.009 0z" />
<glyph unicode="B" horiz-adv-x="721" d="M90.0114 0l323.979 0c156.013,0 259.017,66.9889 259.017,192.002l0 2.00083c0,95.0005 -57.0107,142.007 -139.019,169.993 52.0216,26.9982 100.016,72.0039 100.016,156.013l0 2.00083c0,46.9806 -16.0067,84.9964 -47.0065,115.996 -39.9906,39.9906 -103.004,61.9998 -182.985,61.9998l-314.001 0 0 -700.005zm120.985 404.999l0 185.999 177.009 0c78.9939,0 122.986,-33.9882 122.986,-88.998l0 -2.00083c0,-64.0006 -52.9831,-95.0005 -132.003,-95.0005l-167.992 0zm0 -295.993l0 192.002 195.016 0c96.9754,0 143.982,-35.0016 143.982,-94.0131l0 -2.00083c0,-62.9872 -50.9822,-95.9879 -134.991,-95.9879l-204.007 0z" />
<glyph unicode="C" horiz-adv-x="737" d="M415.004 -12.005c130.99,0 210.997,47.994 283.988,124l-78.9939 80.0073c-59.999,-55.9973 -115.009,-90.9989 -200.993,-90.9989 -134.004,0 -231.005,111.995 -231.005,248.987l0 2.00083c0,137.018 97.0014,247.012 231.005,247.012 80.0073,0 140.006,-35.0016 196.004,-86.9972l78.9939 90.9989c-67.0149,64.0006 -144.995,109.006 -274.01,109.006 -211.984,0 -360.981,-163.003 -360.981,-362.021l0 -2.00083c0,-200.993 151.985,-359.994 355.992,-359.994z" />
<glyph unicode="D" horiz-adv-x="781" d="M90.0114 0l260.992 0c219.988,0 371.999,152.999 371.999,349.99l0 2.00083c0,197.017 -152.011,348.015 -371.999,348.015l-260.992 0 0 -700.005zm122.986 111.995l0 476.016 138.005 0c146.996,0 242.984,-101.003 242.984,-238.021l0 -2.00083c0,-136.992 -95.9879,-235.994 -242.984,-235.994l-138.005 0z" />
<glyph unicode="E" horiz-adv-x="669" d="M90.0114 0l523.984 0 0 109.994 -400.998 0 0 188 351.003 0 0 109.994 -351.003 0 0 182.024 396.009 0 0 109.994 -518.995 0 0 -700.005z" />
<glyph unicode="F" horiz-adv-x="656" d="M90.0114 0l122.986 0 0 285.002 353.004 0 0 111.995 -353.004 0 0 191.014 398.01 0 0 111.995 -520.996 0 0 -700.005z" />
<glyph unicode="G" horiz-adv-x="783" d="M421.994 -12.005c124,0 223.002,49.9948 292.017,109.006l0 293.992 -298.02 0 0 -107.006 179.009 0 0 -130.99c-43.0049,-31.9873 -103.004,-53.009 -169.005,-53.009 -142.994,0 -237.995,106.018 -237.995,250l0 2.00083c0,134.004 97.9888,247.012 227.003,247.012 88.998,0 142.007,-28.9991 196.004,-74.9922l77.9805 92.9997c-71.978,60.9864 -146.996,95.0005 -268.995,95.0005 -210.997,0 -360.981,-166.017 -360.981,-362.021l0 -2.00083c0,-203.981 143.982,-359.994 362.982,-359.994z" />
<glyph unicode="H" horiz-adv-x="760" d="M90.0114 0l122.986 0 0 295.006 334.009 0 0 -295.006 122.986 0 0 700.005 -122.986 0 0 -291.004 -334.009 0 0 291.004 -122.986 0 0 -700.005z" />
<glyph unicode="I" horiz-adv-x="316" d="M97.0014 0l122.986 0 0 700.005 -122.986 0 0 -700.005z" />
<glyph unicode="K" horiz-adv-x="725" d="M90.0114 0l122.986 0 0 202.993 109.006 111.995 239.008 -314.988 148.997 0 -303.996 398.997 290.978 301.008 -150.998 0 -332.996 -352.016 0 352.016 -122.986 0 0 -700.005z" />
<glyph unicode="L" horiz-adv-x="619" d="M90.0114 0l490.983 0 0 111.995 -367.997 0 0 588.011 -122.986 0 0 -700.005z" />
<glyph unicode="M" horiz-adv-x="867" d="M90.0114 0l120.985 0 0 500 219 -328.006 4.00166 0 221.001 330.007 0 -502.001 123.012 0 0 700.005 -131.015 0 -212.998 -330.995 -212.998 330.995 -130.99 0 0 -700.005z" />
<glyph unicode="N" horiz-adv-x="789" d="M90.0114 0l120.985 0 0 497.999 386.005 -497.999 103.004 0 0 700.005 -121.011 0 0 -483.993 -374.987 483.993 -113.995 0 0 -700.005z" />
<glyph unicode="O" horiz-adv-x="849" d="M423.994 -12.005c214.998,0 367.01,165.004 367.01,361.995l0 2.00083c0,197.017 -150.01,360.02 -365.009,360.02 -214.998,0 -366.984,-165.004 -366.984,-362.021l0 -2.00083c0,-196.991 149.984,-359.994 364.983,-359.994zm2.00083 113.008c-138.993,0 -237.995,113.008 -237.995,248.987l0 2.00083c0,136.005 97.0014,247.012 235.994,247.012 138.993,0 237.995,-113.008 237.995,-249.013l0 -2.00083c0,-135.979 -97.0014,-246.986 -235.994,-246.986z" />
<glyph unicode="P" horiz-adv-x="668" d="M90.0028 0l123.013 0 0 224.979 138.964 0c154.029,0 280.033,82.0271 280.033,239.047l0 1.99391c0,140.958 -103.019,233.952 -266.02,233.952l-275.99 0 0 -699.972zm123.013 335.973l0 252.008 143.007 0c91.9967,0 150.983,-42.9798 150.983,-125.007l0 -1.99391c0,-72.9992 -57.9895,-125.007 -150.983,-125.007l-143.007 0z" />
<glyph unicode="Q" horiz-adv-x="850" d="M721.012 -20.9976l78.9738 88.0034 -79.9771 68.0092c46.0083,60.9861 71.0191,136.018 71.0191,214.992l0 2.00659c0,197.004 -149.993,359.968 -365.057,359.968 -214.992,0 -366.992,-164.971 -366.992,-361.975l0 -2.00659c0,-197.004 149.993,-359.968 364.985,-359.968 82.0553,0 154.006,23.9358 213.057,66.0026l83.9903 -75.0322zm-295.041 121.972c-138.957,0 -237.996,113.014 -237.996,249.033l0 2.00659c0,136.018 97.0331,246.954 235.99,246.954 139.028,0 238.068,-112.943 238.068,-248.961l0 -2.00659c0,-49.0182 -12.0396,-94.0232 -36.047,-131.002l-120.969 110.004 -79.0454 -90.01 120.037 -101.978c-33.0371,-20.9976 -74.029,-34.0404 -120.037,-34.0404z" />
<glyph unicode="R" horiz-adv-x="723" d="M90.0114 0l122.986 0 0 243.998 154.012 0 171.994 -243.998 144.995 0 -188.988 264.993c97.9888,28.0116 166.978,97.0014 166.978,212.01l0 2.00083c0,60.9864 -20.9957,113.008 -57.9981,150.998 -44.9797,43.9923 -113.995,70.0031 -201.98,70.0031l-312 0 0 -700.005zm122.986 353.004l0 235.007 179.009 0c90.9989,0 144.995,-41.0041 144.995,-116.022l0 -2.00083c0,-70.9905 -55.9973,-116.984 -144.008,-116.984l-179.997 0z" />
<glyph unicode="S" horiz-adv-x="640" d="M334.996 -10.0042c146.996,0 250,78.0064 250,208.996l0 2.00083c0,115.996 -76.993,169.005 -225.003,205.02 -134.004,31.9873 -165.991,55.9973 -165.991,109.994l0 2.00083c0,45.9931 41.9915,82.9955 113.995,82.9955 64.0006,0 127.014,-24.9974 190.001,-72.0039l66.0015 92.9997c-70.9905,57.0107 -152.011,88.0106 -254.002,88.0106 -138.993,0 -239.008,-83.0215 -239.008,-203.019l0 -2.00083c0,-128.989 84.0089,-172.981 233.006,-208.996 130.002,-29.9865 158.014,-56.9847 158.014,-107.006l0 -1.97485c0,-53.009 -48.02,-88.0106 -124,-88.0106 -87.0232,0 -154.012,33.0007 -221.001,90.9989l-74.0048 -88.0106c83.983,-74.9922 184.986,-111.995 291.991,-111.995z" />
<glyph unicode="T" horiz-adv-x="648" d="M262.005 0l124 0 0 586.01 221.988 0 0 113.995 -568.002 0 0 -113.995 222.014 0 0 -586.01z" />
<glyph unicode="U" horiz-adv-x="756" d="M376.988 -10.9916c183.011,0 301.008,104.979 301.008,314.001l0 396.996 -122.986 0 0 -402.999c0,-129.015 -67.0149,-195.016 -176.021,-195.016 -109.994,0 -176.983,70.0031 -176.983,200.005l0 398.01 -123.012 0 0 -402.999c0,-203.019 115.996,-307.998 297.994,-307.998z" />
<glyph unicode="V" horiz-adv-x="749" d="M320.991 -4.98909l108.019 0 290.978 704.994 -132.99 0 -210.009 -538.016 -210.997 538.016 -135.979 0 290.978 -704.994z" />
<glyph unicode="Ã" horiz-adv-x="790" d="M30.0272 0l125.985 0 72.0224 168.984 330.945 0 71.0191 -168.984 129.999 0 -308.012 705.031 -114.017 0 -307.94 -705.031zm242.941 277.985l120.037 279.991 120.969 -279.991 -241.006 0zm2.00659 480.006c15.0494,33.0371 27.0173,49.0182 56.0413,49.0182 34.9721,0 92.0166,-38.9852 146.983,-38.9852 59.9828,0 90.01,45.005 112.011,122.975l-68.0092 19.9943c-13.9745,-31.9622 -26.014,-48.0149 -54.9663,-48.0149 -35.0437,0 -92.0166,39.0569 -147.055,39.0569 -60.9861,0 -91.0133,-45.005 -112.011,-123.047l67.0059 -20.9976z" />
<glyph unicode="Ç" horiz-adv-x="737" d="M371.005 -165.974l66.0026 155.009c117.959,4.94482 192.991,50.9531 262.004,122.975l-79.0454 79.9771c-59.9828,-55.9696 -114.949,-91.0133 -200.946,-91.0133 -134.012,0 -231.045,112.011 -231.045,249.033l0 2.00659c0,137.022 97.0331,246.954 231.045,246.954 79.9771,0 139.96,-34.9721 196.001,-87.0001l78.9738 91.0133c-67.0059,63.996 -144.976,109.001 -273.972,109.001 -212.054,0 -361.043,-162.964 -361.043,-361.975l0 -2.00659c0,-177.01 117.027,-321.987 284.005,-353.017l-77.9705 -115.952 105.991 -45.005z" />
<glyph unicode="Ô" horiz-adv-x="849" d="M423.994 -12.005c214.998,0 367.01,165.004 367.01,361.995l0 2.00083c0,197.017 -150.01,360.02 -365.009,360.02 -214.998,0 -366.984,-165.004 -366.984,-362.021l0 -2.00083c0,-196.991 149.984,-359.994 364.983,-359.994zm2.00083 113.008c-138.993,0 -237.995,113.008 -237.995,248.987l0 2.00083c0,136.005 97.0014,247.012 235.994,247.012 138.993,0 237.995,-113.008 237.995,-249.013l0 -2.00083c0,-135.979 -97.0014,-246.986 -235.994,-246.986zm-178.983 667.004l99.9896 0 76.993 57.9981 76.993 -57.9981 102.016 0 -121.011 134.991 -113.995 0 -120.985 -134.991z" />
</font>
<style type="text/css">
<![CDATA[
@font-face {
font-family: "Gotham Black";
font-variant: normal;
font-weight: normal;
src: url("#FontID6") format(svg)
}
@font-face {
font-family: "Gotham Bold";
font-variant: normal;
font-style: normal;
font-weight: normal;
src: url("#FontID1") format(svg)
}
@font-face {
font-family: "Gotham Medium";
font-variant: normal;
font-style: normal;
font-weight: 300;
src: url("#FontID0") format(svg)
}
.str43 {
stroke: #96989A;
stroke-width: 70.56;
stroke-miterlimit: 22.9256
}
.str57 {
stroke: #96989A;
stroke-width: 24.69;
stroke-miterlimit: 22.9256
}
.str53 {
stroke: #606062;
stroke-width: 24.69;
stroke-miterlimit: 22.9256
}
.str55 {
stroke: #FEFEFE;
stroke-width: 35.28;
stroke-miterlimit: 22.9256
}
.str66 {
stroke: #FEFEFE;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str67 {
stroke: #000000;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str34 {
stroke: #BDBFC1;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str58 {
stroke: #96989A;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str23 {
stroke: #727376;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str52 {
stroke: #606062;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str16 {
stroke: #373435;
stroke-width: 20;
stroke-miterlimit: 22.9256
}
.str49 {
stroke: #96989A;
stroke-width: 7.62;
stroke-miterlimit: 22.9256
}
.str11 {
stroke: #B2B2B2;
stroke-width: 24.69;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str56 {
stroke: #FEFEFE;
stroke-width: 52.92;
stroke-miterlimit: 22.9256
}
.str31 {
stroke: #FEFEFE;
stroke-width: 63.5;
stroke-miterlimit: 22.9256
}
.str33 {
stroke: #FEFEFE;
stroke-width: 63.5;
stroke-miterlimit: 22.9256
}
.str1 {
stroke: #FEFEFE;
stroke-width: 63.5;
stroke-miterlimit: 22.9256
}
.str37 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str63 {
stroke: #857947;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str62 {
stroke: #857947;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str61 {
stroke: #857947;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str32 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str3 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str50 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str2 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str35 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str18 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str40 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str4 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str38 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str39 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-miterlimit: 22.9256
}
.str64 {
stroke: #5A3A2C;
stroke-width: 35.52;
stroke-miterlimit: 22.9256
}
.str65 {
stroke: #5A3A2C;
stroke-width: 35.52;
stroke-miterlimit: 22.9256
}
.str10 {
stroke: #B2B2B2;
stroke-width: 20.72;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str12 {
stroke: #B2B2B2;
stroke-width: 20.72;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str9 {
stroke: #757575;
stroke-width: 8.04;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str24 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str22 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str5 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str36 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str28 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str25 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str27 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str26 {
stroke: #727376;
stroke-width: 21.32;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str42 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str48 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str46 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str47 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str45 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str21 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str29 {
stroke: #FEFEFE;
stroke-width: 52.93;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str13 {
stroke: lime;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str14 {
stroke: #D9D9D9;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str7 {
stroke: #B2B2B2;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str44 {
stroke: #B9B9B9;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str15 {
stroke: #D9D9D9;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str0 {
stroke: #727376;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str6 {
stroke: #B2B2B2;
stroke-width: 9.65;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str8 {
stroke: #D2D3D5;
stroke-width: 14.8;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10
}
.str17 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str20 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str51 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str41 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str19 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str59 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str30 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str60 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.str54 {
stroke: #FEFEFE;
stroke-width: 53.29;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 22.9256
}
.fil3 {
fill: none
}
.fil1 {
fill: none;
fill-rule: nonzero
}
.fil15 {
fill: #FEFEFE
}
.fil25 {
fill: #E6E7E8
}
.fil20 {
fill: #D2D3D5
}
.fil19 {
fill: #BDBFC1
}
.fil0 {
fill: #848688
}
.fil12 {
fill: #727376
}
.fil18 {
fill: #4B4B4D
}
.fil29 {
fill: #373435
}
.fil28 {
fill: #EDEDEE
}
.fil21 {
fill: #E5DBAF
}
.fil22 {
fill: #E6D280
}
.fil14 {
fill: #DEB089
}
.fil27 {
fill: #D5BFAB
}
.fil23 {
fill: #D9C46E
}
.fil17 {
fill: #996850
}
.fil8 {
fill: #8A5D46
}
.fil16 {
fill: #80523B
}
.fil26 {
fill: #857947
}
.fil2 {
fill: #79C260
}
.fil4 {
fill: #E8E5DC
}
.fil9 {
fill: #FEFEFE;
fill-rule: nonzero
}
.fil6 {
fill: #D2D3D5;
fill-rule: nonzero
}
.fil13 {
fill: #727376;
fill-rule: nonzero
}
.fil24 {
fill: #373435;
fill-rule: nonzero
}
.fil7 {
fill: #5A3A2C;
fill-rule: nonzero
}
.fil10 {
fill: #757575;
fill-rule: nonzero
}
.fil11 {
fill: #B2B2B2;
fill-rule: nonzero
}
.fil5 {
fill: #D9D9D9;
fill-rule: nonzero
}
.fnt7 {
font-weight: bolder;
font-size: 130px;
font-family: 'Gotham Medium'
}
.fnt2 {
font-weight: bolder;
font-size: 160px;
font-family: 'Gotham Medium'
}
.fnt4 {
font-weight: bolder;
font-size: 200px;
font-family: 'Gotham Medium'
}
.fnt6 {
font-weight: bolder;
font-size: 250px;
font-family: 'Gotham Medium'
}
.fnt3 {
font-weight: bolder;
font-size: 155px;
font-family: 'Gotham Bold'
}
.fnt5 {
font-weight: normal;
font-size: 200px;
font-family: 'Gotham Bold'
}
.fnt8 {
font-weight: normal;
font-size: 200px;
font-family: 'Gotham Bold'
}
.fnt1 {
font-weight: 300;
font-size: 180.55px;
font-family: 'Gotham Medium'
}
.fnt9 {
font-weight: bolder;
font-size: 321.57px;
font-family: 'Gotham Black'
}
.fnt0 {
font-weight: 300;
font-size: 384.84px;
font-family: 'Gotham Medium'
}
.mapa svg{
width: 60%;
}
.mapa {
display: flex;
justify-content: center;
align-items: center;
}
.mapa svg #escolinha polygon:hover {
stroke: #3e00f6;
fill: #00aeff;
cursor: pointer;
}
.mapa svg #alasul polygon:hover {
stroke: #200772;
fill: #516aa0;
cursor: pointer;
}
.mapa svg #alanorte polygon:hover {
stroke: #0c73c7;
fill: #1499c2;
cursor: pointer;
}
.mapa svg #manutencao polygon:hover {
stroke: #0c73c7;
fill: #45a15c;
cursor: pointer;
}
.mapa svg #manutencao rect:hover {
stroke: #0c73c7;
fill: #1499c2;
cursor: pointer;
}
.mapa svg #caff polygon:hover {
stroke: #0c73c7;
fill: #b96085;
cursor: pointer;
}
.mapa svg #rampa polygon:hover {
stroke: #0c73c7;
fill: #65c85c;
cursor: pointer;
}
.mapa svg #defesacivil path:hover {
stroke: #0c73c7;
fill: #62cccf;
cursor: pointer;
}
.mapa svg #secretariaeducacao polygon:hover {
stroke: #0c73c7;
fill: #bebdec;
cursor: pointer;
}
.mapa svg #orquestra polygon:hover {
stroke: #0c73c7;
fill: #d18c87;
cursor: pointer;
}
.mapa svg #alasul rect:hover {
fill: #d18c87;
cursor: pointer;
}
.mapa svg #alanorte rect:hover {
fill: #a0bda6;
cursor: pointer;
}
.mapa svg #prediocaff polygon:hover {
fill: #cbcc7e;
cursor: pointer;
}
.modal-container {
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, .5);
position: fixed;
top: 0px;
left: 0px;
z-index: 2000;
display: none;
justify-content: center;
align-items: center;
}
.modal-container.mostrar {
display: flex;
}
.modal {
background: #E6E7E8;
width: 20%;
min-width: 300px;
padding: 40px;
border-radius: 5%;
box-shadow: 0 0 0 10px #dbdd86;
position: absolute;
}
.modal h3,
h4,
p {
text-align: center;
}
@keyframes modal {
from {
opacity: 0;
transform: translate3d(0, -60px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
.mostrar .modal {
animation: modal .50s;
}
.fechar {
position: absolute;
font-size: 1.2em;
top: -30px;
right: -30px;
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid rgb(255, 255, 255);
background: #dbdd86;
color: white;
font-family: "Gotham Medium", monospace;
cursor: pointer;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .3);
}
]]>
</style>
</defs>
<g id="Camada_x0020_1">
<metadata id="CorelCorpID_0Corel-Layer" />
<path class="fil0" d="M4339.09 2339.39l60.09 2074.08 -0.07 414.56 -229.74 -0.23c-776.19,224.57 -1290.12,755.12 -1354.22,1715.78l-36.01 13246.41 17921.28 47.05 0 -6487.46 6391.28 7.76 -2.65 -2679.72c-99.56,-946.42 -682.79,-1216.93 -1428.38,-1260.54l-1724.16 -3.22 -207.49 -33.89 -6835 -6265.14c-27.1,-23.62 -88.62,-23.89 -88.53,-52.42l2.29 -679.71 -703.34 624.24 -87.9 -93.48 -1183.98 1028.42 -49.07 0.88 -3334.48 -1.33 -22.98 -13.87 -6.28 -1569.82 -7080.66 -18.35z" />
<g id="_1206979392"> // estacionamento 1: visitantes
<g id="estacvisit1">
<line class="fil1 str0" x1="18959.67" y1="8228.39" x2="18711.2" y2="8497.71" />
<line class="fil1 str0" x1="18850.31" y1="8128.81" x2="18601.85" y2="8398.13" />
<line class="fil1 str0" x1="19449.02" y1="7280.63" x2="19053.4" y2="7711.39" />
<line class="fil1 str0" x1="18740.83" y1="8027.62" x2="18492.37" y2="8296.94" />
<line class="fil1 str0" x1="18522" y1="7826.86" x2="18275.14" y2="8096.05" />
<line class="fil1 str0" x1="18414.25" y1="7727.15" x2="18165.78" y2="7996.47" />
<line class="fil1 str0" x1="18631.48" y1="7928.04" x2="18383.01" y2="8197.36" />
<line class="fil1 str0" x1="19067.42" y1="8328.1" x2="18820.68" y2="8598.9" />
<line class="fil1 str0" x1="19176.9" y1="8429.28" x2="18928.44" y2="8698.6" />
<line class="fil1 str0" x1="21561.8" y1="10018.43" x2="19053.4" y2="7711.39" />
<line class="fil1 str0" x1="22399.26" y1="9108.16" x2="19468.87" y2="6414.5" />
<line class="fil1 str0" x1="21957.54" y1="9589.28" x2="19449.02" y2="7280.63" />
<line class="fil1 str0" x1="21756.65" y1="9806.51" x2="19248.25" y2="7499.47" />
<line class="fil1 str0" x1="21261.33" y1="10345.02" x2="20170.48" y2="9342.54" />
<line class="fil1 str0" x1="19176.9" y1="8429.28" x2="18330.93" y2="7651.36" />
<line class="fil1 str0" x1="22490.67" y1="8789.74" x2="22289.9" y2="9008.58" />
<line class="fil1 str0" x1="21848.06" y1="9488.09" x2="21452.45" y2="9918.85" />
<line class="fil1 str0" x1="21151.97" y1="10245.44" x2="20951.2" y2="10464.27" />
<line class="fil1 str0" x1="22381.31" y1="8690.16" x2="22180.42" y2="8907.39" />
<line class="fil1 str0" x1="21738.71" y1="9388.51" x2="21342.97" y2="9817.66" />
<line class="fil1 str0" x1="21042.49" y1="10144.25" x2="20841.72" y2="10363.09" />
<line class="fil1 str0" x1="22271.83" y1="8588.98" x2="22071.07" y2="8807.81" />
<line class="fil1 str0" x1="21630.83" y1="9287.2" x2="21235.21" y2="9717.96" />
<line class="fil1 str0" x1="20933.14" y1="10044.67" x2="20732.37" y2="10263.5" />
<line class="fil1 str0" x1="22162.48" y1="8489.4" x2="21963.19" y2="8706.5" />
<line class="fil1 str0" x1="21521.48" y1="9187.62" x2="21125.73" y2="9616.77" />
<line class="fil1 str0" x1="20825.39" y1="9944.96" x2="20624.49" y2="10162.2" />
<line class="fil1 str0" x1="22054.6" y1="8388.08" x2="21853.84" y2="8606.92" />
<line class="fil1 str0" x1="21412" y1="9086.43" x2="21016.38" y2="9517.19" />
<line class="fil1 str0" x1="20715.91" y1="9843.78" x2="20515.14" y2="10062.61" />
<line class="fil1 str0" x1="21945.25" y1="8288.5" x2="21744.48" y2="8507.34" />
<line class="fil1 str0" x1="21302.64" y1="8986.85" x2="20906.9" y2="9416.01" />
<line class="fil1 str0" x1="20606.55" y1="9744.2" x2="20405.66" y2="9961.43" />
<line class="fil1 str0" x1="21835.89" y1="8188.92" x2="21635" y2="8406.15" />
<line class="fil1 str0" x1="21193.16" y1="8885.67" x2="20799.15" y2="9316.3" />
<line class="fil1 str0" x1="20497.07" y1="9643.01" x2="20296.3" y2="9861.84" />
<line class="fil1 str0" x1="21726.41" y1="8087.74" x2="21525.65" y2="8306.57" />
<line class="fil1 str0" x1="21085.41" y1="8785.96" x2="20689.67" y2="9215.11" />
<line class="fil1 str0" x1="20387.72" y1="9543.43" x2="20188.43" y2="9760.54" />
<line class="fil1 str0" x1="21617.06" y1="7988.15" x2="21417.77" y2="8205.26" />
<line class="fil1 str0" x1="20976.06" y1="8686.38" x2="20580.31" y2="9115.53" />
<line class="fil1 str0" x1="20279.84" y1="9442.12" x2="20079.07" y2="9660.95" />
<line class="fil1 str0" x1="21509.18" y1="7886.85" x2="21308.41" y2="8105.68" />
<line class="fil1 str0" x1="20866.58" y1="8585.19" x2="20470.96" y2="9015.95" />
<line class="fil1 str0" x1="20170.48" y1="9342.54" x2="19969.72" y2="9561.37" />
<line class="fil1 str0" x1="21399.83" y1="7787.26" x2="21198.93" y2="8004.49" />
<line class="fil1 str0" x1="20757.22" y1="8485.61" x2="20361.48" y2="8914.77" />
<line class="fil1 str0" x1="21290.35" y1="7686.08" x2="21089.58" y2="7904.91" />
<line class="fil1 str0" x1="20647.74" y1="8384.43" x2="20253.73" y2="8815.06" />
<line class="fil1 str0" x1="21180.99" y1="7586.49" x2="20980.1" y2="7803.73" />
<line class="fil1 str0" x1="20539.99" y1="8284.72" x2="20144.25" y2="8713.87" />
<line class="fil1 str0" x1="21073.11" y1="7485.19" x2="20872.35" y2="7704.02" />
<line class="fil1 str0" x1="20430.51" y1="8183.53" x2="20034.89" y2="8614.29" />
<line class="fil1 str0" x1="20963.76" y1="7385.6" x2="20762.99" y2="7604.44" />
<line class="fil1 str0" x1="20321.15" y1="8083.95" x2="19925.41" y2="8513.11" />
<line class="fil1 str0" x1="20854.4" y1="7286.02" x2="20653.51" y2="7503.25" />
<line class="fil1 str0" x1="20211.67" y1="7982.77" x2="19816.06" y2="8413.52" />
<line class="fil1 str0" x1="20744.92" y1="7184.83" x2="20544.16" y2="7403.67" />
<line class="fil1 str0" x1="20103.92" y1="7883.06" x2="19708.18" y2="8312.21" />
<line class="fil1 str0" x1="20635.57" y1="7085.25" x2="20436.28" y2="7302.36" />
<line class="fil1 str0" x1="19994.57" y1="7783.48" x2="19598.82" y2="8212.63" />