summaryrefslogtreecommitdiffstats
path: root/docs/JET_Authoring_Guidelines.htm
blob: 2ade2e339fb136de9a425bd7bc519fb51c7c42bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 11">
<meta name=Originator content="Microsoft Word 11">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>JET Authoring Guidelines</title>
<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
 name="place"/>
<!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Jennifer Hruska</o:Author>
  <o:Description>Copyright 2009</o:Description>
  <o:Template>techdoc.dot</o:Template>
  <o:LastAuthor>Jennifer Hruska</o:LastAuthor>
  <o:Revision>7</o:Revision>
  <o:TotalTime>1339</o:TotalTime>
  <o:LastPrinted>2006-02-09T12:22:00Z</o:LastPrinted>
  <o:Created>2009-03-17T23:33:00Z</o:Created>
  <o:LastSaved>2009-03-19T14:21:00Z</o:LastSaved>
  <o:Pages>1</o:Pages>
  <o:Words>3524</o:Words>
  <o:Characters>20089</o:Characters>
  <o:Company>Sonic Network, Inc. (SONiVOX)</o:Company>
  <o:Lines>167</o:Lines>
  <o:Paragraphs>47</o:Paragraphs>
  <o:CharactersWithSpaces>23566</o:CharactersWithSpaces>
  <o:Version>11.9999</o:Version>
 </o:DocumentProperties>
 <o:CustomDocumentProperties>
  <o:_AdHocReviewCycleID dt:dt="float">-1127674187</o:_AdHocReviewCycleID>
  <o:_EmailSubject dt:dt="string">New lib doc</o:_EmailSubject>
  <o:_AuthorEmail dt:dt="string">jhruska@sonicnetworkinc.com</o:_AuthorEmail>
  <o:_AuthorEmailDisplayName dt:dt="string">Jennifer Hruska</o:_AuthorEmailDisplayName>
  <o:_ReviewingToolsShownOnce dt:dt="string"></o:_ReviewingToolsShownOnce>
 </o:CustomDocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:ActiveWritingStyle Lang="EN-US" VendorID="8" DLLVersion="513" NLCheck="0">1</w:ActiveWritingStyle>
  <w:ActiveWritingStyle Lang="EN-IE" VendorID="8" DLLVersion="513" NLCheck="0">1</w:ActiveWritingStyle>
  <w:ActiveWritingStyle Lang="EN-GB" VendorID="8" DLLVersion="513" NLCheck="0">1</w:ActiveWritingStyle>
  <w:DocumentProtectionNotEnforced>TrackedChanges</w:DocumentProtectionNotEnforced>
  <w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery>
  <w:DisplayVerticalDrawingGridEvery>0</w:DisplayVerticalDrawingGridEvery>
  <w:UseMarginsForDrawingGridOrigin/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:Compatibility>
   <w:FootnoteLayoutLikeWW8/>
   <w:ShapeLayoutLikeWW8/>
   <w:AlignTablesRowByRow/>
   <w:ForgetLastTabAlignment/>
   <w:LayoutRawTableWidth/>
   <w:LayoutTableRowsApart/>
   <w:UseWord97LineBreakingRules/>
   <w:SelectEntireFieldWithStartOrEnd/>
   <w:UseWord2002TableStyleRules/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
 </w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" LatentStyleCount="156">
 </w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
 classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:Tahoma;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-update:auto;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
h1
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.3in;
	text-indent:-.3in;
	mso-pagination:widow-orphan lines-together;
	page-break-after:avoid;
	mso-outline-level:1;
	mso-list:l11 level1 lfo1;
	tab-stops:list .3in;
	font-size:14.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-font-kerning:14.0pt;
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
h2
	{mso-style-update:auto;
	mso-style-link:"Heading 2 Char";
	mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.4in;
	text-indent:-.4in;
	mso-pagination:widow-orphan lines-together;
	page-break-after:avoid;
	mso-outline-level:2;
	mso-list:l11 level2 lfo1;
	tab-stops:list .4in;
	font-size:12.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
h3
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.5in;
	text-indent:-.5in;
	mso-pagination:widow-orphan lines-together;
	page-break-after:avoid;
	mso-outline-level:3;
	mso-list:l11 level3 lfo1;
	tab-stops:list .5in;
	font-size:10.0pt;
	font-family:Arial;
	mso-ansi-language:EN-IE;
	font-weight:bold;}
h4
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.6in;
	text-indent:-.6in;
	mso-pagination:widow-orphan lines-together;
	page-break-after:avoid;
	mso-outline-level:4;
	mso-list:l11 level4 lfo1;
	tab-stops:list .6in;
	font-size:11.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:"Courier New";
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
h5
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.7in;
	text-indent:-.7in;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:5;
	mso-list:l11 level5 lfo1;
	tab-stops:list .7in;
	font-size:11.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-ansi-language:EN-IE;
	font-weight:normal;}
h6
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.8in;
	text-indent:-.8in;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:6;
	mso-list:l11 level6 lfo1;
	tab-stops:list .8in;
	font-size:11.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-ansi-language:EN-IE;
	font-weight:normal;
	font-style:italic;
	mso-bidi-font-style:normal;}
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:.9in;
	text-indent:-.9in;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:7;
	mso-list:l11 level7 lfo1;
	tab-stops:list .9in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:1.0in;
	text-indent:-1.0in;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:8;
	mso-list:l11 level8 lfo1;
	tab-stops:list 1.0in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;
	font-style:italic;
	mso-bidi-font-style:normal;}
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:1.1in;
	text-indent:-1.1in;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:9;
	mso-list:l11 level9 lfo1;
	tab-stops:list 1.1in;
	font-size:9.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;
	font-style:italic;
	mso-bidi-font-style:normal;}
