1 <smil> 2 <head> 3 <layout> 4 <root-layout height="425" 5 width="450" 6 background-color="black"/> 7 8 <region id="title" 9 left="50" 10 top="150" 11 width="350" 12 height="200"/> 13 14 <region id="full" 15 left="0" 16 top="0" 17 height="425" 18 width="450" 19 background-color="#602030"/> 20 21 <region id="video" 22 left="200" 23 top="200" 24 height="180" 25 width="240" 26 z-index="1"/> 27 </layout> 28 </head> 29 30 <body> 30 <seq> 31 <!-- This img tag displays the title screen --> 32 <text src="title.rt" 33 type="text/html" 34 region="title" 35 dur="20s"/> 36 <!-- This section displays the animated map with an audio soundtrack --> 37 <par> 38 <audio src="map_narration.ra"/> 39 <img src="map.rp" 40 region="full" 41 fill="freeze"/> 42 </par> 43 <!-- This section contains the video-annotated slideshow --> 44 <par> 45 <img src="slideshow.rp" 46 region="full" 47 fill="freeze"/> 48 <seq> 49 <video src="slide_narration_video1.rm" 50 region="video"/> 51 <audio src="slide_narration_audio1.ra"/> 52 <video src="slide_narration_video2.rm" 53 region="video"/> 54 </seq> 55 </par> 56 </seq> 57 </body> 58 </smil>