summaryrefslogtreecommitdiff
path: root/51189-h/51189-h.htm
blob: b8ff3ee7263f679f899d6db72720e062cf0c7d4b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <title>The Lover’s Baedeker and Guide to Arcady</title>
    <link rel="coverpage" href="images/cover.jpg"/>
    <meta name="cover" content="images/cover.jpg" />
    <meta name="DC.Title" content="The Lover’s Baedeker and Guide to Arcady"/>
    <meta name="DC.Creator" content="Carolyn Wells"/>
    <meta name="DC.Language" content="en"/>
    <meta name="DC.Created" content="1912"/>
    <meta name="Pubdate" content="1912"/>
    <meta name="DC.Subject" content="humor, poetry"/>
    <meta name="Tags" content="humor, poetry"/>
    <meta name="generator" content="fpgen 4.42"/>
    <meta name='DC.Publisher' content='Distributed Proofreaders Canada'/>
    <style type="text/css">
      body { margin-left:8%;margin-right:10%; }
      .pageno  { right: 1%; font-size: x-small; background-color: inherit; color: silver;
               text-indent: 0em; text-align: right; position: absolute;
               border:1px solid silver; padding:1px 3px; font-style:normal;
               font-variant: normal; font-weight: normal; text-decoration:none; }
      .pageno:after { color: gray; content: attr(title); }
      .it { font-style:italic; }
      .bold { font-weight:bold; }
      .sc { font-variant:small-caps; }
      p { text-indent:0; margin-top:0.5em; margin-bottom:0.5em;
          text-align: justify; }
      div.lgc { }
      div.lgl { }
      div.lgc p { text-align:center; text-indent:0; margin-top:0; margin-bottom:0; }
      div.lgl p { text-indent: -17px; margin-left:17px; margin-top:0; margin-bottom:0; }
      div.lgp { }
      div.lgp p { text-align:left; text-indent:0; margin-top:0; margin-bottom:0; }
      .poetry-container { display:inline-block; text-align:left; margin-left:2em; }
      h1 { text-align:center; font-weight:normal;
           font-size:1.2em; margin:2em auto 1em auto}
      h2 { text-align:center; font-weight:normal;
           font-size:1.1em; margin:1em auto 0.5em auto}
      hr.tbk100{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk101{ border:none; border-bottom:1px solid black; width:10%; margin-top:0.5em; margin-bottom:0.5em; text-align:center; margin-left:45%; margin-right:45% }
      hr.tbk102{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk103{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk104{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk105{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk106{ border:none; border-bottom:1px solid black; width:10%; margin-top:0.5em; margin-bottom:0.5em; text-align:center; margin-left:45%; margin-right:45% }
      hr.tbk107{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk108{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk109{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk110{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk111{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk112{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk113{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk114{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk115{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk116{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk117{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk118{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk119{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk120{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk121{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk122{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk123{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk124{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk125{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk126{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk127{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk128{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk129{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk130{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk131{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk132{ border:none; border-bottom:1px solid white; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk133{ border:none; border-bottom:1px solid silver; width:30%; margin-top:1em; margin-bottom:1em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk134{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk135{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.tbk136{ border:none; border-bottom:1px solid silver; width:30%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk137{ border:none; border-bottom:1px solid silver; width:30%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:35%; margin-right:35% }
      hr.tbk138{ border:none; border-bottom:1px solid silver; width:90%; margin-top:2em; margin-bottom:2em; text-align:center; margin-left:5%; margin-right:5% }
      hr.pbk { border:none; border-bottom:1px solid silver; width:100%; margin-top:2em; margin-bottom:2em }
      .figcenter { text-align:center; margin:1em auto;}
      div.blockquote { margin:1em 2em; text-align:justify; }
      div.blockquote0r9 { margin:1em 2em; }
      div.blockquote0r9 p { font-size: 0.9em }
      p.caption { text-align:center; margin:0 auto; width:100%; }
      h1.nobreak { page-break-before: avoid; }
      p.line { text-indent:0; margin-top:0; margin-bottom:0; }
      div.lgp p.line0 { text-indent:-3em; margin:0 auto 0 3em; }
      table.center { margin:0.5em auto; border-collapse: collapse; padding:3px; }
      table.flushleft { margin:0.5em 0em; border-collapse: collapse; padding:3px; }
      table.left { margin:0.5em 1.2em; border-collapse: collapse; padding:3px; }
      .tab1c1 { }
      .tab1c2 { }
      .tab1c3 { }
      .tab2c1 { }
      .tab2c2 { }
      .tab2c3 { }
      .tab3c1 { }
      .tab3c2 { }
      .tab3c3 { }
      .tdStyle0 {
padding: 0px 5px; text-align:left; vertical-align:top;
}
      .tdStyle1 {
padding: 0px 5px; text-align:center; vertical-align:top;
}
      .tdStyle2 {
padding: 2px 5px; text-align:left; vertical-align:top;
}
      .pindent { margin-top:0; margin-bottom:0; text-indent:1.5em; }
      .noindent { margin-top:0; margin-bottom:0; text-indent:0; }
      .hang { padding-left:1.5em; text-indent:-1.5em; }
      .dramaline { margin-top: 0em; margin-bottom: 0; text-indent: 0em; padding-left: 2.4em }
      .dramaline-cont { margin-top: .8em; margin-bottom: 0; text-indent: 0em; padding-left: 2.4em }
      .dramastart { min-height: 1px; }
      .speaker { margin-left: 0; margin-top: .8em; font-variant: small-caps;   }
      .speaker-inline { font-variant: small-caps; }
      .speech { margin-top: .2em; margin-bottom: 0; text-indent: -1.2em; padding-left: 2.4em; text-align: left; }
      .speech-cont { margin-top: .2em; margin-bottom: 0; text-indent: 0em; padding-left: 2.4em; text-align: left; }
      .stage + .stage { margin-top: .8em }
      .stage { margin-top: 0; margin-bottom: 0; text-indent: 1em; padding-left: 0em; margin-left: 3em; }
      .stage-embed { margin-top: 0; margin-bottom: 0; text-indent: 0; padding-left: 2.4em; }
      .stageright { margin-top: 0; margin-bottom: 0; text-align:right; }
      .verse-align { visibility:hidden; }
      .verse-align-inline { position:absolute; text-indent:0; }
      .verse-align-noindent { visibility:hidden; margin-left:1.2em; }
      .literal-container { text-align:center; margin:0 0; }
      .literal { display:inline-block; text-align:left; }
    </style>
   <style type="text/css">
       h1 { font-weight: bold; font-size: 1.3em; }
   </style>
  </head>
  <body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 51189 ***</div>

<div class='figcenter'>
<img src='images/cover.jpg' alt='' id='iid-0000' style='width:375px;height:auto;'/>
</div>

<hr class='pbk'/>

<p class='pindent'><a id='fron'></a></p>

<div class='figcenter'>
<img src='images/i001.jpg' alt='' id='iid-0001' style='width:425px;height:auto;'/>
<p class='caption'>“THE POST-OFFICE IS IN THE HEART OF AN OLD HOLLOW OAK TREE”</p>
</div>

<hr class='tbk100'/>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line' style='text-align:center;margin-top:1.5em;margin-bottom:1em;font-size:1.5em;font-weight:bold;'>THE LOVER’S BAEDEKER</p>
<p class='line' style='text-align:center;font-size:1em;font-weight:bold;'>AND</p>
<p class='line' style='text-align:center;margin-top:1em;margin-bottom:1.5em;font-size:1.5em;font-weight:bold;'>GUIDE TO ARCADY</p>
<p class='line'>&#160;</p>
<p class='line'>&#160;</p>
<p class='line' style='text-align:center;margin-bottom:1em;font-size:1em;font-weight:bold;'>BY</p>
<p class='line' style='text-align:center;margin-bottom:1.5em;font-size:1.3em;font-weight:bold;'>CAROLYN WELLS</p>
<p class='line'>&#160;</p>
<p class='line'>WITH TWENTY ILLUSTRATIONS AND A COVER</p>
<p class='line'>BY A. D. BLASHFIELD AND MAPS BY</p>
<p class='line'>GEORGE W. HOOD</p>
</div> <!-- end rend -->

<div class='figcenter'>
<img src='images/i002.jpg' alt='' id='iid-0002' style='width:150px;height:auto;'/>
</div>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>NEW YORK</p>
<p class='line'>FREDERICK A. STOKES COMPANY</p>
<p class='line'>PUBLISHERS</p>
</div> <!-- end rend -->

<hr class='pbk'/>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'><span class='it'>Copyright</span>, 1912, <span class='it'>by</span></p>
<p class='line'><span class='sc'>Frederick A. Stokes Company</span></p>
<p class='line'>&#160;</p>
<hr class='tbk101'/>
<p class='line'>&#160;</p>
<p class='line'><span class='it'>All rights reserved, including that of translation into foreign</span></p>
<p class='line'><span class='it'>languages, including the Scandinavian</span></p>
</div> <!-- end rend -->

<div class='figcenter'>
<img src='images/i003.jpg' alt='' id='iid-0003' style='width:250px;height:auto;'/>
</div>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line' style='margin-top:2em;'>THE•PLIMPTON•PRESS</p>
<p class='line'>[W•D•O]</p>
<p class='line'>NORWOOD•MASS•U•S•A</p>
</div> <!-- end rend -->

<hr class='tbk102'/>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>THIS GUIDE BOOK</p>
<p class='line'>IS DEDICATED</p>
<p class='line' style='font-size:1.2em;'>TO ANNA WAITT</p>
<p class='line'>A TOURIST</p>
</div> <!-- end rend -->

<hr class='tbk103'/>

<p class='line' style='text-align:center;margin-top:1.5em;margin-bottom:1em;font-size:1.3em;font-weight:bold;'>CONTENTS</p>

<table id='tab1' summary='' class='center'>
<colgroup>
<col span='1' style='width: 25em;'/>
<col span='1' style='width: 3em;'/>
<col span='1' style='width: 1em;'/>
</colgroup>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Arcady and Its Environs</span>:</td><td class='tab1c2 tdStyle1'><span class='sc'>Page</span></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Preliminary Information</td><td class='tab1c2 tdStyle1'><a href='#Page_1'>1</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Topography</span></td><td class='tab1c2 tdStyle1'><a href='#Page_4'>4</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Routes</span></td><td class='tab1c2 tdStyle1'><a href='#rout'>4</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Roads Out of Arcady</span></td><td class='tab1c2 tdStyle1'><a href='#road'>8</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Season</span></td><td class='tab1c2 tdStyle1'><a href='#seas'>11</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Climate</span></td><td class='tab1c2 tdStyle1'><a href='#clim'>11</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Time</span></td><td class='tab1c2 tdStyle1'><a href='#time'>11</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Time’s Valentine</span></td><td class='tab1c2 tdStyle1'><a href='#Page_15'>15</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Calendar</span></td><td class='tab1c2 tdStyle1'><a href='#Page_19'>19</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>The Lay of Lothario Lee</span></td><td class='tab1c2 tdStyle1'><a href='#Page_21'>21</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Money</span></td><td class='tab1c2 tdStyle1'><a href='#Page_24'>24</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Custom House</span></td><td class='tab1c2 tdStyle1'><a href='#Page_24'>24</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Cupid’s Failure</span></td><td class='tab1c2 tdStyle1'><a href='#cupi'>28</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>History</span></td><td class='tab1c2 tdStyle1'><a href='#Page_29'>29</a></td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>An Arcady Girl</span></td><td class='tab1c2 tdStyle1'><a href='#anar'>31</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Under a New Charter</span></td><td class='tab1c2 tdStyle1'><a href='#unde'>32</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Arcadia</span></td><td class='tab1c2 tdStyle1'><a href='#Page_34'>34</a></td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>An Arcadian Lady</span></td><td class='tab1c2 tdStyle1'><a href='#arca'>38</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Arcady</span>:</td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Preliminary Ramble</td><td class='tab1c2 tdStyle1'><a href='#prel'>39</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Flora</span></td><td class='tab1c2 tdStyle1'><a href='#Page_41'>41</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>The Arcadian Language of Flowers</span></td><td class='tab1c2 tdStyle1'><a href='#Page_43'>43</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Hotels</span></td><td class='tab1c2 tdStyle1'><a href='#Page_44'>44</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Restaurants</span></td><td class='tab1c2 tdStyle1'><a href='#rest'>45</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Sweet Shops</span></td><td class='tab1c2 tdStyle1'><a href='#swee'>46</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Heard in Arcady</span></td><td class='tab1c2 tdStyle1'><a href='#Page_47'>47</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Dithyramb by an Arcadian Poet</span></td><td class='tab1c2 tdStyle1'><a href='#Page_49'>49</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Conveyances</span></td><td class='tab1c2 tdStyle1'><a href='#conv'>50</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Shops</span></td><td class='tab1c2 tdStyle1'><a href='#Page_54'>54</a></td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Cupid’s Sale</span></td><td class='tab1c2 tdStyle1'><a href='#sale'>55</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Cupid’s Bill</span></td><td class='tab1c2 tdStyle1'><a href='#bill'>57</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Institutions and Public Buildings</span>:</td><td class='tab1c2 tdStyle1'></td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Places of Interest</td><td class='tab1c2 tdStyle1'><a href='#plac'>58</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Post-Office</td><td class='tab1c2 tdStyle1'><a href='#post'>58</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Heart Exchange</td><td class='tab1c2 tdStyle1'><a href='#exch'>61</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>The Intercepted Valentine</span></td><td class='tab1c2 tdStyle1'><a href='#Page_62'>62</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Banks</td><td class='tab1c2 tdStyle1'><a href='#bank'>62</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Hospital</td><td class='tab1c2 tdStyle1'><a href='#hosp'>62</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Weather Bureau</td><td class='tab1c2 tdStyle1'><a href='#weat'>65</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Campo Santo</td><td class='tab1c2 tdStyle1'><a href='#camp'>65</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The Hall of Fame</td><td class='tab1c2 tdStyle1'><a href='#hall'>66</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Ballade of Arcady</span></td><td class='tab1c2 tdStyle1'><a href='#Page_67'>67</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Amusements</span></td><td class='tab1c2 tdStyle1'><a href='#Page_68'>68</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>The Old Story</span></td><td class='tab1c2 tdStyle1'><a href='#olds'>75</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Language</span></td><td class='tab1c2 tdStyle1'><a href='#Page_75'>75</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Some Arcadian Bromidioms</span></td><td class='tab1c2 tdStyle1'><a href='#Page_76'>76</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Exercise for the Language Student</span>:</td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>A Very Pretty Quarrel</span></td><td class='tab1c2 tdStyle1'><a href='#Page_77'>77</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Degrees of Love</td><td class='tab1c2 tdStyle1'><a href='#Page_79'>79</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Definitions</td><td class='tab1c2 tdStyle1'><a href='#def'>79</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>The Spelling Lesson</span></td><td class='tab1c2 tdStyle1'><a href='#thes'>79</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Love in Arcady</span></td><td class='tab1c2 tdStyle1'><a href='#Page_80'>80</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Insensibility</span></td><td class='tab1c2 tdStyle1'><a href='#Page_81'>81</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Biographical Sketch of Cupid</span></td><td class='tab1c2 tdStyle1'><a href='#biog'>82</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Political Notes</span></td><td class='tab1c2 tdStyle1'><a href='#Page_84'>84</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Arcadian Laws</span></td><td class='tab1c2 tdStyle1'><a href='#laws'>84</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Costumes</span></td><td class='tab1c2 tdStyle1'><a href='#Page_85'>85</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Then and Now</span></td><td class='tab1c2 tdStyle1'><a href='#then'>86</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Walks</span></td><td class='tab1c2 tdStyle1'><a href='#Page_87'>87</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Old Valentines</span></td><td class='tab1c2 tdStyle1'><a href='#oldv'>91</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Business Section</span></td><td class='tab1c2 tdStyle1'><a href='#Page_93'>93</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>It Happened in Arcady</span></td><td class='tab1c2 tdStyle1'><a href='#Page_94'>94</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Calamitous Catastrophe</span></td><td class='tab1c2 tdStyle1'><a href='#Page_101'>101</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'></td><td class='tab1c2 tdStyle1'>&nbsp;</td><td class='tab1c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab1c1 tdStyle0'><span class='sc'>Advertisements</span></td><td class='tab1c2 tdStyle1'><a href='#Page_103'>103</a></td><td class='tab1c3 tdStyle0'></td></tr>
<tr><td class='tab1c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;<span class='it'>Advertisement</span></td><td class='tab1c2 tdStyle1'><a href='#advert'>113</a></td><td class='tab1c3 tdStyle0'></td></tr>
</table>

<hr class='tbk104'/>

<p class='line' style='text-align:center;margin-top:1.5em;margin-bottom:1em;font-size:1.3em;font-weight:bold;'>LIST OF ILLUSTRATIONS</p>

<table id='tab2' summary='' class='center'>
<colgroup>
<col span='1' style='width: 30em;'/>
<col span='1' style='width: 6em;'/>
<col span='1' style='width: 1em;'/>
</colgroup>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The Post Office is in the heart of an old hollow oak tree</td><td class='tab2c2 tdStyle1'><a href='#fron'><span class='it'>Frontispiece</span></a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'><span class='it'>Facing page</span></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'>Arcadia (Map)</td><td class='tab2c2 tdStyle1'><a href='#Page_3'>3</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Across the Sea of Dreams in a Transport of Rapture</td><td class='tab2c2 tdStyle1'><a href='#Page_5'>5</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The troubled waters of the Gulf of Woe</td><td class='tab2c2 tdStyle1'><a href='#Page_7'>7</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Mountains of Opposition</td><td class='tab2c2 tdStyle1'><a href='#Page_8'>8</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>A radiant Goddess beckoning to him</td><td class='tab2c2 tdStyle1'><a href='#Page_9'>9</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Many with a greed for lucre will follow the</td><td class='tab2c2 tdStyle1'><a href='#Page_10'>10</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Goddess of Fortune</td><td class='tab2c2 tdStyle1'></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>’Tis love that makes the world go round</td><td class='tab2c2 tdStyle1'><a href='#Page_12'>12</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The old clock on the stairs</td><td class='tab2c2 tdStyle1'><a href='#Page_13'>13</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Sun dials and moon dials are approved as they mark the</td><td class='tab2c2 tdStyle1'><a href='#Page_17'>17</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bright hours only</td><td class='tab2c2 tdStyle1'></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Custom House</td><td class='tab2c2 tdStyle1'><a href='#Page_25'>25</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Arcady and its Environs (Map)</td><td class='tab2c2 tdStyle1'><a href='#Page_35'>35</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>On the water all sorts of boats are used</td><td class='tab2c2 tdStyle1'><a href='#Page_51'>51</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Cupid’s Heartware Shop</td><td class='tab2c2 tdStyle1'><a href='#Page_53'>53</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The groves and dells are decorated with beautiful statues</td><td class='tab2c2 tdStyle1'><a href='#Page_59'>59</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Weather Bureau</td><td class='tab2c2 tdStyle1'><a href='#Page_63'>63</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The Mayday Plaisance is a large amusement</td><td class='tab2c2 tdStyle1'><a href='#Page_69'>69</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>A Serenader</td><td class='tab2c2 tdStyle1'><a href='#Page_73'>73</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>True lovers’ knots may be bought here</td><td class='tab2c2 tdStyle1'><a href='#Page_89'>89</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>The blissfully enraptured are conducted to sentimental spots</td><td class='tab2c2 tdStyle1'><a href='#Page_107'>107</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Love proof window screens</td><td class='tab2c2 tdStyle1'><a href='#Page_114'>114</a></td><td class='tab2c3 tdStyle0'></td></tr>
<tr><td class='tab2c1 tdStyle0'></td><td class='tab2c2 tdStyle1'>&nbsp;</td><td class='tab2c3 tdStyle0'>&nbsp;</td></tr>
<tr><td class='tab2c1 tdStyle0'>Map of the Town of Arcadia</td><td class='tab2c2 tdStyle1'><a href='#endp'>End-leaves</a></td><td class='tab2c3 tdStyle0'></td></tr>
</table>

<hr class='tbk105'/>

<p class='line' style='text-align:center;margin-top:1em;margin-bottom:0.5em;font-size:1.7em;font-weight:bold;'>THE LOVER’S BAEDEKER AND</p>
<p class='line' style='text-align:center;margin-bottom:0.5em;font-size:1.7em;font-weight:bold;'>GUIDE TO ARCADY</p>

<hr class='tbk106'/>

<div><span class='pageno' title='1' id='Page_1'></span><h1 class='nobreak'><span class='bold'>ARCADY AND ITS ENVIRONS</span></h1></div>

<h2 class='nobreak'>PRELIMINARY INFORMATION</h2>

<p class='noindent'><span style='float:left; clear: left; margin:0 0.1em 0 0; padding:0; line-height: 1.0em; font-size: 200%;'>O</span>ver the hills and far away lies Arcady,
the Mecca of all Lovers, and therefore
the place where Journeys End.
Situated on a large tract of enchanted ground,
in the Country of Agapemone, Arcady is a
beautiful and interesting place, and should be
visited by every tourist making the Grand
Tour of Life.</p>

<p class='pindent'>Even the shortest sojourn here will yield
rich rewards of interest and pleasure, and will
contribute more than long years of study to a
thorough enjoyment and comprehension of all
that is best in life.</p>

<p class='pindent'>The majority of the human race sooner or
later find Arcady for themselves, some seeking
it with a steadfast purpose, others blindly
stumbling into it all unexpectedly.</p>

<p class='pindent'>But to the traveler who would enjoy intelligently
its delights, the following hints may not
come amiss.</p>

<hr class='tbk107'/>

<p class='pindent'><span class='pageno' title='3' id='Page_3'></span></p>

<div class='figcenter'>
<a href='images/i013f.png'><img src='images/i013.png' alt='' id='iid-0004' style='width:500px;height:auto;'/></a>
<p class='caption'><span class='it'>ARCADIA</span></p>
</div>

<hr class='tbk108'/>

<div><span class='pageno' title='4' id='Page_4'></span><h1>TOPOGRAPHY</h1></div>

<p class='pindent'>The Province of Arcadia, whose capital is
Arcady (see map No. 1), is bounded on the North
by the Land of Heart’s Desire, from which it
is separated by the Happy Valley.</p>

<p class='pindent'>On the East it is bounded by the Gulf of
Time, across which dimly may be seen, in the
distance, the Garden of Eden.</p>

<p class='pindent'>On the West by the Mountains of Opposition,
beyond which is the Gulf of Dark
Despair.</p>

<p class='pindent'>Along the Southern Shores murmur the lapping
wavelets of the Sea of Dreams, whose
wonderful phenomenon of Mirage often deceives
even an experienced traveler.</p>

<hr class='tbk109'/>

<p class='pindent'><a id='rout'></a><span class='sc'><span style='font-size:larger'>Routes</span></span>: Travelers may approach Arcady by
several routes. One of the pleasantest is the
Joy Line, by which passengers are carried across
the Sea of Dreams in Transports of Rapture.</p>

<p class='pindent'><span class='pageno' title='5' id='Page_5'></span></p>

<div class='figcenter'>
<img src='images/i015.jpg' alt='' id='iid-0005' style='width:425px;height:auto;'/>
<p class='caption'>“ACROSS THE SEA OF DREAMS IN TRANSPORTS OF RAPTURE”</p>
</div>

<p class='pindent'>Another approach, preferred by adventurous
ones in search of excitement, is across the
Seas of Misunderstanding, through the troubled
waters of the Gulf of Wo, and over the difficult
and well-nigh impassable Mountains of Opposition.
However, when these mountains
are safely crossed the way is delightful and
easy.</p>

<p class='pindent'><span class='pageno' title='7' id='Page_7'></span></p>

<div class='figcenter'>
<img src='images/i017.jpg' alt='' id='iid-0006' style='width:425px;height:auto;'/>
<p class='caption'>“THE TROUBLED WATERS OF THE GULF OF WO”</p>
</div>

<p class='pindent'><a id='road'></a><span class='sc'><span style='font-size:larger'>Roads out of Arcady</span></span>: The Road to Fame
often leads out of Arcady. An ambitious youth,
hearing a silvery trumpet note, looks up to see
a radiant Goddess beckoning to him. Unless a
true Lover, he may be dazzled by her glory and
cajoled by her promises. Lured away, he follows
the fickle Fair and soon loses all interest
in Arcadian delights.</p>

<p class='pindent'><span class='pageno' title='8' id='Page_8'></span></p>

<div class='figcenter'>
<img src='images/i018.jpg' alt='' id='iid-0007' style='width:500px;height:auto;'/>
</div>

<p class='pindent'>The Road to Wealth is another easy way out
of Arcady. Not content with the Pot of Gold
at the End of the Rainbow, many with a greed
for lucre will follow the Goddess Fortune, who
is even more false and fickle than the Goddess
Fame.</p>

<p class='pindent'><span class='pageno' title='9' id='Page_9'></span></p>

<div class='figcenter'>
<img src='images/i019.jpg' alt='' id='iid-0008' style='width:425px;height:auto;'/>
<p class='caption'>“A RADIANT GODDESS BECKONING TO HIM”</p>
</div>

<p class='pindent'><span class='pageno' title='10' id='Page_10'></span>
Also there is the Downward Path, which leads
from the State of Matrimony to the Great
Divide. Crossing this, the unfortunate traveler
returns to the State of Single Blessedness.</p>

<div class='figcenter'>
<img src='images/i020.jpg' alt='' id='iid-0009' style='width:475px;height:auto;'/>
<p class='caption'>“MANY WITH A GREED FOR LUCRE WILL FOLLOW THE GODDESS FORTUNE”</p>
</div>

<p class='pindent'><span class='pageno' title='11' id='Page_11'></span>
<a id='seas'></a><span class='sc'><span style='font-size:larger'>Season</span></span>: Arcady is an all-the-year-round resort,
and most of the districts described may
be visited at any season of the year. Spring
and Early Summer are perhaps best for an
initial visit.</p>

<p class='pindent'>June is an especially desirable time for young
lovers to be in Arcady, but Lovelorn Swains and
Minor Poets frequently choose the melancholy
days of Autumn.</p>

<hr class='tbk110'/>

<p class='pindent'><a id='clim'></a><span class='sc'><span style='font-size:larger'>Climate</span></span>: The Climatic conditions of Arcady
are peculiar. Though usually the weather is
balmy and pleasant, sometimes a sudden coolness
springs up and a frost is often distinctly
felt. A stormy time may ensue, and then suddenly
the clouds clear away and all is sunshine
once more.</p>

<hr class='tbk111'/>

<p class='pindent'><a id='time'></a><span class='sc'><span style='font-size:larger'>Time</span></span>: Time in Arcady is entirely a matter
of opinion. To a waiting Lover the minutes
are hours and lag slowly along, while to happy
hearts a golden day flies by as if on wings.</p>

<p class='pindent'>It is said that Love makes Time pass away,
and Time makes Love pass away; but the latter
<span class='pageno' title='12' id='Page_12'></span>
statement is obviously an error, for after Love
has made Time pass away, how can Time do
anything to Love?</p>

<p class='pindent'>However, ’tis Love that makes the world
go round, and this explains why Love makes
Time pass so rapidly.</p>

<div class='figcenter'>
<img src='images/i022.jpg' alt='' id='iid-0010' style='width:500px;height:auto;'/>
<p class='caption'>“’TIS LOVE THAT MAKES THE WORLD GO ROUND”</p>
</div>

<p class='pindent'><span class='pageno' title='13' id='Page_13'></span></p>

<div class='figcenter'>
<img src='images/i023.jpg' alt='' id='iid-0011' style='width:375px;height:auto;'/>
<p class='caption'>THE OLD CLOCK ON THE STAIRS</p>
</div>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>“FOREVER ——— NEVER</p>
<p class='line'>&ensp;NEVER ———FOREVER”</p>
<p class='line'>&#160;</p>
</div> <!-- end rend -->

<p class='pindent'>Watches are of little use in Arcady, as the
Lovers deem them always too slow or too fast,
and usually forget to wind them, anyway. The
town timepiece is the Old Clock on the Stairs,
whose refrain is:</p>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='it'>Forever—Never—</span></p>
<p class='line0'><span class='it'>Never—Forever—</span></p>
<p class='line'>&#160;</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<p class='pindent'><span class='pageno' title='14' id='Page_14'></span>
Forever and Never are the units of time
most employed by Arcadians, and their meanings
are synonymous.</p>

<p class='pindent'>Time when Lovers are separated is measured
by ages; when together, it is not measured at
all, as then the hours unheeded fly, or speed on
winged feet.</p>

<p class='pindent'>Sun dials and Moon dials are approved, as
they mark the bright hours only.</p>

<div><span class='pageno' title='15' id='Page_15'></span><h1>TIME’S VALENTINE</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>’Twas St. Valentine’s Day, and Father Time</p>
<p class='line'>Said, “I think I’ll scribble a bit o’ rhyme,</p>
<p class='line'>To send to the sweetest maid on earth.”</p>
<p class='line'>And the old fellow chuckled in roguish mirth.</p>
<p class='line'>He reached for his inkhorn and quill, then said,</p>
<p class='line'>As he absently nodded his wise old head,</p>
<p class='line'>“But what maiden is gentle and sweet and fine</p>
<p class='line'>Enough to be my Valentine?</p>
<p class='line'>There’s a musical girl in Kalamazoo,—</p>
<p class='line'>But I hear she beats Time, so she won’t do;</p>
<p class='line'>There’s a fair New York girl, proud and calm,</p>
<p class='line'>But they say she kills Time without a qualm!</p>
<p class='line'>A pretty clubwoman I saw one day,</p>
<p class='line'>But ‘I won’t have Time,’ I heard her say.</p>
<p class='line'>For one of those summer girls I yearn;</p>
<p class='line'>But they declare they ‘have Time to burn.’</p>
<p class='line'>There are lovely girls in a Southern clime,</p>
<p class='line'>But they sweetly admit that they waste Time,</p>
<p class='line'>While the bustling woman, with manners curt,</p>
<p class='line'>Takes Time by the forelock, and that does hurt.</p>
<p class='line'>On the Boston maiden I make no claim,</p>
<p class='line'>To improve Time seems to be her aim.</p>
<p class='line'>And I heard an old spinster contriving a plan</p>
<p class='line'>Say, ‘I’ll try to get Time as soon as I can.’</p>
<p class='line'>So none of these whom I’ve mentioned yet</p>
<p class='line'>A Valentine from Time shall get.</p>
<p class='line'>But I’ve in mind a maiden who,</p>
<p class='line'>When a fond lover came to woo,</p>
<p class='line'>Just blushed and hung down her pretty head,</p>
<p class='line'>And ‘Give me Time!’ was all she said.</p>
<p class='line'>By Cupid, that’s the maid for me!</p>
<p class='line'>To her my Valentine shall be.”</p>
</div></div> <!-- end rend -->

<p class='pindent'><span class='pageno' title='17' id='Page_17'></span></p>

<div class='figcenter'>
<img src='images/i027.jpg' alt='' id='iid-0012' style='width:425px;height:auto;'/>
<p class='caption'>“SUN DIALS AND MOON DIALS ARE APPROVED, AS THEY MARK THE BRIGHT HOURS ONLY”</p>
</div>

<hr class='tbk112'/>

<p class='pindent'><span class='pageno' title='19' id='Page_19'></span>
<span class='sc'><span style='font-size:larger'>Calendar:</span></span> The Arcadian Calendar is entirely
made up of Red-Letter Days.</p>

<p class='pindent'>In the Spring the Young Man’s Fancy follows
the vernal tradition.</p>

<p class='pindent'>The Summer is entirely given over to the
Summer Girl’s flirtations.</p>

<p class='pindent'>In the Autumn a delicious Melancholy is in
the air and Arcadians experience</p>

<div class='blockquote0r9'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'>A feeling of sadness and longing</p>
<p class='line0'>&ensp;&ensp;That is not akin to wo;</p>
<p class='line0'>And resembles sorrow only</p>
<p class='line0'>&ensp;&ensp;As a Poet resembles a Poe.</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<p class='pindent'>In Winter come the Halcyon Days, and all
are glad and merry and Life is one grand, sweet
song and dance.</p>

<p class='pindent'>Many Fête Days are observed.</p>

<p class='pindent'>Christmas receives due consideration, but
St. Valentine’s Day and All Hallowe’en are even
more widely celebrated in Arcady.</p>

<p class='pindent'>April First, or All Fools’ Day, is not specially
observed, except in Fool’s Paradise, where it
is April Fools’ Day all the year round.</p>

<p class='pindent'>Midsummer Eve and the Eve of St. Agnes
are dear to Lovers, and as every day is Somebody’s
<span class='pageno' title='20' id='Page_20'></span>
Birthday, there are celebrations continually.
Mayday, too, is a pleasant occasion,
and on that day there are May-parties all over
the place, for Arcady is a Land where it is
always Saturday Afternoon.</p>

<div><span class='pageno' title='21' id='Page_21'></span><h1><span class='bold'>THE LAY OF LOTHARIO LEE</span></h1></div>

<div class='dramastart'><!----></div>

<p class='dramaline-cont'>Lothario Lee was saddened, the world seemed grim and gray;</p>
<p class='dramaline'>For Lothario Lee was a lover bold, and today was St. Valentine’s Day.</p>

<p class='dramaline-cont'>’Twas St. Valentine’s Day, and he fain would send his heart to the fair Florelle,</p>
<p class='dramaline'>For the radiant maid had inspired in his breast a passion he could not quell.</p>

<p class='dramaline-cont'>But alas! for the gay Lothario, his heart was held in fee</p>
<p class='dramaline'>Down at Dan Cupid’s pawnshop, at the sign of the roses three.</p>

<p class='dramaline-cont'>Willingly would the lovelorn knight that errant heart reclaim,</p>
<p class='dramaline'>But alas! the luckless Lothario hadn’t a cent to his name.</p>

<p class='dramaline-cont'>So he sadly sat and pondered, as doleful as he could be;</p>
<p class='dramaline'>When a brilliant notion struck him—“Done!” cried Lothario Lee.</p>

<p class='dramaline-cont'>“I’ll send her the pawnshop ticket, my tale of wo ’twill tell,</p>
<p class='dramaline'>For she alone can redeem my heart—the rich and rare Florelle.”</p>

<p class='dramaline-cont'>He sent her the tell-tale ticket, he scribbled a hasty line,</p>
<p class='dramaline'>Bidding her call at Dan Cupid’s shop and claim her valentine.</p>

<p class='dramaline-cont'>And as she read the message, in the soul of the fair Florelle</p>
<p class='dramaline'>A joyful thought rang merrily, like a far-away marriage bell.</p>

<p class='dramaline-cont'>With her heart in a frantic flutter, adown the street sped she,</p>
<p class='dramaline'>Till she reached Dan Cupid’s pawnshop, at the sign of the roses three.</p>

<p class='dramaline-cont'>Cupid sat at a work-bench, mending a broken dart;</p>
<p class='dramaline'>“I am Florelle,” said she, “and I come to claim Lothario’s heart.</p>

<p class='dramaline-cont'>“Here is the ticket, Cupid; what are the ransom fees?</p>
<p class='dramaline'>See, I will pay you the money; give me the heart, if you please.”</p>

<p class='dramaline-cont'>“But I am blind,” said Cupid, “I cannot see the name;</p>
<p class='dramaline'>Describe the heart you are looking for, and so make good your claim.”</p>

<p class='dramaline-cont'>“Lothario’s heart,” said the lady, “is brave and knows no fear.”</p>
<p class='dramaline'>“Alas!” said Cupid, dejectedly, “no such heart is here.”</p>

<p class='dramaline-cont'>“His heart,” said the lady, further, “is honest, and good, and true.”</p>
<p class='dramaline'>“No,” said Dan Cupid, wofully, “not one of these hearts will do.”</p>

<p class='dramaline-cont'>“His heart to me is single, it beats for me alone.”</p>
<p class='dramaline'>“Come, come,” cried Cupid, “impossible! Such hearts I’ve never known.</p>

<p class='dramaline-cont'>“The best in my collection has been mended once or twice,</p>
<p class='dramaline'>But here’s a heart that may suit you, if you’re willing to pay the price.</p>

<p class='dramaline-cont'>“It’s a heart that is sad and lonely, a trifle hard and cold,</p>
<p class='dramaline'>It seems to be rather scarred and worn—in fact, it’s getting old.</p>

<p class='dramaline-cont'>“It’s somewhat fickle and jealous, a bit impatient, too;</p>
<p class='dramaline'>And it’s branded with several maidens’ names—Coralie, Rose, and Loo.”</p>

<p class='dramaline-cont'>“Why, that’s the very heart I want,” said the lady, “give it to me;</p>
<p class='dramaline'>That’s the one I’ve been describing to you, the heart of Lothario Lee.”</p>

<p class='dramaline-cont'>As she left the shop in triumph, said Cupid, “I seem to find</p>
<p class='dramaline'>Each day a more convincing fact to prove that Love is blind.”</p>

<hr class='tbk113'/>

<p class='pindent'><span class='pageno' title='24' id='Page_24'></span>
<span class='sc'><span style='font-size:larger'>Money</span></span>: Money is of little use in Arcady.
Those who are rich spend their money lavishly,
but the poor get along just as well, and
often better.</p>

<p class='pindent'>The principal coins of the Realm are the
Lucky Penny and the Last Red Cent.</p>

<p class='pindent'>Credit can always be had at the Arcadian
Shops, and is extended as often as desired.</p>

<hr class='tbk114'/>

<p class='pindent'><span class='sc'><span style='font-size:larger'>Custom House</span></span>: Hearts, especially if inflammable,
are dutiable articles, and should be
declared as such.</p>

<p class='pindent'>Worn on the sleeve, they are easily examined
by the Inspector, though a dishonest smuggler
has sometimes gone ashore with his heart in his
boots.</p>

<p class='pindent'>Hearts are appraised by weight, so heavy
hearts should be avoided and light hearts
should be carried whenever possible.</p>

<p class='pindent'>Broken hearts are not dutiable, unless they
have been repaired and are quite as good as
new.</p>

<p class='pindent'><span class='pageno' title='25' id='Page_25'></span></p>

<div class='figcenter'>
<img src='images/i035.jpg' alt='' id='iid-0013' style='width:425px;height:auto;'/>
<p class='caption'>CUSTOM HOUSE <br/> “PASSIONS SHOULD ALWAYS BE DECLARED”</p>
</div>

<p class='pindent'>Stolen hearts may be confiscated by the
Customs Inspectors and returned to their
original owners. Stony hearts are exempt.</p>

<p class='pindent'>Passions should always be declared.</p>

<p class='pindent'>Keepsakes and souvenirs are not dutiable and
need not be shown.</p>

<div><h1><a id='cupi'></a><span class='bold'>CUPID’S FAILURE</span></h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Cupid, one day, in idle quest,</p>
<p class='line'>&ensp;&ensp;Fitted a dainty dart</p>
<p class='line'>And aimed it at Priscilla’s breast,</p>
<p class='line'>&ensp;&ensp;To strike Priscilla’s heart.</p>
<p class='line'>&#160;</p>
<p class='line'>Clean through it went, no heart was there;</p>
<p class='line'>&ensp;&ensp;Said Cupid, “I believe</p>
<p class='line'>Priscilla’s just the girl to wear</p>
<p class='line'>&ensp;&ensp;Her heart upon her sleeve.”</p>
<p class='line'>&#160;</p>
<p class='line'>But there, alack! it was not found;</p>
<p class='line'>&ensp;&ensp;“Aha!” cried Cupid, “note</p>
<p class='line'>Her frightened air; now I’ll be bound</p>
<p class='line'>&ensp;&ensp;Her heart is in her throat.”</p>
<p class='line'>&#160;</p>
<p class='line'>Failure again. On slender chance</p>
<p class='line'>&ensp;&ensp;He one more arrow shoots;</p>
<p class='line'>Assuming from her downcast glance,</p>
<p class='line'>&ensp;&ensp;Her heart is in her boots.</p>
<p class='line'>&#160;</p>
<p class='line'>Foiled, Cupid threw aside his bow;</p>
<p class='line'>&ensp;&ensp;“She has no heart,” said he.</p>
<p class='line'>(He did not know that long ago</p>
<p class='line'>&ensp;&ensp;She gave her heart to me.)</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='29' id='Page_29'></span><h1>HISTORY</h1></div>

<p class='pindent'>The early history of Arcady is lost in the
mists of ancient tradition. Looking backward
through the reversed Opera Glass of Time, we
see that it was originally settled by Adam and
Eve. Since then it has been peopled by lovers
of every age, sex, and condition of servitude.</p>

<p class='pindent'>These people are usually gentle and mild-mannered,
though occasionally given to angry
or quarrelsome outbreaks caused by jealousy
or misunderstanding. These outbreaks, however,
are indulged in mostly for the pleasure of
kissing and making up afterward, and forgiveness
is one of their chief characteristics.</p>

<p class='pindent'>The Arcadians are not gregarious, but go
about in couples, or sit solitary and alone, wrapt
in rapt thought.</p>

<p class='pindent'>The male population is divided into Lovers,
Poets, and Lunatics. There are various types
of Lovers—those that sigh like a furnace, those
that are pale and wan, and Swains.</p>

<p class='pindent'>Swains are usually Rustic or Lovelorn.</p>

<p class='pindent'>Feminine Arcadians are called Queens, Goddesses,
Angels, and other titles of incredible
foolishness.</p>

<p class='pindent'>In physical appearance dwellers in Arcady
are beautiful beyond all words. The women
have eyes as stars of twilight fair, faces with
gardens in, lily hands, amber-dropping hair,
and feet like little mice.</p>

<p class='pindent'>The men are handsome as Apollos; of heroic
size and Chesterfieldian manners.</p>

<p class='pindent'>The above-mentioned qualities, though not
always apparent to the disinterested observer,
are realized and insisted upon by the Lovers
themselves.</p>

<p class='pindent'>Oftenest the Citizens of Arcady are transients
and come and go as circumstances decree, but
in some rare instances a happy pair spend their
whole life in Arcady, or wander through the
Happy Valley and make their home in the Land
of Heart’s Desire.</p>

<p class='pindent'><span class='pageno' title='31' id='Page_31'></span></p>

<div><h1><a id='anar'></a>AN ARCADY GIRL</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>His gold beams a-spinning, I asked of the sun</p>
<p class='line'>&ensp;&ensp;If he ever had any to spare;</p>
<p class='line'>“Only once,” he replied, “too many I spun,</p>
<p class='line'>&ensp;&ensp;And I gave them to Peggy for hair.”</p>
<p class='line'>&#160;</p>
<p class='line'>I asked of the sky if his stars were all right,</p>
<p class='line'>&ensp;&ensp;Or if he had over-supplies;</p>
<p class='line'>He said, “I had two which were rather too bright,</p>
<p class='line'>&ensp;&ensp;So I gave them to Peggy for eyes.”</p>
<p class='line'>&#160;</p>
<p class='line'>I asked of some fays who were cutting out flowers</p>
<p class='line'>&ensp;&ensp;If they had any remnants or snips;</p>
<p class='line'>They said: “We had scraps of these poppies of ours,</p>
<p class='line'>&ensp;&ensp;But we gave them to Peggy for lips.”</p>
<p class='line'>&#160;</p>
<p class='line'>I said to the rain, “What becomes of the drops</p>
<p class='line'>&ensp;&ensp;That you may not have used when it clears?”</p>
<p class='line'>He said, “If there are any left when it stops,</p>
<p class='line'>&ensp;&ensp;I’ll give them to Peggy for tears.”</p>
<p class='line'>&#160;</p>
<p class='line'>I artfully coaxed him to spill them all out,</p>
<p class='line'>&ensp;&ensp;And scatter them over the miles,</p>
<p class='line'>And that is the reason, I haven’t a doubt,</p>
<p class='line'>&ensp;&ensp;That Peg’s always dimpling with smiles.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='32' id='Page_32'></span><h1><a id='unde'></a>UNDER A NEW CHARTER</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Hello! Come in! I called you, Cupid,</p>
<p class='line'>&ensp;&ensp;To take this box. Handle with care!</p>
<p class='line'>Look out! don’t be so careless, Stupid;</p>
<p class='line'>&ensp;&ensp;I’d have you know my heart’s in there.</p>
<p class='line'>&#160;</p>
<p class='line'>Take it at once, boy, to Miss Kitty,</p>
<p class='line'>&ensp;&ensp;And say it is a valentine.</p>
<p class='line'>How happy she’ll look, and how pretty,</p>
<p class='line'>&ensp;&ensp;When she discovers it is mine!</p>
<p class='line'>&#160;</p>
<p class='line'>Tell her for her my heart is yearning,</p>
<p class='line'>&ensp;&ensp;And then, unless my judgment errs,</p>
<p class='line'>By the same messenger returning</p>
<p class='line'>&ensp;&ensp;I rather think she’ll send me hers.</p>
<p class='line'>&#160;</p>
<p class='line'>What, Cupid, are you back already?</p>
<p class='line'>&ensp;&ensp;And bringing me Miss Kitty’s heart?</p>
<p class='line'>Open it quickly! Stay, be steady!</p>
<p class='line'>&ensp;&ensp;What’s this? A neatly printed chart!</p>
<p class='line'>&#160;</p>
<p class='line'>“No spaces left at my disposal—</p>
<p class='line'>&ensp;&ensp;Possibly some vacated soon;</p>
<p class='line'>But I have filed your kind proposal.</p>
<p class='line'>&ensp;&ensp;Come up and call some afternoon.”</p>
<p class='line'>&#160;</p>
<p class='line'>And here her heart is designated—</p>
<p class='line'>&ensp;&ensp;What seas of dreams! what flowery isles!</p>
<p class='line'>The boundaries all distinctly stated,</p>
<p class='line'>&ensp;&ensp;And measured by a scale of smiles.</p>
<p class='line'>&#160;</p>
<p class='line'>A large tract’s given to her poodle;</p>
<p class='line'>&ensp;&ensp;A smaller one contains her cat;</p>
<p class='line'>Here is the claim of Lord Fitznoodle;</p>
<p class='line'>&ensp;&ensp;Here her expensive picture-hat.</p>
<p class='line'>&#160;</p>
<p class='line'>Here I observe her mother’s quarters;</p>
<p class='line'>&ensp;&ensp;This large compartment is her dad’s;</p>
<p class='line'>Here Revolutionary Daughters,</p>
<p class='line'>&ensp;&ensp;And here her clubs and freaks and fads.</p>
<p class='line'>&#160;</p>
<p class='line'>Here is enshrined her baby cousin,</p>
<p class='line'>&ensp;&ensp;And here that Count with whom she flirts;</p>
<p class='line'>Here are male tenants by the dozen</p>
<p class='line'>&ensp;&ensp;(They’re only friends, so she asserts).</p>
<p class='line'>&#160;</p>
<p class='line'>This corner’s occupied by Irving,</p>
<p class='line'>&ensp;&ensp;This by her pearl and turquoise pin;</p>
<p class='line'>Although I know I am deserving,</p>
<p class='line'>&ensp;&ensp;I don’t see how I can get in.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='34' id='Page_34'></span><h1>ARCADIA</h1></div>

<p class='pindent'>The province of Arcadia proper, the country
between the Sea of Dreams and the Land of
Heart’s Desire (see map No. 2), is a large district
with well-defined boundaries.</p>

<p class='pindent'>The natural scenery is delightful, being chiefly
made up of flowery meads and sylvan dells
threaded by murmuring or babbling brooks.</p>

<p class='pindent'>The River Lethe flows through the country,
at one point dashing over a precipice in a great
Cataract. This is known as Lover’s Leap
and is, at times, the scene of fearful tragedies.</p>

<p class='pindent'>Despairing Swains threaten to end their lives
by dashing into the seething waters, unless their
capricious sweethearts will smile on them.</p>

<p class='pindent'>As the sweethearts usually smile, death rarely,
if ever, ensues.</p>

<p class='pindent'>Near the middle of the Country of Arcadia
is its capital, the town of Arcady, which is
described elsewhere.</p>

<p class='pindent'>Toward the Northwest lies Lotus Land, the
land where it is always afternoon, where the
charmed sunset lingers low adown in the red
West.</p>

<p class='pindent'><span class='pageno' title='35' id='Page_35'></span></p>

<div class='figcenter'>
<a href='images/i045f.jpg'><img src='images/i045.jpg' alt='' id='iid-0014' style='width:500px;height:auto;'/></a>
<p class='caption'>LAND OF HEARTS DESIRE—ARCADY and its Environs</p>
</div>

<p class='pindent'>The inhabitants are the mild-eyed, melancholy
Lotus-Eaters, whose cult is Indolence set
to Music.</p>

<p class='pindent'>The mossy banks of Lotus Land slope down
to the River Lethe, and propt on beds of amaranth
and moly the Lotus-Eaters delight to watch
the long bright river drawing slowly and hear
the dewy echoes calling and watch the emerald
color’d water falling, and things like that.</p>

<p class='pindent'>Across the river from Lotus Land lies the
Garden of the Hesperides. These enterprising
maidens do a brisk trade in Golden Apples,
but this district must not be confounded with
the Garden of Eden, as they are not the same.</p>

<p class='pindent'>Going southward, following the shores of
the Gulf of Time, we come to the Land of Yesterday—and
further South to Never Never
Land. These are beautiful and attractive spots
much sought by Lovers of retrospective and
imaginative tendencies.</p>

<p class='pindent'>On the West side of the river, just South of
Lotus Land, lies Wanderland, and nearby are
the Elysian Fields. These districts are usually
thronged with Lovers sauntering about in pairs,
each couple being entirely oblivious of all the
others.</p>

<p class='pindent'>Further South we come to Dangerous Ground,
which slopes down to Lover’s Leap. Near here
is Fool’s Paradise. This is a popular spot and
often most delicious adventures may be met
here. The dwellers in Fool’s Paradise are absurdly
happy, and sometimes climb a small
eminence in the center of the place, known as
the Height of Folly.</p>

<p class='pindent'>To the West is a range of Blue Mountains.
The despairing swain often climbs these, but
when he reaches Mount Hope the world looks
brighter and he soon gets back to the Happy
Valley.</p>

<div><span class='pageno' title='38' id='Page_38'></span><h1><a id='arca'></a>AN ARCADIAN LADY</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>&ensp;&ensp;&ensp;&ensp;MY LADY OF DELIGHT</p>
<p class='line'>&#160;</p>
<p class='line'>With roguish glances bright,</p>
<p class='line'>&ensp;&ensp;All on a summer’s day,</p>
<p class='line'>My Lady of Delight</p>
<p class='line'>&ensp;&ensp;She stole my heart away.</p>
<p class='line'>And though I humbly beg</p>
<p class='line'>&ensp;&ensp;And plead with her, alack!</p>
<p class='line'>My Lady of Delight</p>
<p class='line'>&ensp;&ensp;She will not give it back.</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Oh, Lady of Delight,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;The penalty is this—</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;If you would keep the heart you stole</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Then pay me with a kiss.</p>
<p class='line'>&#160;</p>
<p class='line'>My Lady of Delight,</p>
<p class='line'>&ensp;&ensp;She is a winsome thing;</p>
<p class='line'>She’s Queen of Summertime</p>
<p class='line'>&ensp;&ensp;And Princess of the Spring.</p>
<p class='line'>The glory of her smile,</p>
<p class='line'>&ensp;&ensp;The sunshine in her eyes,</p>
<p class='line'>Is like the dawn of breaking day</p>
<p class='line'>&ensp;&ensp;Across the morning skies.</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;To linger by her side</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Is such delicious bliss,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Methinks I’ll steal her heart from her,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;And pay her with a kiss.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='39' id='Page_39'></span><h1>ARCADY</h1></div>

<p class='pindent'>Arcady, the capital and chief city of the
province of Arcadia, is a thickly settled town,
with delightful outlying districts and suburban
surroundings.</p>

<hr class='tbk115'/>

<p class='pindent'><a id='prel'></a><span class='sc'><span style='font-size:larger'>Preliminary Ramble</span></span>: The stranger visiting
Arcady for the first time cannot do better than
to begin by a walk down Lovers’ Lane, where he
must surely be impressed by the shady trees and
luxuriantly blooming flowers. Although sometimes
flooded with morning sunshine, it is usually
evening in Arcady. The moon shines always,
sometimes a Honeymoon glows brightly, and
there are generally stars, or perhaps a tender
twilight with a fading sunset. On each side of
the lane are the small houses of the Love-in-a-Cottage
Colony. These cottages are rose-embowered
and have white dimity curtains tied
with blue ribbons. Crossing Lovers’ Lane at
right angles is Primrose Path, the fashionable
street of Arcady. The dwellings here are air
castles (mostly of Spanish architecture) and
dreams of marble halls. One of the most
celebrated mansions is Claude Melnotte’s:</p>

<div class='blockquote0r9'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'>A palace lifting to eternal summer</p>
<p class='line0'>Its marble walls, from out a glossy bower</p>
<p class='line0'>Of coolest foliage musical with birds,</p>
<p class='line0'>.&nbsp;.&nbsp;. while the perfumed light</p>
<p class='line0'>Stole through the mists of alabaster lamps,</p>
<p class='line0'>And every air was heavy with the sighs</p>
<p class='line0'>Of orange groves and music from sweet lutes,</p>
<p class='line0'>And murmurs of low fountains that gush forth</p>
<p class='line0'>I’ the midst of roses!</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<p class='pindent'>Farther on a shaft of moonlight falls on
Juliet’s balcony, and beyond rise the towers
and turrets of the Castle of La Joyeuse Garde.
Primrose Path leads to Fool’s Paradise, but
turning off to the West the traveler may stroll
through Paradise Alley to the Elysian Fields.
This beautiful spot is always fanned by south
winds, and among its flowery arbors may be
heard the songs of larks, nightingales, and turtle
doves. Beyond lies the Forest of Arden. Here
sturdy oaks covered with clinging vines abound;
but the tree most frequently seen is the Trysting
Tree. These trees are interesting to visitors
because of the symbols carved on their
bark. Here one may notice the entwined initials
of Aucassin and Nicolette; there the true
lover’s knot of Orpheus and Eurydice, or the
overlapping hearts of Abelard and Heloise.
Crossing a stile we wander by the brookside,
or pause for a while at the old Ruined Mill to
count the Shooting Stars.</p>

<div><span class='pageno' title='41' id='Page_41'></span><h1>FLORA</h1></div>

<p class='pindent'>The flowers in Arcady are perennial and
bloom all the year round. There are roses for
every stage of the game, from the blush rose to
the Bride Rose. There are moss roses for those
who love old-fashioned flowers, and the Last
Rose of Summer is a variety much admired by
Romanticists. There are many old-fashioned
gardens in Arcady, and here may be seen Bleeding
Hearts, Forget-me-nots, Love-Lies-Bleeding,
Pansies for Thoughts, and Rosemary for Remembrance.
There is also Heartsease and Rue.
There are lanes of lilacs and orchards of apple
bloom. There are daisy fields and groves of
orange trees in blossom. Wild flowers grow
everywhere and mistletoe is indigenous. In
the flower-shops may be bought orchids or violets
in wealthy effects. In the Souvenir Shops
one may find pressed or dried flowers, and
these are much in demand. Poppies grow wild
along the banks of the Lethe River, and the
moon-flower flourishes in many gardens.</p>

<h2 class='nobreak'><span class='pageno' title='43' id='Page_43'></span>THE ARCADIAN LANGUAGE OF FLOWERS</h2>

<div class='blockquote'>

<p class='line'><span class='sc'><span style='font-size:larger'>Asters</span></span>—I am very wealthy.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Stock</span></span>—I have been successful in Wall Street.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Phlox</span></span>—I shear lambs.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Rubber Plant</span></span>—I love to look at you.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Daisy</span></span>—You’re it.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Burr</span></span>—I’m stuck on you.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Oyster Plant</span></span>—Will you dine with me?</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Mint</span></span>—Do you live in Philadelphia?</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Anise</span></span>—Cordially yours.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Cosmos</span></span>—You’re all the world to me.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Marigold</span></span>—I mean business.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Poppy</span></span>—May I speak to your father?</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Orchids</span></span>—I am extravagant.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Palm</span></span>—Will you accept my hand?</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Tuberoses</span></span>—May you die soon.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Bluebell</span></span>—I will telephone you.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Mock Orange Blossoms</span></span>—I am only flirting with you.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Moon Flowers</span></span>—I’m just crazy about you.</p>
<p class='line'><span class='sc'><span style='font-size:larger'>Box</span></span>—Will you go to the opera with me?</p>

</div>

<div><span class='pageno' title='44' id='Page_44'></span><h1>HOTELS</h1></div>

<p class='pindent'>The hotels in Arcady are excellent, with
large and well-kept gardens, rose-embowered
lawns, ivy-hung turrets, and all requirements
of Romance.</p>

<p class='pindent'>In the interior of the town is Halcyon Hall,
owned by the Lovemore Company. This is
a new and sumptuous hotel, fitted up with a
careful attention to detail, which combines
eighteenth-century romance with nineteenth-century
convenience. Among its advantages
over the older hostelries are:</p>

<p class='pindent'>An Express Elevator to the Seventh Heaven,
and a Dream Interpreter Call and United
States Valentine Chute on every floor. It
is also lighted by an Automatic Electric
Moon.</p>

<p class='pindent'>Other important hotels are Orchid Court,
Honeymoon Hall, and Violet Villa.</p>

<p class='pindent'>The Grand Union is an old and well-known
hotel for married lovers. Less pretentious hostelries
are the bijou Villa Beaubelle, Starlight
Cottage, and Cupid’s Court.</p>

<p class='pindent'>There are many Inns, both quaint and interesting.
Their swinging sign-boards announce
such appropriate appellations as “Arms and
the Man,” “The Moon and I,” or “The World
is Mine.”</p>

<p class='pindent'>The St. Valentine Apartment House, situated
on Good Times Square, is a residential
building of the first class.</p>

<hr class='tbk116'/>

<p class='pindent'><span class='pageno' title='45' id='Page_45'></span>
<a id='rest'></a><span class='sc'><span style='font-size:larger'>Restaurants</span></span>: These institutions are not
specially popular in Arcady, as the inhabitants
rarely have large appetites. Indeed, waiters
often set artificial viands before their patrons,
and the difference is not observed.</p>

<p class='pindent'>Guests are always overcharged, as the true
Lover has no thought of what he is paying and
settles any bill without a murmur.</p>

<p class='pindent'>A very popular table d’hôte service consists
of Bread and Cheese and Kisses, and the partakers
thereof drink to each other only with
their eyes and leave a kiss in the cup, so that
wine is never asked for.</p>

<hr class='tbk117'/>

<p class='pindent'><span class='pageno' title='46' id='Page_46'></span>
<a id='swee'></a><span class='sc'><span style='font-size:larger'>Sweet Shops</span></span>: These shops are well patronized
and their wares include nectar, honey,
angel-cakes, taffy, kisses, and sweets of all sorts.
Orders are filled also for wedding-cakes, and
very soft drinks are served in loving-cups.</p>

<hr class='tbk118'/>

<h2 style='visibility:hidden; margin:0; font-size:0;' >HEARD IN ARCADY</h2>

<p class='pindent'><span class='pageno' title='47' id='Page_47'></span></p>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>&#160;</p>
<p class='line' style='font-size:1.3em;font-weight:bold;'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HEARD IN ARCADY</p>
<p class='line'>&#160;</p>
<p class='line' style='font-size:1.2em;'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MUSIC IN THE GRASS</p>
<p class='line'>&#160;</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;I</p>
<p class='line'>&#160;</p>
<p class='line'>In the summer of the summer, when the hazy air is sweet</p>
<p class='line'>With the breath of crimson clover, and the day’s a-shine with heat,</p>
<p class='line'>When the sky is blue and burning and the clouds a downy mass,</p>
<p class='line'>When the breeze is idly dawdling, there is music in the grass—</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Just a thistly, whistly sound</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;In the tangles near the ground;</p>
<p class='line'>And the flitting fairies often stop to listen as they pass.</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Just a lisping, whisp’ring tune,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Like a bumblebee’s bassoon,</p>
<p class='line'>In a far-away fantasia, is the music in the grass.</p>
<p class='line'>&#160;</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;II</p>
<p class='line'>&#160;</p>
<p class='line'>Would you know what makes the music? On each slender, quivering blade</p>
<p class='line'>There are notes and chords and phrases by the bees and crickets played;</p>
<p class='line'>And the grasshoppers and locusts strive each other to surpass</p>
<p class='line'>In their brave interpretation of the music in the grass.</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;By the roguish breezes tossed</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;You might think it would get lost,</p>
<p class='line'>But the careful fairies guard it, watching closely as they pass.</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;So on every summer day,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Sounding faint and far away,</p>
<p class='line'>Is the mystic, murmuring marvel of the music in the grass.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='49' id='Page_49'></span><h1>DITHYRAMB BY AN ARCADIAN POET</h1></div>

<div class='lgl' style=''> <!-- rend=';' -->
<p class='line'>TO A MILKMAID IN ARCADY</p>
<p class='line'>&#160;</p>
<p class='line'>I hail thee, O Milkmaid!</p>
<p class='line'>Goddess of the gaudy morn, Hail!</p>
<p class='line'>Across the mead tripping,</p>
<p class='line'>Invariably across the mead tripping,</p>
<p class='line'>The merry mead with cowslips blooming,</p>
<p class='line'>With daisies blooming,</p>
<p class='line'>The Milkmaid also more or less blooming!</p>
<p class='line'>I hail thee, O Milkmaid!</p>
<p class='line'>I recognize the value of thy pail in literature and art.</p>
<p class='line'>What were a pastoral poet without thee?</p>
<p class='line'>Oh, I know thee, Milkmaid!</p>
<p class='line'>I hail thy jaunty juvenescence.</p>
<p class='line'>I know thy eighteen summers and thy eternal springs.</p>
<p class='line'>Ay, I know thy trials!</p>
<p class='line'>I know how thou art outspread over pastoral poetry.</p>
<p class='line'>Rampant, ubiquitous, inevitable, thy riotings in pastoral poetry.</p>
<p class='line'>And in masterpieces of pastoral art!</p>
<p class='line'>How oft have I seen thee sitting;</p>
<p class='line'>On a tri-legged stool sitting;</p>
<p class='line'>On the wrong side of the cow sitting;</p>
<p class='line'>Garbed in all thy preposterous paraphernalia.</p>
<p class='line'>I know thy paraphernalia—</p>
<p class='line'>Yea, even thy impossible milkpail and thy improbable bodice.</p>
<p class='line'>Short-skirted Siren!</p>
<p class='line'>Big-hatted Beauty!</p>
<p class='line'>What were the gentle spring without thee?</p>
<p class='line'>I hail thee!</p>
<p class='line'>I hail thy vernality, and I rejoice in thy hackneyed ubiquitousness.</p>
<p class='line'>I hail the superiority of thy inferiorness, and</p>
<p class='line'>I lay at thy feet this garland of gratuitous</p>
<p class='line'>Hails!</p>
</div> <!-- end rend -->

<p class='pindent'><span class='pageno' title='51' id='Page_51'></span></p>

<div class='figcenter'>
<img src='images/i061.jpg' alt='' id='iid-0015' style='width:425px;height:auto;'/>
<p class='caption'>“ON THE WATER ALL SORTS OF BOATS ARE USED”</p>
</div>

<div><h1><a id='conv'></a>CONVEYANCES</h1></div>

<p class='pindent'>Arcady is oftenest traversed on foot, as
Lovers would rather stroll together through the
beautiful country than to ride, and many of
them walk on air. But, if desired, any vehicle
for two may be obtained at the Livery Stables.
Old-fashioned sidebar buggies and hansom cabs
are much in demand, and some swains still enjoy
a bicycle built for two.</p>

<p class='pindent'>On the water all sorts of boats are used.
On moonlight nights and balmy afternoons,
and also in the radiant glow of the early morning,
the lakes and streams are dotted with Shallops,
Cockle-Shells, or Gondolas, in which loving
pairs are idly drifting.</p>

<p class='pindent'>Also, at the Livery Stables, palfreys may
be engaged for eloping purposes, or chargers
may be hired by the Lover of medieval tastes,
and rope ladders are sold or rented for these
occasions.</p>

<p class='pindent'><span class='pageno' title='53' id='Page_53'></span></p>

<div class='figcenter'>
<img src='images/i063.jpg' alt='' id='iid-0016' style='width:425px;height:auto;'/>
<p class='caption'>CUPID’S HEARTWARE SHOP</p>
</div>

<div><span class='pageno' title='54' id='Page_54'></span><h1>SHOPS</h1></div>

<p class='pindent'>The Arcadian shops offer delightful wares to
a doting Lover. Flower-markets and candy-shops
show tempting display windows, and
book-stalls can supply presentation editions
of all the love-lore ever written from Sappho
to the present day. The jewel-shops are marvels
of splendor, and the Arcady arcades and
bazaars show love-tokens and souvenirs of all
sorts. An interesting place to visit is Dan
Cupid’s Heartware shop, where charms, love-philters,
and true-love knots are for sale. There
is also a repairing department, where broken
hearts are mended and made as good as new.
Here hearts may be repaired while you wait.</p>

<h2><a id='sale'></a>CUPID’S SALE</h2>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Amid their annual display</p>
<p class='line'>&ensp;&ensp;Of roses, doves, and darts,</p>
<p class='line'>Cupid and Co. announce today</p>
<p class='line'>&ensp;&ensp;A Bargain Sale of Hearts.</p>
<p class='line'>&#160;</p>
<p class='line'>Ho, luckless suitor lachrymose,</p>
<p class='line'>&ensp;&ensp;Ho, lacklove lovelorn swain,</p>
<p class='line'>Gallants rejected and morose,</p>
<p class='line'>&ensp;&ensp;Hearts you may here obtain.</p>
<p class='line'>&#160;</p>
<p class='line'>Rare specimens that must be sold,</p>
<p class='line'>&ensp;&ensp;One that is pure and true;</p>
<p class='line'>One, an antique, exceeding old,</p>
<p class='line'>&ensp;&ensp;But quite as good as new.</p>
<p class='line'>&#160;</p>
<p class='line'>And as we know there’ll be a crowd</p>
<p class='line'>&ensp;&ensp;Before the day is done,</p>
<p class='line'>No single buyer is allowed</p>
<p class='line'>&ensp;&ensp;To purchase more than one.</p>
<p class='line'>&#160;</p>
<p class='line'>A man might find ’mong broken hearts</p>
<p class='line'>&ensp;&ensp;A fitting mate for his;</p>
<p class='line'>Dan Cupid mends with skilful arts</p>
<p class='line'>&ensp;&ensp;And sells them cheap “as is.”</p>
<p class='line'>&#160;</p>
<p class='line'>Then as you take your walks abroad,</p>
<p class='line'>&ensp;&ensp;Ho, all ye lovers, stop!</p>
<p class='line'>And view these bargains which we laud</p>
<p class='line'>&ensp;&ensp;At Cupid’s Heartware Shop.</p>
<p class='line'>&#160;</p>
</div></div> <!-- end rend -->

<p class='pindent'>The gloveshop is a popular emporium, for
gloves are so often given or confiscated, for
souvenirs, that they must be continually replaced.</p>

<p class='pindent'>Mittens, also used as gifts, are for sale here.</p>

<p class='pindent'>In the bookshops the best selling titles are
“How to Make Love and How to Keep It,”
“Sonnets from the Portuguese,” “The Lover’s
Lexicon.”</p>

<p class='pindent'><span class='pageno' title='57' id='Page_57'></span></p>

<h2><a id='bill'></a>CUPID’S BILL</h2>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>One summer day, poor little Cupid</p>
<p class='line'>&ensp;&ensp;Sat sadly poring o’er his slate.</p>
<p class='line'>“I fear I must be very stupid,”</p>
<p class='line'>&ensp;&ensp;He said, and shook his curly pate.</p>
<p class='line'>&#160;</p>
<p class='line'>And then he ran away to Venus.</p>
<p class='line'>&ensp;&ensp;“Dear mother, help me! if you will,</p>
<p class='line'>I’m sure,” he cried, “that we between us</p>
<p class='line'>&ensp;&ensp;Can straighten out Sir Strephon’s bill.”</p>
<p class='line'>&#160;</p>
<p class='line'>Said Venus, “Just as I expected!</p>
<p class='line'>&ensp;&ensp;You always do make such a fuss</p>
<p class='line'>With bills!” But soon it was corrected,</p>
<p class='line'>&ensp;&ensp;And the account was rendered thus:</p>
<p class='line'>&#160;</p>
<p class='line'>Sir Strephon—</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;To Dan Cupid, Dr.,</p>
<p class='line'>&ensp;&ensp;To shooting at six maidens’ hearts.</p>
<p class='line'>To making one blue silken fetter.</p>
<p class='line'>&ensp;&ensp;To half a dozen blunted darts.</p>
<p class='line'>&#160;</p>
<p class='line'>To seven arrows, lost or broken.</p>
<p class='line'>&ensp;&ensp;To one heart by a blunder hit.</p>
<p class='line'>To one new bow. To one love-token.</p>
<p class='line'>&ensp;&ensp;Terms cash. No credit. Please remit.</p>
<p class='line'>&#160;</p>
<p class='line'>“Hasten,” cried Venus, “do not tarry!</p>
<p class='line'>&ensp;&ensp;Today is Strephon’s wedding-day.</p>
<p class='line'>Unless he settle e’er he marry,</p>
<p class='line'>&ensp;&ensp;Cupid may whistle for his pay.”</p>
</div></div> <!-- end rend -->

<p class='pindent'><span class='pageno' title='59' id='Page_59'></span></p>

<div class='figcenter'>
<img src='images/i069.jpg' alt='' id='iid-0017' style='width:425px;height:auto;'/>
<p class='caption'>“THE GROVES AND DELLS ARE DECORATED WITH BEAUTIFUL STATUES”</p>
</div>

<div><h1><a id='inst'></a>INSTITUTIONS AND PUBLIC BUILDINGS</h1></div>

<p class='pindent'><span class='pageno' title='58' id='Page_58'></span></p>

<p class='pindent'><a id='plac'></a><span class='sc'><span style='font-size:larger'>Places of Interest</span></span>: A walk or drive round
Arcady will reveal many points of interest to the
traveler. The groves and dells are decorated
with beautiful statues, among which may be
noticed Venus, Eros, Psyche, Adonis, Lothario,
Dulcinea, Byron, Mrs. Browning, and lovers of
all times and ages.</p>

<p class='pindent'>Around the corner there is a little church with
a chime of wedding bells.</p>

<hr class='tbk119'/>

<p class='pindent'><a id='post'></a><span class='sc'><span style='font-size:larger'>Post-Office</span></span>: The post-office is in the heart
of an old hollow oak tree at the corner of Lovers’
Lane and Great Joy Street. It is always much
used, but on St. Valentine’s Day the accommodations
are quite inadequate.</p>

<p class='pindent'><a id='exch'></a><span class='sc'><span style='font-size:larger'>Heart Exchange</span></span>: The Heart Exchange is a time-honored institution,
and a circulating library of hearts is
patronized by summer girls and college youths.
The Poet’s Corner (corner of Grub Street and
Maiden Lane) is always a crowded spot, and
the Photograph Galleries are well patronized.</p>

<div class='blockquote0r9'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'>&ensp;&ensp;&ensp;THE INTERCEPTED VALENTINE</p>
<p class='line0'><span class='pageno' title='62' id='Page_62'></span></p>
<p class='line'>&#160;</p>
<p class='line0'>Little Bo-peep, will you be mine?</p>
<p class='line0'>I want you for my Valentine.</p>
<p class='line0'>You are my choice of all the girls,</p>
<p class='line0'>With your blushing cheeks and your fluttering curls,</p>
<p class='line0'>With your ribbons gay and your kirtle neat,</p>
<p class='line0'>None other is so fair and sweet.</p>
<p class='line0'>Little Bo-peep, let’s run away,</p>
<p class='line0'>And marry each other on Midsummer Day;</p>
<p class='line0'>And ever to you I’ll be fond and true.</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Your faithful Valentine,</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Little Boy Blue.</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<hr class='tbk120'/>

<p class='pindent'><a id='bank'></a><span class='sc'><span style='font-size:larger'>Banks</span></span>: There are many banks. One of the
best known is the bank on which the wild thyme
grows, and another almost equally noted is the
bank on which the moonlight slept so sweetly
in Jessica’s time.</p>

<p class='pindent'>There is a Rainy-Day Bank, much patronized
by thrifty young Lovers.</p>

<p class='pindent'>Every day is Bank Holiday in Arcady.</p>

<hr class='tbk121'/>

<p class='pindent'><a id='hosp'></a><span class='sc'><span style='font-size:larger'>The Hospital</span></span>: The hospital is a fine up-to-date
building, for the benefit of lovesick swains.
It is situated on the corner of Heartbreak
Avenue and Despair Street, and is in charge
of skilled medical men and well-trained nurses.</p>

<p class='pindent'>Special wards are provided for the moonstruck,
and padded cells for Swains suffering from
Love’s delirium, or those frantic Lovers who have
been bitten by the Green-Eyed Monster.</p>

<p class='pindent'>Emergency Specialists provide first aid to
the smitten, and Anatomical Experts attend
those who have had their heads turned, or who
have fallen over head and ears in love; while
clever Oculists look after those whom Love
has made blind, or whose eyes are in a fine frenzy
rolling.</p>

<hr class='tbk122'/>

<p class='pindent'><a id='weat'></a><span class='sc'><span style='font-size:larger'>The Weather Bureau</span></span>: The weather bureau
in Arcady is a most unreliable affair.</p>

<p class='pindent'>If a frown cloud his lady’s face, the sign to
the Lover is: “Fair and Slightly Cooler.”</p>

<p class='pindent'>If he fail in any attention she expected, the sign
may be read: “About this time expect a frost.”</p>

<p class='pindent'><span class='pageno' title='63' id='Page_63'></span></p>

<div class='figcenter'>
<img src='images/i073.jpg' alt='' id='iid-0018' style='width:425px;height:auto;'/>
<p class='caption'>WEATHER BUREAU<br/>“FAIR AND SLIGHTLY COOLER”</p>
</div>

<hr class='tbk123'/>

<p class='pindent'><span class='pageno' title='65' id='Page_65'></span></p>

<p class='pindent'><a id='camp'></a><span class='sc'><span style='font-size:larger'>The Campo Santo</span></span>: The Campo Santo is a
most romantic and enjoyable spot. From
earliest times it has been the habit of Lovers
to wander through a graveyard—and the
cemetery in Arcady so abounds in romantic
memories that it is an Elysium in itself. The
graves are kept green of such historic lovers as
Paris and Helen, Paolo and Francesca, Hero
and Leander; while the monument of Romeo
and Juliet is a veritable shrine and is always
decked with fresh flowers.</p>

<hr class='tbk124'/>

<p class='pindent'><a id='hall'></a><span class='sc'><span style='font-size:larger'>The Hall of Fame</span></span>: Arcady never tires of
honoring the memory of her eminent citizens.</p>

<p class='pindent'>Aside from the tombstones in the Campo
Santo and the statues in the Public Gardens,
there are Monuments in the Hall of Fame that
again perpetuate the memory of departed Heroes
and Heroines of Romance.</p>

<p class='pindent'>A tablet in bas-relief shows the despairing
Huguenot Lovers, while next it stands a sculptured
group of “Darby and Joan.”</p>

<p class='pindent'>The lovely Pastoral Work, “Corydon and
Phyllis,” is opposite the equally charming piece,
“Strephon and Chloe.”</p>

<p class='pindent'>Fair Margaret and Sweet William sleep in
effigy, and noted Lovers of all climes and ages
are represented.</p>

<div><span class='pageno' title='67' id='Page_67'></span><h1>BALLADE OF ARCADY</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Oh, Life sings in a joyous strain</p>
<p class='line'>&ensp;&ensp;When Cupid holds our hearts in fee;</p>
<p class='line'>The days such happiness contain,</p>
<p class='line'>&ensp;&ensp;The nights bring merry revelry.</p>
<p class='line'>&ensp;&ensp;Our souls are tuned to highest key,</p>
<p class='line'>Our hearts from joy know not surcease;—</p>
<p class='line'>&ensp;&ensp;Yet this one truth comes home to me,</p>
<p class='line'>The dearest gift of Love is Peace.</p>
<p class='line'>&#160;</p>
<p class='line'>When many roguish smiles enchain,</p>
<p class='line'>&ensp;&ensp;When many voices chime in glee,</p>
<p class='line'>An interest in them all I feign,</p>
<p class='line'>&ensp;&ensp;And each the fairest seems to be.</p>
<p class='line'>&ensp;&ensp;But one I seek all earnestly,</p>
<p class='line'>As Jason sought the Golden Fleece,</p>
<p class='line'>&ensp;&ensp;Whose heart would fain agree with me,</p>
<p class='line'>The dearest gift of Love is Peace.</p>
<p class='line'>&#160;</p>
<p class='line'>My fond quest has not been in vain,</p>
<p class='line'>&ensp;&ensp;Shyly she listened to my plea;</p>
<p class='line'>And Cupid, peeping at us twain,</p>
<p class='line'>&ensp;&ensp;Smiled as I knelt on bended knee.</p>
<p class='line'>&ensp;&ensp;From gay enchantments now I’m free,</p>
<p class='line'>I feel their trifling charms decrease,</p>
<p class='line'>&ensp;&ensp;From all their blandishments I flee,</p>
<p class='line'>The dearest gift of Love is Peace.</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;L’ENVOI</p>
<p class='line'>&#160;</p>
<p class='line'>Sweetheart, we’ve done with coquetry,</p>
<p class='line'>&ensp;&ensp;With coy flirtation and caprice;</p>
<p class='line'>All these are past,—and now we see</p>
<p class='line'>&ensp;&ensp;The dearest gift of Love is Peace.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='68' id='Page_68'></span><h1>AMUSEMENTS</h1></div>

<p class='pindent'>The Mayday Plaisance is a large Amusement
Park situated on Good Times Square.</p>

<p class='pindent'>This is frequented by light-hearted and frivolous-minded
young Arcadians, who enjoy the
amusements provided.</p>

<hr class='tbk125'/>

<p class='pindent'>There is a Captive Aeroplane in the Seventh
Heaven, which makes flights every half-hour.
The stay in the Seventh Heaven is necessarily
short, but enthusiastic Lovers go often.</p>

<hr class='tbk126'/>

<p class='pindent'>The Descent Into the Inferno is another
diversion, patronized by intense or quick-tempered
pairs.</p>

<p class='pindent'><span class='pageno' title='69' id='Page_69'></span></p>

<div class='figcenter'>
<img src='images/i079.jpg' alt='' id='iid-0019' style='width:425px;height:auto;'/>
<p class='caption'>“THE MAYDAY PLAISANCE IS A LARGE AMUSEMENT PARK”</p>
</div>

<p class='pindent'>The Well of Truth is an interesting feature.</p>

<p class='pindent'>Looking down into its crystal-clear depths,
Lovers learn the truth about each other. This
often causes much merriment, or the reverse.
(On the whole it is a dangerous pastime.)</p>

<hr class='tbk127'/>

<p class='pindent'>Joy Rides are usually clandestine and secret.
They often end disastrously, but this is part
of the fun. Any vehicle may be used and any
speed maintained. Oftenest it is a slow, merely
moving crawl, but again it may be a break-neck
dash. Joy Rides have been popular in Arcady
for many centuries. Some have been immortalized
in Song and Story. Robert Browning’s
“Last Ride Together” is a stirring tale of a
Joy Ride. See also “The Ride of Lochinvar”
and “The Young Lady of Niger.”</p>

<hr class='tbk128'/>

<p class='pindent'>Bands of Serenaders are often heard in the
Mayday Plaisance. These are of troubadour
effect and sing sad or tender love songs to the
accompaniment of such instruments as lutes,
guitars, bassoons, etc. The audience (in pairs)
are ensconced in vine-hung balconies and thus
enjoy the appropriate music.</p>

<p class='pindent'>Dreamland is a part of the Mayday Plaisance,
and here young lovers may indulge in
fairest Day-dreams.</p>

<p class='pindent'>Dream Interpreters are here, who are skilled
in interpreting Love’s Young Dream.</p>

<p class='pindent'>One may choose to have a Midsummer-Night’s
Dream, or he may dream that he dwelt in Marble
Halls, and, if waking is a pain, he may dream
again. Or, if Love’s Dream is o’er, he may ask
to have a change come o’er the spirit of his
Dream.</p>

<hr class='tbk129'/>

<p class='pindent'>Another diversion is the Illusion known as
the Bridal Veil. This fools many.</p>

<p class='pindent'><span class='pageno' title='73' id='Page_73'></span></p>

<div class='figcenter'>
<img src='images/i083.jpg' alt='' id='iid-0020' style='width:325px;height:auto;'/>
<p class='caption'>A SERENADER</p>
</div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line' style='margin-top:1.5em;font-size:1.2em;font-weight:bold;'><a id='olds'></a>THE OLD STORY</p>
<p class='line'>&#160;</p>
<p class='line'>Tonight I met Rose,</p>
<p class='line'>&ensp;&ensp;So it’s all up with Polly.</p>
<p class='line'>She bewitches the beaux,</p>
<p class='line'>And tonight I met Rose;</p>
<p class='line'>Now who would suppose</p>
<p class='line'>&ensp;&ensp;<span class='it'>I’d</span> be caught by such folly?</p>
<p class='line'>But tonight I met Rose,</p>
<p class='line'>&ensp;&ensp;So it’s all up with Polly.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='75' id='Page_75'></span><h1>LANGUAGE</h1></div>

<p class='pindent'>For those who wish to derive the greatest
possible pleasure from a visit to Arcady, some
acquaintance with the Language of Love is indispensable.
This can best be acquired by a
careful study of poetry and romantic novels,
and about four hours’ practise every day.
(“The Lover’s Phrase Book” is a useful little
treatise, as it gives four thousand terms of endearment,
alphabetically arranged, and is small
enough to be carried in the pocket, for ready
reference, in case of love at first sight.)</p>

<p class='pindent'>The Language of Love is largely composed of
adjectives and expletives.</p>

<p class='pindent'>Hyperbole and other flowery figures of speech
abound.</p>

<p class='pindent'>It is also peculiarly rich in idioms, most of
which are generally unintelligible, being made
up by those who use them.</p>

<hr class='tbk130'/>

<p class='pindent'>The beginner usually thus learns the first
principles of conjugation.</p>

<p class='pindent'>First Person, I love. This is a joy and a
revelation and he is the happiest man on earth.</p>

<p class='pindent'>Second Person, Thou lovest. This completes
his rapture and he is in Heaven.</p>

<p class='pindent'>Third Person, He loves. This is known as
the Tertium Quid and casts the beginner into
the depths of Hades.</p>

<div><span class='pageno' title='76' id='Page_76'></span><h1>SOME ARCADIAN BROMIDIOMS</h1></div>

<p class='pindent'>“When did you first begin to love me?”</p>

<p class='pindent'>“Do you love me as much as ever?”</p>

<p class='pindent'>“You don’t love me any more.”</p>

<p class='pindent'>“I never loved any girl but you.”</p>

<p class='pindent'>“Oh, I thought I loved him, but now I know
it wasn’t really love.”</p>

<p class='pindent'>“They think they’re happy, but they don’t
know what love means,—as we do.”</p>

<p class='pindent'>“Do you really think I’m pretty?”</p>

<p class='pindent'>“I don’t see why you love me.”</p>

<p class='pindent'>“Nobody in all the world ever loved as we
do.”</p>

<p class='pindent'>“How did you come to love me in the first
place?”</p>

<p class='pindent'>“Would you forgive me anything?”</p>

<div><h1>EXERCISE FOR THE LANGUAGE STUDENT</h1></div>

<p class='pindent'><span class='pageno' title='77' id='Page_77'></span></p>

<p class='line' style='text-align:left;margin-left:5em;margin-top:2em;'>A VERY PRETTY QUARREL</p>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>He</span>—Tell me you love me, pretty poppet</p>
<p class='line0'><span class='sc'>She</span>—I love you more than you love me!</p>
<p class='line0'><span class='sc'>He</span>—Oh, no! Excuse me, my own moppet;</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;But truly, sweet, that cannot be!</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>She</span>—What cannot be?</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;That you <span class='it'>could</span> love me</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;More or as much as I love you.</p>
<p class='line0'><span class='sc'>She</span>—Ah, so you set yourself above me?</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>He</span>—No, no! not that!</p>
<p class='line0'><span class='sc'>She</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Oh, yes, you do!</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>He</span>—Now do be reasonable, dearie.</p>
<p class='line0'><span class='sc'>She</span>—  I will be, sir, if you’ll allow</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;I love you best.</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;You make me weary!</p>
<p class='line0'><span class='sc'>She</span>—Well, just admit it, anyhow.</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>He</span>—I won’t!</p>
<p class='line0'><span class='sc'>She</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If you <span class='it'>did</span> love me best, dear,</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;You’d say whatever I might ask,</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;<span class='it'>Because</span> I ask it.</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Chuck the rest, dear;</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;You’ve set me now an easy task.</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>She</span>—I love you best! Is not that so, love?</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;It is; and thus we meet the test</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;I say what you command, you know, love,</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;Only because <span class='it'>I</span> love <span class='it'>you</span> best!</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>She</span>—You horrid thing!</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Why, what now, Janet?</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;I said just what you asked me to!</p>
<p class='line0'><span class='sc'>She</span>—You’re mean and cruel!</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;You began it!</p>
<p class='line0'><span class='sc'>She</span>— I didn’t! You did!</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;No; ’twas you!</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div class='blockquote'>

<div class='poetry-container' style=''><div class='lgp'> <!-- rend=';' -->
<p class='line0'><span class='sc'>He</span>—Come, dearie, stop this silly snarling;</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;You <span class='it'>do</span> love most, I spoke in jest;</p>
<p class='line0'><span class='sc'>She</span>—No, no, <span class='it'>your</span> love is greatest, darling;</p>
<p class='line0'><span class='sc'>He</span>— &nbsp;&nbsp;&nbsp;&nbsp;No, my sweetheart, <span class='it'>you</span> love <span class='it'>me</span> best!</p>
<p class='line'>&#160;</p>
<p class='line0'>&ensp;&ensp;&ensp;&ensp;(<span class='it'>Repeat ad lib. D. C. al fine</span>)</p>
</div></div> <!-- end poetry block --><!-- end rend -->

</div>

<div><span class='pageno' title='79' id='Page_79'></span><h1>DEGREES OF LOVE</h1></div>

<table id='tab3' summary='' class='center'>
<colgroup>
<col span='1' style='width: 6em;'/>
<col span='1' style='width: 6em;'/>
<col span='1' style='width: 1em;'/>
</colgroup>
<tr><td class='tab3c1 tdStyle2'>Positive:</td><td class='tab3c2 tdStyle2'>My Own!</td><td class='tab3c3 tdStyle2'></td></tr>
<tr><td class='tab3c1 tdStyle2'>Comparative:</td><td class='tab3c2 tdStyle2'>My Owner!</td><td class='tab3c3 tdStyle2'></td></tr>
<tr><td class='tab3c1 tdStyle2'>Superlative:</td><td class='tab3c2 tdStyle2'>My Ownest!</td><td class='tab3c3 tdStyle2'></td></tr>
</table>

<div><h1 class='nobreak'><a id='def'></a>DEFINITIONS</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Forever:  until tomorrow.</p>
<p class='line'>Never:  until tomorrow.</p>
<p class='line'>Yes:  no.</p>
<p class='line'>No:  yes.</p>
<p class='line'>Keepsake:  any worthless piece of property.</p>
<p class='line'>Absence:  a heart stimulant.</p>
<p class='line'>Alone:  (for one) misery.</p>
<p class='line'>Alone:  (for two) joy.</p>
<p class='line'>X X X:  kisses.</p>
<p class='line'>o o o:  kisses.</p>
</div></div> <!-- end rend -->

<div><h1><a id='thes'></a>THE SPELLING LESSON</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>&ensp;&ensp;When Venus said: “Spell <span class='it'>no</span> for me,”</p>
<p class='line'>“N-O,” Dan Cupid wrote with glee,</p>
<p class='line'>&ensp;&ensp;And smiled at his success;</p>
<p class='line'>&#160;</p>
<p class='line'>“Ah, child,” said Venus, laughing low,</p>
<p class='line'>“We women do not spell it so,</p>
<p class='line'>&ensp;&ensp;We spell it Y-E-S.”</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='80' id='Page_80'></span><h1>LOVE IN ARCADY</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>What to us is time or space,</p>
<p class='line'>Hours of absence, days of grace;</p>
<p class='line'>&ensp;&ensp;As we rule and reign alone</p>
<p class='line'>&ensp;&ensp;In a kingdom of our own?</p>
<p class='line'>Love like ours is up to date,</p>
<p class='line'>Sneers at fortune, conquers Fate;</p>
<p class='line'>&ensp;&ensp;Makes the loves of early times</p>
<p class='line'>&ensp;&ensp;Look like three bright, shiny dimes.</p>
<p class='line'>Couldn’t we give cards and spades</p>
<p class='line'>To historic lovers’ shades!</p>
<p class='line'>&ensp;&ensp;Easily our love can beat</p>
<p class='line'>&ensp;&ensp;That of Faust and Marguerite.</p>
<p class='line'>Heloise and Abelard</p>
<p class='line'>Stooped to tricks that we’d discard;</p>
<p class='line'>&ensp;&ensp;Orpheus and Eurydice</p>
<p class='line'>&ensp;&ensp;Only knew a simple way;</p>
<p class='line'>Launcelot and Guinevere</p>
<p class='line'>Wondering would our love-songs hear,</p>
<p class='line'>&ensp;&ensp;And a few things we might show</p>
<p class='line'>&ensp;&ensp;Juliet and Romeo.</p>
<p class='line'>Hero we’d give pointers to,</p>
<p class='line'>Teach Leander how to woo.</p>
<p class='line'>&ensp;&ensp;I could coach Semiramis,</p>
<p class='line'>&ensp;&ensp;Trojan Helen teach to kiss.</p>
<p class='line'>You’d teach Dante and Petrarch,</p>
<p class='line'>Distance Cleopatra’s Mark.</p>
<p class='line'>&ensp;&ensp;Oh, the loves of bygone days</p>
<p class='line'>&ensp;&ensp;Were not up to modern ways!</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='81' id='Page_81'></span><h1>INSENSIBILITY</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>They tell me that the day is fair,</p>
<p class='line'>With blossoms springing everywhere;</p>
<p class='line'>I do not know, I cannot say,</p>
<p class='line'>For thou, my love, art far away.</p>
<p class='line'>&#160;</p>
<p class='line'>They tell me that the birds sing sweet,</p>
<p class='line'>That brooklets ripple at my feet;</p>
<p class='line'>I do not know, I cannot hear,</p>
<p class='line'>For thou, my love, art nowhere near.</p>
<p class='line'>&#160;</p>
<p class='line'>They tell me that the sky is blue,</p>
<p class='line'>The hills take on a purple hue;</p>
<p class='line'>I do not know, I cannot see,</p>
<p class='line'>For thou, my love, art not with me.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='82' id='Page_82'></span><h1><a id='biog'></a>BIOGRAPHICAL SKETCH OF CUPID</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Ever so many years ago,</p>
<p class='line'>When Cupid was quite young, you know,</p>
<p class='line'>There were no schools at all, and so,</p>
<p class='line'>&ensp;&ensp;Athirst for information,</p>
<p class='line'>Each day the funny little chap</p>
<p class='line'>Would climb up in Dame Venus’ lap,</p>
<p class='line'>And study from a book or map</p>
<p class='line'>&ensp;&ensp;To get his education.</p>
<p class='line'>&#160;</p>
<p class='line'>He traced in his Geography</p>
<p class='line'>The Primrose Path to Arcady;</p>
<p class='line'>He bounded Agapemone,</p>
<p class='line'>&ensp;&ensp;And Flowery Fields Elysian.</p>
<p class='line'>Then, his Arithmetic begun,</p>
<p class='line'>He learned that one and one make one,</p>
<p class='line'>That one from two leaves simply none,</p>
<p class='line'>&ensp;&ensp;And Love abhors division.</p>
<p class='line'>&#160;</p>
<p class='line'>From Botany he learned to know</p>
<p class='line'>The value of the mistletoe,</p>
<p class='line'>And why a rose is cherished so,</p>
<p class='line'>&ensp;&ensp;Even when it is faded.</p>
<p class='line'>Rhetoric taught him how to say</p>
<p class='line'>Fair speeches in a pretty way;</p>
<p class='line'>And if a lass should murmur “Nay,”</p>
<p class='line'>&ensp;&ensp;How she must be persuaded.</p>
<p class='line'>&#160;</p>
<p class='line'>On History’s thrilling page he met</p>
<p class='line'>With Romeo and Juliet,</p>
<p class='line'>Brave Aucassin and Nicolette,</p>
<p class='line'>&ensp;&ensp;And other hearts devoted.</p>
<p class='line'>Then in Astronomy he found</p>
<p class='line'>What ’tis that makes the world go round,</p>
<p class='line'>And why the moon is so renowned,</p>
<p class='line'>&ensp;&ensp;And shooting stars are noted.</p>
<p class='line'>&#160;</p>
<p class='line'>In Grammar Cupid had to say</p>
<p class='line'>“I love, thou lov’st, he loves,” each day,</p>
<p class='line'>And learn of hearts declined, that they</p>
<p class='line'>&ensp;&ensp;Can still be conjugated.</p>
<p class='line'>He studied the Industrial Arts,</p>
<p class='line'>Became adept at mending hearts,</p>
<p class='line'>Right skilfully he fashioned darts,</p>
<p class='line'>&ensp;&ensp;And wondrous love-knots plaited.</p>
<p class='line'>&#160;</p>
<p class='line'>A Magic course he had to take,</p>
<p class='line'>And for sad hearts that ache or break</p>
<p class='line'>Love-philters strange he learned to make</p>
<p class='line'>&ensp;&ensp;From musk and myrrh and myrtle.</p>
<p class='line'>He studied deeply souls that yearned,</p>
<p class='line'>Investigated hearts that burned,</p>
<p class='line'>And all the tricks and habits learned</p>
<p class='line'>&ensp;&ensp;Of doves, both ring and turtle.</p>
<p class='line'>&#160;</p>
<p class='line'>And so Dan Cupid is no fool,</p>
<p class='line'>But he’s well versed in love and rule,</p>
<p class='line'>Although he never went to school</p>
<p class='line'>&ensp;&ensp;And never went to college.</p>
<p class='line'>He’s blind, and yet the rogue can see</p>
<p class='line'>A thousand times as well as we;</p>
<p class='line'>And that’s how Cupid comes to be</p>
<p class='line'>&ensp;&ensp;A Paragon of Knowledge.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='84' id='Page_84'></span><h1>POLITICAL NOTES</h1></div>

<p class='pindent'>Arcady is an Absolute Monarchy. It is
under Home Rule, and Home is where the
Heart is.</p>

<p class='pindent'>Each citizen is a King or Queen, and rules
one subject.</p>

<p class='pindent'>Any Monarch may be deposed suddenly and
supplanted by another. Beside being a Monarch
each citizen is a slave, and thus the balance
of power is preserved.</p>

<p class='pindent'>The Declaration of Dependence is signed by
all good Arcadians.</p>

<div><h1 class='nobreak'><a id='laws'></a>ARCADIAN LAWS</h1></div>

<p class='pindent'>Be sure you’re right then lose your head.
A fool and his money are soon married.
A little debutante is a dangerous thing.
Proposals make cowards of us all.
There’s no fool like a bold fool.
The longest way round is the sweetest way home.
One good kiss deserves another.
’Tis love that makes the man come round.
Kisses speak louder than words.
People who live in glass houses shouldn’t hold hands.
The woman who deliberates is won.
Where there’s a will there’s a wedding.</p>

<div><span class='pageno' title='85' id='Page_85'></span><h1>COSTUMES</h1></div>

<p class='pindent'>There is a tradition of Arcadian simplicity in
dress, but it is not always observed. The men,
unless Poets, are often most careful dressers,
and the women deck themselves in whatever
garb they deem most attractive to men.</p>

<p class='pindent'>White muslin with blue ribbons is a popular
costume, and “some sort of white, shimmering
stuff” is much used for gowns.</p>

<p class='pindent'>Some women are clever enough to please the
men by wearing all black or all white, and the
hats are invariably large black ones or broad-leafed,
rose-decked straws.</p>

<p class='pindent'>Sunshades, fans, floating scarfs, and many
coy adjuncts or fripperies of dress are seen,
and flowers are much worn or carried.</p>

<div><span class='pageno' title='86' id='Page_86'></span><h1><a id='then'></a>THEN AND NOW</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>Oh, would I had lived in Arcadian days,</p>
<p class='line'>When maidens had not such extravagant ways,</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;When Daphne and Doris</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;And Chloe and Chloris</p>
<p class='line'>Would laugh with delight o’er a ribbon of blue</p>
<p class='line'>Or a glittering buckle to wear on a shoe.</p>
<p class='line'>&#160;</p>
<p class='line'>But the girl of today cares nothing at all</p>
<p class='line'>For a trivial gift that is simple or small;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;And Ethel and Bessie</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;And Gertrude and Jessie</p>
<p class='line'>Will only approve of the presents I’ve brought</p>
<p class='line'>If I spend (and I <span class='it'>shall</span>!) ten times more than I ought.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='87' id='Page_87'></span><h1>WALKS</h1></div>

<p class='pindent'>Delightful walks abound in Arcady and
its environs.</p>

<p class='pindent'>If unaccustomed to its devious ways, it is
perhaps better to engage the services of an
experienced Guide, which may be had for a
song.</p>

<p class='pindent'>Nature Lovers enjoy the walk out on the old
Romany Road, across the Field of Four-Leafed
Clover toward the Forest of Arden.</p>

<p class='pindent'>A more Sentimental Journey is along the
Primrose Way, up Primrose Hill, and on, beyond
the Night, across the Day, thus following
the Course of True Love. Though this never
runs smooth, it is often attempted by young
Lovers, who sometimes persevere along the way
and sometimes get sidetracked.</p>

<p class='pindent'>To Friends’ Shipyard is a pleasant stroll for
an idle summer day. Here may be seen the
Sailor laddies making knots. True lover’s knots
may be bought here and carried away as
souvenirs.</p>

<p class='pindent'>Another attractive walk is along Wall Street.
A delightful wall, full of nooks and crannies
and overhung with blossoming vines, runs all
along this street. At the corner of Moonshine
Avenue is a beautiful monument representing
Pyramus and Thisbe.</p>

<hr class='tbk131'/>

<p class='pindent'>A pleasant short ramble is along Amourette
Avenue, past the Cosy Corners, to a Bower of
Roses by Bendemeer’s Stream. The stream
may be crossed by the Rustic Bridges or by the
Stepping Stones, both being equally romantic.</p>

<p class='pindent'><span class='pageno' title='89' id='Page_89'></span></p>

<div class='figcenter'>
<img src='images/i099.jpg' alt='' id='iid-0021' style='width:500px;height:auto;'/>
<p class='caption'>“TRUE LOVER’S KNOTS MAY BE BOUGHT HERE”</p>
</div>

<div><span class='pageno' title='91' id='Page_91'></span><h1><a id='oldv'></a>OLD VALENTINES</h1></div>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>How rapidly Time shifts the scene.</p>
<p class='line'>&ensp;&ensp;Again it is St. Cupid’s day,</p>
<p class='line'>And I must send to my Rosine</p>
<p class='line'>&ensp;&ensp;A gorgeous valentine bouquet.</p>
<p class='line'>&ensp;&ensp;Last year I sent the same to May—</p>
<p class='line'>Heigh-ho! I’ve led a blithe career—</p>
<p class='line'>&ensp;&ensp;They’d make a rather long array,</p>
<p class='line'>My valentines of yester-year.</p>
<p class='line'>&#160;</p>
<p class='line'>In years beginning with 18—</p>
<p class='line'>&ensp;&ensp;I was unfettered, free, and gay</p>
<p class='line'>Each maiden seemed to me a queen,</p>
<p class='line'>&ensp;&ensp;And to each one my court I’d pay.</p>
<p class='line'>&ensp;&ensp;Now I’m engaged. Ah, well-away!</p>
<p class='line'>Rosina <span class='it'>is</span> a perfect dear,</p>
<p class='line'>&ensp;&ensp;But I would better not display</p>
<p class='line'>My valentines of yester-year.</p>
<p class='line'>&#160;</p>
<p class='line'>No memories shall come between</p>
<p class='line'>&ensp;&ensp;My love and me. And I’ll essay</p>
<p class='line'>To keep her life calm and serene,</p>
<p class='line'>&ensp;&ensp;And love her when she’s old and gray:</p>
<p class='line'>&ensp;&ensp;Her lightest wish I will obey,</p>
<p class='line'>But still—I hope she’ll never hear</p>
<p class='line'>&ensp;&ensp;Those verses that I wrote in play,</p>
<p class='line'>My valentines of yester-year.</p>
<p class='line'>&#160;</p>
<p class='line'>&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;L’ENVOI</p>
<p class='line'>&#160;</p>
<p class='line'>Cupid, my secrets ne’er betray,</p>
<p class='line'>&ensp;&ensp;Let me not realize my fear;</p>
<p class='line'>And may they be destroyed, I pray,</p>
<p class='line'>&ensp;&ensp;My valentines of yester-year.</p>
</div></div> <!-- end rend -->

<div><span class='pageno' title='93' id='Page_93'></span><h1>BUSINESS SECTION</h1></div>

<p class='pindent'>The Business Section of Arcady is on Wise
Acre Square, just South of Wall Street. Here
may be found the Great Heart Trust, the Unbounded
Trust Company, and the offices of
the Trust Her Not Association. These Companies
issue United States Bonds of Matrimony
upon application.</p>

<p class='pindent'>The Court of Appeals and the Supreme Court
are busy places, and in their courtyards sweethearts
may be seen courting at any time during
business hours.</p>

<p class='pindent'>They receive and negotiate Sealed Proposals
and Bids and draw up Marriage contracts.</p>

<hr class='tbk132'/>

<p class='pindent'>In the Flat Irony Building are the offices of
the Love Insurance Company, the Arcady
Ideal Estate Company, and other such organizations,
whose advertisements may be found
at the end of this volume.</p>

<div><span class='pageno' title='94' id='Page_94'></span><h1>IT HAPPENED IN ARCADY</h1></div>

<p class='line' style='text-align:center;margin-top:1em;margin-bottom:1.5em;'><span style='font-size:smaller'>THE GREAT HEART TRUST</span></p>

<p class='noindent'><span style='float:left; clear: left; margin:0 0.1em 0 0; padding:0; line-height: 1.0em; font-size: 200%;'>“W</span>hat is the matter, Kiddums?” said
Dame Venus, as Cupid entered her
boudoir, with his blue ribbon untied
and limply dragging behind him, and his eyes
shining through big tears, like bluebirds taking
a bath.</p>

<p class='pindent'>“Mother, I’m a ruined man,” and Cupid
flung himself into his own little chair, with a
Delsarte gesture expressive of deepest dejection.</p>

<p class='pindent'>“What now, what now, my child?” gently
inquired his beautiful parent, holding her hand-mirror
a little to one side, that she might better
perceive her troubled offspring.</p>

<p class='pindent'>“Why, just this. Some of those fools of
finance have organized a Great Heart Trust.”</p>

<p class='pindent'>“Oh, Cupid, not really! Then your occupation
is indeed gone! They have taken the
very hearts out of your mouth!”</p>

<p class='pindent'>“Yes, Mother; and aside from the loss of
my business, just think how horrid it is to commercialize
it so! Why, I went to their office
to make sure the report was true, and there
they were, those horrible magnets,—or whatever
they call them,—huddled round a ticker,
and yelling out to one another such things as
these: ‘Loyal Hearts preferred. Chicago making
bold advance; sharp dealings noticed. Colorado
Springs Hearts failed to rally; feeling
weak and generally depressed; later, showed a
slight reaction. Spinsters, no demand.’ I don’t
know what it all means, I’m sure; but I see my
finish, and I may as well break my arrows and
unstring my bow.”</p>

<p class='pindent'>With a Delsarte gesture of vindictiveness
and despair, Cupid doubled up his rosy, dimpled
knee and snapped an arrow across it, throwing
the pieces on the floor. Then he began to
unstring his beautiful, curved bow.</p>

<p class='pindent'>Venus looked sympathetically at her only
son.</p>

<p class='pindent'>“Perhaps,” she began, “it isn’t as bad as you
think, dear. Perhaps,—”</p>

<p class='pindent'>“Now, isn’t that just like a woman!” exclaimed
Cupid; his round pink cheeks growing
rounder and pinker as he stormed on. “I
just guess, Mother, if you had been down to
the Heart Exchange and had heard and seen
what I did, you wouldn’t say, ‘Perhaps and
perhaps.’ Why, I strolled over to listen to two
of the magnets talking. One man said there
was a corner in the matrimonial market and
the other said he was too visionary, for that
market wasn’t at all affected by the Heart
Trust. He said it was only a question of a deal
in futures. I don’t know what they mean by
such talk as that.”</p>

<p class='pindent'>“I’m sure I don’t either, Cupid,” said Venus,
laying down her mirror; for she had begun to
realize that the question was serious and she
must give it her undivided attention, which is
a difficult matter for a real Venus. “Tell me
more, Son.”</p>

<p class='pindent'>“Well, I looked over a man’s shoulder, and
he was reading from another of those ticker
things. He was a horrid man, not the kind I
like to deal with, at all. He read things like
this: ‘Summer Girls. Sensational Advances.
No Reserve. Public Wary. Actresses not well
supported, but best of financial backing; good
figures.’”</p>

<p class='pindent'>“But, Cupid, dearie, you’re not interested in
hearts like those, I hope.”</p>

<p class='pindent'>“Now, Mother, you know perfectly well that
a man in my business position is obliged to deal
in all sorts of hearts. And I’ve always had
a monopoly of the market. Now the Great
Heart Trust has spoiled my trade entirely.”
He broke another arrow across his knee and his
quiver seemed to have transferred itself to his
rosy lips.</p>

<p class='pindent'>“But, Son,” began Venus, hopefully,
“doesn’t this affect city hearts only? Can’t
you go to the country, and in the flowery fields
and lovers’ lanes find all the business you can
attend to?”</p>

<p class='pindent'>“No, Mother,” and the curly head drooped
like a dandelion at midday. “This Great
Heart Trust is universal. I stole a look at one
of their papers this morning, and one column
was headed ‘Rural Reports.’ Then it said:
‘Country depressed, dull; moving slowly. Domestic
Products quiet and well-behaved; in
great demand. Southern peach crop very fine;
quickly snapped up.’ I can’t understand all
their queer terms, but I suppose I shall have
to learn them.”</p>

<p class='pindent'>“Yes, Cupid, do that. Meet them on their
own ground and fight them with their own
weapons. You know more about hearts than
they do; think of your long experience.”</p>

<p class='pindent'>“Oh, Mother! Imagine me occupying a seat
in the Heart Exchange! Why, I’d have to wear
a ticker ribbon instead of my blue sash. No,
I never could learn their language. Why, they
talk like this: ‘Coquettes’ hearts, Common
stock; a declining movement shows a hardening
tendency, but the stock is unsteady, with exciting
effects.’ And not only our own people are
concerned, but they quote prices on Foreign
Hearts, and, Mother, the rates are almost prohibitive.
Then one report said, ‘Fiancées’
Hearts; do not fear local pressure!’ Now what
can such talk mean? Then it said: ‘Boston.
(See Ice Trust.)’ No, Mother, it’s no use; I
can’t understand their jargon.”</p>

<p class='pindent'>“But, Cupid, you can learn. The age is
progressive and you must keep up with it.
You know yourself that for some time your
methods of dealing in hearts have been considered
old-fashioned. Now you must try more
up-to-date ways.”</p>

<p class='pindent'>“But, Mother, some reports are so sad.
Their paper said today that there were many
heart failures reported. Why, one heart broke
at sixty—during a period of depression! And
then they quoted ‘Hearts Bowed Down.’ That
seemed to be a falling market, with heavy sales.
Several hearts were lost or stolen, and altogether
it made me feel panic-stricken. And what do
you think, they quoted ‘Husbands’ as inclined
to firmness, but showing bearish indications!
No, it’s all out of my line. I know my business,
I’ve practised it many, many years, and
I’m too old to learn new tricks.”</p>

<p class='pindent'>Venus looked at her son in much the same way
that any mother looks at her child when she
knows she can help him out of his difficulty.</p>

<p class='pindent'>“You dear, silly child,” she said, “you’re
needlessly alarmed. Every trust must have
its day, but they all fail sooner or later. Bide
your time, and after a while you’ll find that the
trust is all over, and you can carry on the game
in your own sweet way. I have heard of some
kind of a queer machine,—I think it’s called
a ‘trust buster,’—invented just on purpose to
break up these trusts. I’ll get you one. Now
kiss me and run away and play.”</p>

<p class='pindent'>Venus picked up her mirror again and sat
gazing at her beautiful nose in rapt admiration
of that classic member.</p>

<p class='pindent'>Cupid cheered up considerably. “Mother,
you’re a blessing,” he said, as he kissed the tip
of her ear. “But,” he added, as he ran away to
chase butterflies, “after this trust-buster thing
has done its smashing, <span class='it'>won’t</span> I have a time mending
all the broken hearts!”</p>

<div><span class='pageno' title='101' id='Page_101'></span><h1>CALAMITOUS CATASTROPHE</h1></div>

<p class='line' style='text-align:center;margin-bottom:1em;'>DIRE DESTRUCTION AND DEPLORABLE DISASTER</p>

<p class='line' style='text-align:center;margin-bottom:1em;'>DESOLATION AND DEVASTATION CAUSED BY AN APPALLING AIRQUAKE</p>

<p class='line' style='text-align:center;margin-bottom:1em;'>THOUSANDS OF CASTLES IN THE AIR OVERTHROWN AND DEMOLISHED</p>

<p class='line' style='text-align:center;margin-bottom:1.5em;'>(<span class='it'>From our own correspondent</span>)</p>

<p class='noindent'><span style='float:left; clear: left; margin:0 0.1em 0 0; padding:0; line-height: 1.0em; font-size: 200%;'>A</span>RCADY: A terrible airquake has
wrought havoc in the densely populated
atmosphere above this locality.
Without a word of warning, noble and beautiful
castles in the air went toppling to their ruin.</p>

<p class='pindent'>Though difficult to get details in these first
hours of confusion and distress, it is known
that the sumptuous air castle built by Claude
Melnotte for the Lady of Lyons is entirely demolished.
The devastated area is widespread, and
from the most magnificent dream of marble halls
to the humblest vision of love in a cottage, all
of the <span class='it'>Chateaux en Espagne</span> have fallen. It is
feared that many loves have been lost in the
ruins. Even now the agents of the Love Insurance
Company are on the spot estimating the
casualties. Many of the survivors declare they
will rebuild at the earliest possible moment.
Indeed, it may safely be predicted that new and
more elaborate and beautiful castles in the air
will soon take the place of the old ones. Among
the débris of ruined hopes and shattered ideals,
pathetic sights may be seen. Here a broken
resolution sticks up through the mass of fragments,
there a broken promise; and everywhere
are fallen idols and upset plans. The explorer
is menaced by pits of boiling imagination and
fine frenzies rolling. But relief supplies are
already being received. A ship, with Youth
at the helm and Pleasure at the prow, has just
come into the harbor, bringing a cargo of fresh
hopes and such stuff as dreams are made of.</p>

<p class='pindent'>Owing to the prevalence of mirage it is difficult
to give definite statistics; but the pot of
gold at the end of the rainbow is still visible,
and the sanguine, light-hearted people have
already begun to rear anew their castles in
the air.</p>

<p class='line' style='text-align:right;margin-right:2em;margin-top:1em;'><span class='it'>From the Arcadian News</span></p>

<div><span class='pageno' title='103' id='Page_103'></span><h1>ADVERTISEMENTS</h1></div>

<p class='line' style='text-align:center;margin-bottom:1em;font-size:1.1em;'>PERSONALLY CONDUCTED HONEYMOON TOURS</p>

<p class='line' style='text-align:center;margin-bottom:1em;'><span style='font-size:smaller'>BILLINGS &amp; COO, PROPRIETORS</span></p>

<p class='pindent'>Why trouble yourself with the details of
traveling and its paraphernalia, at a time when
your heart, mind, and soul are all absorbed in
other matters?</p>

<p class='pindent'>Why descend to the sordid buying of tickets
and checking of luggage, when your spirit is
soaring in realms of Empyrean bliss?</p>

<p class='pindent'>Why puzzle over the baffling intricacies of a
time-table, when you can be looking into the
lustrous orbs of your Bride?</p>

<p class='pindent'>Why suffer the irritating Emergencies of
Travel, when your way may be made a path of
Roses by embarking on one of our Personally
Conducted Wedding Trips?</p>

<p class='pindent'>All Routes to suit all Temperaments!</p>

<p class='pindent'>The Totally Oblivious are piloted safely
through a hackneyed and uneventful Trip.</p>

<p class='pindent'>The Fearfully Embarrassed are shielded and
screened from unpleasant observation.</p>

<p class='pindent'>The Ostentatiously Happy are paraded in
public and brought into delightful prominence
on trains and in hotels.</p>

<p class='pindent'>The Blissfully Enraptured are conducted to
Sentimental Spots and on Romantic Rambles.</p>

<p class='pindent'>One of D. Cupid’s Own Guides, in Blue Ribbon
Uniform, takes entire charge of each Happy
Couple and attends to all details of the Trip.
At the request of the Bride he will write letters
home to her mother from every stopping-place
or will, at the order of the Bridegroom, extend
his Letters of Credit or telegraph his bank for
more funds.</p>

<p class='pindent'>These Tours are entirely <span class='it'>de luxe</span>. The routes
are strewn with roses all the way. Sunshiny
and balmy weather guaranteed. Not one bored
moment, or Money Refunded.</p>

<p class='pindent'>Write at once for Prospectus.</p>

<p class='line' style='text-align:right;margin-right:10em;margin-bottom:0.5em;'><span class='sc'>Billings &amp; Coo</span></p>

<p class='line' style='text-align:right;margin-right:7em;'><span class='sc'>The Bridal Path</span></p>

<p class='line' style='text-align:right;margin-right:2em;'><span class='sc'>Orange Blossom Park</span></p>

<hr class='tbk133'/>

<p class='line' style='text-align:center;margin-bottom:1em;font-size:1.1em;'>MUTUAL-BENEFIT LOVE-INSURANCE COMPANY</p>

<p class='pindent'>Lovers, Attention! Is your love insured?
Other loves are dead; your love may die. You
insure your life, your house, your barns. Why
not insure your love?</p>

<p class='pindent'>This company is incorporated under the laws
of the United States, and its affairs are conducted
by a board of directors, including some
of our best known poets and novelists, and it
is approved in all respects by the board of underpaid
writers.</p>

<p class='pindent'><span class='sc'>Membership</span>: Any lover between the ages of
eighteen and seventy, of sound body and (otherwise)
sound mind, in good health (excepting
such maladies as are traceable to the fact of
his or her being in love) and of temperate habits,
whose occupation comes within certain classifications
hereinafter specified, shall be eligible
to membership.</p>

<p class='pindent'>Policies are issued only upon healthy, honest
loves subscribed and sworn to by both parties
interested therein, and guaranteed to be not
like other loves.</p>

<p class='pindent'><span class='sc'>Prohibited Risks</span>: Citizens of Chicago, members
of the theatrical profession, students of
co-educational colleges, naval heroes, and summer
girls are not eligible to membership, and
their applications will not be considered by this
company.</p>

<p class='pindent'>Applicants must answer truthfully and without
evasion the following questions:</p>

<p class='pindent'>State name, including all nicknames or pet
names used during the love to be insured.</p>

<p class='pindent'>How long have you been in love?</p>

<p class='pindent'>Was it love at first sight?</p>

<p class='pindent'>Are you (1) handsome, (2) good-looking, or
(3) plain?</p>

<p class='pindent'>Are you susceptible to flattery?</p>

<p class='pindent'>Are you of a jealous disposition?</p>

<p class='pindent'>Have you ever had Heart-disease? Palpitation?
Melancholia? Lover-complaint? Blues?
Heart-failure?</p>

<p class='pindent'>What is your occupation? (Specify this
definitely. If a business man, state if lady
typewriters are employed, and if so, how many
and of what appearance. Append photographs
if possible.)</p>

<p class='pindent'>Where do you spend your vacations?</p>

<p class='pindent'>Are there widows there?</p>

<p class='pindent'>Any applicant answering these questions satisfactorily
is entitled to a policy in our company
that shall provide indemnity for the death of a
love which, though it may now seem deathless,
is often subject to mortal injury in this
uncertain life of ours.</p>

<p class='line' style='text-align:right;margin-right:10em;margin-bottom:0.5em;'><span class='sc'>Dan Cupid</span>, <span class='it'>Agent</span></p>

<p class='line' style='text-align:right;margin-right:5em;margin-bottom:0.5em;'><span class='sc'>No. 7 Primrose Path</span></p>

<hr class='tbk134'/>

<p class='pindent'><span class='pageno' title='107' id='Page_107'></span></p>

<div class='figcenter'>
<img src='images/i117.jpg' alt='' id='iid-0022' style='width:425px;height:auto;'/>
<p class='caption'>“THE BLISSFULLY ENRAPTURED ARE CONDUCTED TO SENTIMENTAL SPOTS”</p>
</div>

<hr class='tbk135'/>

<p class='line' style='text-align:center;margin-bottom:1em;font-size:1.1em;'>AIR CASTLES UP TO DATE</p>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>All the Modern Improvements</p>
<p class='line'>Spanish Building and Loan Association</p>
<p class='line'>Home is where the heart is!</p>
<p class='line'>Own your own home!</p>
<p class='line'>&#160;</p>
<p class='line'>Why live in a mundane flat when you can have</p>
<p class='line'>a Castle in the Air?</p>
</div> <!-- end rend -->

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>At a small outlay you may secure a beautiful</p>
<p class='line'>site and a large and commodious dwelling</p>
<p class='line'>&#160;</p>
<p class='line'>All styles to suit all tastes!</p>
</div> <!-- end rend -->

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>Love-in-a-Cottage Type. Rose-embowered Porch</p>
<p class='line'>Dimity-curtained Windows. Dream of</p>
<p class='line'>Marble Halls</p>
<p class='line'>Specially selected Vassals and Serfs. Ruined</p>
<p class='line'>Castle Effects</p>
<p class='line'>Ivy-hung Turrets. Secret Staircase to Tower</p>
<p class='line'>&#160;</p>
<p class='line'><span class='it'>Write for circulars and Prospectus</span></p>
</div> <!-- end rend -->

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>! ! ! A Few desirable plots for Sale on</p>
<p class='line'>Lover’s Lane! ! !</p>
</div> <!-- end rend -->

<hr class='tbk136'/>

<p class='line' style='text-align:center;margin-bottom:1em;font-size:1.1em;'><span class='it'>La Romanza!</span></p>

<p class='line' style='text-align:center;margin-bottom:1em;'>The magnificent apartment house, corner Arden Avenue and Paradise Alley</p>

<p class='pindent'>This apartment air castle is built and finished
with a careful attention to detail, which
combines Eighteenth-century Romance with
Nineteenth-century convenience. Among its
advantages over older air castles are:</p>

<p class='pindent'>Express Elevator to Seventh Heaven</p>

<p class='pindent'>Trolley Line to Arcady</p>

<p class='pindent'>Dream Interpreter Call and United States
Valentine Chute on every floor</p>

<p class='pindent'>Lighted by an Automatic Electric Moon</p>

<p class='pindent'>Surrounded by sturdy oaks and clinging
vines.</p>

<p class='pindent'>Owing to the recent depreciations in Ideal
Estate you may be interested in</p>

<div class='lgc' style=''> <!-- rend=';' -->
<p class='line'>&#160;</p>
<p class='line'><span class='it'>La Romanza</span>!!!</p>
<p class='line'><span class='it'>Write for particulars and terms to</span></p>
</div> <!-- end rend -->

<p class='line' style='text-align:right;margin-right:11em;margin-bottom:0.5em;'><span class='sc'>Dan Cupid</span></p>

<p class='line' style='text-align:right;margin-right:5em;margin-bottom:0.5em;'><span class='it'>Ideal Estate Agent</span></p>

<p class='line' style='text-align:right;margin-right:2em;margin-bottom:0.5em;'><span class='sc'>No. 7 Primrose Path</span></p>

<hr class='tbk137'/>

<h2><span class='pageno' title='113' id='Page_113'></span><a id='advert'></a>ADVERTISEMENT</h2>

<div class='literal-container' style=''><div class='literal'> <!-- rend=';' -->
<p class='line'>There’s a new heart awaiting a tenant,</p>
<p class='line'>&ensp;&ensp;To whom shall its portals unclose?</p>
<p class='line'>Dan Cupid is floating his pennant</p>
<p class='line'>&ensp;&ensp;At The Sign of the Lily and Rose.</p>
<p class='line'>&#160;</p>
<p class='line'>This heart is not offered for selling,</p>
<p class='line'>&ensp;&ensp;The owner all freely bestows</p>
<p class='line'>A hostelry fit for Love’s dwelling,</p>
<p class='line'>&ensp;&ensp;At The Sign of the Lily and Rose.</p>
<p class='line'>&#160;</p>
<p class='line'>There’s a happy smile caught in her dimple,</p>
<p class='line'>&ensp;&ensp;That only a debutante shows;</p>
<p class='line'>And chatter is guileless and simple</p>
<p class='line'>&ensp;&ensp;At the Sign of the Lily and Rose.</p>
<p class='line'>&#160;</p>
<p class='line'>She’s pleased with the veriest trifles,</p>
<p class='line'>&ensp;&ensp;No artful bewitchment she knows;</p>
<p class='line'>But Cupid a sigh or two stifles</p>
<p class='line'>&ensp;&ensp;At The Sign of the Lily and Rose.</p>
<p class='line'>&#160;</p>
<p class='line'>And, indeed, the poor fellow has reason</p>
<p class='line'>&ensp;&ensp;As he thinks of the long string of beaux</p>
<p class='line'>Who’ll successively stop for a season</p>
<p class='line'>&ensp;&ensp;At The Sign of the Lily and Rose.</p>
</div></div> <!-- end rend -->

<p class='pindent'><span class='pageno' title='114' id='Page_114'></span></p>

<div class='figcenter'>
<img src='images/i124.jpg' alt='' id='iid-0023' style='width:375px;height:auto;'/>
<p class='caption'>LOVE PROOF WINDOW SCREENS</p>
</div>

<p class='line' style='text-align:center;margin-bottom:1em;'>ADVERTISEMENT</p>

<p class='pindent'>Love-Proof Window Screens fill a long-felt want.
Easily adjusted. Non-penetrable. With these
screens in place, Love cannot fly out of the
window when Poverty comes in at the Door.</p>

<p class='line' style='text-align:right;margin-right:8em;margin-bottom:0.5em;'><span class='sc'>Truelove &amp; Co.</span></p>

<p class='line' style='text-align:right;margin-right:8em;margin-bottom:0.5em;'><span class='it'>Sole Agents</span></p>

<p class='line' style='text-align:right;margin-right:2em;margin-bottom:0.5em;'><span class='sc'>77 Marrion Street</span></p>

<p class='line' style='text-align:center;margin-top:1.5em;margin-bottom:1em;'>ADVERTISEMENT</p>

<p class='pindent'><span class='sc'>Doctor Iris.</span> Diagnostician for all blindness
or eye troubles caused by Love. 24 C
Street.</p>

<div class='figcenter'>
<img src='images/i126.jpg' alt='' id='iid-0024' style='width:550px;height:auto;'/>
</div>

<p class='pindent'><a id='endp'></a></p>

<div class='figcenter'>
<a href='images/endpaperf.jpg'><img src='images/endpaper.jpg' alt='' id='iid-0025' style='width:500px;height:auto;'/></a>
<p class='caption'>MAP OF <span class='it'>THE TOWN OF</span> <span style='font-size:larger'>ARCADY</span> <span class='it'>Surveyed by George Hood</span></p>
</div>

<hr class='tbk138'/>

<p class='line' style='margin-top:2em;font-size:1.1em;'><span class='bold'>Transcriber’s Notes:</span></p>

<p class='noindent'>Punctuation and type-setting errors have been corrected without note.
Hyphenation and archaic spellings have been retained as in the original.</p>

<div>*** END OF THE PROJECT GUTENBERG EBOOK 51189 ***</div>
  </body>
  <!-- created with fpgen.py 4.42 on 2016-02-12 04:49:51 GMT -->
</html>