p.MsoIndex1, li.MsoIndex1, div.MsoIndex1
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:11.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex2, li.MsoIndex2, div.MsoIndex2
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:22.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex3, li.MsoIndex3, div.MsoIndex3
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:33.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex4, li.MsoIndex4, div.MsoIndex4
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:44.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex5, li.MsoIndex5, div.MsoIndex5
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:55.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex6, li.MsoIndex6, div.MsoIndex6
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:66.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex7, li.MsoIndex7, div.MsoIndex7
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:77.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex8, li.MsoIndex8, div.MsoIndex8
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:88.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndex9, li.MsoIndex9, div.MsoIndex9
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:99.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc1, li.MsoToc1, div.MsoToc1
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc2, li.MsoToc2, div.MsoToc2
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:10.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc3, li.MsoToc3, div.MsoToc3
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:20.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc4, li.MsoToc4, div.MsoToc4
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:30.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc5, li.MsoToc5, div.MsoToc5
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:40.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc6, li.MsoToc6, div.MsoToc6
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:50.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc7, li.MsoToc7, div.MsoToc7
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:60.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc8, li.MsoToc8, div.MsoToc8
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:70.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToc9, li.MsoToc9, div.MsoToc9
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:80.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.5in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
	{mso-style-noshow:yes;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
	{mso-style-noshow:yes;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoHeader, li.MsoHeader, div.MsoHeader
	{margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	tab-stops:center 3.0in right 6.0in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoFooter, li.MsoFooter, div.MsoFooter
	{margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	tab-stops:center 3.0in right 6.0in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoIndexHeading, li.MsoIndexHeading, div.MsoIndexHeading
	{mso-style-noshow:yes;
	mso-style-next:"Index 1";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
p.MsoCaption, li.MsoCaption, div.MsoCaption
	{mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:6.0pt;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:0in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
p.MsoTof, li.MsoTof, div.MsoTof
	{mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:22.0pt;
	margin-bottom:.0001pt;
	text-indent:-22.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoEnvelopeAddress, li.MsoEnvelopeAddress, div.MsoEnvelopeAddress
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:2.0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	mso-element:frame;
	mso-element-frame-width:5.5in;
	mso-element-frame-height:99.0pt;
	mso-element-frame-hspace:9.0pt;
	mso-element-wrap:auto;
	mso-element-anchor-horizontal:page;
	mso-element-left:center;
	mso-element-top:bottom;
	font-size:12.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoEnvelopeReturn, li.MsoEnvelopeReturn, div.MsoEnvelopeReturn
	{margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoEndnoteText, li.MsoEndnoteText, div.MsoEndnoteText
	{mso-style-noshow:yes;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToa, li.MsoToa, div.MsoToa
	{mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:11.0pt;
	margin-bottom:.0001pt;
	text-indent:-11.0pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoMacroText, li.MsoMacroText, div.MsoMacroText
	{mso-style-noshow:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	text-align:justify;
	mso-pagination:widow-orphan lines-together;
	tab-stops:24.0pt 48.0pt 1.0in 96.0pt 120.0pt 2.0in 168.0pt 192.0pt 3.0in;
	font-size:10.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoToaHeading, li.MsoToaHeading, div.MsoToaHeading
	{mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:6.0pt;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:12.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
p.MsoList, li.MsoList, div.MsoList
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListBullet, li.MsoListBullet, div.MsoListBullet
	{mso-style-update:auto;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l9 level1 lfo2;
	tab-stops:list .25in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListNumber, li.MsoListNumber, div.MsoListNumber
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l8 level1 lfo3;
	tab-stops:list .25in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoList2, li.MsoList2, div.MsoList2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.5in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoList3, li.MsoList3, div.MsoList3
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.75in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoList4, li.MsoList4, div.MsoList4
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.0in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoList5, li.MsoList5, div.MsoList5
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListBullet2, li.MsoListBullet2, div.MsoListBullet2
	{mso-style-update:auto;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.5in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l7 level1 lfo4;
	tab-stops:list .5in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListBullet3, li.MsoListBullet3, div.MsoListBullet3
	{mso-style-update:auto;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.75in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l6 level1 lfo5;
	tab-stops:list .75in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListBullet4, li.MsoListBullet4, div.MsoListBullet4
	{mso-style-update:auto;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.0in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l5 level1 lfo6;
	tab-stops:list 1.0in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListBullet5, li.MsoListBullet5, div.MsoListBullet5
	{mso-style-update:auto;
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l4 level1 lfo7;
	tab-stops:list 1.25in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListNumber2, li.MsoListNumber2, div.MsoListNumber2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.5in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l3 level1 lfo8;
	tab-stops:list .5in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListNumber3, li.MsoListNumber3, div.MsoListNumber3
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.75in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l2 level1 lfo9;
	tab-stops:list .75in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListNumber4, li.MsoListNumber4, div.MsoListNumber4
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.0in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l1 level1 lfo10;
	tab-stops:list 1.0in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListNumber5, li.MsoListNumber5, div.MsoListNumber5
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:1.25in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	mso-list:l0 level1 lfo11;
	tab-stops:list 1.25in;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoTitle, li.MsoTitle, div.MsoTitle
	{margin-top:12.0pt;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:0in;
	text-align:center;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:1;
	font-size:16.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-font-kerning:14.0pt;
	mso-ansi-language:EN-IE;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
p.MsoClosing, li.MsoClosing, div.MsoClosing
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:3.0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoSignature, li.MsoSignature, div.MsoSignature
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:3.0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:0in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyTextIndent, li.MsoBodyTextIndent, div.MsoBodyTextIndent
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListContinue, li.MsoListContinue, div.MsoListContinue
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListContinue2, li.MsoListContinue2, div.MsoListContinue2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.5in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListContinue3, li.MsoListContinue3, div.MsoListContinue3
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.75in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListContinue4, li.MsoListContinue4, div.MsoListContinue4
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:1.0in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoListContinue5, li.MsoListContinue5, div.MsoListContinue5
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:1.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoMessageHeader, li.MsoMessageHeader, div.MsoMessageHeader
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.75in;
	margin-bottom:.0001pt;
	text-indent:-.75in;
	mso-pagination:widow-orphan lines-together;
	background:#CCCCCC;
	mso-shading:windowtext;
	mso-pattern:gray-20 auto;
	border:none;
	mso-border-alt:solid windowtext .75pt;
	padding:0in;
	mso-padding-alt:1.0pt 1.0pt 1.0pt 1.0pt;
	font-size:12.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoSubtitle, li.MsoSubtitle, div.MsoSubtitle
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:3.0pt;
	margin-left:0in;
	text-align:center;
	mso-pagination:widow-orphan lines-together;
	mso-outline-level:2;
	font-size:12.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoSalutation, li.MsoSalutation, div.MsoSalutation
	{mso-style-next:Normal;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoDate, li.MsoDate, div.MsoDate
	{mso-style-next:Normal;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyTextFirstIndent, li.MsoBodyTextFirstIndent, div.MsoBodyTextFirstIndent
	{mso-style-parent:"Body Text";
	margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:0in;
	text-indent:10.5pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyTextFirstIndent2, li.MsoBodyTextFirstIndent2, div.MsoBodyTextFirstIndent2
	{mso-style-parent:"Body Text Indent";
	margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.25in;
	text-indent:10.5pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoNoteHeading, li.MsoNoteHeading, div.MsoNoteHeading
	{mso-style-next:Normal;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyText2, li.MsoBodyText2, div.MsoBodyText2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:0in;
	line-height:200%;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyText3, li.MsoBodyText3, div.MsoBodyText3
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:0in;
	mso-pagination:widow-orphan lines-together;
	font-size:8.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyTextIndent2, li.MsoBodyTextIndent2, div.MsoBodyTextIndent2
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.25in;
	line-height:200%;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBodyTextIndent3, li.MsoBodyTextIndent3, div.MsoBodyTextIndent3
	{margin-top:0in;
	margin-right:0in;
	margin-bottom:6.0pt;
	margin-left:.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:8.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
p.MsoBlockText, li.MsoBlockText, div.MsoBlockText
	{margin-top:0in;
	margin-right:1.0in;
	margin-bottom:6.0pt;
	margin-left:1.0in;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
a:link, span.MsoHyperlink
	{color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{color:purple;
	text-decoration:underline;
	text-underline:single;}
p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
	{mso-style-noshow:yes;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	background:navy;
	font-size:10.0pt;
	font-family:Tahoma;
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:Arial;
	mso-ansi-language:EN-IE;}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
	{margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:10.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:Arial;
	mso-ansi-language:EN-IE;}
p
	{mso-margin-top-alt:auto;
	margin-right:0in;
	mso-margin-bottom-alt:auto;
	margin-left:0in;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
	{mso-style-noshow:yes;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan lines-together;
	font-size:8.0pt;
	font-family:Tahoma;
	mso-fareast-font-family:"Times New Roman";
	mso-ansi-language:EN-IE;}
span.Heading2Char
	{mso-style-name:"Heading 2 Char";
	mso-style-locked:yes;
	mso-style-link:"Heading 2";
	mso-ansi-font-size:12.0pt;
	font-family:Arial;
	mso-ascii-font-family:Arial;
	mso-hansi-font-family:Arial;
	mso-bidi-font-family:Arial;
	mso-ansi-language:EN-IE;
	mso-fareast-language:EN-US;
	mso-bidi-language:AR-SA;
	font-weight:bold;
	mso-bidi-font-weight:normal;}
p.Body, li.Body, div.Body
	{mso-style-name:Body;
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:Arial;}
p.FunctionPrototype, li.FunctionPrototype, div.FunctionPrototype
	{mso-style-name:"Function Prototype";
	margin-top:0in;
	margin-right:0in;
	margin-bottom:0in;
	margin-left:.5in;
	margin-bottom:.0001pt;
	text-indent:-.25in;
	mso-pagination:widow-orphan lines-together;
	font-size:9.0pt;
	mso-bidi-font-size:10.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:Arial;
	mso-ansi-language:EN-IE;}
 /* Page Definitions */
 @page
	{mso-footnote-separator:url("JET_Authoring_Guidelines_files/header.htm") fs;
	mso-footnote-continuation-separator:url("JET_Authoring_Guidelines_files/header.htm") fcs;
	mso-endnote-separator:url("JET_Authoring_Guidelines_files/header.htm") es;
	mso-endnote-continuation-separator:url("JET_Authoring_Guidelines_files/header.htm") ecs;}
@page Section1
	{size:595.45pt 841.7pt;
	margin:1.1in 1.25in 1.1in 1.25in;
	mso-header-margin:.5in;
	mso-footer-margin:.4in;
	mso-title-page:yes;
	mso-even-header:url("JET_Authoring_Guidelines_files/header.htm") eh1;
	mso-header:url("JET_Authoring_Guidelines_files/header.htm") h1;
	mso-even-footer:url("JET_Authoring_Guidelines_files/header.htm") ef1;
	mso-footer:url("JET_Authoring_Guidelines_files/header.htm") f1;
	mso-first-footer:url("JET_Authoring_Guidelines_files/header.htm") ff1;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
 /* List Definitions */
 @list l0
	{mso-list-id:-132;
	mso-list-type:simple;
	mso-list-template-ids:-762522690;}
@list l0:level1
	{mso-level-style-link:"List Number 5";
	mso-level-tab-stop:1.25in;
	mso-level-number-position:left;
	margin-left:1.25in;
	text-indent:-.25in;}
@list l1
	{mso-list-id:-131;
	mso-list-type:simple;
	mso-list-template-ids:828031264;}
@list l1:level1
	{mso-level-style-link:"List Number 4";
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	margin-left:1.0in;
	text-indent:-.25in;}
@list l2
	{mso-list-id:-130;
	mso-list-type:simple;
	mso-list-template-ids:1556219102;}
@list l2:level1
	{mso-level-style-link:"List Number 3";
	mso-level-tab-stop:.75in;
	mso-level-number-position:left;
	margin-left:.75in;
	text-indent:-.25in;}
@list l3
	{mso-list-id:-129;
	mso-list-type:simple;
	mso-list-template-ids:1492152526;}
@list l3:level1
	{mso-level-style-link:"List Number 2";
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l4
	{mso-list-id:-128;
	mso-list-type:simple;
	mso-list-template-ids:373048972;}
@list l4:level1
	{mso-level-number-format:bullet;
	mso-level-style-link:"List Bullet 5";
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.25in;
	mso-level-number-position:left;
	margin-left:1.25in;
	text-indent:-.25in;
	font-family:Symbol;}
@list l5
	{mso-list-id:-127;
	mso-list-type:simple;
	mso-list-template-ids:-1897731242;}
@list l5:level1
	{mso-level-number-format:bullet;
	mso-level-style-link:"List Bullet 4";
	mso-level-text:\F0B7;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	margin-left:1.0in;
	text-indent:-.25in;
	font-family:Symbol;}
@list l6
	{mso-list-id:-126;
	mso-list-type:simple;
	mso-list-template-ids:213402420;}
@list l6:level1
	{mso-level-number-format:bullet;
	mso-level-style-link:"List Bullet 3";
	mso-level-text:\F0B7;
	mso-level-tab-stop:.75in;
	mso-level-number-position:left;
	margin-left:.75in;
	text-indent:-.25in;
	font-family:Symbol;}
@list l7
	{mso-list-id:-125;
	mso-list-type:simple;
	mso-list-template-ids:-1230352896;}
@list l7:level1
	{mso-level-number-format:bullet;
	mso-level-style-link:"List Bullet 2";
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	font-family:Symbol;}
@list l8
	{mso-list-id:-120;
	mso-list-type:simple;
	mso-list-template-ids:-1099685254;}
@list l8:level1
	{mso-level-style-link:"List Number";
	mso-level-tab-stop:.25in;
	mso-level-number-position:left;
	margin-left:.25in;
	text-indent:-.25in;}
@list l9
	{mso-list-id:-119;
	mso-list-type:simple;
	mso-list-template-ids:-1849629656;}
@list l9:level1
	{mso-level-number-format:bullet;
	mso-level-style-link:"List Bullet";
	mso-level-text:\F0B7;
	mso-level-tab-stop:.25in;
	mso-level-number-position:left;
	margin-left:.25in;
	text-indent:-.25in;
	font-family:Symbol;}
@list l10
	{mso-list-id:794131674;
	mso-list-type:hybrid;
	mso-list-template-ids:751336376 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
@list l10:level1
	{mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	text-indent:-.25in;
	font-family:Symbol;}
@list l10:level2
	{mso-level-number-format:bullet;
	mso-level-text:o;
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	text-indent:-.25in;
	font-family:"Courier New";}
@list l10:level3
	{mso-level-tab-stop:1.5in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level4
	{mso-level-tab-stop:2.0in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level5
	{mso-level-tab-stop:2.5in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level6
	{mso-level-tab-stop:3.0in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level7
	{mso-level-tab-stop:3.5in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level8
	{mso-level-tab-stop:4.0in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l10:level9
	{mso-level-tab-stop:4.5in;
	mso-level-number-position:left;
	text-indent:-.25in;}
@list l11
	{mso-list-id:1411350143;
	mso-list-template-ids:1661217014;}
@list l11:level1
	{mso-level-style-link:"Heading 1";
	mso-level-text:%1;
	mso-level-tab-stop:.3in;
	mso-level-number-position:left;
	margin-left:.3in;
	text-indent:-.3in;}
@list l11:level2
	{mso-level-style-link:"Heading 2";
	mso-level-text:"%1\.%2";
	mso-level-tab-stop:.4in;
	mso-level-number-position:left;
	margin-left:.4in;
	text-indent:-.4in;}
@list l11:level3
	{mso-level-style-link:"Heading 3";
	mso-level-text:"%1\.%2\.%3";
	mso-level-tab-stop:.5in;
	mso-level-number-position:left;
	margin-left:.5in;
	text-indent:-.5in;}
@list l11:level4
	{mso-level-style-link:"Heading 4";
	mso-level-text:"%1\.%2\.%3\.%4";
	mso-level-tab-stop:.6in;
	mso-level-number-position:left;
	margin-left:.6in;
	text-indent:-.6in;}
@list l11:level5
	{mso-level-style-link:"Heading 5";
	mso-level-text:"%1\.%2\.%3\.%4\.%5";
	mso-level-tab-stop:.7in;
	mso-level-number-position:left;
	margin-left:.7in;
	text-indent:-.7in;}
@list l11:level6
	{mso-level-style-link:"Heading 6";
	mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6";
	mso-level-tab-stop:.8in;
	mso-level-number-position:left;
	margin-left:.8in;
	text-indent:-.8in;}
@list l11:level7
	{mso-level-style-link:"Heading 7";
	mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7";
	mso-level-tab-stop:.9in;
	mso-level-number-position:left;
	margin-left:.9in;
	text-indent:-.9in;}
@list l11:level8
	{mso-level-style-link:"Heading 8";
	mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8";
	mso-level-tab-stop:1.0in;
	mso-level-number-position:left;
	margin-left:1.0in;
	text-indent:-1.0in;}
@list l11:level9
	{mso-level-style-link:"Heading 9";
	mso-level-text:"%1\.%2\.%3\.%4\.%5\.%6\.%7\.%8\.%9";
	mso-level-tab-stop:1.1in;
	mso-level-number-position:left;
	margin-left:1.1in;
	text-indent:-1.1in;}
ol
	{margin-bottom:0in;}
ul
	{margin-bottom:0in;}
-->
</style>
<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-ansi-language:#0400;
	mso-fareast-language:#0400;
	mso-bidi-language:#0400;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="9218" fill="f" fillcolor="white"
  stroke="f">
  <v:fill color="white" on="f"/>
  <v:stroke on="f"/>
 </o:shapedefaults></xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1"/>
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>
	    
<pre>
   Copyright (C) 2009 The Android Open Source Project

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
</pre>

<div class=Section1>

<p class=MsoTitle align=left style='text-align:left'><a name="_Toc203298075"></a><a
name="_Toc203292246"><span style='mso-bookmark:_Toc203298075'><span lang=EN-IE
style='font-size:20.0pt'>JET™ Content Authoring Guidelines</span></span></a><span
lang=EN-IE style='font-size:20.0pt'><o:p></o:p></span></p>

<p class=MsoTitle align=left style='text-align:left'><a name="_Toc194831970"></a><a
name="_Toc194830086"></a><a name="_Toc194740814"></a><a name="_Toc194738556"></a><a
name="_Toc203298078"></a><a name="_Toc203292249"><span style='mso-bookmark:
_Toc203298078'><span style='mso-bookmark:_Toc194738556'><span style='mso-bookmark:
_Toc194740814'><span style='mso-bookmark:_Toc194830086'><span style='mso-bookmark:
_Toc194831970'><span lang=EN-IE>JET Interactive Music Engine</span></span></span></span></span></span></a></p>

<p class=MsoTitle align=left style='text-align:left'><span lang=EN-IE
style='font-size:12.0pt'>Vrs 1.0<o:p></o:p></span></p>

<p class=MsoTitle align=left style='text-align:left'><span lang=EN-IE
style='font-size:12.0pt'>Authored by SONiVOX<o:p></o:p></span></p>

<p class=MsoTitle align=left style='text-align:left'><span lang=EN-IE
style='font-size:12.0pt'><a href="http://www.sonivoxrocks.com/">www.sonivoxrocks.com</a><o:p></o:p></span></p>

<p class=MsoTitle align=left style='text-align:left'><span lang=EN-IE
style='font-size:12.0pt'>Copyright 2009 Sonic Network, Inc.<o:p></o:p></span></p>

<p class=MsoCommentText><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoHeader><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h1><a name="_Toc482161515"></a><a name="_Toc203298082"><span style='mso-bookmark:
_Toc482161515'><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:
Arial'><span style='mso-list:Ignore'>1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Introduction</span></span></a></h1>

<h2><a name="_Toc203298083"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>1.1<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Overview</span></a></h2>

<p class=MsoNormal><span lang=EN-IE>This document contains content creation
guidelines for composers and sound designers authoring music and sound effects
for the SONiVOX JET platform.<span style='mso-spacerun:yes'>  </span>JET is an
interactive music player for small embedded devices, including the Google Android
platform. It allows applications to include interactive music soundtracks, in <st1:place
w:st="on">MIDI</st1:place> format, that respond in real-time to game play
events and user interaction. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>JET works in conjunction with SONiVOX’s
Embedded Audio Synthesizer (EAS) which is the <st1:place w:st="on">MIDI</st1:place>
playback device for Android.<span style='mso-spacerun:yes'>  </span>Both the
JET and EAS engines are integrated into the Android embedded platform as well
as inherent in the JET Creator application. As such, the JET content author can
be sure that the playback will sound exactly the same in both the JET Creator
and the final Android application playing back on Android mobile devices.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The JET content author works in up to three
different applications to create JET content; a standard <st1:place w:st="on">MIDI</st1:place>
sequencer (Logic, Cubase, etc.), optionally a DLS2 instrument editor (Awave),
and the JET Creator application to add and audition JET interactive elements. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The final result is a .jet file that the
content author gives to the application programmer for use in the game or
application.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><a name="_Toc203298084"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>1.2<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Abbreviations and Common Terms</span></a></h2>

<p class=MsoNormal><span lang=EN-IE>It is important to use a common set of
terms to minimize confusion. Since JET uses <st1:place w:st="on">MIDI</st1:place>
in a unique way, normal industry terms may not always suffice. Here is the
definition of terms as they are used in this document and in the JET Creator
application:</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>Channel</span></i><span
lang=EN-IE>: MIDI data associated with a specific <st1:place w:st="on">MIDI</st1:place>
channel. Standard MIDI allows for 16 channels of <st1:place w:st="on">MIDI</st1:place>
data each of which are typically associated with a specific instrument. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>Controller</span></i><span
lang=EN-IE>: A <st1:place w:st="on">MIDI</st1:place> event consisting of a
channel number, controller number, and a controller value. The <st1:place
w:st="on">MIDI</st1:place> spec associates many controller numbers with
specific functions, such as volume, expression, sustain pedal, etc. JET also
uses controller events as a means of embedding special control information in a
<st1:place w:st="on">MIDI</st1:place> sequence to provide for audio
synchronization.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>DAW</span></i><span
lang=EN-IE>: Digital Audio Workstation. A common term for <st1:place w:st="on">MIDI</st1:place>
and audio sequencing applications such as Logic, SONAR, Cubase and others. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>EAS:</span></i><span
lang=EN-IE> Embedded <st1:place w:st="on">MIDI</st1:place> Synthesizer. The
name of the SONiVOX MIDI synthesizer engine.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>JET</span></i><span
lang=EN-IE>: Jet Interactive Engine. The name of the SONiVOX JET interactive
music engine.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>Segment</span></i><span
lang=EN-IE>: A musical section such as a chorus or verse that is a component of
the overall composition. In JET, a segment can be an entire MIDI file or a
derived from a portion of a <st1:place w:st="on">MIDI</st1:place> file.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>SMF-0</span></i><span
lang=EN-IE>: Standard MIDI File Type 0, a MIDI file that contains a single
track, but may be made up of multiple channels of <st1:place w:st="on">MIDI</st1:place>
data.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>SMF-1</span></i><span
lang=EN-IE>: Standard MIDI File Type 1, a MIDI file that contains a one more
tracks, and each track may in turn be made up of one or more channels of <st1:place
w:st="on">MIDI</st1:place> data. By convention, each channel is stored on a
separate track in an SMF-1 file. However, it is possible to have multiple MIDI
channels on a single track, or multiple tracks that contain data for the same <st1:place
w:st="on">MIDI</st1:place> channel.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><i style='mso-bidi-font-style:normal'><span lang=EN-IE>Track</span></i><span
lang=EN-IE>: A single track in a DAW containing a timed sequence of <st1:place
w:st="on">MIDI</st1:place> events. Be careful not to confuse Tracks with
Channels. A MIDI file may contain many tracks with several tracks utilizing the
same <st1:place w:st="on">MIDI</st1:place> channel. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h1><a name="_Toc203298085"></a><a name="_Toc135723076"></a><a
name="_Toc135723793"></a><a name="_Toc135724016"></a><a name="_Toc135724241"></a><a
name="_Toc135724464"></a><a name="_Toc135724687"></a><a name="_Toc135724909"></a><a
name="_Toc135725132"></a><a name="_Toc135726607"></a><a name="_Toc135727776"></a><a
name="_Toc137004452"></a><a name="_Toc135724689"></a><a name="_Toc135724467"></a><![if !supportLists]><span
style='mso-bookmark:_Toc203298085'><span lang=EN-IE style='mso-fareast-font-family:
Arial'><span style='mso-list:Ignore'>1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span></span><![endif]><span style='mso-bookmark:_Toc203298085'><span
lang=EN-IE>The JET Interactive Music Concept</span></span></h1>

<p class=MsoNormal><span lang=EN-IE>Interactive music can be defined as music
that changes in real-time according to non-predictable events such as user
interaction or game play events. In this way, interactive music is much more
engaging as it has the ability to match the energy and mood of a game much
closer than a pre-composed composition that never changes. In some applications
and games, interactive music is central to the game play. Guitar Hero is one
such popular game. When the end user successfully ‘captures’ the musical notes
coming down the fret board, the music adapts itself and simultaneously keeps
score of successes and failures. JET allows for these types of music driven
games as well.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>There are several methods for making and
controlling interactive music and JET is one such method. This section
describes the features of JET and how they might be used in a game or software
application. It also describes how JET can be used to save memory in small
footprint devices such as Android enabled mobile handsets.</span></p>

<h3><a name="_Toc203298086"><![if !supportLists]><span class=Heading2Char><span
lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:10.0pt;mso-fareast-font-family:
Arial;mso-bidi-font-weight:normal'><span style='mso-list:Ignore'>1.1.1<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></span><![endif]><span
class=Heading2Char><span lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:
10.0pt;font-weight:normal'>Data Compression</span></span></a><span
style='mso-bookmark:_Toc203298086'></span><span class=Heading2Char><span
lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:10.0pt;mso-bidi-font-weight:
normal'><o:p></o:p></span></span></h3>

<p class=MsoNormal><span lang=EN-IE>JET supports a flexible music format that
can be used to create extended musical sequences with a minimal amount of data.
A musical composition is broken up into segments that can be sequenced to
create a longer piece. The sequencing can be fixed at the time the music file
is authored, or it can be created dynamically under program control.</span></p>

<h3><a name="_Toc203298087"><![if !supportLists]><span class=Heading2Char><span
lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:10.0pt;mso-fareast-font-family:
Arial;mso-bidi-font-weight:normal'><span style='mso-list:Ignore'>1.1.2<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span></span><![endif]><span
class=Heading2Char><span lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:
10.0pt;font-weight:normal'>Linear Music Example</span></span></a><span
style='mso-bookmark:_Toc203298087'></span><span class=Heading2Char><span
lang=EN-IE style='font-size:12.0pt;mso-bidi-font-size:10.0pt;mso-bidi-font-weight:
normal'><o:p></o:p></span></span></h3>

<p class=MsoNormal><span lang=EN-IE><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
 coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
 filled="f" stroked="f">
 <v:stroke joinstyle="miter"/>
 <v:formulas>
  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
  <v:f eqn="sum @0 1 0"/>
  <v:f eqn="sum 0 0 @1"/>
  <v:f eqn="prod @2 1 2"/>
  <v:f eqn="prod @3 21600 pixelWidth"/>
  <v:f eqn="prod @3 21600 pixelHeight"/>
  <v:f eqn="sum @0 0 1"/>
  <v:f eqn="prod @6 1 2"/>
  <v:f eqn="prod @7 21600 pixelWidth"/>
  <v:f eqn="sum @8 21600 0"/>
  <v:f eqn="prod @7 21600 pixelHeight"/>
  <v:f eqn="sum @10 21600 0"/>
 </v:formulas>
 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
 <o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:431.25pt;
 height:294.75pt' o:ole="">
 <v:imagedata src="JET_Authoring_Guidelines_files/image002.emz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=575 height=393
src="JET_Authoring_Guidelines_files/image013.gif" v:shapes="_x0000_i1025"><![endif]><!--[if gte mso 9]><xml>
 <o:OLEObject Type="Embed" ProgID="Visio.Drawing.11" ShapeID="_x0000_i1025"
  DrawAspect="Content" ObjectID="_1298963276">
 </o:OLEObject>
</xml><![endif]--></span></p>

<p class=MsoCaption><span lang=EN-IE>Figure <span style='mso-field-code:" SEQ Figure \\* ARABIC "'><span
style='mso-no-proof:yes'>1</span></span>: Linear Music Piece</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>This diagram shows how musical segments are
stored. Each segment is authored as a separate <st1:place w:st="on">MIDI</st1:place>
file. A post-processing tool combines the files into a single container file.
Each segment can contain alternate music tracks that can be muted or un-muted
to create additional interest. An example might be a brass accent in the chorus
that is played only the last time through. Also, segments can be transposed up
or down.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The bottom part of the diagram shows how
the musical segments can be recombined to create a linear music piece. In this
example, the bridge might end with a half-step key modulation and the remaining
segments could be transposed up a half-step to match.</span></p>

<h3><a name="_Toc203298088"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>1.1.3<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Non-linear Music Example</span></a></h3>

<p class=MsoNormal><span lang=EN-IE><!--[if gte vml 1]><v:shape id="_x0000_i1026"
 type="#_x0000_t75" style='width:6in;height:291.75pt' o:ole="">
 <v:imagedata src="JET_Authoring_Guidelines_files/image004.emz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=576 height=389
src="JET_Authoring_Guidelines_files/image014.gif" v:shapes="_x0000_i1026"><![endif]><!--[if gte mso 9]><xml>
 <o:OLEObject Type="Embed" ProgID="Visio.Drawing.11" ShapeID="_x0000_i1026"
  DrawAspect="Content" ObjectID="_1298963277">
 </o:OLEObject>
</xml><![endif]--></span></p>

<p class=MsoCaption><span lang=EN-IE>Figure <span style='mso-field-code:" SEQ Figure \\* ARABIC "'><span
style='mso-no-proof:yes'>2</span></span>: Non-linear music piece</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>In this diagram, we see a non-linear music
piece. The scenario is a first-person-shooter (FPS) and JET is providing the
background music. The intro plays as the level is loading and then transitions
under program control to the Searching segment. This segment is repeated
indefinitely, perhaps with small variations (using the mute/un-mute feature)
until activity in the game dictates a change.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>As the player nears a monster lair, the
program starts a synchronized transition to the Danger segment, increasing the
tension level in the audio. As the player draws closer to the lair, additional
tracks are un-muted to increase the tension.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>As the player enters into combat with the
monster, the program starts a synchronized transition to the Combat segment.
The segment repeats indefinitely as the combat continues. A Bonus Hit
temporarily un-mutes a decorative track that notifies the player of a
successful attack, and similarly, another track is temporarily un-muted to
signify when the player receives Special Damage.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>At the end of combat, the music transitions
to a victory or defeat segment based on the outcome of battle.</span></p>

<h3><a name="_Toc203298089"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>1.1.4<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Mute/Un-mute Synchronization</span></a></h3>

<p class=MsoNormal><span lang=EN-IE>JET can also synchronize the muting and
un-muting of tracks to events in the music. For example, in the FPS game, it
would probably be desirable to place the musical events relating to bonuses and
damage as close to the actual game event as possible. However, simply un-muting
a track at the moment the game event occurs might result in a music clip
starting in the middle. Alternatively, a clip could be started from the
beginning, but then it wouldn’t be synchronized with the other music tracks.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>However, with the JET sync engine, a clip
can be started at the next opportune moment and maintain synchronization. This
can be accomplished by placing a number of short music clips on a decorative
track. A <st1:place w:st="on">MIDI</st1:place> event in the stream signifies
the start of a clip and a second event signifies the end of a clip. When the
application calls the JET clip function, the next clip in the track is allowed
to play fully synchronized to the music. Optionally, the track can be
automatically muted by a second <st1:place w:st="on">MIDI</st1:place> event.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><!--[if gte vml 1]><v:shape id="_x0000_i1027"
 type="#_x0000_t75" style='width:6in;height:116.25pt' o:ole="">
 <v:imagedata src="JET_Authoring_Guidelines_files/image006.emz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=576 height=155
src="JET_Authoring_Guidelines_files/image008.gif" v:shapes="_x0000_i1027"><![endif]><!--[if gte mso 9]><xml>
 <o:OLEObject Type="Embed" ProgID="Visio.Drawing.11" ShapeID="_x0000_i1027"
  DrawAspect="Content" ObjectID="_1298963279">
 </o:OLEObject>
</xml><![endif]--></span></p>

<p class=MsoCaption><span lang=EN-IE>Figure <span style='mso-field-code:" SEQ Figure \\* ARABIC "'><span
style='mso-no-proof:yes'>3</span></span>: Synchronized Mute/Unmute</span></p>

<h2><a name="_Toc203298090"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>1.2<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Audio Synchronization</span></a></h2>

<p class=MsoNormal><span lang=EN-IE>JET provides an audio synchronization API
that allows game play to be synchronized to events in the audio. The mechanism
relies on data embedded in the <st1:place w:st="on">MIDI</st1:place> file at
the time the content is authored. When the JET engine senses an event during
playback it generates a callback into the application program. The timing of
the callback can be adjusted to compensate for any latency in the audio
playback system so that audio and video can be synchronized. The diagram below
shows an example of a simple music game that involves pressing the left and
right arrows in time with the music.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><!--[if gte vml 1]><v:shape id="_x0000_i1028"
 type="#_x0000_t75" style='width:6in;height:100.5pt' o:ole="">
 <v:imagedata src="JET_Authoring_Guidelines_files/image015.emz" o:title=""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=576 height=134
src="JET_Authoring_Guidelines_files/image010.gif" v:shapes="_x0000_i1028"><![endif]><!--[if gte mso 9]><xml>
 <o:OLEObject Type="Embed" ProgID="Visio.Drawing.11" ShapeID="_x0000_i1028"
  DrawAspect="Content" ObjectID="_1298963280">
 </o:OLEObject>
</xml><![endif]--></span></p>

<p class=MsoCaption><span lang=EN-IE>Figure <span style='mso-field-code:" SEQ Figure \\* ARABIC "'><span
style='mso-no-proof:yes'>4</span></span>: Music Game<span style='mso-no-proof:
yes'> with Synchronization<o:p></o:p></span></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The arrows represent events in the music
sequence where game events need to be synchronized. In this case, the blue
arrow represents a time where the player is supposed to press the left button,
and the red arrow is for the right button. The yellow arrow tells the game
engine that the sequence is complete. The player is allowed a certain time
window before and after the event to press the appropriate key.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>If an event is received and the player has
not pressed a button, a timer is set to half the length of the window. If the
player presses the button before the timer expires, the game registers a
success, and if not, the game registers a failure. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>If the player presses the button before the
event is received, a timer is set to half the length of the window. If an event
is received before the timer expires, the game registers a success, and if not,
the game registers a failure. Game play might also include bonuses for getting
close to the timing of the actual event. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h1><a name="_Toc203298091"><![if !supportLists]><span lang=EN-IE
style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>2<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>JET Content Authoring Overview</span></a></h1>

<p class=MsoNormal><span lang=EN-IE>To author JET files and hear them playback interactively,
the content author will work in two or three applications which are designed to
work together smoothly. The first is application is any off-the-shelf <st1:place
w:st="on">MIDI</st1:place> sequencing application or Digital Audio Workstation
that supports VST (for PC) or AU (for Mac) plugins. (Logic, SONAR, Cubase, etc)
Here the author will compose their <st1:place w:st="on">MIDI</st1:place> music
files using the SONiVOX EAS Synth plugin as the playback synthesizer. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Once the composer has completed their <st1:place
w:st="on">MIDI</st1:place> file(s), they import them into the JET Creator application.
Here the author will setup and audition the conditions for interactive playback
within the JET enabled game.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Optionally, the author may elect to create
a custom DLS soundbank. This can be created in any off-the-shelf DLS authoring
application, such as Awave from MJSoft, and loaded into JET Creator along with
the <st1:place w:st="on">MIDI</st1:place> files.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Below is an overview of this process. A
more detailed explanation of each step follows.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<ul style='margin-top:0in' type=disc>
 <li class=MsoNormal style='mso-list:l10 level1 lfo12;tab-stops:list .5in'><span
     lang=EN-IE>Launch digital audio workstation (DAW) </span></li>
 <ul style='margin-top:0in' type=circle>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Assign the SONiVOX EAS Synth plugin as the playback
      synthesizer</span></li>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Optionally load a custom DLS2 soundset </span></li>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Compose and save <st1:place w:st="on">MIDI</st1:place> file(s)</span></li>
 </ul>
 <li class=MsoNormal style='mso-list:l10 level1 lfo12;tab-stops:list .5in'><span
     lang=EN-IE>Launch the JET Creator application</span></li>
 <ul style='margin-top:0in' type=circle>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Create segments using the <st1:place w:st="on">MIDI</st1:place>
      and DLS2 source files</span></li>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Add interactive elements</span></li>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Audition interactive elements</span></li>
  <li class=MsoNormal style='mso-list:l10 level2 lfo12;tab-stops:list 1.0in'><span
      lang=EN-IE>Save and Export JET files for use in the Android application</span></li>
 </ul>
</ul>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Launch DAW – Content authors will need to
use a third party MIDI authoring application to compose their <st1:place w:st="on">MIDI</st1:place>
files. It is recommended they use a digital audio workstation (DAW) application
that supports VST or AU plugins as this will enable them to listen to the EAS
MIDI Synthesizer and DLS2 soundsets that will be utilized in the Android
application itself. Some examples of popular DAWs include SONAR (PC) and LOGIC
(MAC). </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Assign SONiVOX EAS Synth plugin as the
playback synthesizer – The SONiVOX EAS Synth plugin is a VST and AU compatible
virtual instrument that plugs into VST or AU compatible DAWs. This software
plugin uses the same SONiVOX EAS MIDI synthesizer engine and default General
MIDI<span style='mso-spacerun:yes'>  </span>wavetable soundset inherent in
Android. Using this plugin allows content authors to hear the exact audio
rendering of the instruments and <st1:place w:st="on">MIDI</st1:place> file
that will be used in their Android applications.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Optionally Load DLS2 Soundset – The SONiVOX
EAS Synth plugin allows for the loading of any DLS2 compatible soundset for
playback. These could include a new GM wavetable set, or a small collection of
just a few custom instruments for a given application. Note, the DLS file does
not replace the internal GM wavetable used by the EAS engine. DLS soundsets
play in conjunction with the internal GM wavetable. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Compose MIDI File – Compose <st1:place
w:st="on">MIDI</st1:place> soundtracks for the Android application.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Launch JET Creator – Once all DLS2 and <st1:place
w:st="on">MIDI</st1:place> source files have been authored, the content author
should launch the JET Creator and begin creating JET Segments. The segments
will reference the <st1:place w:st="on">MIDI</st1:place> files and any custom
DLS2 soundbanks.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Assign JET Segment Attributes – After
creating segments the content author interactive elements. Interactive elements
include mute and unmute settings of individual tracks in the MIDI file(s) as
well as <st1:place w:st="on">MIDI</st1:place> controller numbers that serve as
“events” in the game. These attributes tell the JET engine how and when to play
the different musical segments according to the JET API commands in the Android
application. See below for more detail on this.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Audition Interactive Playback – After
assigning the segment attributes and creating the JET file, the content author
can audition all interactive playback elements in the JET Audition window.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Save .jtc File – After the author is
satisfied with the result, it is recommended they save the JET Creator .jtc
file which will save their settings, references to source files, etc.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Export Files – Exporting the JET Creator
file will bundle all source files and their attributes into a single .zip file.
The zip file will also contain a .jet file for use by the Android application.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h1><a name="_Toc203298092"></a><a name="_Toc135724912"></a><a
name="_Toc135725135"></a><a name="_Toc135726610"></a><a name="_Toc135727779"></a><a
name="_Toc137004455"></a><![if !supportLists]><span style='mso-bookmark:_Toc203298092'><span
lang=EN-IE style='mso-fareast-font-family:Arial'><span style='mso-list:Ignore'>3<span
style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span></span><![endif]><span style='mso-bookmark:_Toc203298092'><span
lang=EN-IE>EAS Synth Virtual Instrument Plugin</span></span></h1>

<p class=MsoNormal><span lang=EN-IE>Included in the JET Creator package is the
EAS software synthesizer in plug-in format. The EAS plugin synth allows the
composer to hear the instruments used in Android as they are composing their <st1:place
w:st="on">MIDI</st1:place> sequence. The EAS Synth plugin allows for the
loading of custom DLS2 sounds as well.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Installing the EAS Synth Plugin</span></h2>

<p class=MsoNormal><span lang=EN-IE>Follow the instructions for your individual
DAW to install and utilize the plugin. For Mac users this will typically
involve copying the “EAS Synth.componant” file into your plugins folder which
is usually located at /Library/Audio/Plug-ins/Components. PC users will want to
install the “EAS Synth.dll” into the plugin folder that their DAW requires. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.2<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Requirements and Settings for
using the EAS Synth Plugin</span></h2>

<p class=MsoNormal><span lang=EN-IE>The EAS Synth is an embedded synthesizer
for small mobile devices. This means it does not have the flexibility of high
end synthesizers typically utilized in a professional application such as
Logic, Digital Performer, etc. As such, only the following attributes are
supported.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Macintosh:</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Mac OSX (Intel) Macs </span></p>

<p class=MsoNormal><span lang=EN-IE>ASIO Supported Soundcards </span></p>

<p class=MsoNormal><span lang=EN-IE>Sample Rate:<span style='mso-tab-count:
1'>    </span>44100 hz</span></p>

<p class=MsoNormal><span lang=EN-IE>Buffer Size:<span style='mso-tab-count:
1'>       </span>256 kbytes</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>PC:</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Windows 2000 or <st1:place w:st="on">Vista</st1:place>
operating systems</span></p>

<p class=MsoNormal><span lang=EN-IE>ASIO supported soundcards</span></p>

<p class=MsoNormal><span lang=EN-IE>Sample Rate:<span style='mso-tab-count:
1'>    </span>44100 hz</span></p>

<p class=MsoNormal><span lang=EN-IE>Buffer Size:<span style='mso-tab-count:
1'>       </span>256 kbytes</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.3<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Assigning <st1:place w:st="on">MIDI</st1:place>
Tracks to use the EAS Synth</span></h2>

<p class=MsoNormal><span lang=EN-IE>Each DAW has its own particular method of
assigning <st1:place w:st="on">MIDI</st1:place> tracks to virtual instrument
plugins such as the SONiVOX EAS Synth. Please consult the user manual for your
DAW for detailed instructions. Below are some general guidelines for Logic
(Mac) and SONAR (PC).</span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.3.1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>LOGIC 8</span></h3>

<p class=MsoNormal><span lang=EN-IE>The SONiVOX EAS Synth virtual instrument is
a multi-timbral synthesizer. (i.e. it plays back multiple instruments on unique
<st1:place w:st="on">MIDI</st1:place> channels in a single instance) In Logic
8, however, you’ll want to set up 16 Logic <i style='mso-bidi-font-style:normal'>Instruments,</i>
each with their own instance of the EAS Synth. Each Instrument should be assigned
its own <st1:place w:st="on">MIDI</st1:place> channel. Use Channel 10 for
Drums. The reason for this is that MIDI controller messages, such as Volume
(CC7) and Pan (CC10) will not be channelized if the plugin is assigned to only
a single Instrument and all <st1:place w:st="on">MIDI</st1:place> tracks are
set to playback on that Instrument. In order for each <st1:place w:st="on">MIDI</st1:place>
channel to respond to its own controller messages, you must assign 16 different
EAS Synth instances to 16 unique Logic Instruments.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>A Logic 8 template file has been included
in the Android Cupcake release to facilitate the above.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Playback in Logic 8 may require you to be
in record enable mode for each track you are auditioning. To record enable
multiple tracks hold down the Option key.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>To write out a standard <st1:place w:st="on">MIDI</st1:place>
(type 1) file from Logic, you need to use the File Export command. IMPORTANT:
Most edits in Logic are non-destructive edits meaning they are not modifying
the actual data but rather adding an overlay onto to the data. Quantize is one
such non-destructive edit. Therefore when you export a <st1:place w:st="on">MIDI</st1:place>
file, you may not see your quanitization settings. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>In addition, the mix parameters for volume,
pan and program changes may not appear in the event list and therefore may not
write out with the <st1:place w:st="on">MIDI</st1:place> file. Before exporting
a <st1:place w:st="on">MIDI</st1:place> file in Logic it is recommended you do
the following:</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Select All and use the “Insert MIDI &gt;
Insert MIDI Settings as Events” command.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>Select All and use the “Apply Quantization
Settings Destructively” command. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.3.2<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Cakewalk SONAR 7</span></h3>

<p class=MsoNormal><span lang=EN-IE>Sonar 7 is a bit easier to set up, use and
save than Logic 8. Simply open or start a new <st1:place w:st="on">MIDI</st1:place>
file. Go to the Insert menu and select Insert Soft Synth&gt;SONiVOX&gt;EAS
Synth. Then assign each <st1:place w:st="on">MIDI</st1:place> track’s output to
the EAS Synth. There is no need to record enable a track to hear it play back.
When saving, be sure to select MIDI Type 1.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>SONAR 8 works similarly to SONAR 7.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.3.3<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Digital Performer</span></h3>

<p class=MsoNormal><span lang=EN-IE>We’ve seen some instances when creating
content with Digital Performer where notes with a release velocity of non-0
will generate an extra note-on event in the EAS synth. If you are hearing a
doubling, editing the release velocity events to zero should fix this problem.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.4<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Using Custom DLS2 Soundsets</span></h2>

<p class=MsoNormal><span lang=EN-IE>The SONiVOX EAS Synthesizer supports two
simultaneous soundsets or wavetables. One is the internal General MIDI wavetable
inherent to the SONiVOX EAS Synthesizer. The other is a Downloadable Sounds
Level 2 (DLS2) soundset. The internal wavetable is a GM Level 1 compliant
wavetable with 127 melodic instruments and 1 drumkit. It is in a proprietary
SONiVOX format. The DLS2 soundsets are an open format published by the MIDI
Manufactures Association. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>In the Android Cupcake release, the
internal wavetable is only 200 kbytes, very small, in order to be compliant
with all Android devices which may not have a lot of memory. DLS2 soundsets can
be any size that a particular device supports. Upgraded (larger) internal
wavetables as well as custom DLS2 instruments can be licensed from SONiVOX.</span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.4.1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Loading a DLS2 Soundset</span></h3>

<p class=MsoNormal><span lang=EN-IE>To load a custom soundset, click on the
Load DLS button in the EAS Synth plugin interface. Browse to the DLS2 file you
wish to load and say OK. <b style='mso-bidi-font-weight:normal'><i
style='mso-bidi-font-style:normal'>Only DLS Level 2 formatted soundsets are
supported.<o:p></o:p></i></b></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>3.4.2<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Using a DLS2 Soundset</span></h3>

<p class=MsoNormal><span lang=EN-IE>Since both the internal EAS GM wavetable
and a custom DLS2 soundset are used simultaneously, you must be sure you have
your MIDI Program Changes set correctly. DLS2 instruments must be assigned to a
Bank <i style='mso-bidi-font-style:normal'>other</i> than the default GM bank
used by the internal synthesizer. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The internal EAS synthesizer is assigned to
Banks 121 (melodic instruments) and 120 (drum instruments). This follows the
General MIDI Level 1 specification. Note: Most <st1:place w:st="on">MIDI</st1:place>
sequencers require you to use Bank 0 to select the default wavetable. Custom
DLS2 soundsets, therefore, should utilize a different Bank. We recommend Bank
1.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>The EAS synth supports MSB (Controller 0),
LSB (Controller 32) Bank change messages. There are two places you need to set
this Bank and Program Change number. The first is in your DLS2 soundset. Using
Bank 1, each Instrument would be assigned MSB 1, LSB 0, then the Instrument
Program Change number. The second place to use the Bank and Program Change
number is in your <st1:place w:st="on">MIDI</st1:place> sequence. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>In your <st1:place w:st="on">MIDI</st1:place>
track, the MSB should be sent first followed by the LSB and then the Instrument
number. For example, if your DLS2 instrument is assigned MSB 1, LSB 0,
Program1, you would send CC0, 1 followed by CC32, 0 followed by Program Change
Message 1. This might look like the following in an event window:</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><!--[if gte vml 1]><v:shape id="_x0000_i1029"
 type="#_x0000_t75" style='width:278.25pt;height:504.75pt'>
 <v:imagedata src="JET_Authoring_Guidelines_files/image011.png" o:title="Event List"/>
</v:shape><![endif]--><![if !vml]><img border=0 width=371 height=673
src="JET_Authoring_Guidelines_files/image012.gif" v:shapes="_x0000_i1029"><![endif]></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h1><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>JET Creator Guidelines</span></h1>

<p class=MsoNormal><span lang=EN-IE>JET Creator is the desktop application
where you’ll edit and audition the JET interactive music elements. For details
on the JET Creator application please see the “JET Creator User Manual”. Below
are some additional guidelines to help you out.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Order of Tasks</span></h2>

<p class=MsoNormal><span lang=EN-IE>As with all projects, its best to discuss and
design the interactive music scheme with the game designer and programmer
before beginning your composition. An outline and/or specification can go a
long way in saving you from having to redo things after the game is in place.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE>In general you’ll want to first write your
music in your DAW of choice the way you’re used to composing, then break up the
final <st1:place w:st="on">MIDI</st1:place> file as needed for the application.
Next, move to JET Creator and create all of your music segments in the order
easiest to preview them when played in order. Finally, add the JET Events to
control the segments via the Android game and Audition them as needed in JET
Creator. Finally, save the project in JET Creator and hand off the .jet file to
the programmer to integrate it in the game. After previewing there will likely
be changes to the <st1:place w:st="on">MIDI</st1:place> file(s) and JET Creator
attributes. </span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.2<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Conserving Memory</span></h2>

<p class=MsoNormal><span lang=EN-IE>If you’re trying to conserve memory,
compose as few MIDI files as possible, and create several segments from that <st1:place
w:st="on">MIDI</st1:place> file. For example a 12 bar <st1:place w:st="on">MIDI</st1:place>
file with three sections of 4 bars, A, B, C, can create a much longer song.
Simply create multiple segments that reference the one <st1:place w:st="on">MIDI</st1:place>
file, then order them however you like. For example, A, A, B, A, C, A, B, A, A
would create a 36 bar song. Use JET to add repeats, transpose segments, and
interactively mute and unmute tracks to keep it even more interesting.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.3<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Replicate</span></h2>

<p class=MsoNormal><span lang=EN-IE>To make adding segments or events faster,
use the Replicate command. Replicate can add multiple segments or events at one
time and uses an offset parameter and prefix naming convention to keep things
easy to read. The MOVE command is also useful for moving multiple events by a
set number of measures, beats or ticks.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<h2><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.4<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Interactive Options</span></h2>

<p class=MsoNormal><span lang=EN-IE>There are several interactive audio
concepts possible in JET. Below are a few examples although we hope developers
will come up with others we haven’t thought of! These are:</span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.4.1<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Multiple Segment Triggering</span></h3>

<p class=MsoNormal><span lang=EN-IE>In this method the application is
triggering specific segments based on events in the game. For example a hallway
with lots of fighting might trigger segment 1 and a hallway with no fighting
might trigger segment 2. Using JET TriggerClips in conjunction with this method
creates even more diversity.</span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.4.2<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Mute Arrays</span></h3>

<p class=MsoNormal><span lang=EN-IE>In this method the application is
triggering mute and unmute events to specific tracks in a single <st1:place
w:st="on">MIDI</st1:place> sequence. For example a hallway with lots of
fighting might play <st1:place w:st="on">MIDI</st1:place> tracks 1-16 and a
hallway with no fighting might play the same midi file but mute tracks 9-16.
Using JET TriggerClips in conjunction with this method creates even more
diversity.</span></p>

<h3><![if !supportLists]><span lang=EN-IE style='mso-fareast-font-family:Arial'><span
style='mso-list:Ignore'>4.4.3<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]><span lang=EN-IE>Music Driven Gameplay</span></h3>

<p class=MsoNormal><span lang=EN-IE>Music driven gaming is similar to what
Guitar Hero and JETBOY have done in that the music content determines how
graphic events are displayed. The application then queries the user response to
the graphic events and interactively modifies the music in response. In this
method the game is utilizing JET Application Events, MIDI controllers that are
embedded in the <st1:place w:st="on">MIDI</st1:place> file and read by the game
in real-time. Based on the user response, multiple segment triggering and/or
mute arrays can be set.</span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span lang=EN-IE><o:p>&nbsp;</o:p></span></p>

</div>

</body>

</html>