summaryrefslogtreecommitdiff
path: root/62345-h/62345-h.htm
blob: 4da7e8e065cb33c18db3561c35896a988c017f6d (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
<!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" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Collectors&rsquo; Items: Fifty Superb Recipes from Spice Islands&mdash;a Project Gutenberg eBook</title>
<meta name="author" content="Spice Islands" />
<meta name="pss.pubdate" content="1959" />
<link rel="coverpage" href="images/cover.jpg" />
<link rel="spine" href="images/spine.jpg" />
<link rel="schema.DC" href="http://dublincore.org/documents/1998/09/dces/" />
<meta name="DC.Title" content="Collectors&rsquo; Items: Fifty Superb Recipes from Spice Islands" />
<meta name="DC.Language" content="en" />
<meta name="DC.Format" content="text/html" />
<meta name="DC.Created" content="1959" />
<meta name="DC.Creator" content="Spice Islands" />
<style type="text/css">
/* == GLOBAL MARKUP == */
body, table.twocol tr td  { margin-left:2em; margin-right:2em; }   /* BODY */
.box     { border-style:double; margin-bottom:2em; max-width:30em; margin-right:auto; margin-left:auto; margin-top:2em; clear:both; }
.box div.box  { border-style:solid; margin-right:auto; margin-left:auto; max-width:26em; }
.box p   { margin-right:1em; margin-left:1em; }
.box dl  { margin-right:1em; margin-left:1em; }
h1, h2, h5, h6, .titlepg p { text-align:center; clear:both; text-indent:0; }   /* HEADINGS */
h2                { margin-top:1.5em; margin-bottom:1em; font-size:120%; text-align:center; }
h2 .small         { font-size:100%; }
h1                { margin-top:3em; }
h1 .likep         { font-weight:normal; font-size:50%; }
div.box h1        { margin-top:1em; margin-left:.5em; margin-right:.5em; }
h3                { margin-top:2.5em; text-align:left; font-size: 120%; clear:both; }
h4, h5            { font-size:100%; text-align:left; clear:right; }
h6                { font-size:100%; }
h6.var            { font-size:80%; font-style:normal; }
.titlepg          { margin-left:auto; margin-right:auto; border-style:double; clear:both; }
span.chaptertitle { font-style:normal; display:block; text-align:center; font-size:150%; text-indent:0; }
.tblttl           { text-align:center; text-indent:0;}
.tblsttl          { text-align:center; font-variant:small-caps; text-indent:0; }

pre sub.ms { width:4em; letter-spacing:1em; }
pre        { margin-top:1em; margin-bottom:1em; }
table.fmla { text-align:center; margin-top:0em; margin-bottom:0em; margin-left:0em; margin-right:0em; }
table.inline, table.symbol { display: inline-table; vertical-align: middle; }
td.cola           { text-align:left; vertical-align:100%; }
td.colb           { text-align:justify; }

p, blockquote, div.p, div.bq { text-align:justify; }                              /* PARAGRAPHS */
div.p, div.bq   { margin-top:1em; margin-bottom:1em; }
blockquote, .bq { margin-left:1em; margin-right:0em; }
.verse    { font-size:100%; }
p.indent  {text-indent:2em; text-align:left; }
p.tb, p.tbcenter, verse.tb, blockquote.tb      { margin-top:2em; }

span.pb, div.pb, dt.pb, p.pb                   /* PAGE BREAKS */
{ text-align:right; float:right; margin-right:0em; clear:right; }
div.pb { display:inline; }
.pb, dt.pb, dl.toc dt.pb, dl.tocl dt.pb, dl.undent dt.pb, dl.index dt.pb    { text-align:right; float:right; margin-left: 1.5em;
         margin-top:.5em; margin-bottom:.5em; display:inline; text-indent:0;
         font-size:80%; font-style:normal; font-weight:bold;
         color:gray; border:1px solid gray;padding:1px 3px; }
div.index .pb  { display:block; }
.bq  div.pb, .bq span.pb  { font-size:90%; margin-right:2em; }

div.img, body a img  {text-align:center; margin-left:auto; margin-right:auto; margin-top:2em; margin-bottom:2em; clear:right; }

sup, a.fn { font-size:75%; vertical-align:100%; line-height:50%; font-weight:normal; }
h3   a.fn { font-size:65%; }
sub { font-size:75%; }
.center, .tbcenter       { text-align:center; clear:both; text-indent:0; }                  /* TEXTUAL MARKUP */
span.center              { display:block; }
table.center { font-size:80%; font-family:sans-serif; }
table.center { clear:both; margin-right:auto; margin-left:auto; }
table.center tr td.l  {text-align:left; margin-left:0em; }
table.center tr td.j  {text-align:justify; }
table.center tr td.ltab { text-align:left; width:1.5em; }
table.center tr td.t  {text-align:left; text-indent:1em; }
table.center tr td.t2 {text-align:left; text-indent:2em; }
table.center tr td.r, table.center tr th.r  {text-align:right; }
table.center tr th.rx  { width:4.5em; text-align:right; }
table.center tr th    {vertical-align:bottom; }
table.center tr td    {vertical-align:top; }
table.inline, table.symbol { display: inline-table; vertical-align: middle; }

p           { clear:left; }
.small, .lsmall      { font-size:90%; }
.smaller    { font-size:80%; }
.smallest   { font-size:67%; }
.larger     { font-size:150%; }
.large      { font-size:125%; }
.xlarge     { font-size:150%; }
.xxlarge    { font-size:200%; }
.gs         { letter-spacing:1em; }
.gs3        { letter-spacing:2em; }
.gslarge    { letter-spacing:.3em; font-size:110%; }
.sc         { font-variant:small-caps; font-style:normal; }
.unbold     { font-weight:normal; }
.xo         { position:relative; left:-.3em; }
.over       { text-decoration: overline; display:inline; }
hr          { width:20%; margin-left:40%; }
hr.dwide    { margin-top:0; margin-bottom:0; width:90%; margin-left:5%; clear:right; }
hr.double   { margin-top:0; margin-bottom:0; width:100%; margin-left:0; margin-right:0; }
hr.f        { margin-top:0; margin-bottom:0; width:100%; margin-left:0; }
.jl         { text-align:left; }
.jr, .jri   { text-align:right; min-width:2em; display:inline-block; float:right; }
.pcap .jri  { font-size:80%; }
.jr1        { text-align:right; margin-right:2em; }
h1 .jr      { margin-right:.5em; }
.ind1       { text-align:left;  margin-left:2em; }
.u          { text-decoration:underline; }
.hst        { margin-left:2em; }
.hst        { margin-left:4em; }
.rubric     { color:red; }
.blue       { color:blue;   background-color:white; }
.green      { color:green;  background-color:white; }
.yellow     { color:yellow; background-color:white; }
.white      { color:white; background-color:black; margin-left:1em; margin-right:1em; max-width:28em; }
.cnwhite    { color:white; background-color:black; min-width:2em; display:inline-block;
              text-align:center; font-weight:bold; font-family:sans-serif; }
.cwhite     { color:white; background-color:black; text-align:center; font-weight:bold;
              font-family:sans-serif; }
ul  li      { text-align:justify; }
u.dbl       { text-decoration:underline; }
.ss         { font-family:sans-serif; font-weight:bold; }
.ssn        { font-family:sans-serif; font-weight:normal; }
p.revint    { margin-left:2em; text-indent:-2em; }
p.revint2   { margin-left:5em; text-indent:-3em; }
p.revint2 .cn { min-width:2.5em; text-indent:0; text-align:left; display:inline-block; margin-right:.5em; }
i .f        { font-style:normal; }
.ni         { font-style:normal; }
.b          { font-weight:bold; }
.i          { font-style:italic; }
.f          { font-style:italic; font-weight:bold; }

dd.t           { text-align:left; margin-left: 5.5em; }
dl.toc         { clear:both; margin-top:1em; }                    /* CONTENTS (.TOC) */
.toc  dt.center    { text-align:center; clear:both; margin-top:3em; margin-bottom:1em; text-indent:0;}
.toc  dt      { text-align:right; clear:left; }
.toc  dt.just { text-align:justify; margin-left:2em; margin-right:2em; }
.toc  dd      { text-align:right; clear:both; }
.toc  dd.ddt  { text-align:right; clear:both; margin-left:4em; }
.toc  dd.ddt2 { text-align:right; clear:both; margin-left:5em; }
.toc  dd.ddt3 { text-align:right; clear:both; margin-left:6em; }
.toc  dd.ddt4 { text-align:right; clear:both; margin-left:7em; }
.toc  dd.ddt5 { text-align:right; clear:both; margin-left:8em; }
.toc  dd.note { text-align:justify; clear:both; margin-left:5em; text-indent:-1em; margin-right:3em; }
.toc  dt .xxxtest {width:17em; display:block; position:relative; left:4em; }
.toc  dt  a,
.toc  dd  a,
.toc dt span.left,
.toc dt span.lsmall,
.toc dd span.left { text-align:left; clear:right; float:left; }
.toc  dt  a  span.cn { width:4em; text-align:right; margin-right:.7em;  float:left; }
.toc  dt.sc   { text-align:right;  clear:both; }
.toc  dt.scl  { text-align:left;   clear:both; font-variant:small-caps; }
.toc  dt.sct  { text-align:right;  clear:both; font-variant:small-caps; margin-left:1em; }
.toc  dt.jl   { text-align:left;   clear:both; font-variant:normal; }
.toc  dt.scc  { text-align:center; clear:both; font-variant:small-caps; text-indent:0; }
.toc  dt span.lj, span.lj { text-align:left; display:block; float:left; }
.toc  dd.center { text-align:center; text-indent:0; }
dd.tocsummary {text-align:justify; margin-right:2em; margin-left:2em; }
dd.center .sc  {display:block; text-align:center; text-indent:0; }
/* BOX CELL */
td.top { border-top:1px    solid; width:.5em; height:.8em; }
td.bot { border-bottom:1px solid; width:.5em; height:.8em; }
td.rb  { border:1px solid; border-left:none;  width:.5em; height:.8em;  }
td.lb  { border:1px solid; border-right:none; width:.5em; height:.8em;  }
td span.cellt   { text-indent:1em; }
td span.cellt2  { text-indent:2em; }
td span.cellt3  { text-indent:3em; }
td span.cellt4  { text-indent:4em; }

/* INDEX (.INDEX) */
dl.index   { clear:both; }
.index dt  { margin-left:2em; text-indent:-2em; text-align:left; }
.index dd  { margin-left:4em; text-indent:-2em; text-align:left; }
.index dd.t  { margin-left:6em; text-indent:-2em; text-align:left; }
.index dt.center {text-align:center; text-indent:0; }
  dl.indexlr     { clear:both; margin-left:auto; margin-right:auto; max-width:30em; }
  dl.indexlr dt  { clear:both; text-align:right; }
  dl.indexlr dt span { text-align:left; display:block; float:left; }
  dl.indexlr dt.center {text-align:center; text-indent:0; }
.ab, .ab1, .ab2 { font-weight:bold; text-decoration:none;
                  border-style:solid; border-color:gray; border-width:1px;
                  margin-right:0px; margin-top:5px; display:inline-block; text-align:center; text-indent:0; }
.ab { width:1em; }
.ab2 { width:1.5em; }
a.gloss { background-color:#f2f2f2; border-bottom-style:dotted; text-decoration:none; border-color:#c0c0c0; color:inherit; }
                                                           /* FOOTNOTE BLOCKS */
div.notes p  { margin-left:1em; text-indent:-1em; text-align:justify; }

dl.undent dd    { margin-left:3em; text-indent:-2em; text-align:justify; }
dl.undent dt    { margin-left:2em; text-indent:-2em; text-align:justify; clear:both; }
dl.undent dd.t  { margin-left:4em; text-indent:-2em; text-align:justify; }
                                                           /* POETRY LINE NUMBER */
.lnum   { text-align:right; float:right; margin-left:.5em; display:inline; }

.hymn     { text-align:left; }                                  /*  HYMN AND VERSE: HTML  */
.verse    { text-align:left; margin-top:1em; margin-bottom:1em; margin-left:0em; }
.versetb  { text-align:left; margin-top:2em; margin-bottom:1em; margin-left:0em; }
.originc  { text-align:center; text-indent:0; }
.subttl   { text-align:center; font-size:80%; text-indent:0; }
.srcttl   { text-align:center; font-size:80%; text-indent:0; font-weight:bold; }
p.lc      { text-indent:0; text-align:center; margin-top:0; margin-bottom:0; }
p.t0, p.l { margin-left:4em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.lb                 { margin-left:4em;  text-indent:-3em; margin-top:2em; margin-bottom:0; text-align:left; }
p.tw, div.tw, .tw    { margin-left:1em;  text-indent:-1em; margin-top:0; margin-bottom:0; text-align:left; }
p.t,  div.t,  .t     { margin-left:5em;  text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t2,  div.t2,  .t2  { margin-left:6em;  text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t3,  div.t3,  .t3  { margin-left:7em;  text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t4,  div.t4,  .t4  { margin-left:8em;  text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t5,  div.t5,  .t5  { margin-left:9em;  text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t6,  div.t6,  .t6  { margin-left:10em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t7,  div.t7,  .t7  { margin-left:11em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t8,  div.t8,  .t8  { margin-left:12em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t9,  div.t9,  .t9  { margin-left:13em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t10, div.t10,.t10  { margin-left:14em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t11, div.t11,.t11  { margin-left:15em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t12, div.t12,.t12  { margin-left:16em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t13, div.t13,.t13  { margin-left:17em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t14, div.t14,.t14  { margin-left:18em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.t15, div.t15,.t15  { margin-left:19em; text-indent:-3em; margin-top:0; margin-bottom:0; text-align:left; }
p.lr, div.lr, span.lr { display:block; margin-left:0em; margin-right:1em; margin-top:0; margin-bottom:0; text-align:right; }
dt.lr                { width:100%; margin-left:0em; margin-right:0em; margin-top:0; margin-bottom:0; margin-top:1em; text-align:right; }
dl dt.lr a           { text-align:left; clear:left; float:left; }

.fnblock   { margin-top:2em; margin-bottom:2em; }
.fndef, p.fn     { text-align:justify; margin-top:1.5em; margin-left:1.5em; text-indent:-1.5em; }
.fndef p.fncont, .fndef dl { margin-left:0em; text-indent:0em; }
.fnblock div.fncont { margin-left:1.5em; text-indent:0em; margin-top:1em; text-align:justify; }
.fnblock dl  { margin-top:0; margin-left:4em; text-indent:-2em; }
.fnblock dt  { text-align:justify; }
dl.catalog dd { font-style:italic; }
dl.catalog dt { margin-top:1em; }
.author { text-align:right; margin-top:0em; margin-bottom:0em; display:block; }

dl.biblio  dt        { margin-top:.6em; margin-left:2em; text-indent:-2em; text-align:justify; clear:both; }
dl.biblio  dt  div   { display:block; float:left; margin-left:-6em; width:6em; clear:both; }
dl.biblio  dt.center { margin-left:0em; text-align:center; text-indent:0; }
dl.biblio  dd        { margin-top:.3em; margin-left:3em; text-align:justify; font-size:90%; }
p.biblio             { margin-left:2em; text-indent:-2em; }
.clear     { clear:both; }
p.book     { margin-left:2em; text-indent:-2em; }
p.review   { margin-left:2em; text-indent:-2em; font-size:80%; }
p.pcap     { margin-left:0em; text-indent:0; text-align:center; margin-top:0; }
p.pcapc    { margin-left:4.7em; text-indent:0em; text-align:justify; }
span.attr  { font-size:80%; font-family:sans-serif; }
span.pn    { display:inline-block; width:4.7em; text-align:left; margin-left:0; text-indent:0; }
</style>
</head>
<body>
<div>*** START OF THE PROJECT GUTENBERG EBOOK 62345 ***</div>

<div id="cover" class="img">
<img id="coverpage" src="images/cover.jpg" alt="Collectors&rsquo; Items: Fifty Superb Recipes from Spice Islands" width="499" height="800" />
</div>
<div class="box">
<h1><span class="large">Collectors&rsquo; Items</span>
<br /><i>Fifty Superb Recipes
<br /><span class="smaller">from</span></i>
<br /><span class="smaller">SPICE ISLANDS&#174;</span></h1>
<p class="center">SPICE ISLANDS SPICE RACK&mdash;SEE <a href="#Page_32">BACK COVER</a></p>
</div>
<div class="pb" id="Page_2">2</div>
<h2 id="c1"><span class="small"><i>From Our Recipe File to Yours</i></span></h2>
<p>From appetizers to desserts&mdash;it is our pleasure to share
these choice recipes with you. We hope that you will
make them as they were developed and tested&mdash;with
the spices, herbs and seasonings of Spice Islands. You
will appreciate why from the moment you open a Spice
Islands jar.</p>
<p>For you who love to improvise with flavors and vary
your own favorite recipes, an herb chart is included in
this booklet. It is limited by space, but we think you
will find it a useful guide in seasoning with herbs.</p>
<p>Remember&mdash;the purpose of an herb, like that of a
spice, is to enhance, not dominate, the flavor of the
food. So be selective when you experiment. Until the
art of seasoning with herbs is mastered, use just one or
two at a time.</p>
<p>Be especially sparing with the spices and herbs of Spice
Islands, for they are exceptionally full-flavored. Only
the finest of each species is used, and they come to you
from Spice Islands exquisitely cured and radiantly fresh
and fragrant.</p>
<p>SPICE ISLANDS HERBS are California grown on farms
owned and operated by Spice Islands Company. In this
way, select strains can be cultivated with a quality control
impossible to duplicate. The fullest flavor of these
herbs is yours because of the extreme care in growing,
curing, and processing.</p>
<p>SPICE ISLANDS SPICES come from those faraway parts
of the world where the finest grow&mdash;cinnamon from
Viet Nam, nutmeg from the Isles of Banda, ginger from
Jamaica, and pepper (such pepper!) from Java. Whatever
it is, the very best is in your Spice Islands jar.</p>
<p>SPICE ISLANDS WINE VINEGARS are produced from
fine wines of California&rsquo;s Sonoma Valley, and have an
incomparable bouquet and mellow tang. There is red
wine vinegar plain or flavored with garlic, tarragon, or
eschalot; white wine vinegar plain, flavored with basil,
or a sprig float of tarragon.</p>
<p>SPICE ISLANDS TEAS are gathered at the peak of the
season from the best gardens in Japan, Formosa, Indonesia,
Ceylon, and India. There are eleven delectable
blends&mdash;any will add an epicurean touch.</p>
<p>If the good things of life are for you, then let Spice
Islands work its wonders in your cooking and enjoyment
of good food.</p>
<div class="verse">
<p class="t0"><span class="smaller"><span class="ssn">LITHO IN U.S.A.</span></span></p>
<p class="lr"><span class="smaller"><span class="ssn">&copy; COPYRIGHT 1959</span></span></p>
<p class="lr"><span class="smaller"><span class="ssn">&ldquo;BY SPICE ISLANDS COMPANY&rdquo;</span></span></p>
</div>
<div class="pb" id="Page_3">3</div>
<h3 id="c2">&ldquo;<i>Dill &rsquo;n&rsquo; Onion Dip</i>&rdquo;</h3>
<div class="verse">
<p class="t0">&#8532; cup mayonnaise</p>
<p class="t0">&#8532; cup sour cream</p>
<p class="t0">1 tablespoon SPICE ISLANDS Shredded Green Onion</p>
<p class="t0">1 tablespoon SPICE ISLANDS Shredded Parsley</p>
<p class="t0">1 teaspoon SPICE ISLANDS Dill Weed</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
</div>
<p>Mix together mayonnaise and sour cream. Add Shredded
Green Onion, Shredded Parsley, Dill Weed and Beau
Monde Seasoning; mix well. Let flavors blend for an
hour. Makes about 1&frac12; cups.</p>
<h3 id="c3"><i>Beau Monde Dip</i></h3>
<div class="verse">
<p class="t0">6 oz. cream cheese</p>
<p class="t0">3 tablespoons light cream</p>
<p class="t0">2&frac12; teaspoons SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Thyme</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Marjoram</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Summer Savory</p>
<p class="t0">2 teaspoons SPICE ISLANDS Shredded Parsley</p>
</div>
<p>Crush herbs and mix thoroughly with other ingredients.
Serve with crackers, chips, celery or carrot sticks.</p>
<h3 id="c4"><i>Sour Cream Olive Dip</i></h3>
<div class="verse">
<p class="t0">2 teaspoons SPICE ISLANDS Chicken Seasoned Stock Base</p>
<p class="t0">1 tablespoon boiling water</p>
<p class="t0">1 teaspoon SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">1 teaspoon Worcestershire sauce</p>
<p class="t0">1 cup sour cream (8-ounce carton)</p>
<p class="t0">&frac12; cup minced ripe olives</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
</div>
<p>Combine Chicken Stock Base and boiling water; stir to
dissolve. Add Instant Minced Onions and Worcestershire
sauce. Let stand about 10 minutes. Stir in sour cream,
minced ripe olives and Beau Monde Seasoning. Chill an
hour or so for flavors to blend. Makes about 1&frac12; cups
dip.</p>
<h3 id="c5"><i>Winter Relish</i> <span class="jri smaller ni">(3&frac12; Cups)</span></h3>
<div class="verse">
<p class="t0">2 cups finely shredded cabbage</p>
<p class="t0">4 tablespoons SPICE ISLANDS Green Bell Peppers</p>
<p class="t0">2 tablespoons SPICE ISLANDS Red Bell Peppers</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">2 teaspoons salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Celery Salt</p>
<p class="t0">&frac14; cup SPICE ISLANDS White Wine Vinegar</p>
<p class="t0">2 tablespoons sugar</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Whole Mustard Seed</p>
</div>
<p>Combine cabbage, Green and Red Peppers, Onions, salt,
and Celery Salt in a bowl; chill. Mix Vinegar, sugar, and
Mustard Seed; stir well and toss lightly with vegetables
just before serving.</p>
<div class="pb" id="Page_4">4</div>
<h3 id="c6"><i>Hearty Vegetable Soup</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">1&frac12; quarts water</p>
<p class="t0">3 tablespoons SPICE ISLANDS Beef Stock Base</p>
<p class="t0">1 #2&frac12; can tomatoes</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">1 tablespoon SPICE ISLANDS Green Bell Peppers</p>
<p class="t0">1 teaspoon SPICE ISLANDS BOUQUET GARNI for Soup</p>
<p class="t0">&frac12; cup sliced celery</p>
<p class="t0">&frac12; cup thinly sliced carrots</p>
<p class="t0">1 cup cubed potatoes</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1 tablespoon salt</p>
<p class="t0">1 tablespoon SPICE ISLANDS Shredded Parsley</p>
<p class="t0">2 cups fresh, frozen, or canned vegetables: such as lima beans, turnips, green beans, peas, corn, spinach, etc.</p>
<p class="t0">2 tablespoons raw rice</p>
</div>
<p>Combine water and Beef Stock Base. Bring to a boil
and add tomatoes, Instant Minced Onions, Bell Peppers,
and Bouquet Garni for Soup. When soup is again boiling,
add celery, carrots, potatoes, Beau Monde, salt,
and Parsley. Simmer for about 30 minutes. Add remaining
vegetables and rice. Simmer until vegetables and
rice are done, about 20 minutes.</p>
<h3 id="c7"><i>Tomato, Vegetable, Chicken Noodle Soups</i></h3>
<p>Dilute one 10&frac12;-oz. can of Condensed Soup with one
can of water. Bring to simmer. Add &#8539; teaspoon
crushed SPICE ISLANDS BOUQUET GARNI for Soup.
Let simmer for several minutes.</p>
<div class="pb" id="Page_5">5</div>
<h3 id="c8"><i>Mushroom Vichyssoise</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">2 tablespoons butter</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">2 level tablespoons SPICE ISLANDS Chicken Seasoned Stock Base dissolved in 3&frac12; cups hot water</p>
<p class="t0">1 teaspoon SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1&frac12; cups thinly sliced, pared potatoes</p>
<p class="t0">1&frac12; cups light cream</p>
</div>
<p>Melt butter; add Onions and cook over low heat 5 minutes.
Stir Powdered Mushrooms and Beau Monde into
chicken stock. Add to Onions along with potatoes.
Simmer 25 to 30 minutes or until potatoes are done.
Cool to lukewarm. Blend in electric blender 20 seconds.
Stir in cream, chill thoroughly. Serve ice cold.</p>
<h3 id="c9"><i>Basil French Dressing</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">1 cup SPICE ISLANDS Sweet Basil Wine Vinegar</p>
<p class="t0">1 cup olive oil</p>
<p class="t0">2 tablespoons sugar</p>
<p class="t0">1&frac12; teaspoons salt</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">&frac34; teaspoon SPICE ISLANDS Mayonnaise Mustard</p>
</div>
<p>Blend dry ingredients separately, put in screw-top jar,
add liquids and shake well each time before using.
Particularly good with tomato or any green salad. Keep
in cool place.</p>
<div class="pb" id="Page_6">6</div>
<h3 id="c10"><i>Green Goddess Salad Dressing</i> <span class="jri smaller ni">(8 Servings)</span></h3>
<p>The Green Goddess dressing originated some thirty years
ago. It was named for the play in which George Arliss
was starring and was first served at a testimonial dinner
given him the opening night in San Francisco. Delicately
flavored, its smooth consistency causes this
dressing to fully coat each leaf in bowl.</p>
<div class="verse">
<p class="t0">1 cup mayonnaise</p>
<p class="t0">&frac12; cup heavy cream</p>
<p class="t0">1 tablespoon lemon juice</p>
<p class="t0">2 tablespoons SPICE ISLANDS Tarragon Wine Vinegar</p>
<p class="t0">2 tablespoons SPICE ISLANDS Garlic Wine Vinegar</p>
<p class="t0">2 tablespoons SPICE ISLANDS Eschalot Wine Vinegar</p>
<p class="t0">1 rounding tablespoon anchovy paste</p>
<p class="t0">1 tablespoon SPICE ISLANDS Shredded Parsley</p>
<p class="t0">2 tablespoons SPICE ISLANDS Onion Powder</p>
</div>
<p>Add lemon juice to cream, then mix with other ingredients.
Serve with green salad. Superb on broccoli or
asparagus in place of mayonnaise.</p>
<h3 id="c11"><i>Coleslaw with Sweet Dill Dressing</i></h3>
<div class="verse">
<p class="t0">&#8531; cup sugar</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">1 teaspoon SPICE ISLANDS Celery Seed</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">1 teaspoon SPICE ISLANDS Dill Weed</p>
<p class="t0">1 cup salad oil</p>
<p class="t0">&frac14; cup SPICE ISLANDS White Wine Vinegar</p>
</div>
<p>Mix together sugar, salt, Celery Seed, Pepper, and Dill
Weed. Beat in salad oil alternately with Vinegar with
either electric mixer or rotary beater.</p>
<h4>To make coleslaw:</h4>
<p>Pour boiling water over 4 cups finely shredded cabbage.
Drain at once. Dip in cold water. Drain thoroughly
and chill. Toss with &#8531; cup Sweet Dill Dressing.</p>
<div class="pb" id="Page_7">7</div>
<h3 id="c12"><i>Poppy Seed Salad Dressing</i> <span class="jri smaller ni">(Makes 1&frac34; Pints)</span></h3>
<div class="verse">
<p class="t0">1 pint olive oil</p>
<p class="t0">1&frac14; cups sugar</p>
<p class="t0">2&frac12; tablespoons SPICE ISLANDS Hot Mustard</p>
<p class="t0">3 tablespoons lemon juice</p>
<p class="t0">1&frac12; teaspoons salt</p>
<p class="t0">&frac34; teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">&sup1;/&#8321;&#8326; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">2&frac12; tablespoons SPICE ISLANDS Poppy Seed</p>
<p class="t0">&frac12; cup SPICE ISLANDS White Wine Vinegar</p>
</div>
<p>Blend all dry ingredients in a mixing bowl. Add lemon
juice and Vinegar. Thoroughly mix with electric mixer
at medium speed&mdash;then add olive oil slowly, 1 tablespoon
at a time. After all the oil has been added, let
beat at high speed for 15 minutes.</p>
<h3 id="c13"><i>Parmesan Herb Dressing</i> <span class="jri smaller ni">(Makes 1 Pint)</span></h3>
<p>Tart with a lively tarragon flavor. Serve this on cooked,
chilled artichokes; or cauliflower, string beans, asparagus,
or broccoli, hot or cold.</p>
<div class="verse">
<p class="t0">1 egg, beaten</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Paprika</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">&frac14; cup SPICE ISLANDS White Wine Tarragon Vinegar</p>
<p class="t0">&frac14; cup grated Parmesan cheese</p>
<p class="t0">1 cup olive oil</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Salad Herbs</p>
</div>
<p>Blend egg, Beau Monde, salt, Garlic Powder, Onion Powder,
Paprika, Pepper, Vinegar, cheese. Add the oil, a
little at a time, beating until thoroughly blended after
each addition, until all is used. Continue beating until
thick and very smooth. Stir in Salad Herbs.</p>
<div class="pb" id="Page_8">8</div>
<div class="box">
<p>When you need a tasty sauce or gravy, <b>SPICE ISLANDS</b>
Beef Stock Base comes to your rescue. There are countless
variations you can try.</p>
</div>
<h3 id="c14"><i>Brown Sauce</i> <span class="jri smaller ni">(2 Cups Sauce)</span></h3>
<p>Excellent with roast beef. Indispensable when there&rsquo;s
not enough drippings to make gravy or to serve with
some leftover slices when the gravy&rsquo;s all gone. Use it as
the basis of countless other sauces&mdash;and the classics
such as Sauce Espagnole, Madeira Sauce, Ravigote, or
Piquant Sauce.</p>
<div class="verse">
<p class="t0">2 tablespoons butter</p>
<p class="t0">4 teaspoons SPICE ISLANDS Arrowroot</p>
<p class="t0">2 tablespoons SPICE ISLANDS Beef Stock Base</p>
<p class="t0">2 cups hot water</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
</div>
<p>Melt butter; stir in Arrowroot. Add Beef Stock Base to
water and stir into butter and Arrowroot. Cook over
low heat, stirring constantly, until thick and smooth.
Add Pepper. Serve hot as a gravy, or use as a basis of
other sauces.</p>
<h3 id="c15"><i>Onion Gravy or Sauce</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>A good sauce to serve with broiled hamburgers or liver;
delicious, too, on leftover pot roast or other cold meat.</p>
<div class="verse">
<p class="t0">2 tablespoons butter</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">4 teaspoons SPICE ISLANDS Arrowroot</p>
<p class="t0">2 tablespoons SPICE ISLANDS Beef Stock Base</p>
<p class="t0">2 cups hot water</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
</div>
<p>Melt butter; add onions. Cook about 5 minutes or until
Onions are slightly yellow. Stir in Arrowroot. Add Beef
Stock Base to water and add to onions. Cook over low
heat, stirring constantly, until thick and smooth. Add
Pepper. Serve hot.</p>
<div class="pb" id="Page_9">9</div>
<h3 id="c16"><i>Spice Islands Barbecue Sauce</i> <span class="jri smaller ni">(Makes 1 Pint)</span></h3>
<p>An outstanding California favorite&mdash;brings many compliments
that will inflate your ego as a chef. Serve hot
with hamburgers, meat loaves, spaghetti and meat balls.
Serve cold as a relish with cold meats.</p>
<div class="verse">
<p class="t0">1 teaspoon SPICE ISLANDS Oregano</p>
<p class="t0">2&frac14; teaspoons SPICE ISLANDS Paprika</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1 teaspoon SPICE ISLANDS Chili Con Carne Seasoning Powder</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Ground Cloves</p>
<p class="t0">1 teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">2 tablespoons SPICE ISLANDS Whole Mustard Seed</p>
<p class="t0">2 teaspoons SPICE ISLANDS OLD HICKORY Smoked Salt</p>
<p class="t0">1&Prime; piece SPICE ISLANDS Bay Leaf</p>
<p class="t0">2 tablespoons SPICE ISLANDS Garlic Wine Vinegar</p>
<p class="t0">2 tablespoons SPICE ISLANDS Tarragon Wine Vinegar</p>
<p class="t0">2 tablespoons SPICE ISLANDS Eschalot Wine Vinegar</p>
<p class="t0">&frac14; cup olive oil</p>
<p class="t0">&frac12; cup water</p>
<p class="t0">&frac34; cup catsup</p>
<p class="t0">2 tablespoons Worcestershire sauce</p>
<p class="t0">2 tablespoons SPICE ISLANDS Onion Powder</p>
<p class="t0">2&frac12; teaspoons brown sugar</p>
</div>
<p>Blend dry ingredients and add to the liquids. Bring to
a boil, then simmer 1 hr. over low heat.</p>
<h3 id="c17"><i>Tartar Sauce</i> <span class="jri smaller ni">(8 Servings)</span></h3>
<p>Familiar to everyone, but still one of the most generally
popular of the fish sauces.</p>
<div class="verse">
<p class="t0">1 cup mayonnaise</p>
<p class="t0">1 teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">1 tablespoon SPICE ISLANDS Garlic Wine Vinegar</p>
<p class="t0">1 teaspoon SPICE ISLANDS Tarragon</p>
<p class="t0">1 tablespoon SPICE ISLANDS Parsley</p>
<p class="t0">1 tablespoon chopped pickle</p>
<p class="t0">1 tablespoon chopped green olives</p>
<p class="t0">1 teaspoon capers</p>
</div>
<p>Mix all together and serve with fried or broiled fish.</p>
<div class="pb" id="Page_10">10</div>
<h3 id="c18"><i>Beurre Aux Fines Herbes</i></h3>
<p>Broiled steaks, lamb chops, even the breakfast eggs are
all the better when cooked in herb butter.</p>
<div class="verse">
<p class="t0">&frac12; teaspoon SPICE ISLANDS Fines Herbes</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">4 tablespoons butter</p>
</div>
<p>Cream butter and Beau Monde. Crush Fines Herbes and
cream into mixture. When stored, flavor becomes more
pronounced.</p>
<h3 id="c19"><i>Butter, Nepal</i></h3>
<p>An interesting new butter for hot vegetables or seafood,
seasoned with the gourmet&rsquo;s pepper&mdash;Nepal.</p>
<div class="verse">
<p class="t0">&frac12; cup butter</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Lemon Peel</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">1 tablespoon SPICE ISLANDS Tarragon Wine Vinegar</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Tarragon</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Nepal Pepper</p>
</div>
<p>Melt butter; add Lemon Peel, Beau Monde, Onion Powder,
Tarragon Vinegar. Crush Tarragon, add to butter.
Stir well and let stand 15 to 20 minutes for flavors to
blend. Just before serving, heat but do not let butter
brown. Add Nepal Pepper. Serve as sauce for hot cooked
artichokes, broccoli, asparagus, broiled lobster or other
seafood.</p>
<h3 id="c20"><i>Herb Dumplings</i></h3>
<p>Flavorsome, featherlight dumplings for meat stews, or
chicken fricassee.</p>
<div class="verse">
<p class="t0">2 cups prepared biscuit mix</p>
<p class="t0">&frac34; cup cold water</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Sage</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Marjoram</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Thyme</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Sweet Basil</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Parsley</p>
</div>
<p>Mix all together and drop by teaspoonfuls on top of
boiling stew. Cover pan tightly, and steam slowly for 12
minutes. No peeking&mdash;it will make your dumplings
soggy. Sufficient for 2 quarts of stew or 8 persons.</p>
<div class="pb" id="Page_11">11</div>
<h3 id="c21"><i>Fricassee of Veal Mei Yen</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>Veal is usually very flat, pallid in flavor. This recipe
will give it character and give you a completely new
entree.</p>
<div class="verse">
<p class="t0">1&frac12; pounds Leg of Veal (cut into 2-inch chunks)</p>
<p class="t0">3 teaspoons SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Summer Savory</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Oregano</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">3 tablespoons chopped celery leaves</p>
<p class="t0">3 tablespoons bacon fat</p>
<p class="t0">3 tablespoons SPICE ISLANDS Arrowroot</p>
</div>
<p>Dredge veal in blend of Arrowroot and seasonings.
Brown meat mixture in hot fat, cover and cook slowly
until meat is tender. If meat should become dry, add
&frac12; cup boiling water or meat stock.</p>
<h3 id="c22"><i>Spice Islands Baked Ham Sauce</i></h3>
<div class="verse">
<p class="t0">1 cup brown sugar</p>
<p class="t0">1&frac12; tablespoons SPICE ISLANDS Arrowroot</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Mayonnaise Mustard</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Ground Cloves</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Ground Allspice</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Ground Cinnamon</p>
<p class="t0">&frac12; cup SPICE ISLANDS Tarragon Red Wine Vinegar</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">2 cups water</p>
<p class="t0">1 cup seedless raisins</p>
<p class="t0">2 tablespoons butter</p>
<p class="t0">&frac14; cup salad oil</p>
</div>
<p>Blend all dry ingredients and mix with liquids. Cook in
double boiler until raisins are plump.</p>
<p>Can be made and kept in refrigerator. Reheat as much
at a time as you wish to serve.</p>
<p>Excellent on fried ham.</p>
<div class="pb" id="Page_12">12</div>
<h3 id="c23"><i>Meat Loaf</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">1 cup fresh bread crumbs</p>
<p class="t0">&frac34; cup milk, tomato sauce, tomato juice, or diluted condensed tomato soup</p>
<p class="t0">1 teaspoon SPICE ISLANDS BOUQUET GARNI for Beef</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">1 tablespoon SPICE ISLANDS Green Bell Peppers</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Horseradish</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Hot Mustard</p>
<p class="t0">1 egg</p>
<p class="t0">1&frac12; pounds ground chuck</p>
</div>
<p>Place bread crumbs in large bowl. Heat milk or other
liquid to simmering, pour over crumbs. Crumble Bouquet
Garni and stir into bread crumb mixture along
with Instant Minced Onions, Green Peppers, Horseradish,
Beau Monde, salt, and Mustard. Beat in egg. Add
ground chuck and mix thoroughly. Shape into loaf and
place in flat roasting pan. Bake in moderate oven (350&deg;
F.) for 1&frac12; hours. Make gravy from pan drippings, if
desired.</p>
<h3 id="c24"><i>Macaroni Parmesan</i></h3>
<div class="verse">
<p class="t0">&frac12; lb. macaroni</p>
<p class="t0">&frac14; cup butter</p>
<p class="t0">&frac12; cup grated Parmesan cheese</p>
<p class="t0">1 teaspoon SPICE ISLANDS Shredded Parsley</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS SPICE PARISIENNE</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
</div>
<p>Boil macaroni in salted water until tender. Drain. Rinse
in boiling water. Add butter, cheese, Parsley, Spice
Parisienne, Beau Monde, salt, Pepper. Toss until butter
is melted and cheese and seasonings mixed throughout.
Serve with Italian Braised Beef. If desired, pack macaroni
into well buttered 1 quart ring mold. Set in 300&deg;
oven 15 to 20 min. Unmold on a heated platter and fill
with &ldquo;Italian Braised Beef&rdquo; (<a href="#Page_14">Page 14</a>).</p>
<div class="pb" id="Page_13">13</div>
<h3 id="c25"><i>Casserole &ldquo;Cochon&rdquo;</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">1 lb. link pork sausage</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">3 tablespoons SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1 can tomato paste</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Oregano, crushed</p>
<p class="t0">&#8539; piece SPICE ISLANDS Bay Laurel Leaf</p>
<p class="t0">1 cup water</p>
<p class="t0">1 cup dry white wine</p>
<p class="t0">1 teaspoon SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">&frac12; lb. macaroni</p>
<p class="t0">1 cup grated sharp Cheddar cheese</p>
</div>
<p>Cut each link of sausage into 3 pieces. Fry slowly until
well browned. Pour off all but 2 or 3 tablespoons of
drippings. Stir in Onions and Garlic Powder. Cook until
Onions are lightly browned. Add Powdered Mushrooms,
tomato paste, Oregano, Bay Leaf, water, wine; mix
well. Add Mei Yen, salt. Simmer 20 minutes. Meanwhile,
cook macaroni in boiling salted water until tender.
Combine with sauce and turn into large flat baking
dish. Sprinkle with grated Cheddar cheese. Bake 25
minutes at 350&deg; or until sauce is bubbling and cheese
melted.</p>
<h3 id="c26"><i>Sauerbraten</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">4 to 5 lbs. beef roast, round, chuck, rump or sirloin tip</p>
<p class="t0">1&frac12; tablespoons salt</p>
<p class="t0">3 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 3 tablespoons water</p>
<p class="t0">10 SPICE ISLANDS Whole Java Black Peppers, crushed</p>
<p class="t0">1 SPICE ISLANDS Bay Leaf broken into 3 pieces</p>
<p class="t0">3 SPICE ISLANDS Whole Cloves</p>
<p class="t0">1 cup SPICE ISLANDS Red Wine Vinegar</p>
<p class="t0">2 cups water</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot</p>
<p class="t0">2 tablespoons sugar</p>
<p class="t0">6 gingersnaps, crushed</p>
<p class="t0">&frac12; cup dry red wine</p>
<p class="t0">&frac12; cup sour cream</p>
</div>
<p>Have butcher cover roast with a thin layer of suet and
tie securely; place in a crock, glass bowl or unchipped
granite or enamelware pan. Combine salt, Onions, Pepper,
Bay Leaf, Whole Cloves, Red Wine Vinegar and
water. Pour over meat. Let stand 1&frac12; to 2 days, turning
meat 2 or 3 times daily. Take meat out of liquid;
dry. Brown meat on all sides in heavy frying pan. Place
<span class="pb" id="Page_14">14</span>
meat in roasting pan. Make a sauce by adding Arrowroot
to drippings in frying pan. Strain the pickling
liquid and stir into frying pan. Cook until thick and
smooth, stirring constantly. Add sugar, crushed gingersnaps,
red wine and cook until creamy. Pour sauce over
meat. Cover and roast in 350&deg; oven until meat is done,
about 2 hours. Baste frequently with sauce; if sauce
seems too thick, add water. When meat is done, remove
to platter. Stir sour cream into gravy. Serve meat and
gravy with Potato Pancakes.</p>
<h3 id="c27"><i>Spanish Rice</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>An excellent casserole for a barbecue. SPICE ISLANDS
Spaghetti Sauce Seasoning is the &ldquo;secret&rdquo; ingredient.</p>
<div class="verse">
<p class="t0">2 tablespoons SPICE ISLANDS Green Bell Peppers, crushed</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">3 tablespoons olive oil</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1 #2&frac12; can tomatoes</p>
<p class="t0">1 cup grated American cheese</p>
<p class="t0">2 tablespoons SPICE ISLANDS Spaghetti Sauce Seasoning</p>
<p class="t0">&frac34; cup rice</p>
<p class="t0">1 teaspoon salt</p>
</div>
<p>Cook Green Peppers, Onions in oil until tender. Add
Spaghetti Seasoning, Beau Monde, rice, tomatoes. Mix
thoroughly. Heat to boiling, add salt, pour into 1&frac12;-qt.
casserole. Cover, bake 35 min. in 350&deg; oven. Uncover,
sprinkle with cheese, return to oven until cheese is
melted.</p>
<h3 id="c28"><i>Italian Braised Beef</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">2 lbs. beef stew meat, cut in l-inch cubes</p>
<p class="t0">2 tablespoons SPICE ISLANDS Arrowroot</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">2 tablespoons olive oil</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">2 tablespoons SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1 teaspoon SPICE ISLANDS Beef Stock Base dissolved in 1 cup water</p>
<div class="pb" id="Page_15">15</div>
<p class="t0">1 8-oz. can tomato sauce</p>
<p class="t0">&frac14; cup dry red wine</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Oregano, crushed</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Sweet Basil</p>
<p class="t0">1 teaspoon SPICE ISLANDS MEI YEN Seasoning Powder</p>
</div>
<p>Combine Arrowroot, salt, Pepper, Garlic Powder. Roll
meat cubes in mixture. Brown in olive oil. Stir in
Onions, Powdered Mushrooms. Add bouillon, tomato
sauce. Stir until sauce is thick and smooth and Mushrooms
dissolved. Add wine, Beau Monde, Oregano,
Sweet Basil, Mei Yen. Cover; simmer two hours until
tender, stirring frequently. Add more water if sauce
becomes too thick. Serve with <b>Macaroni Parmesan</b> (<a href="#Page_12">Page 12</a>).</p>
<h3 id="c29"><i>Savory Beef Stew</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<div class="verse">
<p class="t0">2 pounds lean beef stew meat, cut into 1&frac12;-inch cubes</p>
<p class="t0">3 tablespoons flour</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">1 teaspoon SPICE ISLANDS Beef Stock Base dissolved in 1 cup boiling water</p>
<p class="t0">&frac14; cup dry red wine</p>
<p class="t0">1 teaspoon SPICE ISLANDS BOUQUET GARNI for Beef</p>
<p class="t0">2 tablespoons tomato paste</p>
<p class="t0">1 4-ounce can sliced or button mushrooms</p>
<p class="t0">6 small onions</p>
<p class="t0">3-4 carrots</p>
<p class="t0">1 cup frozen or fresh peas</p>
</div>
<p>Combine flour, Beau Monde, salt, Pepper, and Garlic
Powder. Coat meat with seasoned flour and brown in a
small amount of drippings, shortening, or oil in a heavy
kettle or Dutch oven. Pour Beef Stock over browned
meat; add wine, Bouquet Garni for Beef, tomato paste,
mushrooms, and liquid. Cover and simmer slowly until
meat is tender (2 to 3 hours). Add carrots and onions;
when almost tender, add peas and continue cooking
about 10 minutes or until peas are tender. Serve with
steamed rice, noodles, or mashed potatoes.</p>
<div class="pb" id="Page_16">16</div>
<h2 id="c30"><span class="small">SPICE ISLANDS HERB CHART</span></h2>
<p>Remember! Season lightly when experimenting&mdash;and just one or two herbs
to a dish. Just before using, pulverize herbs in palm of your hand.</p>
<table class="center" summary="">
<tr class="th"><th> </th><th>BASIL </th><th>BAY LEAVES </th><th>MARJORAM </th><th>OREGANO </th><th>DILL WEED </th><th>PEPPERMINT</th></tr>
<tr><td class="l"><span class="ss">APPETIZERS</span> </td><td class="l">TOMATO JUICE<br />SEAFOOD COCKTAIL </td><td class="l">TOMATO JUICE<br />ASPIC </td><td class="l">LIVER PATE<br />STUFFED MUSHROOMS<br />BUTTERS </td><td class="l">GUACAMOLE<br />TOMATO </td><td class="l">CHEESE DIPS<br />SEAFOOD SPREADS<br />PICKLES </td><td class="l">FRUIT CUP<br />MELON BALLS<br />CRANBERRY JUICE</td></tr>
<tr><td class="l"><span class="ss">SOUPS</span> </td><td class="l">TOMATO<br />CHOWDERS<br />SPINACH<br />MINESTRONE </td><td class="l">STOCK<br />BEAN </td><td class="l">SPINACH<br />CLAM BOUILLON<br />MOCK TURTLE<br />ONION </td><td class="l">TOMATO<br />BEAN<br />MINESTRONE </td><td class="l">BORSCHT<br />TOMATO<br />CHICKEN </td><td class="l">PEA</td></tr>
<tr><td class="l"><span class="ss">FISH</span> </td><td class="l">SHRIMPS<br />BROILED FISH<br />FILET OF SOLE<br />MACKEREL </td><td class="l">COURT BOUILLON<br />POACHED: HALIBUT, SALMON </td><td class="l">CREAMED CRAB<br />CREAMED TUNA<br />CLAMS, HALIBUT<br />SALMON </td><td class="l">SHRIMP<br />CLAMS<br />LOBSTER </td><td class="l">HALIBUT<br />SHRIMPS<br />SOLE </td><td class="l">GARNISH<br />FOR BROILED SHRIMPS, PRAWNS</td></tr>
<tr><td class="l"><span class="ss">EGGS OR CHEESE</span> </td><td class="l">SCRAMBLED EGGS<br />CREAM CHEESE<br />WELSH RAREBIT </td><td class="l"> </td><td class="l">OMELETTE AUX FINES HERBES<br />SCRAMBLED EGGS </td><td class="l">HUEVOS RANCHEROS </td><td class="l">OMELETTE<br />COTTAGE CHEESE </td><td class="l">CREAM CHEESE</td></tr>
<tr><td class="l"><span class="ss">MEATS</span> </td><td class="l">LIVER<br />LAMB<br />SAUSAGE </td><td class="l">STEWS<br />POT ROAST<br />SHISH KEBAB<br />TRIPE </td><td class="l">POT ROAST<br />PORK<br />BEEF<br />VEAL </td><td class="l">PORK<br />SAUSAGE<br />LAMB<br />MEAT LOAF </td><td class="l">BEEF<br />SWEETBREADS<br />VEAL<br />LAMB </td><td class="l">LAMB<br />VEAL</td></tr>
<tr><td class="l"><span class="ss">POULTRY AND GAME</span> </td><td class="l">VENISON<br />DUCK </td><td class="l">FRICASSEE<br />STEWS </td><td class="l">CREAMED CHICKEN<br />STUFFINGS<br />GOOSE </td><td class="l">MARINADES<br />STUFFINGS<br />PHEASANT<br />GUINEA HEN </td><td class="l">CHICKEN PIE<br />CREAMED CHICKEN</td></tr>
<tr><td class="l"><span class="ss">VEGETABLES</span> </td><td class="l">EGGPLANT<br />SQUASH<br />TOMATOES<br />ONIONS </td><td class="l">BOILED POTATOES<br />CARROTS<br />STEWED TOMATOES </td><td class="l">CARROTS<br />ZUCCHINI<br />PEAS<br />SPINACH </td><td class="l">TOMATOES<br />CABBAGE<br />LENTILS<br />BROCCOLI </td><td class="l">CABBAGE<br />BEETS<br />BEANS<br />CELERY </td><td class="l">CARROTS<br />NEW POTATOES<br />SPINACH<br />ZUCCHINI</td></tr>
<tr><td class="l"><span class="ss">SALADS</span> </td><td class="l">TOMATO<br />SEA FOOD<br />CHICKEN </td><td class="l">ASPIC<br />MARINADES FOR: BEET, ONION </td><td class="l">CHICKEN<br />MIXED GREEN </td><td class="l">VEGETABLE<br />BEAN<br />TOMATO </td><td class="l">COLESLAW<br />CUCUMBER<br />POTATO </td><td class="l">FRUIT<br />COLESLAW<br />ORANGE<br />PEAR</td></tr>
<tr><td class="l"><span class="ss">SAUCES</span> </td><td class="l">TOMATO<br />SPAGHETTI<br />ORANGE (FOR GAME)<br />BUTTER (FOR FISH) </td><td class="l">ALL MARINADES<br />ESPAGNOLE<br />CHAMPAGNE </td><td class="l">CREAM SAUCE<br />BROWN SAUCE<br />SOUR CREAM </td><td class="l">SPAGHETTI<br />TOMATO </td><td class="l">CREAM (FOR FISH)<br />TARTAR </td><td class="l">MINT</td></tr>
<tr><td class="l"><span class="ss">DESSERTS AND BEVERAGES</span> </td><td class="l">FRUIT COMPOTE </td><td class="l">CUSTARDS AND CREAMS </td><td class="l"> </td><td class="l"> </td><td class="l"> </td><td class="l">FRUIT COMPOTE<br />FROSTINGS<br />ICES<br />TEA</td></tr>
</table>
<div class="pb" id="Page_17">17</div>
<table class="center" summary="">
<tr class="th"><th> </th><th>ROSEMARY </th><th>SAFFRON </th><th>SAGE </th><th>SAVORY </th><th>TARRAGON </th><th>THYME</th></tr>
<tr><td class="l"><span class="ss">APPETIZERS</span> </td><td class="l">FRUIT CUP </td><td class="l"> </td><td class="l">SHARP CHEESE SPREADS </td><td class="l">VEGETABLE JUICE COCKTAIL </td><td class="l">TOMATO JUICE<br />CHEESE SPREADS<br />LIVER PATES </td><td class="l">TOMATO JUICE<br />FISH SPREADS<br />COCKTAILS</td></tr>
<tr><td class="l"><span class="ss">SOUPS</span> </td><td class="l">TURTLE<br />PEA<br />SPINACH<br />CHICKEN </td><td class="l">BOUILLABAISSE<br />CHICKEN<br />TURKEY </td><td class="l">CHICKEN<br />CHOWDERS </td><td class="l">LENTIL<br />BEAN<br />VEGETABLE </td><td class="l">CHICKEN<br />MUSHROOM<br />TOMATO<br />PEA </td><td class="l">BORSCHT<br />GUMBO, PEA<br />CLAM CHOWDER<br />VEGETABLE</td></tr>
<tr><td class="l"><span class="ss">FISH</span> </td><td class="l">SALMON<br />HALIBUT </td><td class="l">HALIBUT<br />SOLE </td><td class="l">HALIBUT<br />SALMON </td><td class="l">CRAB<br />SALMON </td><td class="l">BROILED FISH<br />LOBSTER THERMIDOR </td><td class="l">CREAMED TUNA<br />SCALLOPS<br />CRAB<br />SOLE</td></tr>
<tr><td class="l"><span class="ss">EGGS OR CHEESE</span> </td><td class="l">OMELETTE<br />SCRAMBLED EGGS </td><td class="l">CREAM CHEESE<br />SCRAMBLED EGGS </td><td class="l">CHEDDAR<br />COTTAGE </td><td class="l">SCRAMBLED EGGS<br />DEVILED EGGS </td><td class="l">ALL EGG DISHES<br />OMELETTE AUX FINE HERBES </td><td class="l">SHIRRED EGGS<br />COTTAGE CHEESE</td></tr>
<tr><td class="l"><span class="ss">MEATS</span> </td><td class="l">LAMB<br />VEAL RAGOUT<br />BEEF STEW<br />HAM LOAF </td><td class="l">VEAL </td><td class="l">STEWS<br />PORK<br />SAUSAGE </td><td class="l">PORK<br />VEAL </td><td class="l">VEAL<br />SWEETBREADS<br />YORKSHIRE PUDDING </td><td class="l">MUTTON<br />MEAT LOAF<br />VEAL</td></tr>
<tr><td class="l"><span class="ss">POULTRY AND GAME</span> </td><td class="l">PARTRIDGE<br />CAPON<br />DUCK<br />RABBIT </td><td class="l">CHICKEN<br />RABBIT </td><td class="l">GOOSE<br />TURKEY<br />RABBIT<br />STUFFINGS </td><td class="l">CHICKEN<br />STUFFINGS </td><td class="l">CHICKEN<br />SQUAB<br />DUCK </td><td class="l">STUFFINGS<br />VENISON<br />FRICASSEE<br />PHEASANT</td></tr>
<tr><td class="l"><span class="ss">VEGETABLES</span> </td><td class="l">PEAS<br />SPINACH<br />FRENCH FRIED POTATOES </td><td class="l">RISOTTO<br />SPANISH RICE<br />RICE </td><td class="l">LIMA BEANS<br />EGGPLANT<br />ONIONS<br />TOMATOES </td><td class="l">BEANS<br />RICE<br />LENTILS<br />SAUERKRAUT </td><td class="l">SALSIFY<br />CELERY ROOT<br />MUSHROOMS<br />BAKED POTATOES </td><td class="l">ONIONS<br />CARROTS<br />BEETS</td></tr>
<tr><td class="l"><span class="ss">SALADS</span> </td><td class="l">FRUIT </td><td class="l">SEA FOOD<br />CHICKEN </td><td class="l"> </td><td class="l">MIXED GREEN<br />STRING BEAN<br />POTATO </td><td class="l">MIXED GREEN<br />CHICKEN<br />FRUIT<br />SEA FOOD </td><td class="l">BEETS<br />TOMATO<br />ASPICS</td></tr>
<tr><td class="l"><span class="ss">SAUCES</span> </td><td class="l">CREAM SAUCE<br />BARBECUE<br />TOMATO </td><td class="l">FISH SAUCE </td><td class="l"> </td><td class="l">HORSERADISH<br />FISH SAUCES </td><td class="l">BEARNAISE<br />TARTARE<br />VERTE<br />MUSTARD </td><td class="l">CREOLE<br />ESPAGNOLE<br />HERB BOUQUETS</td></tr>
<tr><td class="l"><span class="ss">DESSERTS AND BEVERAGES</span> </td><td class="l">FRUIT COMPOTE<br />JELLY<br />GIN PUNCH </td><td class="l">CAKE<br />BUNS<br />FROSTINGS </td><td class="l">SAGE TEA </td><td class="l">STEWED PEARS</td></tr>
</table>
<div class="pb" id="Page_18">18</div>
<h3 id="c31"><i>Braciuolini</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>A classic Italian dish. Serve it with spaghetti tossed in
butter, SPICE ISLANDS Shredded Parsley, and grated
Parmesan cheese.</p>
<div class="verse">
<p class="t0">1&frac12; pounds round steak, cut &frac14; inch thick</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">6 teaspoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Garlic Chips</p>
<p class="t0">2 tablespoons butter</p>
<p class="t0">1 cup water</p>
<p class="t0">&frac12; cup dry white wine</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS BOUQUET GARNI for Beef</p>
</div>
<p>Cut steak into 6 pieces. Combine Mei Yen, Pepper, and
salt. Sprinkle onto pieces of steak. Sprinkle each piece
of steak with 1 teaspoon of Instant Minced Onions;
divide Garlic Chips evenly and sprinkle onto each piece
of steak. Roll tightly and tie with string. Brown rolls
in butter in heavy frying pan. Add water and wine.
Crush Bouquet Garni and sprinkle over rolls. Cover
tightly and simmer rolls 30 to 40 minutes or until tender.
If desired, thicken sauce with 1 teaspoon SPICE
ISLANDS Arrowroot mixed with 2 or 3 tablespoons cold
water.</p>
<div class="box">
<p>SPICE ISLANDS BOUQUET GARNI for Soups
and SPICE ISLANDS BOUQUET GARNI for Beef
are superb seasonings for hearty beef dishes and
satisfying soups. Each is a perfect blend of the
&ldquo;just right&rdquo; herbs designed to enhance and compliment
the foods in which they are used.</p>
</div>
<div class="pb" id="Page_19">19</div>
<h3 id="c32"><i>Speedy Mixed Bean Pot</i> <span class="jri smaller ni">(8 Servings)</span></h3>
<p>For this quickly-made hearty casserole, use whatever
canned beans you have on the shelf&mdash;baked beans,
pork and beans, garbanzos, limas, pintos, etc. Made
from vegetarian-type beans, you can have a completely
meatless main dish with a good smoky flavor.</p>
<div class="verse">
<p class="t0">3 one-pound cans beans such as vegetarian baked beans, limas, pintos, kidney beans, etc.</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">2 tablespoons salad oil</p>
<p class="t0">&frac14; cup chili sauce</p>
<p class="t0">2 tablespoons molasses</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Hot Mustard</p>
<p class="t0">2 teaspoons SPICE ISLANDS OLD HICKORY Smoked Salt</p>
</div>
<p>Empty beans into 2-quart casserole. Cook Onions in oil
until tender but not brown. Stir into beans along with
chili sauce, molasses, Mustard and Old Hickory Salt.
Bake in a 350&deg;F. oven for 40 to 50 minutes.</p>
<h3 id="c33"><i>Beef Stroganoff</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<div class="verse">
<p class="t0">1&frac12; to 2 pounds sirloin steak</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot</p>
<p class="t0">1 teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">4 tablespoons butter</p>
<p class="t0">3 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 3 tablespoons water</p>
<p class="t0">2 tablespoons SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1&frac12; tablespoons SPICE ISLANDS Chicken Seasoned Stock Base dissolved in 2 cups water</p>
<p class="t0">&frac14; cup dry white wine</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS SPICE PARISIENNE</p>
<p class="t0">1 cup sour cream</p>
<p class="t0">2 tablespoons sherry</p>
</div>
<p>Cut meat in 1-inch cubes. Combine Arrowroot, salt,
Pepper, and Garlic Powder. Roll meat in Arrowroot mixture;
brown in butter. Add Onions and Mushrooms, mix
thoroughly. Pour in Chicken Seasoned Stock Base and
white wine. Season with Spice Parisienne. Cover and
simmer 1 hour or until meat is very tender. Stir occasionally.
Just before serving stir in sour cream and
sherry.</p>
<div class="pb" id="Page_20">20</div>
<h3 id="c34"><i>Lamb Curry</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>This Lamb Curry is real party fare. Serve with steamed
rice and a variety of condiments such as chutney,
chopped or sieved hard-cooked eggs, chopped peanuts,
raisins, flaked coconut, sliced bananas, pineapple
chunks, chopped crisp bacon, chopped green onions and
sliced tomatoes.</p>
<div class="verse">
<p class="t0">1 fresh coconut</p>
<p class="t0">1&frac12; to 2 pounds lamb shoulder, cut in 1-inch cubes</p>
<p class="t0">2&frac12; cups boiling water</p>
<p class="t0">1 teaspoon SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">2 teaspoons salt</p>
<p class="t0">1 tablespoon SPICE ISLANDS Curry Powder</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Rosemary</p>
<p class="t0">1 medium-size tart apple, peeled and diced</p>
<p class="t0">1 medium-size tomato, peeled and diced</p>
<p class="t0">1 tablespoon chopped SPICE ISLANDS Crystallized Ginger</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Lemon Peel</p>
<p class="t0">1 cup sliced celery</p>
<p class="t0">&frac12; cup evaporated milk</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot, mixed in 1 tablespoon cold water</p>
</div>
<p>Break coconut and save any liquid; grate coconut meat;
pour 2 cups boiling water over grated coconut and let
stand for one hour, then strain liquid through a double
thickness cheese cloth (squeeze coconut to extract all
possible liquid). To strained liquid add liquid from
coconut, if any. Trim excess fat from meat. Render a
piece of fat in a heavy kettle or Dutch oven. Brown
cubed meat in melted fat and season with Mei Yen,
salt and Curry Powder. Add Instant Onions, Garlic
Powder, &frac12; cup boiling water, crushed Bouquet Garni,
apple, tomato, Crystallized Ginger and Lemon Peel.
Cook slowly for 1 hour or until lamb is tender. Add
coconut liquid and sliced celery; cook until celery is
barely tender. Add Arrowroot and stir constantly until
sauce is thickened. Just before serving stir in evaporated
milk.</p>
<div class="pb" id="Page_21">21</div>
<h3 id="c35"><i>Old Hickory Hamburgers</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<div class="verse">
<p class="t0">1 pound ground beef</p>
<p class="t0">1 teaspoon SPICE ISLANDS Onion Powder</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS MSG</p>
<p class="t0">1 teaspoon SPICE ISLANDS OLD HICKORY Smoked Salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
</div>
<p>Mix together ground beef, Onion Powder, MSG, Old
Hickory Smoked Salt, and Pepper. Let stand an hour or
so for flavors to develop. Shape into patties. Pan-broil,
cook on grill, or barbecue. Serve hot.</p>
<h3 id="c36"><i>Saffron Veal Strips</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>The subtle flavor of Saffron makes veal into a distinctive
delicacy. Measure Saffron with great care. Its flavor
is very potent when too much is used. If you should
care for a stronger Saffron flavor, add the merest speck
at a time.</p>
<div class="verse">
<p class="t0">2 pounds veal steak</p>
<p class="t0">&frac14; cup butter</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">&sup1;/&#8323;&#8322; teaspoon SPICE ISLANDS Saffron</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Cracked Java Black Pepper</p>
<p class="t0">1 tablespoon SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Thyme, crushed</p>
<p class="t0">2 cups rich milk</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot</p>
</div>
<p>Cut meat into strips about &frac12;-inch wide. Remove bones
and connective tissue. Melt butter in heavy frying pan;
add veal strips, brown lightly. Combine Garlic Powder,
Mei Yen, Saffron, Beau Monde, salt, and Pepper. Sprinkle
over veal, turn meat and stir until coated with seasonings.
Add Onions and Thyme, sprinkle over meat.
Cover and cook over low heat until veal is tender
(about 45 minutes). Add milk. Moisten Arrowroot with
a little cold water and mix into meat. Cook, stirring
constantly, until sauce is thickened and smooth. Serve
over buttered noodles or steamed rice.</p>
<div class="pb" id="Page_22">22</div>
<h3 id="c37"><i>Poultry Stuffing</i></h3>
<p><b>TO STUFF 4-POUND CHICKEN</b>: Mix 3 cups crumbs
from fresh bread, 1 tablespoon <b>SPICE ISLANDS</b> Poultry
Seasoning, 1 tablespoon <b>SPICE ISLANDS</b> Instant Minced
Onions soaked in 1 tablespoon water, 2 tablespoons
melted butter. Add no liquid or dressing will be soggy.</p>
<p><b>TO STUFF 15-POUND TURKEY</b>: Mix 10 cups crumbs
from fresh bread, 3 tablespoons <b>SPICE ISLANDS</b> Poultry
Seasoning, 4 tablespoons <b>SPICE ISLANDS</b> Instant
Minced Onions soaked in 4 tablespoons water, &frac12; cup
melted butter. Add no liquid or dressing will be soggy.</p>
<p>Use above recipe to stuff veal, pork, lamb shoulder.</p>
<p>Rub pork and veal with Poultry Seasoning for extra
flavor.</p>
<h3 id="c38"><i>Poulet Bercy</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<div class="verse">
<p class="t0">1 large broiler, quartered</p>
<p class="t0">1 tablespoon SPICE ISLANDS Instant Minced Onions soaked in 1 tablespoon water</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">1 tablespoon SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Thyme</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Tarragon</p>
<p class="t0">1 teaspoon SPICE ISLANDS Shredded Parsley</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Sage</p>
<p class="t0">3 tablespoons butter, melted</p>
<p class="t0">&frac14;&Prime; piece SPICE ISLANDS Bay Leaf</p>
<p class="t0">&frac12; cup dry white wine</p>
<p class="t0">2 teaspoons SPICE ISLANDS Chicken Seasoned Stock Base</p>
<p class="t0">1 egg yolk, beaten</p>
<p class="t0">1 cup light cream</p>
</div>
<p>Arrange chicken in flat pan. Mix butter, Onions, Garlic
Powder, Mushrooms. Cook gently 5 minutes. Add
crushed Thyme, Tarragon, Parsley, Sage, Bay Leaf, wine,
Chicken Base. Pour over chicken. Marinate 1 hour. Turn
occasionally. Bake 30 minutes at 400&deg;. Baste often.
When done, arrange on hot plates. Put egg, cream in
pan, add sauce from chicken. Simmer until thickened.
Stir constantly. Pour on chicken.</p>
<div class="pb" id="Page_23">23</div>
<h3 id="c39"><i>Creole Shrimp Gumbo</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>If you prefer, use crab, lobster, oysters, or other seafood.</p>
<div class="verse">
<p class="t0">2 tablespoons salad oil</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">2 cups hot water</p>
<p class="t0">1 tablespoon SPICE ISLANDS Chicken Seasoned Stock Base</p>
<p class="t0">4 teaspoons SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">2 teaspoons SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Garlic Powder</p>
<p class="t0">4 SPICE ISLANDS Chili Pequins</p>
<p class="t0">1 tablespoon SPICE ISLANDS Green Bell Peppers</p>
<p class="t0">&frac14; cup chopped celery</p>
<p class="t0">2 teaspoons SPICE ISLANDS Shredded Parsley</p>
<p class="t0">1 1-inch piece SPICE ISLANDS Bay Leaf</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Thyme, crushed</p>
<p class="t0">3 cups cooked or canned tomatoes</p>
<p class="t0">1&frac12; to 2 pounds cooked, cleaned shrimp</p>
<p class="t0">1&frac12; teaspoons SPICE ISLANDS Gumbo Fil&eacute;</p>
</div>
<p>Heat oil in large kettle; cook Onions in oil until golden.
Add hot water, Chicken Seasoned Stock Base, Beau
Monde, Mei Yen, Garlic Powder, Chili Pequins, Green
Peppers, celery, Parsley, Bay Leaf, Thyme, and tomatoes.
Simmer for about 1 hour. Add shrimp and cook
15 minutes; stir in Gumbo Fil&eacute; and serve at once in
soup bowls over steamed rice.</p>
<h3 id="c40"><i>Old Hickory Fish Chowder</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>A quickly prepared chowder that&rsquo;s filling enough for
the main course for lunch or supper. Old Hickory Fish
Chowder has a robust smoky flavor even though it
hasn&rsquo;t a bit of meat in it. Use either fresh or frozen
fish, whichever you prefer.</p>
<div class="verse">
<p class="t0">1 pound halibut, haddock, cod, or other firm white fish</p>
<p class="t0">2 cups cubed, raw potatoes</p>
<p class="t0">3 cups water</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Whole Celery Seed</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Medium Grind Java Black Pepper</p>
<p class="t0">2 cups rich milk</p>
<p class="t0">2 teaspoons SPICE ISLANDS OLD HICKORY Smoked Salt</p>
<p class="t0">1 tablespoon butter</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Dill Weed or Rosemary</p>
</div>
<p>Cut fish into cubes; remove any skin and bones. Place
<span class="pb" id="Page_24">24</span>
in 3-quart kettle or saucepan. Add potatoes, water,
Onions, Celery Seed, salt, and Pepper. Simmer 30 to 35
minutes or until fish and potatoes are done. Add milk,
Old Hickory, and butter; heat just to boiling. Crush
Dill Weed or Rosemary and sprinkle on chowder. Serve
in large soup plates or bowls as a main course with
crisp crackers.</p>
<div class="box">
<p>SPICE ISLANDS Beef Stock Base is a superb seasoning
for many vegetables: fresh, canned, and frozen.</p>
</div>
<h3 id="c41"><i>Potatoes</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>Peel 3 medium-size potatoes and cut into cubes. Add
4 teaspoons SPICE ISLANDS Beef Stock Base and &frac12;
cup water; cover and cook until tender and liquid is
absorbed, turn potatoes in liquid once or twice while
cooking. Sprinkle with Spice Islands Java Black Pepper.</p>
<h3 id="c42"><i>Onions</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>Peel 1 to 1&frac12; pounds small yellow or white onions.
Place in 1-quart casserole. Stir 1 tablespoon SPICE
ISLANDS Beef Stock Base into &frac34; cup water and pour
over onions. Cover and bake in a 350&deg; F. oven for about
1 hour or until tender.</p>
<h3 id="c43"><i>Carrots</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>Scrape and slice 3 medium-size carrots. Add 1 tablespoon
SPICE ISLANDS Beef Stock Base and &frac12; cup
water. Cook over low heat until tender, turn once or
twice during cooking.</p>
<h3 id="c44"><i>Frozen Vegetables</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p class="center"><b>(Such as lima beans, green beans, or broccoli)</b></p>
<p>Stir 2 teaspoons SPICE ISLANDS Beef Stock Base into
&frac12; cup water. Place frozen vegetables in saucepan and
pour Beef Stock over vegetables. Cover and cook until
tender, turn vegetables once or twice during cooking.</p>
<div class="pb" id="Page_25">25</div>
<h3 id="c45"><i>Canned Vegetables</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p class="center"><b>(Such as green or yellow beans, carrots, or mixed vegetables)</b></p>
<p>Drain liquid from 1-pound can vegetables. Add 1 teaspoon
SPICE ISLANDS Beef Stock Base and 1 teaspoon
SPICE ISLANDS Instant Minced Onions. Simmer until
liquid is reduced to about &frac14; cup. Add vegetables; heat
thoroughly. Add 1 tablespoon butter, if desired.</p>
<h3 id="c46"><i>Gingered Carrots</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<div class="verse">
<p class="t0">1 pound carrots</p>
<p class="t0">&frac12; cup water</p>
<p class="t0">&frac12; tsp. SPICE ISLANDS MEI YEN Seasoning Powder</p>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Ground Jamaica Ginger</p>
<p class="t0">&frac12; teaspoon sugar</p>
<p class="t0">2 tablespoons butter</p>
</div>
<p>Scrape carrots. Cut into julienne strips. Cook in &frac12; cup
water seasoned with Mei Yen Seasoning Powder. When
tender, add Ground Ginger, sugar, and butter. Continue
cooking 3 or 4 minutes, tossing gently.</p>
<h3 id="c47"><i>Savory Zucchini</i> <span class="jri smaller ni">(4 Servings)</span></h3>
<p>Cutting the zucchini into thin match-like sticks and
cooking only until crisp-tender is one of the secrets of
this unusual way with zucchini.</p>
<div class="verse">
<p class="t0">1 pound zucchini</p>
<p class="t0">2 tablespoons butter</p>
<p class="t0">1 tablespoon SPICE ISLANDS Instant Minced Onions</p>
<p class="t0">4 teaspoons SPICE ISLANDS Beef Stock Base</p>
<p class="t0">&frac12; cup water</p>
</div>
<p>Wash zucchini and cut in half. Slice thinly lengthwise;
then slice again into match-like sticks. Melt butter in
wide heavy frying pan. Add Instant Minced Onions,
Beef Stock Base, and water. Stir to mix and add zucchini.
Cook quickly over high heat, turning frequently
with pancake turner or bread spatula. Cook only until
zucchini is crisp-tender and liquid absorbed, about 5
minutes. Serve at once.</p>
<div class="pb" id="Page_26">26</div>
<h3 id="c48"><i>Chicken Livers Stroganoff</i> <span class="jri smaller ni">(5 Servings)</span></h3>
<div class="verse">
<p class="t0">1 lb. chicken livers</p>
<p class="t0">&frac14; cup butter</p>
<p class="t0">2 tablespoons SPICE ISLANDS Instant Minced Onions soaked in 2 tablespoons water</p>
<p class="t0">2 teaspoons SPICE ISLANDS Arrowroot</p>
<p class="t0">2 tablespoons SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1 teaspoon SPICE ISLANDS Chicken Seasoned Stock Base mixed in &frac12; cup water</p>
<p class="t0">&frac12; pint sour cream</p>
<p class="t0">1 teaspoon SPICE ISLANDS BEAU MONDE Seasoning</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS SPICE PARISIENNE</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">2 tablespoons sherry</p>
<p class="t0">1 teaspoon SPICE ISLANDS Shredded Parsley</p>
</div>
<p>Cut livers in two. Brown in butter in frying pan 5 minutes,
turning frequently. Remove livers, and stir in
Onions, Arrowroot, Powdered Mushrooms, Chicken Stock
and cook until thickened. Stir in sour cream, Beau
Monde, Spice Parisienne, salt, Pepper. Add chicken livers,
sherry. Heat thoroughly but do not boil. Sprinkle
with Parsley.</p>
<h3 id="c49"><i>Crab Meat in Mushroom Sauce Parisienne</i> <span class="jri smaller ni">(4 servings)</span></h3>
<p>The superbly flavored sauce makes this an exceptionally
good luncheon or buffet dish.</p>
<div class="verse">
<p class="t0">1 pound crab meat</p>
<p class="t0">2 tablespoons butter</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot</p>
<p class="t0">1 tablespoon SPICE ISLANDS Powdered Mushrooms</p>
<p class="t0">1 tablespoon SPICE ISLANDS Chicken Seasoned Stock Base</p>
<p class="t0">&frac12; cup hot water</p>
<p class="t0">&frac12; cup rich milk or cream</p>
<p class="t0">&frac12; cup dry white wine</p>
<p class="t0">&frac14; teaspoon SPICE ISLANDS Tarragon, crushed</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS SPICE PARISIENNE</p>
<p class="t0">&#8539; teaspoon SPICE ISLANDS Fine Grind Java Black Pepper</p>
<p class="t0">&frac12; cup buttered bread crumbs</p>
</div>
<p>Arrange crab meat in a lightly buttered baking dish, or
individual ramekins. In a saucepan melt butter, stir in
Arrowroot, Mushrooms. Dissolve Chicken Base in hot
water. Stir into sauce and cook until sauce is thick,
smooth. Add cream, wine, stir until smooth. Add Tarragon,
Spice Parisienne, Pepper. Pour over crab meat
and top with crumbs. Bake in 350&deg; oven until bubbly
and brown.</p>
<div class="pb" id="Page_27">27</div>
<table class="center" summary="">
<tr class="th"><th colspan="7">VINEGAR CHART</th></tr>
<tr class="th"><th>SPICE ISLANDS </th><th>SALADS </th><th>VEGETABLES </th><th>MEATS </th><th>FISH </th><th>SAUCES </th><th>GRAVIES</th></tr>
<tr><td class="l"><b>TARRAGON Red Wine VINEGAR</b> </td><td class="l">FRUIT<br />GREEN<br />POTATO<br />FISH </td><td class="l">BAKED BEANS<br />BEETS<br />CHARD<br />SPINACH<br />WATER CRESS </td><td class="l">STEWS<br />ROASTS<br />BROILED CHICKEN<br />BUTTER SAUCE </td><td class="l">BAKED<br />BROILED WITH BUTTER SAUCE </td><td class="l">FISH<br />GAME<br />RAVIGOTE<br />VINAIGRETTE<br />SPANISH </td><td class="l">A FEW DROPS IN MEAT GRAVIES TO TASTE</td></tr>
<tr><td class="l"><b>GARLIC Red Wine VINEGAR</b> </td><td class="l">FISH<br />GREEN<br />POTATO<br />VEGETABLE </td><td class="l">BAKED BEANS<br />ARTICHOKES<br />SPROUTS<br />WATER CRESS </td><td class="l">POT ROAST<br />ROAST LAMB<br />STEWS </td><td class="l">BAKED<br />BROILED WITH BUTTER SAUCE </td><td class="l">TARTAR<br />FISH</td></tr>
<tr><td class="l"><b>ESCHALOT Red Wine VINEGAR</b> </td><td class="l">SLICED ONION OR CUCUMBER<br />LOBSTER<br />CRAB<br />SHRIMP<br />GREEN<br />POTATOES </td><td class="l">ARTICHOKES<br />CUCUMBERS<br />ONIONS </td><td class="l">RAGOUTS </td><td class="l">AU GRATIN </td><td class="l">FISH<br />MUSHROOM</td></tr>
<tr><td class="l"><b>BASIL White Wine VINEGAR</b> </td><td class="l">FRUIT<br />GREEN<br />TOMATO<br />LOBSTER<br />CRAB </td><td class="l">TOMATOES<br />BEETS<br />STRING BEANS<br />CARROTS JULIENNE </td><td class="l">A FEW DROPS ON ROAST LAMB AND STEWS TO TASTE </td><td class="l">FROG LEGS<br />DEVILED CRAB<br />LOBSTER </td><td class="l">TOMATO<br />FISH </td><td class="l">A FEW DROPS IN LAMB GRAVY TO TASTE</td></tr>
</table>
<div class="pb" id="Page_28">28</div>
<h3 id="c50"><i>Vanilla Sauce</i> <span class="jri smaller ni">(8 Servings)</span></h3>
<p>Simple desserts like bread pudding, chocolate blanc
mange, or whipped fruit gelatin become something
special when topped with this smooth sauce.</p>
<div class="verse">
<p class="t0">2&Prime; piece SPICE ISLANDS Vanilla Bean</p>
<p class="t0">1 cup milk</p>
<p class="t0">1 cup light cream</p>
<p class="t0">&frac12; cup sugar</p>
<p class="t0">4 egg yolks, beaten</p>
<p class="t0">&frac14; cup heavy cream</p>
</div>
<p>Split Vanilla Bean, scrape out pulp, add pulp and pod
to milk and cream in top of double boiler, scald over
direct heat. Remove Vanilla Pod. Stir in sugar. Beat
egg yolks slightly. Beat milk into egg yolks. Return to
top of double boiler. Place over hot water, cook until
custard coats a metal spoon. Stir constantly. Strain,
cool. Whip cream until stiff and fold into custard.</p>
<h3 id="c51"><i>Orange Hard Sauce</i></h3>
<div class="verse">
<p class="t0">&frac12; cup butter</p>
<p class="t0">1 tablespoon SPICE ISLANDS Orange Peel</p>
<p class="t0">4 cups sifted powdered sugar</p>
<p class="t0">1 egg</p>
<p class="t0">2 tablespoons Vanilla Brandy</p>
</div>
<p>Cream butter, add SPICE ISLANDS Orange Peel and
powdered sugar. Beat in egg. Add Vanilla Brandy and
blend thoroughly. Serve on plum pudding, mince pie or
to frost plain or angel food cake.</p>
<h3 id="c52"><i>Vanilla Brandy</i></h3>
<p>The most delicious flavoring extract imaginable!</p>
<p>Cut two SPICE ISLANDS Mexican Vanilla Beans in 1&Prime;
pieces. Split pods open. Drop into a half pint brandy.
Tightly close bottle, let stand 30 days. Use for flavoring
whipped cream, ice cream, hard sauce, cakes, pies, and
puddings.</p>
<div class="pb" id="Page_29">29</div>
<h3 id="c53"><i>Ginger Apple Pie</i> <span class="jri smaller ni">(6 Servings)</span></h3>
<p>Adding a new flavor to an American tradition.</p>
<div class="verse">
<p class="t0">1 #2 can pie-sliced apples</p>
<p class="t0">1 tablespoon SPICE ISLANDS Arrowroot</p>
<p class="t0">&#8532; cup brown sugar</p>
<p class="t0">1 to 2 tablespoons SPICE ISLANDS Crystallized Ginger, finely chopped</p>
<p class="t0">1 tablespoon butter</p>
<p class="t0">Pastry for 8&Prime; double crust pie</p>
</div>
<p>Drain apples. Combine juice with Arrowroot and cook
over low heat until juice starts to thicken. Stir in sugar,
apples and Ginger. Pour into pastry-lined 8&Prime; pie pan.
Dot with butter. Top with pastry. Bake 40 minutes in
400&deg; oven or until crust is done and brown.</p>
<h3 id="c54"><i>Spice Gems</i> <span class="jri smaller ni">(Makes 20 Cookies)</span></h3>
<div class="verse">
<p class="t0">3 cups flour</p>
<p class="t0">1 teaspoon baking soda</p>
<p class="t0">3 teaspoons SPICE ISLANDS Pumpkin Pie Spice</p>
<p class="t0">1 teaspoon SPICE ISLANDS Ground Nutmeg</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">&#8531; cup shortening</p>
<p class="t0">2 cups brown sugar</p>
<p class="t0">&#8532; cup thick sour cream</p>
<p class="t0">2 well-beaten eggs</p>
<p class="t0">2 teaspoons vanilla</p>
</div>
<p>Cream shortening, add sugar, beating until light, fluffy.
Add vanilla, eggs, mix thoroughly. Sift flour, soda,
Spices, salt together 3 times. Add alternately with sour
cream to shortening mixture. Mix well. Drop from teaspoon
onto greased baking sheet. Bake in 350&deg; oven
for 12 minutes.</p>
<h3 id="c55"><i>Greek Walnut Cake</i> <span class="jri smaller ni">(12 Servings)</span></h3>
<p>Certainly different in the way of desserts is this torte-like
cake. Serve it plain, or top with whipped cream
flavored with Vanilla Brandy and slivered Crystallized
Ginger.</p>
<div class="verse">
<p class="t0">3 cups ground walnuts (about &frac12; pound shelled walnuts)</p>
<p class="t0">9 eggs</p>
<p class="t0">1 cup sugar</p>
<p class="t0">&frac12; cup fine dry bread crumbs</p>
<p class="t0">1 tablespoon SPICE ISLANDS Orange Peel</p>
<p class="t0">1&frac12; teaspoons SPICE ISLANDS Lemon Peel</p>
<p class="t0">&frac12; teaspoon salt</p>
<p class="t0">1 teaspoon SPICE ISLANDS Ground Cinnamon</p>
<div class="pb" id="Page_30">30</div>
<p class="t0">&frac12; teaspoon SPICE ISLANDS Ground Cloves</p>
<p class="t0">2 teaspoons baking powder</p>
<p class="t0">&frac14; cup Vanilla Brandy</p>
<p class="t0">3 tablespoons water</p>
</div>
<p>Grind walnuts through medium blade of food chopper.
Separate eggs; beat egg yolks and sugar until thick and
lemon colored. Mix the ground nuts with bread crumbs,
Orange Peel, Lemon Peel, salt, Cinnamon, Cloves, and
baking powder. Stir into egg yolk mixture. Mix in
Vanilla Brandy and water. Beat egg whites until stiff
but not dry. Fold gently, but thoroughly, into batter.
Pour into greased 12&Prime; &times; 9&Prime; baking pan. Bake in 350&deg; F.
oven 30 to 35 minutes or until a sharp knife inserted in
center comes out clean.</p>
<h2 id="c56"><span class="small"><i>Index</i></span></h2>
<p class="center"><a class="ab" href="#index_A">A</a> <a class="ab" href="#index_B">B</a> <a class="ab" href="#index_C">C</a> <a class="ab" href="#index_D">D</a> <span class="ab">E</span> <a class="ab" href="#index_F">F</a> <a class="ab" href="#index_G">G</a> <a class="ab" href="#index_H">H</a> <span class="ab">I</span> <span class="ab">J</span> <span class="ab">K</span> <a class="ab" href="#index_L">L</a> <a class="ab" href="#index_M">M</a> <a class="ab" href="#index_N">N</a> <a class="ab" href="#index_O">O</a> <a class="ab" href="#index_P">P</a> <span class="ab">Q</span> <a class="ab" href="#index_R">R</a> <a class="ab" href="#index_S">S</a> <a class="ab" href="#index_T">T</a> <span class="ab">U</span> <a class="ab" href="#index_V">V</a> <span class="ab">W</span> <span class="ab">X</span> <span class="ab">Y</span> <span class="ab">Z</span></p>
<dl class="indexlr">
<dt class="center b" id="index_A">A</dt>
<dt class="rj">Page</dt>
<dt><span class="jl">Allspice</span> <a href="#Page_11">11</a></dt>
<dt><span class="jl">Arrowroot</span> <a href="#Page_8">8</a>-<a href="#Page_11">11</a>-<a href="#Page_13">13</a>-<a href="#Page_14">14</a>-<a href="#Page_19">19</a>-<a href="#Page_20">20</a>-<a href="#Page_21">21</a>-<a href="#Page_26">26</a>-<a href="#Page_29">29</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_B">B</dt>
<dt><span class="jl">Basil</span> <a href="#Page_10">10</a>-<a href="#Page_15">15</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a></dt>
<dt><span class="jl">Bay Leaves</span> <a href="#Page_9">9</a>-<a href="#Page_13">13</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Beau Monde Seasoning</span> <a href="#Page_3">3</a>-<a href="#Page_4">4</a>-<a href="#Page_5">5</a>-<a href="#Page_7">7</a>-<a href="#Page_9">9</a>-<a href="#Page_10">10</a>-<a href="#Page_12">12</a>-<a href="#Page_14">14</a>-<a href="#Page_15">15</a>-<a href="#Page_21">21</a>-<a href="#Page_23">23</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Beef Stock Base</span> <a href="#Page_4">4</a>-<a href="#Page_8">8</a>-<a href="#Page_14">14</a>-<a href="#Page_15">15</a>-<a href="#Page_24">24</a>-<a href="#Page_25">25</a></dt>
<dt><span class="jl">Bell Peppers, Green</span> <a href="#Page_3">3</a>-<a href="#Page_4">4</a>-<a href="#Page_12">12</a>-<a href="#Page_14">14</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Bell Peppers, Red</span> <a href="#Page_3">3</a></dt>
<dt><span class="jl">Bouquet Garni for Beef</span> <a href="#Page_12">12</a>-<a href="#Page_15">15</a>-<a href="#Page_18">18</a></dt>
<dt><span class="jl">Bouquet Garni for Soup</span> <a href="#Page_4">4</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_C">C</dt>
<dt><span class="jl">Celery Salt</span> <a href="#Page_3">3</a></dt>
<dt><span class="jl">Celery Seed</span> <a href="#Page_6">6</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Chicken Seasoned Stock Base</span> <a href="#Page_3">3</a>-<a href="#Page_5">5</a>-<a href="#Page_18">18</a>-<a href="#Page_19">19</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Chili Con Carne Seasoning Powder</span> <a href="#Page_9">9</a></dt>
<dt><span class="jl">Chili Pequins</span> <a href="#Page_23">23</a></dt>
<dt><span class="jl">Cinnamon, Ground</span> <a href="#Page_11">11</a>-<a href="#Page_29">29</a></dt>
<dt><span class="jl">Cloves</span> <a href="#Page_9">9</a>-<a href="#Page_11">11</a>-<a href="#Page_13">13</a></dt>
<dt><span class="jl">Curry Powder</span> <a href="#Page_20">20</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_D">D</dt>
<dt><span class="jl">Dill Weed</span> <a href="#Page_3">3</a>-<a href="#Page_6">6</a>-<a href="#Page_23">23</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_F">F</dt>
<dt><span class="jl">Fines Herbes</span> <a href="#Page_10">10</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_G">G</dt>
<dt><span class="jl">Garlic Chips</span> <a href="#Page_18">18</a></dt>
<dt><span class="jl">Garlic Powder</span> <a href="#Page_7">7</a>-<a href="#Page_9">9</a>-<a href="#Page_13">13</a>-<a href="#Page_14">14</a>-<a href="#Page_15">15</a>-<a href="#Page_18">18</a>-<a href="#Page_19">19</a>-<a href="#Page_20">20</a>-<a href="#Page_21">21</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Ginger, Ground</span> <a href="#Page_25">25</a></dt>
<dt><span class="jl">Crystallized Ginger</span> <a href="#Page_20">20</a>-<a href="#Page_29">29</a></dt>
<dt><span class="jl">Gumbo Fil&eacute;</span> <a href="#Page_23">23</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_H">H</dt>
<dt><span class="jl">Horseradish</span> <a href="#Page_12">12</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_L">L</dt>
<dt><span class="jl">Lemon Peel</span> <a href="#Page_10">10</a>-<a href="#Page_20">20</a>-<a href="#Page_29">29</a></dt>
</dl>
<div class="pb" id="Page_31">31</div>
<dl class="indexlr">
<dt class="center b" id="index_M">M</dt>
<dt><span class="jl">Marjoram</span> <a href="#Page_3">3</a>-<a href="#Page_10">10</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a></dt>
<dt><span class="jl">Mei Yen Seasoning Powder</span> <a href="#Page_11">11</a>-<a href="#Page_13">13</a>-<a href="#Page_15">15</a>-<a href="#Page_18">18</a>-<a href="#Page_20">20</a>-<a href="#Page_21">21</a>-<a href="#Page_23">23</a>-<a href="#Page_25">25</a></dt>
<dt><span class="jl">MSG (Monosodium Glutamate)</span> <a href="#Page_21">21</a></dt>
<dt><span class="jl">Mushrooms, Powdered</span> <a href="#Page_5">5</a>-<a href="#Page_13">13</a>-<a href="#Page_14">14</a>-<a href="#Page_19">19</a>-<a href="#Page_22">22</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Mustard (Hot)</span> <a href="#Page_7">7</a>-<a href="#Page_12">12</a>-<a href="#Page_19">19</a></dt>
<dt><span class="jl">Mayonnaise Mustard (Mild)</span> <a href="#Page_5">5</a>-<a href="#Page_11">11</a></dt>
<dt><span class="jl">Mustard Seed</span> <a href="#Page_3">3</a>-<a href="#Page_9">9</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_N">N</dt>
<dt><span class="jl">Nutmeg, Ground</span> <a href="#Page_29">29</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_O">O</dt>
<dt><span class="jl">Onion Powder</span> <a href="#Page_6">6</a>-<a href="#Page_7">7</a>-<a href="#Page_9">9</a>-<a href="#Page_10">10</a>-<a href="#Page_11">11</a>-<a href="#Page_21">21</a></dt>
<dt><span class="jl">Instant Minced Onions</span> <a href="#Page_3">3</a>-<a href="#Page_4">4</a>-<a href="#Page_5">5</a>-<a href="#Page_8">8</a>-<a href="#Page_12">12</a>-<a href="#Page_13">13</a>-<a href="#Page_14">14</a>-<a href="#Page_18">18</a>-<a href="#Page_19">19</a>-<a href="#Page_20">20</a>-<a href="#Page_21">21</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a>-<a href="#Page_25">25</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Shredded Green Onions</span> <a href="#Page_3">3</a></dt>
<dt><span class="jl">Orange Peel</span> <a href="#Page_18">18</a>-<a href="#Page_28">28</a>-<a href="#Page_29">29</a></dt>
<dt><span class="jl">Oregano</span> <a href="#Page_9">9</a>-<a href="#Page_11">11</a>-<a href="#Page_13">13</a>-<a href="#Page_15">15</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_P">P</dt>
<dt><span class="jl">Paprika</span> <a href="#Page_7">7</a>-<a href="#Page_9">9</a></dt>
<dt><span class="jl">Parsley, Shredded</span> <a href="#Page_3">3</a>-<a href="#Page_4">4</a>-<a href="#Page_6">6</a>-<a href="#Page_9">9</a>-<a href="#Page_10">10</a>-<a href="#Page_12">12</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Java Black Pepper, Cracked</span> <a href="#Page_5">5</a>-<a href="#Page_6">6</a>-<a href="#Page_7">7</a>-<a href="#Page_9">9</a>-<a href="#Page_11">11</a>-<a href="#Page_21">21</a></dt>
<dt><span class="jl">Java Black Pepper, Medium Grind</span> <a href="#Page_18">18</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Java Black Pepper, Fine Grind</span> <a href="#Page_8">8</a>-<a href="#Page_12">12</a>-<a href="#Page_14">14</a>-<a href="#Page_15">15</a>-<a href="#Page_18">18</a>-<a href="#Page_19">19</a>-<a href="#Page_21">21</a>-<a href="#Page_24">24</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Java Black Pepper, Whole</span> <a href="#Page_13">13</a></dt>
<dt><span class="jl">Nepal Pepper</span> <a href="#Page_10">10</a></dt>
<dt><span class="jl">Peppermint</span> <a href="#Page_16">16</a>-<a href="#Page_17">17</a></dt>
<dt><span class="jl">Poppy Seed</span> <a href="#Page_7">7</a></dt>
<dt><span class="jl">Poultry Seasoning</span> <a href="#Page_22">22</a></dt>
<dt><span class="jl">Pumpkin Pie Spice</span> <a href="#Page_29">29</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_R">R</dt>
<dt><span class="jl">Rosemary</span> <a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_20">20</a>-<a href="#Page_23">23</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_S">S</dt>
<dt><span class="jl">Saffron</span> <a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_21">21</a></dt>
<dt><span class="jl">Sage</span> <a href="#Page_10">10</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_22">22</a></dt>
<dt><span class="jl">Salad Herbs</span> <a href="#Page_7">7</a></dt>
<dt><span class="jl">Old Hickory Smoked Salt</span> <a href="#Page_9">9</a>-<a href="#Page_19">19</a>-<a href="#Page_21">21</a>-<a href="#Page_23">23</a></dt>
<dt><span class="jl">Spaghetti Sauce Seasoning</span> <a href="#Page_14">14</a></dt>
<dt><span class="jl">Spice Parisienne</span> <a href="#Page_12">12</a>-<a href="#Page_19">19</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Summer Savory</span> <a href="#Page_3">3</a>-<a href="#Page_11">11</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_T">T</dt>
<dt><span class="jl">Tarragon</span> <a href="#Page_9">9</a>-<a href="#Page_10">10</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_22">22</a>-<a href="#Page_26">26</a></dt>
<dt><span class="jl">Thyme</span> <a href="#Page_3">3</a>-<a href="#Page_10">10</a>-<a href="#Page_16">16</a>-<a href="#Page_17">17</a>-<a href="#Page_21">21</a>-<a href="#Page_22">22</a>-<a href="#Page_23">23</a></dt>
</dl>
<dl class="indexlr">
<dt class="center b" id="index_V">V</dt>
<dt><span class="jl">Vanilla Beans</span> <a href="#Page_28">28</a></dt>
<dt><span class="jl">Red Wine Vinegar</span> <a href="#Page_13">13</a></dt>
<dt><span class="jl">Red Wine Vinegar, Eschalot</span> <a href="#Page_6">6</a>-<a href="#Page_9">9</a>-<a href="#Page_27">27</a></dt>
<dt><span class="jl">Red Wine Vinegar, Garlic</span> <a href="#Page_6">6</a>-<a href="#Page_9">9</a>-<a href="#Page_27">27</a></dt>
<dt><span class="jl">Red Wine Vinegar, Tarragon</span> <a href="#Page_6">6</a>-<a href="#Page_9">9</a>-<a href="#Page_10">10</a>-<a href="#Page_11">11</a>-<a href="#Page_27">27</a></dt>
<dt><span class="jl">White Wine Vinegar</span> <a href="#Page_3">3</a>-<a href="#Page_6">6</a>-<a href="#Page_7">7</a></dt>
<dt><span class="jl">White Wine Vinegar, Sweet Basil</span> <a href="#Page_5">5</a>-<a href="#Page_27">27</a></dt>
<dt><span class="jl">White Wine Vinegar, Tarragon</span> <a href="#Page_7">7</a></dt>
</dl>
<div class="pb" id="Page_32">32</div>
<h2 id="c57"><span class="small"><i>New from</i> <span class="ss">SPICE ISLANDS</span></span>
<br /><span class="large"><span class="ss">Instant Toasted Onions</span></span></h2>
<p>SPICE ISLANDS Instant Toasted Onions are
ready to use instantly without tears, strong
odors, and tiresome slicing or chopping.
They immediately impart the sweet, mild
flavor of sauteed onions with an added crisp,
crunchy texture. Instant Toasted Onions give
the delicious flavor of sauteed onions to soups,
casseroles, stuffings, and ground meat. Add
them to salads, sauces, dips and egg dishes
without rehydrating for crispest texture and
fullest flavor.</p>
<p>Write to Spice Islands Company, South San
Francisco, Dept. TO, for our exciting new
recipe leaflet on Instant Toasted Onions
and other seasoning suggestions.</p>
<p><i><span class="large">Handsome for your Kitchen Wall</span></i></p>
<p>Spice Islands spice rack (illustrated on <a href="#cover">front cover</a>) of imported hardwoods in warm, glowing,
walnut-toned finish. An accessory as beautiful
as it is useful!</p>
<div class="verse">
<p class="t0">1-shelf rock holds 8 Spice Islands jars</p>
<p class="t0">2-shelf rack holds 16 Spice Islands jars</p>
<p class="t0">3-shelf rack holds 24 Spice Islands jars</p>
</div>
<p>Ask for it at your grocer&rsquo;s or gourmet shop.</p>
<p class="tbcenter"><span class="large"><b>SPICE ISLANDS</b></span>
<br /><b><span class="smaller">SPICES &#149; HERBS &#149; VINEGARS &#149; TEAS</span></b> &#174;</p>
<p class="center small"><span class="ss">100 E. GRAND AVE.
<br />SOUTH SAN FRANCISCO, CALIF.</span></p>
<p class="center"><i><span class="large">The Finest Flavors From Around The World</span></i></p>
<h2>Transcriber&rsquo;s Notes</h2>
<ul>
<li>Silently corrected a few typos.</li>
<li>Retained publication information from the printed edition: this eBook is public-domain in the country of publication.</li>
<li>In the text versions only, text in <i>italics</i> is delimited by _underscores_.</li>
</ul>

<div>*** END OF THE PROJECT GUTENBERG EBOOK 62345 ***</div>
</body>
</html>