-
Notifications
You must be signed in to change notification settings - Fork 0
/
itinerary.html
852 lines (834 loc) · 28.2 KB
/
itinerary.html
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
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<!-- #BeginTemplate "Template.dwt" -->
<head>
<!-- #BeginEditable "doctitle" -->
<title>Itinerary</title>
<style type="text/css">
.festival-points,
.some-points,
.day-markers {
font-size: x-large;
}
.ski-groups {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
color: #D85E37;
font-style: italic;
}
#group-2-supervisor {
font-size: medium;
}
.some-points,
.small-points,
#dedication-message {
text-align: center;
}
.small-points {
font-size: 13pt;
}
.red-info-box,
#dedication-message,
.day-markers,
.ski-groups {
font-weight: bold;
}
.mer-de-glace,
.ski-groups {
font-size: xx-large;
}
</style>
<!-- #EndEditable -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<link href="Layout.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function FP_swapImg() {//v1.0
var doc = document, args = arguments, elm, n; doc.$imgSwaps = new Array(); for (n = 2; n < args.length;
n += 2) {
elm = FP_getObjectByID(args[n]); if (elm) {
doc.$imgSwaps[doc.$imgSwaps.length] = elm;
elm.$src = elm.src; elm.src = args[n + 1];
}
}
}
function FP_preloadImgs() {//v1.0
var d = document, a = arguments; if (!d.FP_imgs) d.FP_imgs = new Array();
for (var i = 0; i < a.length; i++) { d.FP_imgs[i] = new Image; d.FP_imgs[i].src = a[i]; }
}
function FP_getObjectByID(id, o) {//v1.0
var c, el, els, f, m, n; if (!o) o = document; if (o.getElementById) el = o.getElementById(id);
else if (o.layers) c = o.layers; else if (o.all) el = o.all[id]; if (el) return el;
if (o.id == id || o.name == id) return o; if (o.childNodes) c = o.childNodes; if (c)
for (n = 0; n < c.length; n++) { el = FP_getObjectByID(id, c[n]); if (el) return el; }
f = o.forms; if (f) for (n = 0; n < f.length; n++) {
els = f[n].elements;
for (m = 0; m < els.length; m++) { el = FP_getObjectByID(id, els[n]); if (el) return el; }
}
return null;
}
function FP_swapImgRestore() {//v1.0
var doc = document, i; if (doc.$imgSwaps) {
for (i = 0; i < doc.$imgSwaps.length; i++) {
var elm = doc.$imgSwaps[i]; if (elm) { elm.src = elm.$src; elm.$src = null; }
}
doc.$imgSwaps = null;
}
}
// -->
</script>
</head>
<body
onload="FP_preloadImgs(/*url*/'Images/Buttons/home_over.png',/*url*/'Images/Buttons/itinerary_over.png',/*url*/'Images/Buttons/activities_over.png',/*url*/'Images/Buttons/accommodation_over.png',/*url*/'Images/Buttons/equipment_over.png',/*url*/'Images/Buttons/contact_over.png')">
<div id="wrapper">
<div id="masthead">
<img alt="" height="300" src="Images/Banner%20with%20logo.jpg" width="900" />
</div>
<div id="top_nav">
<a href="index.html">
<img id="img1" alt="" height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img1',/*url*/'Images/Buttons/home_over.png')"
src="Images/Buttons/home_button.png" width="89" /></a><a href="itinerary.html"><img id="img2" alt=""
height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img2',/*url*/'Images/Buttons/itinerary_over.png')"
src="Images/Buttons/itinerary_button.png" width="124" /></a><a href="activities.html"><img id="img3"
alt="" height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img3',/*url*/'Images/Buttons/activities_over.png')"
src="Images/Buttons/activities_button.png" width="126" /></a><a href="accommodation.html"><img
id="img4" alt="" height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img4',/*url*/'Images/Buttons/accommodation_over.png')"
src="Images/Buttons/accommodation_button.png" width="208" /></a><a href="equipment.html"><img
id="img5" alt="" height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img5',/*url*/'Images/Buttons/equipment_over.png')"
src="Images/Buttons/equipment_button.png" width="144" /></a><a href="contact.html"><img id="img6"
alt="" height="47" onmouseout="FP_swapImgRestore()"
onmouseover="FP_swapImg(1,1,/*id*/'img6',/*url*/'Images/Buttons/contact_over.png')"
src="Images/Buttons/contact_button.png" width="142" /></a>
</div>
<div id="page_content">
<!-- #BeginEditable "content" -->
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer6" class="heading-centered" style="height: 51px; z-index: 1; left: 709px; top: 379px">
<strong>Itinerary</strong>
</div>
<div id="layer7" style="z-index: 2; left: 507px; top: 438px; width: 560px">
<strong>This is a plan on what we'll be doing on each day of the trip.</strong>
</div>
<br />
<div id="layer9" class="yellow-info-box-centered" style="z-index: 9; left: 402px; top: 489px; width: 718px">
<strong>The first and last day of the trip will be exclusive to
travelling.</strong>
</div>
<div id="layer8" class="framed-image"
style="z-index: 3; height: 145px; width: 344px; left: 769px; top: 551px">
<img alt="" height="146" src="Images/Itinerary/7-plane%20into%20geneva.jpg" width="344" />
</div>
<div id="layer34" style="width: 377px; z-index: 13; left: 382px; top: 547px">
<ul>
<li>You will have to wake up earlier and arrive
to school <strong>no later than 8:30.</strong> Head to the foyer,
your teachers will be waiting.</li>
<li>A coach (provided by Translink) will take
us to Belfast International and will arrive there by 9:30.</li>
<li>We will be flying easyJet to Geneva Airport
in Geneva. Carry-on luggage is allowed.</li>
<li>We will be taking another coach (Snow
Express) that will take us to our destination, Chamonix!</li>
</ul>
</div>
<div id="layer10" class="framed-image" style="z-index: 10; left: 448px; top: 915px">
<img alt="" height="176" src="Images/Itinerary/2-%20travelling%20by%20coach%20to%20charmonix.jpeg"
width="605" />
</div>
<div id="layer35" style="width: 357px; height: 177px; z-index: 14; left: 766px; top: 719px">
<ul>
<li>We'll be walking for a bit through the city centre to get to
Hotel de L'arve, and then we're there!</li>
<li>You are free to do whatever you want afterwards, whether that be
going to the sauna or going nightclubbing, just <strong>be back before 10pm.</strong></li>
</ul>
</div>
<div id="layer37" class="day-markers" style="z-index: 16; left: 380px; top: 1192px">
Day 2
</div>
<div id="layer38" style="width: 284px; height: 240px; z-index: 17; left: 380px; top: 1309px">
<ul>
<li>To familiarise yourself with Chamonix and its surrounding areas,
we will be taking a tram ride, specifically on the <em>Tramway du
Mont Blanc.</em></li>
<li>The ride provides superb views of the many mountains you will
(hopefully) be skiing on.</li>
</ul>
</div>
<div id="layer58" class="some-points"
style="width: 398px; height: 181px; z-index: 24; left: 378px; top: 2422px">
This will be for experienced skiers <br />
You will follow your supervisor and take on
traditional courses at the resort.<br />
</span><span id="group-2-supervisor">Your supervisor will be on stand-by
incase an incident occurs.</span>
</div>
<div id="layer39" class="framed-image" style="z-index: 19; left: 692px; top: 1307px">
<img alt="" height="242" src="Images/Itinerary/3-tramway%20du%20mont%20blanc.jpg" width="363" />
</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer36" class="yellow-info-box-centered-and-italicised"
style="z-index: 6; left: 396px; top: 1139px; width: 712px">
<strong><em>What we'll be doing on the other days</em></strong>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer40"
style="width: 358px; height: 260px; z-index: 20; left: 381px; top: 1560px; font-size: 16px">
<ul>
<li>We will be staying at Mont Blanc for a while so that you can
take photos and take a look at the route we will be skiing (You will
be split into groups and be supervised by a teacher).</li>
<li>When we are finished, we'll meet each other at the tram station
and take the return journey.</li>
<li>When we're back at the city centre, we'll have lunch at the
Natifs Cafe before going back to the hotel.</li>
<li>Dinner will be at the hotel, so you don't need to worry about
going out again.</li>
</ul>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer42" class="yellow-info-box-small" style="z-index: 4; left: 378px; top: 2928px; width: 347px">
<em><strong>You will need your hiking equipment for this day!</strong></em>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer41" class="day-markers" style="z-index: 15; left: 380px; top: 3584px; ">
Day 5
</div>
<br />
<br />
<br />
<br />
<div id="layer43" class="framed-image" style="z-index: 18; left: 753px; top: 1564px">
<img alt="" height="225" src="Images/Itinerary/10-Mont%20Blanc.jpg" width="300" />
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer49" class="image-caption" style="z-index: 21; left: 756px; top: 1809px; width: 327px">
Imagine yourself at the summit!</div>
<br />
<div id="layer50" class="some-points"
style="width: 708px; height: 38px; z-index: 23; left: 381px; top: 1910px">
This is the day we'll finally be skiing!
</div>
<br />
<br />
<br />
<br />
<div id="layer52" class="framed-image" style="z-index: 25; left: 789px; top: 2143px">
<img alt="" height="174"
src="Images/Itinerary/11-skiing%20lessons%20by%20the%20chamonix%20ski%20school.jpg" width="300" />
</div>
<br />
<br />
<div id="layer14" class="ski-groups" style="z-index: 12; left: 381px; top: 2075px">
Group 1
</div>
<div id="layer54" class="small-points"
style="width: 709px; height: 99px; z-index: 26; left: 380px; top: 1966px">
<p>We will go to the <em>Teleskis du Savoy</em>, the
nearest ski resort to our hotel.</p>
<p><strong>When we are at the ski lifts, you will be
split into two groups depending on your experience of skiing.</strong></p>
</div>
<br />
<br />
<div id="layer51" class="big-numbers" style="z-index: 8; left: 366px; top: 2426px">
2
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer53" class="some-points"
style="width: 386px; height: 175px; z-index: 22; left: 381px; top: 2139px">
This group will be for people who are
beginners at skiing.<br />
Lessons will be provided by the Chamonix ski school and you will meet
with them.
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer55" class="framed-image" style="z-index: 27; left: 789px; top: 2426px">
<img height="169" src="Images/Ski%20Activities/6-freestyle%20skiing.jpg" width="300" />
</div>
<br />
<div id="layer56" class="ski-groups" style="z-index: 11; left: 381px; top: 2366px">
Group 2
</div>
<br />
<div id="layer57" class="big-numbers" style="z-index: 7; left: 366px; top: 2145px">
1
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer59" class="small-points"
style="width: 709px; height: 180px; z-index: 26; left: 380px; top: 2633px">
<p>The skiing lessons (Group 1) will last for
approx. 1½ hours whereas the session for Group 2 will last for 2 hours.</p>
<p>When we are finished skiing for the day, we will
go to the <a href="https://sites.google.com/view/altitude2000/menu-fr">Altitude 2000 restaurant</a>
for our dinner.</p>
<p>That will be us finished for the day and then
we'll head back to the hotel.</p>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer62" class="some-points"
style="width: 723px; height: 38px; z-index: 29; left: 378px; top: 2882px">
We will be returning to the ski resort, but this time on a hike.</div>
<br />
<br />
<br />
<br />
<div id="layer60" class="day-markers" style="z-index: 15; left: 380px; top: 1871px">
Day 3
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer61" class="framed-image" style="z-index: 28; left: 746px; top: 2979px">
<img height="236" src="Images/Itinerary/4-hiking.jpg" width="355" />
</div>
<br />
<br />
<br />
<br />
<div id="layer63" class="framed-image" style="z-index: 30; left: 377px; top: 3323px">
<img alt="" height="168" src="Images/Itinerary/4a-hiking%20map%201.png" width="300" />
</div>
<div id="layer64"
style="width: 358px; height: 260px; z-index: 20; left: 381px; top: 2978px; font-size: 16.5px">
<ul>
<li>We will go to the ski lifts like yesterday and be split into
<strong>two groups again.</strong>
</li>
<li><strong>Group 1 </strong>will go with Mr Jones on a normal,
leisurely hike trail where you will get to see the many beautiful
sights of the surrounding area.</li>
<li><strong>Group 2</strong> will go with Mrs Kay or Miss Logan on a
more intense hike trail where climbing will be involved e.g.
traversing up rocks. Likewise, you will get to view similar
landscapes once we reach the peak of the hike.</li>
</ul>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer66" class="some-points"
style="width: 723px; height: 38px; z-index: 29; left: 378px; top: 3262px">
You will also receive a map similar to these to familiarise yourself</div>
<br />
<br />
<br />
<br />
<div id="layer65" class="yellow-info-box-small" style="z-index: 4; left: 380px; top: 1239px; width: 418px">
<strong><em>Please note - we will be departing for each activity at 11am
sharp, so please be ready beforehand.<br />
</em></strong><em>This will always be the case unless stated otherwise.</em>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer70" class="yellow-info-box-centered-and-italicised"
style="z-index: 4; left: 774px; top: 6359px; width: 284px; font-size:large">
<em><strong>Make sure you have your own money with you.</strong></em>
</div>
<br />
<br />
<br />
<div id="layer67" class="framed-image" style="z-index: 31; left: 799px; top: 3327px">
<img alt="" height="171" src="Images/Itinerary/4b%20-%20hiking%20map%202.jpg" width="275" />
</div>
<br />
<div id="layer68" style="width: 709px; height: 56px; z-index: 26; left: 380px; top: 3513px">
<p>Once both hiking trails are finished, we will go
to the Altitude 2000 restaurant (again) for something to eat and then we
will go back to the hotel.</p>
</div>
<div id="layer69" class="day-markers" style="z-index: 15; left: 380px; top: 2832px; ">
Day 4
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div class="small-points" style="z-index: 32; left: 382px; top: 3699px; width: 394px; height: 262px">
<ul>
<li>Beginners, you will spend another lesson
with the Chamonix Ski School.</li>
<li><strong>You will leave at
11:30am</strong><span>
- head to the ski
lifts at the Teleskis du Savoy, as always.</span></li>
<li>Your ski school teachers will then take you
back to the practice course.</li>
<li>Later, you will also try an actual course
to put your skills to the ultimate test. If you are still needing
work then one of the teachers will kindly take you back to the
practice course to help you.</li>
</ul>
</div>
<br />
<br />
<div id="layer73" class="framed-image" style="z-index: 33; left: 789px; top: 3708px">
<img alt="" height="225" src="Images/Ski%20Activities/3-%20skiing%20and%20snowboarding.jpg"
width="300" />
</div>
<br />
<br />
<br />
<br />
<br />
<div id="dedication-message" style="z-index: 34; left: 382px; top: 4072px; width: 724px">
Psst, your dedication will be
rewarded, but we'll have to see about that!
</div>
<div id="layer75" class="some-points" style="z-index: 34; left: 382px; top: 3968px; width: 724px">
When the lesson is over, your ski teachers will take you back to the ski
lifts where you'll be taken down to your other teachers and then that'll
be you for the day.</div>
<br />
<br />
<br />
<div id="layer78" class="some-points" style="z-index: 34; left: 382px; top: 4152px; width: 724px">
What may surprise you as much as we were, is that there's a beach (or
swimming lake) a couple of miles away from Chamonix!</div>
<br />
<br />
<br />
<div id="layer76" class="day-markers" style="z-index: 15; left: 380px; top: 4109px; ">
Day 6
</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer77" class="framed-image" style="z-index: 35; left: 499px; top: 4292px">
<img alt="" height="195" src="Images/Itinerary/9a-lac%20de%20passy.jpg" width="488" />
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer79" class="some-points"
style="z-index: 34; left: 382px; top: 4255px; width: 724px; height: 36px;">
<strong>The Lac de Passy (Lake Passy)</strong>
</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer80" class="yellow-info-box-centered-and-italicised"
style="z-index: 4; left: 381px; top: 3636px; width: 715px; font-size: large">
<em><strong>This day will be exclusive to people who are beginners at
skiing.</strong><br />
Experienced skiers can spend free time at the hotel or the city centre.</em>
</div>
<div id="layer81" style="z-index: 32; left: 384px; top: 4952px; width: 386px">
<ul>
<li>We will be returning to the Teleskis du
Savoy.</li>
<li><strong><span>You will
not be split into two groups, </span></strong>
<span>the beginners and the experienced will
join together and rival each other to see who has improved the most
throughout the trip.</span>
</li>
</ul>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer82" class="day-markers" style="z-index: 15; left: 380px; top: 4823px; ">
Day 7
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div class="small-points" style="z-index: 32; left: 382px; top: 4598px; width: 714px; ">
<ul>
<li>If you can, bring your beach equipment with
you e.g. shovel, spade, suncream, shorts etc.</li>
<li>We will take a bus (or private coach; not
yet decided) from Chamonix to the Clos Baron area at Passy.</li>
<li>We will then set up camp at an area on the
beach and have our own barbecue such as hot dogs, burgers and
kebabs!</li>
<li>We will be holding our own volleyball
tournament in Boys V Girls matches with the first prize being a
souvenir from the beach!</li>
</ul>
</div>
<br />
<div id="layer83" class="framed-image" style="z-index: 36; left: 784px; top: 4930px">
<img alt="" height="225" src="Images/Ski%20Activities/2-snowboarding.jpg" width="300" />
</div>
<br />
<br />
<br />
<div id="layer86" class="framed-image" style="z-index: 37; left: 384px; top: 5218px">
<img alt="" height="190" src="Images/Ski%20Activities/2a-%20snowboarding%20fail.jpg" width="300" />
</div>
<br />
<br />
<br />
<br />
<div id="layer84" class="some-points" style="z-index: 32; left: 382px; top: 4875px; width: 710px; ">
Time to put your ski skills to the ultimate test!
</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer89" style="z-index: 32; left: 716px; top: 5221px; width: 377px; height: auto;"
class="yellow-info-box-centered">
<p>Listen up beginners, this will be the most
important school day of your life. This day will determine on how far
you've progressed since your first skiing lesson and to prove the
experienced skiers wrong!</p>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer87" class="image-caption" style="z-index: 21; left: 387px; top: 5428px; width: 300px">
Trust me, you don't want to be in that situation!</div>
<br />
<br />
<div class="small-points" style="z-index: 32; left: 382px; top: 5513px; width: 714px; ">
<ul>
<li>This skiing session will last for approx.
2-3 hours (with an optional choice of a lunch break inbetween).</li>
<li>At the end of the session, the teachers
will judge the best skier overall and who has improved the most
since their first day of skiing.</li>
<li>Also, this will be the last day that we ski
at the Teleskis du Savoy. In fact, <strong>this will be the last day
that ski altogether!</strong></li>
</ul>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer91" class="day-markers" style="z-index: 15; left: 380px; top: 5713px;">
Day 8
</div>
<div id="layer92" style="z-index: 32; left: 384px; top: 5763px; width: 709px; ">
<p style="width: 709px"><em>As the trip comes to an
end, we will be doing more relaxed activities.</em></p>
</div>
<br />
<br />
<br />
<br />
<div id="layer96" class="mer-de-glace"
style="z-index: 21; left: 380px; top: 5979px; width: 508px; height: 42px;">
...the Mer de Glace Ice Caves!</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer93" class="framed-image" style="z-index: 38; left: 376px; top: 6039px">
<img alt="" height="162" src="Images/Itinerary/6-mer%20de%20glace%20(sea%20of%20ice).jpg" width="250" />
</div>
<br />
<br />
<br />
<div id="layer94" class="framed-image" style="z-index: 38; left: 687px; top: 5808px">
<img alt="" height="140" src="Images/Itinerary/8-montenvers%20train.jpg" width="375" />
</div>
<br />
<br />
<br />
<br />
<br />
<div id="layer95" class="framed-image" style="z-index: 38; left: 643px; top: 6038px">
<img alt="" height="163" src="Images/Destination/8-mer%20de%20glace%20ice%20caves.jpg" width="245" />
</div>
<br />
<div id="layer99" style="z-index: 21; left: 908px; top: 5979px; width: 186px; height: 280px;">
The Mer de Glace has been a wonder of Chamonix for many years.<br />
The attraction itself has many twists and turns around every corner and
its combination of lights and sound make it an awe-inspiring atmosphere.</div>
<br />
<br />
<br />
<br />
<div id="layer98" class="image-caption" style="z-index: 21; left: 661px; top: 6212px; width: 214px">
Enjoy its beautiful lights.</div>
<br />
<div id="layer97" class="mer-de-glace"
style="z-index: 21; left: 387px; top: 5814px; width: 295px; height: 138px;">
On day 8, we will be taking another train ride to...</div>
<br />
<br />
<br />
<div id="layer100" style="z-index: 32; left: 384px; top: 6534px">
<p class="day-markers">What will
happen on day 9?</p>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer101" class="framed-image" style="z-index: 38; left: 398px; top: 6354px">
<img alt="" height="149" src="Images/Itinerary/1a-shopping.jpg" width="350" />
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer102" class="yellow-info-box-centered-and-italicised"
style="z-index: 4; left: 381px; top: 4514px; width: 715px; font-size:large">
<em><strong>This activity will depend on how the weather is on that day.</strong><br />
If the weather is bad, it will have to be rescheduled to a different day
and we'll have to do something else.</em>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div id="layer105" class="framed-image" style="z-index: 38; left: 384px; top: 6681px">
<img alt="" height="199" src="Images/Itinerary/5-%20chamonix%20pop%20rock%20festival.jpg" width="300" />
</div>
<br />
<div id="layer103" style="z-index: 32; left: 384px; top: 6282px; width: 709px; ">
<p style="width: 709px">When we eventually return
to the Chamonix city centre, you are free to go shopping for anything
you like!</p>
</div>
<div id="layer104" style="z-index: 32; left: 384px; top: 6579px; width: 709px; ">
<p class="festival-points" style="width: 709px"><em>I'm glad you asked, as
we'll be going to none other than the Chamonix Pop Rock Festival!</em></p>
</div>
<div id="layer108" class="framed-image" style="z-index: 38; left: 664px; top: 7207px">
<img alt="" height="172" src="Images/Destination/5-chamonix%20nightlife.jpg" width="400" />
</div>
<div id="layer109" style="z-index: 39; left: 386px; top: 6922px; width: 690px">
<ul>
<li>The festival will begin at 4pm and will
last for 4 hours until 8pm with a break between 6-7pm.</li>
<li>However, if you start feeling unwell during
the festival then please get your teacher's attention and they will
take you to a first aider.</li>
</ul>
</div>
<br />
<div id="layer107" style="z-index: 39; left: 690px; top: 6656px; width: 386px">
<ul>
<li>As a result, <strong>we will be leaving the hotel
much later than planned @ 3:30pm</strong> to make sure we arrive on time for
when the festival starts at 4.</li>
<li>The music artists performing at the
festival will be the likes of Major Lazer, David Guetta, Zedd,
Normani, Route 94 & Shane Codd</li>
</ul>
</div>
<div id="layer110" class="yellow-info-box-centered"
style="z-index: 39; left: 385px; top: 7080px; width: 688px">
Please note, we will be planning to have a huge
dinner at the hotel so please don't try eating during the festival.
Trust me, it will be worth it!
</div>
<div id="layer111" class="festival-points"
style="z-index: 39; left: 384px; top: 7206px; width: 272px; font-size: 23px">
If (for some reason) you're still not tired,
then feel free to head to a club with your friends to experience the
nightlife of Chamonix for one last time!
</div>
<br />
<br />
<br />
<br />
<div id="layer112" class="dashed-info-box" style="left: 386px; top: 7430px; z-index: 11; width: 674px">
If this itinerary has caught your attention, then you should go
to the <a href="contact.html">Contact us</a>
page and book a place. You better do it fast, because spaces are running
out quickly!
</div>
<br />
<br />
<br />
<div class="scrolling-text" style="width: 400px; z-index: 21; left: 523px; top: 7543px">
<strong>
<marquee behavior="scroll" direction="left" scrollamount="12" scrolldelay="45">
BOOK NOW!</marquee>
</strong>
</div>
<!-- #EndEditable -->
</div>
<div id="footer">
<map id="ImgMap0" name="ImgMap0">
<area alt="" coords="6, 64, 304, 131" href="http://instagram.co.uk/profile/chs_skitrip" shape="rect" />
<area alt="" coords="3, 138, 303, 200" href="http://facebook.com/profile/CHS+Ski+Trip+2020"
shape="rect" />
<area alt="" coords="2, 210, 305, 275" href="http://twitter.com/user/clarendonskitrip" shape="rect" />
<area coords="334, 64, 401, 129" href="https://hotelarve-chamonix.com/en/" shape="rect" />
<area alt="" coords="410, 66, 464, 130" href="https://www.skiset.co.uk/" shape="rect" />
<area alt="" coords="473, 65, 549, 131" href="https://www.chamonix.com/chamonix-mont-blanc,0,en.html"
shape="rect" />
</map>
<img alt="footer" height="300" src="Images/Footer.png" width="900" usemap="#ImgMap0" />
</div>
</div>
</body>
<!-- #EndTemplate -->
</html>